POST
/
custom
/
datev
/
push-data
/
payroll
Push payroll data to DATEV
curl --request POST \
  --url https://api.kombo.dev/v1/custom/datev/push-data/payroll \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Integration-Id: <x-integration-id>' \
  --data '{
  "payroll_month": "2023-11-07T05:31:56Z"
}'
{
"status": "<string>",
"data": {
"files": [
{
"name": "<string>",
"content": "<string>"
}
]
},
"warnings": [
{
"message": "<string>"
}
]
}

Authorizations

Authorization
string
header
required

Create an API key on the Secrets page in the Kombo dashboard.

Headers

X-Integration-Id
string
required

ID of the integration you want to interact with.

Body

application/json

POST /custom/datev/push-data/payroll Request body

payroll_month
string<date-time>
required

Specify the month for which the payroll data should be submitted. The date must be specified as the first day of a month (e.g. 2022-12-01).

Response

POST /custom/datev/push-data/payroll Positive response

status
string
required
Allowed value: "success"
data
object
required
warnings
object[]
required

These are the interaction warnings that are shown in the dashboard. They are meant to provide debug information to you. We recommend logging them to the console.