GET
/
custom
/
datev
/
available-documents
curl --request GET \
  --url https://api.kombo.dev/v1/custom/datev/available-documents \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Integration-Id: <x-integration-id>'
{
  "status": "success",
  "data": {
    "results": [
      {
        "document_type": "LOBN",
        "available_for_employees": [
          {
            "id": "8Xi6iZrwusZqJmDGXs49GBmJ",
            "remote_id": "123456"
          }
        ],
        "is_company_document": false
      },
      {
        "document_type": "LOJO",
        "available_for_employees": [],
        "is_company_document": true
      }
    ]
  }
}

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.

Query Parameters

period
string
required

Provide the period in the format YYYY-MM for which to check for available documents.

Response

200
application/json
GET /custom/datev/available-documents Successful response
status
enum<string>
required
Available options:
success
data
object
required
Example:
{
  "results": [
    {
      "document_type": "LOBN",
      "available_for_employees": [
        {
          "id": "8Xi6iZrwusZqJmDGXs49GBmJ",
          "remote_id": "123456"
        }
      ],
      "is_company_document": false
    },
    {
      "document_type": "LOJO",
      "available_for_employees": [],
      "is_company_document": true
    }
  ]
}