ogranisation
Get API Keys
GET
/
organisation
/
get-api-keys
curl --request GET \
--url https://api.isosceles.ai/organisation/get-api-keys \
--header 'Authorization: Basic <encoded-value>'
{
"api_keys": [
{
"api_key": "ATHENA_xxxx",
"name": "Local dev"
}
],
"created_at": "Wed, 24 Apr 2024 16:12:25 GMT",
"email": "ayush@byteleap.co",
"id": 4,
"name": "Organization for ayush@byteleap.co",
"org_name": "Organization for ayush@byteleap.co",
"org_uuid": "07ccd2f0-2e2c-47e6-91b6-d872baf86448",
"role": "admin",
"token": null,
"user_uuid": "7c4b9f75-cda3-4d32-a5bb-6d1f7352ff7b"
}
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
.
curl --request GET \
--url https://api.isosceles.ai/organisation/get-api-keys \
--header 'Authorization: Basic <encoded-value>'
{
"api_keys": [
{
"api_key": "ATHENA_xxxx",
"name": "Local dev"
}
],
"created_at": "Wed, 24 Apr 2024 16:12:25 GMT",
"email": "ayush@byteleap.co",
"id": 4,
"name": "Organization for ayush@byteleap.co",
"org_name": "Organization for ayush@byteleap.co",
"org_uuid": "07ccd2f0-2e2c-47e6-91b6-d872baf86448",
"role": "admin",
"token": null,
"user_uuid": "7c4b9f75-cda3-4d32-a5bb-6d1f7352ff7b"
}
Assistant
Responses are generated using AI and may contain mistakes.