{ "uuid": "7a593d26-8cfd-47e9-8647-1fb18a36fedb" }
POST /api/v1/billing/devices/unreserve
string uuid REQUIRED, Uuid устройства
string
204 No Content
No Content
Успешный ответ
422 Unprocessable Entity
Unprocessable Entity
Возвращает JSON объект с ошибкой. VMS Billing/Общая информация/Валидация внешней системы
{ "message": "Тут не будет информативного сообщения", "errors": { "any_key": [ "Тут будет описана причина ошибки" ] } }
curl -k --request POST \ --url 'https://your-domain/api/v1/billing/devices/unreserve' \ --header 'Content-Type: application/json' \ --header 'Accept: application/json' \ --data '{ "uuid": "string" }'
$data = array ( 'uuid' => 'string', ); $context = stream_context_create([ 'ssl'=>['verify_peer' => false], 'http' => [ 'method' => 'POST', 'header' => "Content-Type: application/json\r Accept: application/json", 'content'=>json_encode($data) ] ]); $result = file_get_contents('https://your-domain/api/v1/billing/devices/unreserve', false, $context);
Please note, these errors can depend on your browser setup.
If this problem persists, please contact our support.