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

imei.validated

Desarrollando
Webhook
POST
imei.validated

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": "b6a13b7d-04d7-47d9-a108-4ab653830035",
        "type": "imei.validated",
        "status": "action_required",
        "at": "2026-04-29T03:55:37.556Z",
        "next_action": "continue",
        "pause_reason": null,
        "data": {
            "status": null,
            "provider": "xcel",
            "model": "SM-A075M",
            "expected_model": "SM-A075M"
        }
    },
    "cotizacion": {
        "id": "69f0e502dbbd81204dc570d8",
        "status": "Análisis crediticio cache completado",
        "updated_at": "2026-04-29T03:55:37.557Z"
    },
    "process": {
        "state": "action_required",
        "next_action": "continue",
        "pause_reason": null,
        "can_continue": true,
        "checkpoints": {
            "referencias_validadas": true,
            "oferta_seleccionada": true,
            "contrato_firmado": true,
            "imei_validado": true
        }
    }
}'
Respuesta Ejemplo de Respuesta
{}
Modificado en 2026-04-29 15:02:55
Anterior
reference.accepted
Siguiente
contract.signed
Built with