1. Proceso de Venta
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. Proceso de Venta

Referencias - solicitar

Desarrollando
POST
https://integrations.paydaymx.com/public-api/v1/sales-process/cotizaciones/{COTIZACION_ID}/referencias

Solicitud

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

Parámetros de Header

Parámetros del Body application/jsonRequerido

Ejemplos

Respuestas

🟢200Éxito
application/json
Body

🟠409
Solicitud Ejemplo de Solicitud
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://integrations.paydaymx.com/public-api/v1/sales-process/cotizaciones/69fa7b48e65c5ec021a8aeb0/referencias' \
--header 'X-Timestamp;' \
--header 'X-Nonce;' \
--header 'X-Signature;' \
--header 'X-Api-Key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "telefono": "5568726342",
    "referencia": "Maria Lopez",
    "bodyVariables": ["Guillermo Gutierrez"]
}'
Respuesta Ejemplo de Respuesta
200 - Éxito
{
    "cotizacion": {
        "id": "69e8ef5ab9ba4c3ba47ba54d",
        "process": {
            "state": "waiting",
            "next_action": "wait_identity_validation",
            "pause_reason": "identity_validation_pending",
            "can_continue": false,
            "checkpoints": {
                "referencias_validadas": false,
                "oferta_seleccionada": false,
                "contrato_firmado": false,
                "imei_validado": false
            }
        }
    },
    "webhook": {
        "id": "67fd2dc8-1318-4013-b158-a5097e4659c8",
        "url": "https://01kpttzjwecx2tdkf61m2sxzjx.hooks.webhookrelay.com",
        "events": [
            "quote.created",
            "quote.updated",
            "reference.requested",
            "reference.accepted",
            "reference.rejected",
            "offer.previewed",
            "offer.selected",
            "contract.signed",
            "imei.validated"
        ],
        "active": true,
        "created_at": "2026-04-22T16:15:05.074Z",
        "updated_at": "2026-04-22T16:15:05.074Z"
    }
}
Modificado en 2026-05-05 23:35:20
Anterior
Cotizacion - crear
Siguiente
Ofertas - previsualizar
Built with