Deregistrations
Create a deregistration

Create a deregistration

⚠️

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.
  • identificacion (integer) : Identification number. Possible values:
    • 1: DNI
    • 2: Passport
    • 6: NIE
  • dni (string) : National identity document.
  • situacion (integer) : Situation number, 2 digits. Possible values:
  • fecha_real (date) : Deregistration date, format YYYY-MM-DD.
  • fecha_vacaciones (date) : Holiday date, format YYYY-MM-DD. Optional.
  • indicativoSAA (integer) : Mandatory field on deregistrations for reporting paid holiday, maximum 3 digits. Optional.
  • duplicate (integer) : Get the duplicate PDF as base64 in JSON format in the response; possible values are 1 or null. Optional.
  • inactividad_z (string) : The deregistration situation must be a TERMINATING value and the actual deregistration date must be the same as the actual registration date of the employment relationship. Optional. Possible values: S = Yes, N or empty = No
  • dias_trabajados (integer) : Optional. Can only be entered on deregistrations and for certain schemes. For part-time contracts, these are the days worked in the month in which the deregistration takes place.
  • fecha_fin_temporal (date) : Optional. End date for temporary contracts.
  • obtener_idc (integer) : Get the IDC PDF as base64 in JSON format in the response; possible values are 1 or null. Optional. The request will take longer to respond.
POST /baja
{
  "test": 1,
  "regimen": "0111",
  "ccc": 12345678901,
  "nss": "123456789012",
  "identificacion": 1,
  "dni": "12345678A",
  "situacion": 93,
  "fecha_real": "2023-11-01",
  "fecha_vacaciones": "2024-07-15",
  "indicativoSAA": 123,
  "duplicate": 1,
  "inactividad_z": "N"
}

Response

Respuesta
{
  "success": true,
  "message": "OK",
  "data": {
    "file": {
      "contentType": "application/pdf",
      "name": "document.pdf",
      "content": "base64"
    },
    "idc": {
      // Si se envia obtener_idc = 1
      "contentType": "application/pdf",
      "name": "document.pdf",
      "content": "base64"
    }
  }
}