Get Integrations

GET /api/integration

Retrieve all configured integrations optionally filtered by type

Query parameters

  • type string

    Integration Type

    Value is CAMERA_PROVIDER.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id integer(int64)

      Provider's Gatego ID

    • type

      TBC

    • vendor

      TBC

    • status object

      TBC

      Additional properties are allowed.

      Hide status attribute Show status attribute object
      • connected boolean

        TBC

    • object

      One of:

      TBC

      Additional properties are allowed.

  • 401

    Not Authorized

  • 403

    Not Allowed

GET /api/integration
curl \
 --request GET 'https://api-dev.gatego.io/api/integration'
Response examples (200)
[
  {
    "id": 42,
    "type": "CAMERA",
    "vendor": "VERKADA",
    "status": {
      "connected": true
    },
    "config": {}
  }
]