POST
/
orders
/
{id}
/
deliveryVerificationCode
curl --request POST \
  --url https://api.getjusto.com/api/v2/orders/{id}/deliveryVerificationCode \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "verificationCode": "<string>"
}'
{
  "status": "ok",
  "data": {
    "message": "Delivery verification code set successfully",
    "orderId": "1234567890",
    "deliveryVerificationCode": "123456"
  }
}

Descripción

Este método permite obtener un código de verificación único, el cual se proporciona al cliente para validar que la entrega se realice a la persona correcta.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

ID de la orden

Body

application/json

Response

200
application/json

Operación exitosa

The response is of type object.