1. Eventos Webhook
Payday Public API
  • Proceso de Venta
  • Autenticacion y Firma HMAC
  • Proceso de Venta
    • Cotizacion - crear
      POST
    • Referencias - solicitar
      POST
    • Ofertas - previsualizar
      POST
    • Ofertas - seleccionar
      POST
    • Contrato - renderizar
      POST
    • Contrato - firma
      POST
    • Validar ICCID
      POST
    • Validar IMEI
      POST
    • Validar ICCID + IMEI
      POST
    • Finalizar venta
      POST
  • Productos
    • Marcas
      GET
    • Modelos y Prefijos por marca
      GET
  • Medios de Notificacion
    • Registrar Webhook para cotizacion
      POST
    • Polling Cotizacion
      GET
    • Historial de Eventos
      GET
  • Eventos Webhook
    • Evento quote.updated
    • reference.requested
    • reference.accepted
    • imei.validated
    • contract.signed
    • offer.selected
    • offer.previewed
  • Health check
    GET
  1. Eventos Webhook

Evento quote.updated

Desarrollando
Webhook
POST
quote.updated

Solicitud

Autorización
Agregar parámetro en header
X-Api-Key
Ejemplo:
X-Api-Key: ********************
Parámetros de Header

Parámetros del Body application/jsonRequerido

Ejemplos

Respuestas

🟢200Éxito
application/json
Body

Solicitud Ejemplo de Solicitud
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://your-api-server.com' \
--header 'X-Timestamp;' \
--header 'X-Nonce;' \
--header 'X-Signature;' \
--header 'X-Api-Key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "event": {
        "id": "e704c961-06d4-435f-b64a-46517ee456ca",
        "type": "quote.updated",
        "status": "blocked",
        "at": "2026-04-22T16:44:48.907Z",
        "next_action": "rejected",
        "pause_reason": "client_blocked",
        "data": {
            "reason": "worker_process_state_changed",
            "previous_next_action": "wait_identity_validation",
            "next_action": "rejected",
            "previous_pause_reason": "identity_validation_pending",
            "pause_reason": "client_blocked"
        }
    },
    "cotizacion": {
        "id": "69e8ef5ab9ba4c3ba47ba54d",
        "status": "Error en la subida",
        "updated_at": "2026-04-22T16:44:48.914Z"
    },
    "process": {
        "state": "blocked",
        "next_action": "rejected",
        "pause_reason": "client_blocked",
        "can_continue": false,
        "checkpoints": {
            "referencias_validadas": false,
            "oferta_seleccionada": false,
            "contrato_firmado": false,
            "imei_validado": false
        }
    }
}'
Respuesta Ejemplo de Respuesta
{}
Modificado en 2026-04-29 15:02:40
Anterior
Historial de Eventos
Siguiente
reference.requested
Built with