/finance/creditor

Lists all open creditors

List all journals that are creditors

Base URL
https://<tenant>.dieagenturverwaltung.de/api/v2
Required Security
ApiKeyAuth (Authorization: Session Token)
Produces
application/json

Request

Query Parameters

NameTypeRequiredDescription
searchstringNoThe search on fields: name, identification_code, person.first_name, person.last_name, organisation.name, accounting_contact.name, accounting_contact.identification_code
organisation_idintegerNoThe id of the entity defined in list_type, can be multiple
person_idintegerNoThe id of the entity defined in list_type, can be multiple
pageintegerNoThe page
page_sizeintegerNoThe page size
cURL
curl -X GET 'https://<tenant>.dieagenturverwaltung.de/api/v2/finance/creditor?search=string&organisation_id=123' \
  -H 'Accept: application/json' \
  -H 'Authorization: Session Token'

Responses

Example
{
  "collection": [
    {...}
  ],
  "count": 123,
  "page": 123,
  "page_size": 123
}
400Bad Request
rest_errors.Errorapplication/json
Example
{
  "code": 123,
  "extras": {...},
  "message": "string",
  "status_code": 123
}
404Not Found
rest_errors.Errorapplication/json
Example
{
  "code": 123,
  "extras": {...},
  "message": "string",
  "status_code": 123
}
500Internal Server Error
rest_errors.Errorapplication/json
Example
{
  "code": 123,
  "extras": {...},
  "message": "string",
  "status_code": 123
}