FleetbaseFleetbase

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
idstringoptional

Public identifier of the organization.

namestringoptional

Organization name.

descriptionstringoptional

Organization description.

phonestringoptional

Organization phone number.

timezonestringoptional

Default timezone for the organization.

countrystringoptional

Organization country code.

currencycurrencyoptional

Default currency code for the organization.

logo_urlstringoptional

URL of the organization logo.

backdrop_urlstringoptional

URL of the organization backdrop image.

brandingobjectoptional

Branding settings returned with the organization.

optionsobjectoptional

Organization option values.

ownerobjectoptional

Owner user for the organization, when included.

slugstringoptional

URL-friendly organization slug.

statusstringoptional

Organization status.

updated_attimestampoptional

Time the organization was last updated.

created_attimestampoptional

Time 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/current

Get Current Organization

Returns the organization associated with the API credential.

GET/v1/organizations/current
curl https://api.fleetbase.io/v1/organizations/current \
  -H "Authorization: Bearer flb_live_…"
Organizations | Fleetbase