---
title: "Issue a policy for a given quote"
method: POST
path: "/api/v2/{quote_id}/issue"
---

# Issue a policy for a given quote

`POST /api/v2/{quote_id}/issue`

## Path parameters

- `quote_id` string, uuid, required

## Request body

- GroupLifeIssueRequest
  - `address` Address, required — Same names and meanings as Google's geoocoding API. https://developers.google.com/maps/documentation/geocoding/requests-geocoding
    - `administrative_area_level_1` string — Named `Estado`
    - `interior_number` string — Name `Número interior`
    - `locality` string — Can be both `Municipio` or `Delegación`
    - `postal_code` string — 5 digits
    - `route` string — Named `Calle`
    - `street_number` string — Named `Número exterior`
    - `sublocality_level_1` string — Named `Colonia`
  - `beneficiaries` object[], required
    - `date_of_birth` string, date, required — ISO8601 date format
    - `first_last_name` string, required — Usually the paternal name
    - `first_name` string, required — Given name
    - `percentage` integer, required — How much of the policy's sum insured will be given to this beneficiary. The sum of this percentage across all beneficiaries should be 100%
    - `relationship` 'grandparent' | 'domestic_partner' | 'sibling_in_law' | 'spouse' | 'ex-spouse' | 'sibling' | 'child' | 'parent' | 'parent_of_my_child' | 'step_parent' | 'grandchild' | 'child_in_law' | 'cousin' | 'partner' | 'nibling' | 'parent_in_law' | 'pibling' | 'other', required — The relationship between the customer and this beneficiary
    - `second_last_name` string — Usually the maternal name
    - `sex_at_birth` 'male' | 'female', required — It can be used to filter quotes
  - `date_of_birth` string, date, required — ISO8601 date format
  - `email` string, email, required
  - `first_last_name` string, required — Usually the paternal name
  - `first_name` string, required — Given name
  - `marital_status` 'married' | 'divorced' | 'single' | 'civil_union' | 'widowed', required
  - `mobile` string, required — E.164 mexican formatted number, has a plus sign and 13 digits
  - `monthly_income` integer, required — It can be used to filter quotes that are suitable for this income and to determine risk
  - `profession` string, required
  - `rfc` string, required — Mexican tax id for individuals, has 4 letters followed by 6 digits and another 3 chars
  - `second_last_name` string — Usually the maternal name
  - `sex_at_birth` 'male' | 'female', required — It can be used to filter quotes
  - `underwriting` object, required — Any questions the customer has to answer so the policy's risk can be determined
    - `has_covid_symptoms` boolean, required

## Response `201`

Success

- object
  - `data` Policy
    - `date_of_birth` string, date — ISO8601 date format
    - `documents` object[]
      - `type` 'policy' | 'policy_application'
      - `url` string
    - `effective_date` string, date — When the customer's coverage starts - i.e. they can request a claim if something happens
    - `email` string, email
    - `expiration_date` string, date — When the customer's coverage ends - i.e. they can no longer use the insurance
    - `first_last_name` string — Usually the paternal name
    - `first_name` string — Given name
    - `id` integer — Unique identifier that can be used to get a policy via `GET /api/v2/policies/{id}`
    - `master_policy_id` string — The ID of the master policy in the insurance carrier's system. Customers will need this information to request a claim
    - `policy_id` string — This individual policy's ID in the insurance carrier's system. Customers will need this information to request a claim
    - `premium` number
    - `product` 'group_life'
    - `rfc` string — Mexican tax id for individuals, has 4 letters followed by 6 digits and another 3 chars
    - `second_last_name` string — Usually the maternal name
    - `status` 'pending' | 'issued' | 'in_force' | 'cancelled' | 'rescinded' | 'expired' | 'declined' | 'voided'

## Other responses

- `401` — Unauthorized
- `404` — Not found
- `422` — Unprocessable entity (validation errors and/or underwriting)

---

[API](https://skmtc.net/super/apis/super-seguros.md) · [All operations](https://skmtc.net/super/apis/super-seguros/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/super/super-seguros/revisions/17ba5cf3a3c1/schema)
