Saltar al contenido principal
DELETE
/
v1
/
integration
/
{integration_id}
/
tool
/
{tool_id}
Delete Integration Tool
import requests

url = "http://localhost:3000/v1/integration/{integration_id}/tool/{tool_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

integration_id
string<uuid>
required

Integration ID

tool_id
string<uuid>
required

Tool ID

Response

Successful Response