DELETE
/
v1
/
llm-provider
/
{provider}
{
  "provider": "openai"
}
Delete an LLM provider configuration.

Path Parameters

ParameterTypeRequiredDescription
providerstringyesThe provider to delete configuration for (e.g., openai, anthropic)

Response Examples

Success Response

{
  "provider": "openai"
}

Provider Not Found

{
  "error": {
    "code": "NOT_FOUND",
    "message": "No configuration found for provider: openai"
  }
}

Usage Example

curl -X DELETE "https://api.psci.ai/api/v1/llm-provider/openai" \
  -H "Authorization: Bearer ${API_KEY}"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

provider
enum<string>
required

The LLM provider to delete configuration for

Available options:
openai,
anthropic,
google,
google-vertex,
azure,
amazon-bedrock,
xai

Response

200
application/json

OK

The response is of type object.