curl -X DELETE "https://api.danubeai.com/v1/services/svc_vercel_001/parameter-defaults?tool_id=tool_abc123" \
-H "danube-api-key: YOUR_API_KEY"
{
"deleted": true
}
Services
Delete Parameter Defaults
Remove the saved defaults row for a service, or for one of its tools
DELETE
/
v1
/
services
/
{service_id}
/
parameter-defaults
curl -X DELETE "https://api.danubeai.com/v1/services/svc_vercel_001/parameter-defaults?tool_id=tool_abc123" \
-H "danube-api-key: YOUR_API_KEY"
{
"deleted": true
}
Overview
Removes one defaults row: the one for the given scope, service and tool (or the service-wide row when no tool is given). Other rows on the same service are untouched. Auth: Required. API key (danube-api-key header) or JWT. Removing organization-wide defaults needs the owner or admin role in that organization, or the response is 403.
Path Parameters
string
required
The service UUID or slug. Unknown services return
404.Query Parameters
string
Remove the row scoped to this tool. Omit to remove the service-wide row.
string
default:"user"
user or org. Anything else is 400.string
Required when
scope is orgResponse
boolean
true when a row was removed, false when none matchedExample
The Python and TypeScript SDKs do not wrap this endpoint yet, and there is no MCP tool for it.curl -X DELETE "https://api.danubeai.com/v1/services/svc_vercel_001/parameter-defaults?tool_id=tool_abc123" \
-H "danube-api-key: YOUR_API_KEY"
{
"deleted": true
}
