curl --request GET \
--url https://api.chift.eu/consumers/{consumer_id}/accounting/folders \
--header 'Authorization: Bearer <token>'
[
{
"id": "<string>",
"name": "<string>",
"selected": true,
"vat": "<string>",
"company_number": "<string>",
"main_currency": "<string>",
"addresses": [
{
"street": "<string>",
"number": "<string>",
"box": "<string>",
"postal_code": "<string>",
"city": "<string>",
"country": "<string>"
}
]
}
]
curl --request GET \
--url https://api.chift.eu/consumers/{consumer_id}/accounting/folders \
--header 'Authorization: Bearer <token>'
[
{
"id": "<string>",
"name": "<string>",
"selected": true,
"vat": "<string>",
"company_number": "<string>",
"main_currency": "<string>",
"addresses": [
{
"street": "<string>",
"number": "<string>",
"box": "<string>",
"postal_code": "<string>",
"city": "<string>",
"country": "<string>"
}
]
}
]
This access token needs to be included in each of your request to the Chift API.
Successful Response
The response is of type FolderItem · object[]
.