Integrations
List
Integrations
Vehicles
Fleet
- Settings
- ServiceTypes
- Regions
- GETList
- GETGet
- POSTCreate
- PUTUpdate
Transponders
Tolls
Integrations
- Webhook
- Fleet Active Integrations
- Logs
- GETList
Integrations
List
Retrieve a list of all integrations in the system.
GET
/
v2
/
integrations
curl --request GET \
--url https://api.app.fleetit.com/v2/integrations/ \
--header 'Authorization: Bearer <token>'
[
{
"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"
}
}
]
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
Response
200 - application/json
Successful response
Unique identifier for the integration
Example:
4
Name of the integration
Example:
"Webhook Integration"
URL configurations specific to the integration, with dynamic keys and values
URL pointing to the detailed documentation of the integration
Example:
"https://example.com/docs/webhook"
curl --request GET \
--url https://api.app.fleetit.com/v2/integrations/ \
--header 'Authorization: Bearer <token>'
[
{
"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"
}
}
]