API Reference
API Reference

Get Current Organization

Fetch the current organization.

GET/api/v1/organizations/

Authentication

Syllable-API-Keyrequired

Send Syllable-API-Key in the header.

Need a credential? Create or manage an API token in the Syllable Console.

Parameters

This endpoint has no declared parameters.

Responses

200Successful Response

application/json

response OrganizationResponse required
11 fields
display_namestringrequired

The human-readable display name of the organization.

descriptionstring | nulloptional

Description of the organization.

domainsstring | nulloptional

Comma-delimited list of domains that users at the organization may have in their email addresses.

saml_provider_idstring | nulloptional

SAML provider ID for user authentication

idintegerrequired

The internal ID of the organization.

last_updated_commentsstring | nulloptional

Comments for the most recent edit to the organization.

namestringrequired

Unique, non-human-readable hash for the organization

slugstring | nulloptional

The slug of the organization used for URLs in the Console UI. Null until slug backfill has been run.

last_updatedstring (date-time)required

The timestamp of the most recent update to the organization

last_updated_bystring | nulloptional

The email of the user who most recently updated the organization

logo_urlstring | nulloptional

CDN URL. The org will always have a logo, but this value will be null on a response to an update where no logo was provided on the request

Response example
{
  "display_name": "string",
  "description": "string",
  "domains": "string",
  "saml_provider_id": "string",
  "id": 0,
  "last_updated_comments": "string",
  "name": "string",
  "slug": "string",
  "last_updated": "string",
  "last_updated_by": "string",
  "logo_url": "string"
}