Mexican Documents

The FrankieOne KYC v2 API supports Mexican documents for identity verification. This guide outlines the requirements and best practices for handling these documents.

Supported Mexican Documents

The FrankieOne KYC v2 API currently supports the following Mexican document:

DocumentCode
National IDNATIONAL_ID

Mexican National ID Card (INE/IFE)

The Mexican National ID Card—issued as either INE (Instituto Nacional Electoral) or IFE (Instituto Federal Electoral)—serves as an official identification document and voter ID. It contains key personal information, including the individual’s full name, date of birth, unique ID number (CURP), and expiration date.

Required Fields:

Field NameFieldNotes
Document TypetypeMust be NATIONAL_ID for Mexican National ID cards.
CountrycountryMust be MEX (Mexico).
Date of BirthdateOfBirthFormat: YYYY-MM-DD. Enter exactly as shown on the ID.
Paternal Family NamepaternalFamilyNameRequired for Mexican IDs. Use uppercase and match the spelling on the document.
Maternal Family NamematernalFamilyNameRequired for Mexican IDs. Use uppercase and match the spelling on the document.
Given NamesgivenNameInclude all given names as shown on the ID, preserving order and capitalization.

Example Document Structure

1{
2 "document": {
3 "class": "IDENTITY", // Document class should be 'IDENTITY' for KYC purposes
4 "documentId": "92de15f64-5717-4562-b3fc-2c963f6665a7", // Unique identifier for this document instance
5 "primaryIdentifier": "000734130", // ID number as shown on the Mexican National ID
6 "type": "NATIONAL_ID", // Document type must be 'NATIONAL_ID' for Mexican IDs
7 "country": "MEX" // Country code must be 'MEX' for Mexico
8 },
9 "supplementaryData": {
10 "type": "NATIONAL_ID", // Reiterate document type for supplementary data
11 "paternalFamilyName": "MENDOZA", // Paternal family name (first surname), uppercase, as on the ID
12 "maternalFamilyName": "GARCIA" // Maternal family name (second surname), uppercase, as on the ID
13 }
14}
Key Considerations for Mexican National ID

When processing Mexican National ID cards, ensure the following to avoid common validation errors:

  • Both paternal and maternal family names are required. Enter them exactly as shown on the ID, using uppercase letters.
  • Given names: Include all given names in the correct order and with proper capitalization.
  • Date of birth: Use the exact format YYYY-MM-DD as printed on the document.
  • ID number: Enter the complete and correct ID number as it appears on the card.
Document Number Verification

The Mexican National ID may be issued as either:

  • INE (Instituto Nacional Electoral) — the current version
  • IFE (Instituto Federal Electoral) — the previous version

Both INE and IFE cards are valid for verification. Ensure the document number is entered exactly as it appears on the card, regardless of version.