Disable provider binding
import requests
url = "https://app.langwatch.ai/api/gateway/v1/providers/{id}"
headers = {"X-Auth-Token": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text){
"provider_credential": {
"id": "<string>",
"disabled_at": "<string>"
}
}Gateway: Provider Bindings
Disable provider binding
Marks the binding disabled. Requests routing to this slot are skipped (fallback chain continues). Historical ledger rows are retained.
DELETE
/
api
/
gateway
/
v1
/
providers
/
{id}
Disable provider binding
import requests
url = "https://app.langwatch.ai/api/gateway/v1/providers/{id}"
headers = {"X-Auth-Token": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text){
"provider_credential": {
"id": "<string>",
"disabled_at": "<string>"
}
}Authorizations
Project API key for sending traces and accessing project-scoped resources. Format: sk-lw-... (no underscore). Obtain one by creating a project via the Admin API or the LangWatch UI.
Path Parameters
Response
Disabled
Show child attributes
Show child attributes
Was this page helpful?
⌘I