Query multiple collective agreements per worker
⚠️
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.
- identificacion (integer) : Identification number. Possible values:
- 1: DNI
- 2: Passport
- 6: NIE
- dni (string) : National identity document.
GET /convenios-colectivos-por-trabajador
{
"test": 1,
"regimen": "0111",
"ccc": "12345678901",
"nss": 123456789012,
"identificacion": 1,
"dni": "12345678A"
}Response
Respuesta
{
"success": true,
"message": "OK",
"data": {
"list": [
{
"startDate": "2024-10-08",
"endDate": null,
"convenio": "66006994423467",
"convenio_descripcion": "GESTORIAS ESPECIALES DE PRACTICAS"
},
{
"startDate": "2023-05-08",
"endDate": null,
"convenio": "60557956030733",
"convenio_descripcion": "GESTORIAS ADMINISTRATIVAS"
}
]
}
}