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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Fleet-ID
integer

Response

200 - application/json
Successful response
id
integer

Unique identifier for the integration

title
string

Name of the integration

fields
object