General
- Introduction
- Getting started
- Implementation guide
- FAQ
Features
Guides
HRIS API Reference
- Employees
- Organization
- Employee Documents
- Time off
- Time and attendance
General API Reference
- Kombo Connect
- Integrations
- Filtering
- Custom Fields
- Other
DATEV
- Getting Started
- DATEV Payroll
- DATEV Documents ( Payslips )
- DATEV eAU
- DATEV ( legacy )
Query the status of the eAU request
This endpoint queries the status of the eAU request for the given DATEV integration.
curl --request GET \
--url https://api.kombo.dev/v1/custom/datev/eau-requests/{eau_id} \
--header 'Authorization: Bearer <token>' \
--header 'X-Integration-Id: <x-integration-id>'
{
"status": "success",
"data": {
"raw": {
"source": "<string>",
"start_work_incapacity": "<string>",
"collaboration_identifier": "<string>",
"feedbacks_from_health_insurance": [
{
"guid": "<string>",
"contact_person": {
"gender_contact_person": "M",
"name": "<string>",
"telephone": "<string>",
"fax": "<string>",
"email": "<string>",
"name1_health_insurance": "<string>",
"name2_health_insurance": "<string>",
"name3_health_insurance": "<string>",
"postal_code": "<string>",
"city": "<string>",
"street": "<string>",
"house_number": "<string>"
},
"incapacity_for_work": {
"start_work_incapacity_employer": "<string>",
"start_work_incapacity_au": "<string>",
"end_work_incapacity_au": "<string>",
"actual_end_work_incapacity_au": "<string>",
"date_of_diagnosis": "<string>",
"flag_current_work_incapacity": 123,
"accident_at_work": true,
"assignment_accident_insurance_doctor": true,
"other_accident": true,
"start_hospitalisation": "<string>",
"end_hospitalisation": "<string>",
"initial_certificate": true,
"automatic_feedback_until": "<string>"
},
"error_block_list": [
{
"origin": "<string>",
"error_number": "<string>",
"error_text": "<string>",
"error_value": "<string>"
}
]
}
]
}
}
}
Authorizations
Headers
ID of the integration you want to interact with.
Path Parameters
GET /custom/datev/eau-requests/:eau_id parameter
Response
success
DATEV source system system (LuG or LODAS).
2022-01-13
The unique identifier of the feedback.
Name of the contact person.
Telephone number of the contact person.
Fax number of the contact person.
Email address of the contact person.
Name of the health insurance.
Postal code of the contact person.
City of the contact person.
Street of the contact person.
House number of the contact person.
[DEPRECATED] Gender of the contact person. M (male), W (female), X (unknown), D (divers).
M
, F
, X
, D
[DEPRECATED] Second part of the health insurance name.
[DEPRECATED] Third part of the health insurance name.
yyyy-MM-dd date provided in the initial request.
yyyy-MM-dd start date of the AU.
yyyy-MM-dd expected end date of the AU.
yyyy-MM-dd date of diagnosis
Flag: 0 = unknown Flag: 1 = Health insurance not responsible Flag: 2 = incapacity for work Flag: 3 = hospitalisation Flag: 4 = eAU or hospitalisation-report is not existing Flag: 5 = rehabilitation prevention Flag: 6 = inpatient hospital treatment Flag: 7 = in verification Flag: 8 = other evidence available Flag: 9 = forwarding procedure
If the accident is a work accident according to § 295 Para. 1 SGB V.
Indication of whether the insured person has been assigned to the accident insurance doctor.
If the accident is the result of another accident according to § 295 Para. 1 SGB V.
Whether the certificate is initial or a follow up certificate.
yyyy-MM-dd date until the health insurance will update this requests status.
yyyy-MM-dd actual end date after the hospitalization report was received.
[DEPRECATED] yyyy-MM-dd start date of the hospitalization.
[DEPRECATED] yyyy-MM-dd end date of the actual hospitalization.
Origin of the error. (Health insurance or DATEV)
Error code
Human readable description of the error.
Erroneous value in case of a validation error. (e.g. date)
Internal DATEV identifier.
curl --request GET \
--url https://api.kombo.dev/v1/custom/datev/eau-requests/{eau_id} \
--header 'Authorization: Bearer <token>' \
--header 'X-Integration-Id: <x-integration-id>'
{
"status": "success",
"data": {
"raw": {
"source": "<string>",
"start_work_incapacity": "<string>",
"collaboration_identifier": "<string>",
"feedbacks_from_health_insurance": [
{
"guid": "<string>",
"contact_person": {
"gender_contact_person": "M",
"name": "<string>",
"telephone": "<string>",
"fax": "<string>",
"email": "<string>",
"name1_health_insurance": "<string>",
"name2_health_insurance": "<string>",
"name3_health_insurance": "<string>",
"postal_code": "<string>",
"city": "<string>",
"street": "<string>",
"house_number": "<string>"
},
"incapacity_for_work": {
"start_work_incapacity_employer": "<string>",
"start_work_incapacity_au": "<string>",
"end_work_incapacity_au": "<string>",
"actual_end_work_incapacity_au": "<string>",
"date_of_diagnosis": "<string>",
"flag_current_work_incapacity": 123,
"accident_at_work": true,
"assignment_accident_insurance_doctor": true,
"other_accident": true,
"start_hospitalisation": "<string>",
"end_hospitalisation": "<string>",
"initial_certificate": true,
"automatic_feedback_until": "<string>"
},
"error_block_list": [
{
"origin": "<string>",
"error_number": "<string>",
"error_text": "<string>",
"error_value": "<string>"
}
]
}
]
}
}
}