Skip to main content
DELETE
/
admin
/
connections
/
{id}
Delete a credential
curl --request DELETE \
  --url https://{organization_id}.platform.barndoor.ai/api/llm-gateway/admin/connections/{id} \
  --header 'Authorization: Bearer <token>'
{
  "deleted": true
}

Authorizations

Authorization
string
header
required

JWT obtained through Barndoor's authentication flow. Pass the token verbatim in Authorization: Bearer <token>. Use the Barndoor SDK's loginInteractive() helper to obtain a token in scripts and notebooks.

Path Parameters

id
string<uuid>
required

Credential UUID

Response

Credential deleted

deleted
boolean
Example:

true