LedgerLou Docs is optimized for desktop.

Please open this page on a device with a wider screen.

Config

Fetch tenant master data

Returns the tenant's master data, including name, tax ID and fiscal-year start.

GET /v1/tenant
Authorization
Authorization string header required API key in the format ll_.... Pass as a Bearer token.
Responses
200
Success
404
NOT_FOUND The requested resource was not found.
GET /v1/tenant
cURL
-cmd">curl --request -method">GET -punct">\
  --url 'https://api.ledgerlou.de/v1/tenant' -punct">\
  --header 'Authorization: Bearer ll_your_key'
200 Response
JSON
{
  "id": "<string>",
  "company_name": "<string>",
  "tax_id": "<string>",
  "vat_id": "<string>",
  "legal_form": "<string>",
  "fiscal_year_start": 1,
  "vat_registered": true,
  "account_framework": "<string>"
}