Skip to main content
POST
/
orders
/
{id}
/
deliveryVerificationCode
cURL
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"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.getjusto.com/llms.txt

Use this file to discover all available pages before exploring further.

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
verificationCode
string
required

Código de verificación

Response

Operación exitosa

status
string

Estado de la operación

Example:

"ok"

data
object