Skip to main content
DELETE
/
v1
/
agent-deployments
/
{deployment_id}
Delete an agent deployment
import requests

url = "https://api.13-215-85-171.sslip.io/v1/agent-deployments/{deployment_id}"

headers = {"Authorization": "Bearer <token>"}

response = requests.delete(url, headers=headers)

print(response.text)
{
  "error": "Missing or invalid bearer credential",
  "code": "unauthorized",
  "request_id": "req_123"
}

Authorizations

Authorization
string
header
required

API key passed as Bearer token

Path Parameters

deployment_id
string
required

Agent deployment ID

Response

Agent deployment deleted