Contrat@ data and fingerprint
Parameters
- dni (string) : National identity document.
- ccc (string) : Contribution account code, 11 digits.
- startDate (date) : Contract start date, format YYYY-MM-DD.
GET /contrata/data
{
"dni": "01234567A",
"ccc": "12345678901",
"startDate": "2025-01-01"
}Response
- id (string) : Contrat@ fingerprint, with format E-##-####-#######.
- contract_extensions (array) : Extensions communicated for the contract, one entry per extension and in the order Contrat@ returns them. Empty array if the contract has none.
- id (string) : Extension identifier, with format E-##-####-#######-##. The last two digits are the extension number.
- cif (string) : Company CIF/NIF/NIE.
- código_cuenta_cotización (string) : Contribution account code preceded by the scheme.
- fecha_inicio (date) : Extension start, format DD/MM/YYYY.
- fecha_fin (date) : Extension end, format DD/MM/YYYY.
- fecha_comunicación (date) : Date the extension was communicated to SEPE, format DD/MM/YYYY.
- existe_convenio_colectivo (string) : Possible values: SI, NO.
- discontinuidad (string) : Only for permanent seasonal contracts. Absent otherwise.
Respuesta
{
"success": true,
"message": "OK",
"data": {
"id": "E-28-2023-9999999",
"enterprise_data": [
{
"cif": "B99999999"
},
{
"name": "COMPANY NAME"
},
{
"residence": "CL CALLE 1"
},
{
"pais": "ESPAÑA"
},
{
"municipio": "MADRID"
},
{
"postal_code": "99999"
}
],
"account_data": [
{
"ccc_full": "011128199969999"
},
{
"economic_activity": "ACTIVIDADES DEPORTIVAS"
}
],
"working_center": [
{
"pais": "ESPAÑA"
},
{
"municipio": "MADRID"
}
],
"employee_data": [
{
"nif": "09929999L"
},
{
"name": "NAME EMPLOYEE"
},
{
"sexo": "HOMBRE"
},
{
"fecha_de_nacimiento": "DD/MM/YYYY"
},
{
"nivel_formativo": "PRIMERA ETAPA DE EDUCACIÓN SECUNDARIA CON TÍTULO DE GRADUADO ESCOLAR O EQUIVALENTE."
},
{
"nss": "999999999999"
},
{
"nacionalidad": "ESPAÑA"
},
{
"municipio_de_domicilio": "MADRID"
},
{
"pais_de_domicilio": "ESPAÑA"
}
],
"contract_data": [
{
"cno": "ORGANIZADORES DE CONFERENCIAS"
},
{
"startDate": "DD/MM/YYYY"
},
{
"communicateDate": "DD/MM/YYYY"
},
{
"tipo_de_jornada": "JORNADA ANUAL"
},
{
"duración_jornada": "Horas :0072"
}
],
"contract_data_other": [],
"copy_basic_data": [
{
"signatureText": "NO EXISTE REPRESENTACIÓN LEGAL"
}
],
"contract_extensions": [
{
"id": "E-28-2023-9999999-01",
"cif": "B99999999",
"código_cuenta_cotización": "0111 281999699 99",
"fecha_inicio": "DD/MM/YYYY",
"fecha_fin": "DD/MM/YYYY",
"fecha_comunicación": "DD/MM/YYYY",
"existe_convenio_colectivo": "SI"
},
{
"id": "E-28-2023-9999999-02",
"cif": "B99999999",
"código_cuenta_cotización": "0111 281999699 99",
"fecha_inicio": "DD/MM/YYYY",
"fecha_fin": "DD/MM/YYYY",
"fecha_comunicación": "DD/MM/YYYY",
"existe_convenio_colectivo": "NO"
}
]
}
}