added
Added taxId to personalInfo object in /api/partner/v1/kyc/verification-link
7 months ago by Daniel Hurtado
taxId (string) field added to the personalInfo
object.
- This field is specifically used for Mexican users to store their RFC (Registro Federal de Contribuyentes), which is required for regulatory and tax compliance in Mexico.
- The
taxId
follows the RFC format. You can find more information about the RFC format here.
Example:
The personalInfo
object has been updated to include the taxId
field, as shown below:
{
"userId": "2da954cd-2fda-49c2-ad77-6208c5ab71d6",
"country": "MX",
"personalInfo": {
"profession": "Employee",
"phoneNumber": "+524401234567",
"birthCountry": "MX",
"taxId": "LOZG7802117B9"
}
}
- Usage Notes:
- The
taxId
is required for all Mexican users (country: "MX"
). - Ensure that the
taxId
is correctly formatted according to the RFC guidelines for proper validation and compliance.
- The
This addition is part of our ongoing effort to enhance support for regional compliance and to better meet the regulatory requirements for users in Mexico.