+customerExternalIds method
This commit is contained in:
parent
4f678f35d8
commit
1e61f51ae6
@ -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;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Удаление клиента
|
* Удаление клиента
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user