List
Integrations
List
Retrieve a list of all integrations in the system.
GET
List
Documentation Index
Fetch the complete documentation index at: https://docs.fleetit.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
Response
200 - application/json
Successful response
Example:
[
{
"id": 4,
"title": "Webhook Integration",
"fields": {
"auth": [{ "name": "url", "type": "string" }],
"urls": {},
"config": {
"headers": [
{ "name": "X-FLEET-TOKEN", "type": "string" }
]
},
"documentation": "https://example.com/docs/webhook"
}
},
{
"id": 5,
"title": "API Integration",
"fields": {
"auth": [{ "name": "api_key", "type": "string" }],
"urls": { "base_url": "https://api.example.com" },
"config": {
"headers": [
{ "name": "Authorization", "type": "string" }
]
},
"documentation": "https://api.example.com/docs"
}
}
]
