Report of contribution data and the settlement period for a worker
The same report as Contribution data and settlement period, limited to a single worker within the contribution account.
Parameters
- 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.
- period (string) : Settlement period, format YYYY-MM.
GET /idc-nss
{
"regimen": "0111",
"ccc": "12345678901",
"nss": "281234567890",
"period": "2023-02"
}The TGSS settlement period is month/year, not a date: that is why period is sent as YYYY-MM and not as YYYY-MM-DD.
Response
Respuesta
{
"success": true,
"message": "OK",
"data": {
"file": {
"contentType": "application/pdf",
"name": "document.pdf",
"content": "base64"
}
}
}