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

Validar ICCID + IMEI

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

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

Solicitud Ejemplo de Solicitud
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://integrations.paydaymx.com/public-api/v1/sales-process/cotizaciones/69fa7b48e65c5ec021a8aeb0/iccid-imei/validar' \
--header 'X-Timestamp;' \
--header 'X-Nonce;' \
--header 'X-Signature;' \
--header 'X-Api-Key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "iccid" : "", // Enviar solo cuando xcel:true, si xcel:false enviar vacio
    "imei" : "359706680322897",
    "telefono_cliente" : "5512345678", // Enviar solo cuando xcel:false, si xcel:true enviar vacio
    "xcel": false
}'
Respuesta Ejemplo de Respuesta
{
    "cotizacion": {
        "id": "69f0e502dbbd81204dc570d8",
        "status": "vendido",
        "rating": "A",
        "score": 1000,
        "venta_con_inventario": false,
        "referencias": {
            "total": 1,
            "aceptadas": 1,
            "rechazadas": 0,
            "pendientes": 0,
            "minimo_cumplido": true
        },
        "producto": {
            "marca": "Samsung",
            "modelo": "Galaxy A06",
            "prefijo": "SM-A065M"
        },
        "pricing": {
            "precio": 2500,
            "enganche": 500,
            "porcentaje_enganche_aplicado": 0.08,
            "monto_a_financiar": 2000,
            "precio_financiado": 4860,
            "total_a_pagar": 5360
        },
        "plan": {
            "offer_id": "w26-m6-i1.25-f4860-e500",
            "semanas": 26,
            "meses": 6,
            "total_a_pagar": 5360
        },
        "process": {
            "state": "completed",
            "next_action": "completed",
            "pause_reason": null,
            "can_continue": false,
            "checkpoints": {
                "referencias_validadas": true,
                "oferta_seleccionada": true,
                "contrato_firmado": true,
                "imei_validado": true
            }
        },
        "notifications": {
            "webhooks_registrados": 1
        },
        "updated_at": "2026-04-29T17:35:24.321Z"
    },
    "sim": {
        "iccid": "8952050012345678901",
        "provider": "manual",
        "valido": true,
        "status": "manual",
        "disponible": true,
        "numero": "525512345678",
        "numero_masked": "********5678",
        "validated_at": "2026-04-29T17:35:14.149Z"
    },
    "imei": {
        "imei": "359706680322897",
        "provider": "xcel",
        "status": null,
        "brand": "Samsung",
        "model": "SM-A065M",
        "expected_model": "SM-A065M",
        "msisdn": null,
        "phone_source": "manual",
        "is_samsung": true,
        "enrollment_status": "Locked",
        "validated_at": "2026-04-29T17:35:24.113Z",
        "valido": true,
        "numero": null,
        "numero_masked": null
    }
}
Modificado en 2026-05-06 00:20:52
Anterior
Validar IMEI
Siguiente
Finalizar venta
Built with