GET
/
consumers
/
{consumer_id}
/
accounting
/
folders
Get Folders
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>"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

This access token needs to be included in each of your request to the Chift API.

Path Parameters

consumer_id
string
required

Response

200
application/json

Successful Response

The response is of type FolderItem · object[].