Link Search Menu Expand Document

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

id integerId del pedido.

Body

{
    "order_status_id": "2",
    "notify": "1",
    "comment": "update order status"
}
order_status_idId del estado. Ver tabla de estados.
notify1 envia notificaci´pon al client; o no envia notificación al cliente..
commentComentario.
date_modified datetimeFecha 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-IdToken de autorización.

Respuesta

{
    "success": 1,
    "error": [
    ],
    "data": ""
}
success integer0 si hay error, 1 si no hay error.
error stringDescripción del error.
data json objectDatos 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;