1
0
mirror of synced 2024-11-22 13:26:10 +03:00

api class methods fix

This commit is contained in:
Grisha Pomadchin 2014-03-22 15:15:37 +04:00
parent 7657ae434a
commit 7dcc438fe8

View File

@ -211,6 +211,22 @@ class RestApi
return $result; return $result;
} }
/**
* Обновление externalId у клиентов с переданными id
*
* @param array $customers- массив, содержащий id и externalId заказа
* @return array
*/
public function customerFixExternalIds($customers)
{
$dataJson = json_encode($customers);
$this->parameters['customers'] = $dataJson;
$url = $this->apiUrl.'customers/fix-external-ids';
$result = $this->curlRequest($url, 'POST');
return $result;
}
/** /**
* Удаление клиента * Удаление клиента
* *