Temporary disability (IT)
Report

Report a temporary disability (IT)

⚠️

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.
  • dit (object) : Temporary disability data
    • contingencia (integer) :
      • 1: Common illness
      • 2: Non-occupational accident
      • 3: Occupational accident
      • 4: Occupational disease
      • 5: Observation periods
    • fecha_baja (date) : IT start date, format YYYY-MM-DD.
    • puesto_trabajo (string) : Job position.
    • cno (integer) : National Classification of Occupations, maximum 4 digits. Possible values:
    • tipo_contrato (integer) : Contract type, 1 digit. Possible values:
      • 1: Permanent seasonal, part-time.
      • 2: Other.
    • func_desemp (string): Description of duties.
  • dec (object) : Financial data
    • base_cotizacion (decimal) : Contribution base.
    • dias_cotizados (number) : Days contributed / month.
    • cot_otros_concept (decimal) : Optional. Previous year's contributions for other items
    • dias_cot_ano_ant_otros_concept (number) : Optional. Days contributed in the previous year for other items
POST /it
{
  "test": 1,
  "regimen": "0111",
  "ccc": 12345678901,
  "nss": "123456789012",
  "dit":{
      "contingencia": 2,
      "fecha_baja": "2026-02-05",
      "puesto_trabajo": "MONITOR",
      "cno": "3724",
      "tipo_contrato": 2,
      "func_desemp": "monitor en centros juveniles"
  },
  "dec": {
      "base_cotizacion": 937.04,
      "dias_cotizados": 18
  }
}

Response

Respuesta
{
  "success": true,
  "message": "OK",
  "data": {
    "file": {
      "contentType": "application/pdf",
      "name": "document.pdf",
      "content": "base64"
    }
  }
}