ogranisation
get user org
GET
/
organisation
/
Copy
curl --request GET \
--url https://api.isosceles.ai/organisation/ \
--header 'Authorization: Basic <encoded-value>'
Copy
{
"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
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Response
200 - application/json
The response is of type object
.
Copy
curl --request GET \
--url https://api.isosceles.ai/organisation/ \
--header 'Authorization: Basic <encoded-value>'
Copy
{
"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"
}
Assistant
Responses are generated using AI and may contain mistakes.