Retrieve a list of all integrations in the system.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful response
[
{
"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"
}
}
]