Authorizations
Headers
ID of the integration you want to interact with.
curl --request GET \
--url https://api.kombo.dev/v1/custom/datev/data-pushes \
--header 'Authorization: Bearer <token>' \
--header 'X-Integration-Id: <x-integration-id>'{
"status": "<string>",
"data": {
"data_pushes": [
{
"id": "<string>",
"type": "GENERAL",
"created_at": "2023-11-07T05:31:56Z",
"upload_jobs": [
{
"id": "<string>",
"file_name": "<string>",
"state": "FAILED",
"file": "<string>"
}
]
}
]
}
}Returns all “DATEV Data Pushes” of the last 2 months. You can use this endpoint to give your users transparency about submitted “ASCII-Files” and their status. Each data push can contain multiple files that were submitted.
curl --request GET \
--url https://api.kombo.dev/v1/custom/datev/data-pushes \
--header 'Authorization: Bearer <token>' \
--header 'X-Integration-Id: <x-integration-id>'{
"status": "<string>",
"data": {
"data_pushes": [
{
"id": "<string>",
"type": "GENERAL",
"created_at": "2023-11-07T05:31:56Z",
"upload_jobs": [
{
"id": "<string>",
"file_name": "<string>",
"state": "FAILED",
"file": "<string>"
}
]
}
]
}
}ID of the integration you want to interact with.
Was this page helpful?