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

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
api_keys
object[]
required
created_at
string
required
email
string
required
id
integer
required
name
string
required
org_name
string
required
org_uuid
string
required
role
string
required
token
string
required
user_uuid
string
required