Updates
Contract change (type/coefficient)

Contract change (type/coefficient)

⚠️

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:
  • ccc (integer) : Contribution account code, 11 digits.
  • nss (integer) : Social Security number, 12 digits.
  • dni (string) : National identity document.
  • startDate (date) : Change date, format YYYY-MM-DD..
  • contractType (integer) : Contract type, 3 digits.
  • coeficiente (integer) : Part-time coefficient, for part-time working hours, maximum 3 digits. Optional.
  • worker_collective (integer) : Worker collective; mandatory for contract types (402, 502, 407, 507), 3 digits, optional. Possible values:
PUT /contract-coeficiente
{
  "regimen": "0111",
  "ccc": "12345678901",
  "dni": "12345678B",
  "nss": "123456789011",
  "startDate": "2023-01-01",
  "contractType": "100",
  "coeficiente": "500",
  "worker_collective": "967"
}

Response

Respuesta
{
  "success": true,
  "message": "OK"
}