Añadir comentario a un pedido
Añadir un comentario a un pedido. También permite cambiar el estado del pedido.
PUT /api/rest_admin/orderhistory/:id
Parámetros
get
Body
{
"order_status_id": "2",
"notify": "1",
"comment": "update order status"
}
order_status_id | Id del estado. Ver tabla de estados. |
notify | 1 envia notificaci´pon al client; o no envia notificación al cliente.. |
comment | Comentario. |
date_modified datetime | Fecha de modificación (Formato: AAAA-MM-DD hh:mm:ss). Es opcional, solo aplica si existe y si el formato es correcto. |
Cabeceras HTTP
X-Sushi-Token-Id | Token de autorización. |
Respuesta
{
"success": 1,
"error": [
],
"data": ""
}
success integer | 0 si hay error, 1 si no hay error. |
error string | Descripción del error. |
data json object | Datos de respuesta. |
Ejemplos
cURL
curl --location --request PUT 'http://sushi.loc/api/rest_admin/orderhistory/id/9' \
--header 'X-Sushi-Token-Id: lssvgdbtb1oigvvnp057q0n122' \
--header 'Content-Type: application/json' \
--data-raw '{
"order_status_id": "2",
"notify": "1",
"comment": "update order status"
}'
PHP - cURL
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "http://sushi.loc/api/rest_admin/orderhistory/id/9",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS =>"{\n \"order_status_id\": \"2\",\n \"notify\": \"1\",\n \"comment\": \"update order status\"\n}",
CURLOPT_HTTPHEADER => array(
"X-Sushi-Token-Id: lssvgdbtb1oigvvnp057q0n122",
"Content-Type: application/json"
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;