Uruguay
Below you will see the fields designated for the country Uruguay.
Document Type | Description | Length | Data Type | Verification Digit | Mandatory for methods | Document ID Example |
CI | Cédula de Identidad = Identity card | 8 (excluding dashes and dots) | Numeric | Last digit |
| 8.741.777-1 26669058 |
RUT | Registro Único Tributario = Single tax record | 12 (excluding dashes) | Numeric | Last digit |
| 21-100342-001-7 211003420017 080101220012 |
Below 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, hyphen, lowercase/uppercase).Example: RUT
Example: CI
Valid Id Response
{
"document": {
"id" :"216298610018",
"type" :"RUT"
},
"country" : "URY"
}
Note that for RUT validation you can add or omit the hypens.
{
"document": {
"id" :"5.880.151-9",
"type" :"ci"
},
"country" : "URY"
}
Note that for CI validation you can add or omit the hypens.
"code": "200",
"description": "Valid id and type document"
}
Validate IDs through the LP api:
Last modified 1mo ago