Saltar al contenido principal
GET
/
v1
/
integration
/
{integration_id}
/
tool
List Tools
import requests

url = "http://localhost:3000/v1/integration/{integration_id}/tool"

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

response = requests.get(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

Query Parameters

after
string | null
before
string | null
limit
integer
default:20
order
enum<string>
default:desc
Opciones disponibles:
asc,
desc

Response

Successful Response