Retrieve 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
}
]
},
"warnings": [
{
"message": "This is an example warning!"
}
]
}