Unpaid work placements
Record days

Record days for unpaid work placements

Parameters

  • regimen (integer) : Scheme, 4 digits. Possible values:
  • 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.
  • startDate (date) : Date, format YYYY-MM-DD. The day will always be 01
  • dia_efectivo (integer) : Actual days of the placement. Optional.
  • dia_previsto_itat (integer) : Expected placement days under ITAT (temporary disability due to an occupational accident). Optional.
  • dia_previsto (integer) : Expected placement days under direct payment. Optional.
  • indicativo_practica (string) : Placement indicator (N - not a placement), optional. Possible values:
    • N = Not a placement.
  • no_remunerada (number (1)) : 1 = unpaid placement; otherwise do not send any value. Optional
POST /pract-no-remun
{
  "regimen": "0111",
  "ccc": 12345678901,
  "nss": 123456789012,
  "identificacion": 1,
  "dni": "12345678A",
  "startDate": "2023-01-01",
  "no_remunerada": 1,
  "dia_efectivo": 1,
  "dia_previsto_itat": 2,
  "dia_previsto": 3
}

Response

Respuesta
{
  "success": true,
  "message": "OPERACION REALIZADA CORRECTAMENTE"
}