Duplicates of TA documents (registration or deregistration report)
⚠️
Add test=1 to run tests without real effects. In production, omit this parameter.
Parameters
- test (number (1)) : For testing, add the test=1 parameter. It must be omitted in production.
- regimen (integer) : Scheme, 4 digits. Possible values:
- 0111: General Scheme
- Table of scheme codes (opens in a new tab)
- ccc (integer) : Contribution account code, 11 digits.
- nss (integer) : Social Security number, 12 digits.
- startDate (date) : Date, format YYYY-MM-DD.
- movType (string) : Movement type. Possible values:
- ALTA
- BAJA
GET /duplicate-ta
{
"regimen": "0111",
"ccc": "12345678901",
"nss": "123456789011",
"startDate": "2023-01-01",
"movType": "ALTA"
}Response
Respuesta
{
"success": true,
"message": "OK",
"data": {
"file": {
"contentType": "application/pdf",
"name": "document.pdf",
"content": "base64"
}
}
}