Call-ups
Report call-ups

Report call-ups

Parameters

  • cif (string) : Company CIF.
  • regimen (integer) : Scheme, 4 digits. Possible values:
  • ccc (string) : Contribution account code, 11 digits.
  • duplicate (integer) : Optional. Get the PDF as base64 in JSON format in the response; possible values 1 or null.
  • employees (array) : Worker details.
    • doc (string) : Identifier of the natural person.
    • docType (string) : Document type. Possible values:
      • D: NIF/DNI,
      • E: NIE,
      • U: EU citizen,
      • W: Passport.
    • name (string) : Employee's first name.
    • surname (string) : Employee's first surname.
    • lastSurname (string) : Employee's second surname, mandatory for a NIF/DNI.
    • nss (integer) : Social Security number, 12 digits.
    • sex (integer) : Possible values:
      • 1 = Male
      • 2 = Female
    • dateOfBirth (date) : Date of birth, format YYYY-MM-DD.
    • nationality (integer) : Employee's nationality. Possible values:
    • municipality (integer) : Employee's municipality. Possible values:
    • country (integer) : Employee's country of residence. Possible values:
    • nss (integer) : Social Security number, 12 digits.
    • startDate (date) : Start date, format YYYY-MM-DD.
    • endDate (date) : Optional. End date, format YYYY-MM-DD.
    • occupation (integer) : National Classification of Occupations (CNO), 4 digits. Possible values:
    • nivelFormativo (integer) : Educational level, 2 digits.
    • question (string) : Optional. Whether they are joining the activity. Possible values:
      • S = Yes.
      • N = No.
    • sepeId (string) : Optional. Contract identifier at SEPE, format E-99-9999-9999999.
POST /llamamientos
{
  "cif": "9999999B",
  "regimen": "0112",
  "ccc": "27770999999",
  "employees": [
    {
      "doc": "9999999B",
      "startDate": "2023-11-05",
      "endDate": "2023-11-05",
      "nivelFormativo": 12,
      "question": "S"
    }
  ]
}

Response

Respuesta
{
  "success": true,
  "message": "OK",
  "data": {
    "send": 1,
    "not_send": 0,
    "data": [
      {
        "success": true,
        "doc": "9999999B",
        "id": " E-28-2024-9906993",
        "file": {
          "contentType": "application/pdf",
          "name": "document.pdf",
          "content": "base64"
        }
      }
    ]
  }
}