Paraguay
Type of ID | Description | Length | Variable Length | Type | Mandatory for methods | Example |
---|---|---|---|---|---|---|
CI | Cedula de Identidad | 7 | Not | Numeric |
| 1234567 |
RUC | Registro Unico de Contribuyentes | 9 | Not | Numeric |
| 12345678 |
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: CI
Example RUC
Valid ID Response
{
"document": {
"id" :"1234567",
"type" :"CI"
},
"country" : "PRY"
}
{
"document": {
"id" :"12345678",
"type" :"RUC"
},
"country" : "PRY"
}
{
"code": "200",
"description": "Valid id and type document"
}
Validate IDs through the LP api:
Last modified 1mo ago