Organizations
Organizations expose the company context tied to the current API credential. Use this resource to confirm which organization a request is scoped to.
The Organization object
An organization is the company context associated with the current API credential.
Attributes
idstringoptionalPublic identifier of the organization.
namestringoptionalOrganization name.
descriptionstringoptionalOrganization description.
phonestringoptionalOrganization phone number.
timezonestringoptionalDefault timezone for the organization.
countrystringoptionalOrganization country code.
currencycurrencyoptionalDefault currency code for the organization.
logo_urlstringoptionalURL of the organization logo.
backdrop_urlstringoptionalURL of the organization backdrop image.
brandingobjectoptionalBranding settings returned with the organization.
optionsobjectoptionalOrganization option values.
ownerobjectoptionalOwner user for the organization, when included.
slugstringoptionalURL-friendly organization slug.
statusstringoptionalOrganization status.
updated_attimestampoptionalTime the organization was last updated.
created_attimestampoptionalTime the organization was created.
The Organization object
{
"id": "org_9W2KxA1",
"name": "Acme Logistics",
"description": "Regional logistics operations",
"phone": "+15555550100",
"timezone": "America/New_York",
"country": "US",
"currency": "USD",
"logo_url": "https://files.example.com/logos/acme.png",
"backdrop_url": null,
"branding": {},
"options": {},
"owner": null,
"slug": "acme-logistics",
"status": "active",
"updated_at": "2026-05-07T09:30:00Z",
"created_at": "2026-05-07T09:30:00Z"
}GET
/v1/organizations/currentGet Current Organization
Returns the organization associated with the API credential.
GET
/v1/organizations/currentcurl https://api.fleetbase.io/v1/organizations/current \
-H "Authorization: Bearer flb_live_…"