Saltar al contenido principal
DELETE
/
v1
/
agent
/
{agent_id}
/
version
/
{version_id}
Delete Agent Version
import requests

url = "http://localhost:3000/v1/agent/{agent_id}/version/{version_id}"

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

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

print(response.text)
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

agent_id
string<uuid>
required
version_id
string<uuid>
required

Response

Successful Response