ogranisation
Delete API Key
ogranisation
Delete API Key
POST
/
organisation
/
remove-api-key
curl --request POST \
--url https://api.isosceles.ai/organisation/remove-api-key \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"api_key": "ATHENA_MEEAASO736YMVN2A5SBQ"
}'
{
"api_keys": [
{
"api_key": "ATHENA_xxxxx",
"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_uuid": "07ccd2f0-2e2c-47e6-91b6-d872baf86448",
"token": null
}
Authorizations
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Body
application/json
Response
200 - application/json
The response is of type object
.
curl --request POST \
--url https://api.isosceles.ai/organisation/remove-api-key \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"api_key": "ATHENA_MEEAASO736YMVN2A5SBQ"
}'
{
"api_keys": [
{
"api_key": "ATHENA_xxxxx",
"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_uuid": "07ccd2f0-2e2c-47e6-91b6-d872baf86448",
"token": null
}