GET
/
organisation
curl --request GET \
  --url https://api.isosceles.ai/organisation/ \
  --header 'Authorization: Basic <encoded-value>'
{
  "created_at": "Thu, 16 May 2024 18:57:16 GMT",
  "email": "<string>",
  "id": 62,
  "name": "Organization for ___",
  "org_name": "<string>",
  "org_uuid": "989ad142-ab62-4e6b-92b6-83a25dec3151",
  "role": "admin",
  "token": "<string>",
  "user_uuid": "6cc35c0a-5095-4677-ac22-843a68138f53"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200 - application/json
created_at
string

Creation timestamp of the organization

Example:

"Thu, 16 May 2024 18:57:16 GMT"

email
string

Email associated with the organization

id
integer

ID of the organization

Example:

62

name
string

Name of the organization

Example:

"Organization for ___"

org_name
string | null

Name of the organization (same as 'name')

org_uuid
string

UUID of the organization

Example:

"989ad142-ab62-4e6b-92b6-83a25dec3151"

role
string

Role of the user in the organization

Example:

"admin"

token
string

Invite token for the organization

user_uuid
string

UUID of the user

Example:

"6cc35c0a-5095-4677-ac22-843a68138f53"