Argentina
Below you will see the fields designated for country Argentina
Document Type | Description | Length | Data Type | Verification digit | Mandatory for methods | Document ID Examples |
"CUIT" "CUIL" "CDI" | Tax ID | 11 (excluding dashes) | Numeric | last digits |
| 20115872045 27-32548697-5 30-31.145.201-7 |
DNI | Documento nacional de identidad = National identity card | 8 | Numeric | - |
| 40754127 04.784.215 |
Note: "CUIT" "CUIL" "CDI" are the only document types allowed for
BankTransfer
PayIns in Argentina. "DNI" is not a valid document type to execute a BankTransferBelow you can find some examples to validate through our api. You can also test with the examples above. Please, note the structure of each
ID type
: lenght, dots, hyphens,dashes lowercase/uppercase. To validate Argentine documents through the API, you can add or omit the dots, hyphens and lowercase/uppercase.Example: DNI
Example: CUIL
Example: CUIT
Valid ID Response
{
"document": {
"id" :"30879547",
"type" :"dni"
},
"country" : "ARG"
}
{
"document": {
"id" :"27-06879674-7",
"type" :"CUIL"
},
"country" : "ARG"
}
{
"document": {
"id" :"30-29.746.276-4",
"type" :"CUiT"
},
"country" : "ARG"
}
{
"code": "200",
"description": "Valid id and type document"
}
Validate IDs through the LP api:
Last modified 1mo ago