latestOpenAPI 3.0.02026-08-1042814.2 KB

17ba5cf3a3c1

Issue a policy for a given quote

post/api/v2/{quote_id}/issue

Path parameters

quote_idstring uuid required

Request body

date_of_birthstring date required

ISO8601 date format

emailstring email required
first_last_namestring required

Usually the paternal name

first_namestring required

Given name

marital_status'married' | 'divorced' | 'single' | 'civil_union' | 'widowed' required
mobilestring required

E.164 mexican formatted number, has a plus sign and 13 digits

monthly_incomeinteger required

It can be used to filter quotes that are suitable for this income and to determine risk

professionstring required
rfcstring required

Mexican tax id for individuals, has 4 letters followed by 6 digits and another 3 chars

second_last_namestring

Usually the maternal name

sex_at_birth'male' | 'female' required

It can be used to filter quotes

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"
  },
  "beneficiaries": [
    {
      "date_of_birth": "2000-01-01",
      "first_last_name": "Doe",
      "first_name": "Juan, Julia",
      "second_last_name": "Dae"
    }
  ],
  "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": {
    "date_of_birth": "2000-01-01",
    "documents": [
      {
        "url": "/api/v2/documents/135"
      }
    ],
    "effective_date": "2023-05-16",
    "expiration_date": "2024-05-16",
    "first_last_name": "Doe",
    "first_name": "Juan, Julia",
    "id": 1,
    "master_policy_id": "neobank_1",
    "policy_id": "neobank_group_life_cert_000001",
    "premium": 24.9,
    "rfc": "SIMA971112UVA",
    "second_last_name": "Dae",
    "status": "issued"
  }
}