latestOpenAPI 3.0.02026-08-1042814.2 KB

17ba5cf3a3c1

Get a list of quotes for a customer

post/api/v2/{product}/quotes

Path parameters

product'life' | 'group_life' required

Request body

OR

Example request

{
  "address": {
    "administrative_area_level_1": "CDMX",
    "interior_number": "12, Mz 1 Lt 1",
    "locality": "Benito Juaréz, Naucalpan",
    "postal_code": "22222",
    "route": "Paseo de la Reforma",
    "street_number": "285",
    "sublocality_level_1": "Some Colonia"
  },
  "date_of_birth": "2000-01-01",
  "first_last_name": "Doe",
  "first_name": "Juan, Julia",
  "mobile": "+5212222222222",
  "monthly_income": 3000,
  "profession": "Ejecutivo de ventas",
  "rfc": "SIMA971112UVA",
  "second_last_name": "Dae"
}

Response

Success

Example response

{
  "data": {
    "quotes": [
      {
        "annual_premium": 650.11,
        "coverages": {
          "life": 250000
        },
        "link": "/studio/prefill?token=asdjoj1209jdokasjd...",
        "monthly_premium": 50.15,
        "term_years": 1
      }
    ]
  }
}