Plugins API - GET all ActiveGate plugin modules

Every ActiveGate plugin runs on a certain ActiveGate instance. The part of the ActiveGate code that runs plugins is called an ActiveGate plugin module.

This request lists all ActiveGate plugin modules available in your DESK environment.

The request produces an application/json payload.

This request is an early adopter release and may be changed in non compatible way.

GET
  • Managed https://{your-domain}/e/{your-environment-id}/api/config/v1/plugins/activeGatePluginModules
  • SaaS https://{your-environment-id}.live.dexp.ae/api/config/v1/plugins/activeGatePluginModules

Parameters

The request doesn't provide any configurable parameters.

Response format

The StubList object

An ordered list of short representations of DESK entities.

Element Type Description
values EntityShortRepresentation[]

An ordered list of short representations of DESK entities.

The EntityShortRepresentation object

The short representation of a DESK entity.

Element Type Description
id string

The ID of the DESK entity.

name string

The name of the DESK entity.

description string

A short description of the DESK entity.

Example

In this example, the request lists all the ActiveGate plugin modules available in the mySampleEnv environment.

The API token is passed in the Authorization header.

The result is truncated to three entries.

Curl

curl -X GET \
  https://mySampleEnv.live.dexp.ae/api/config/v1/plugins/activeGatePluginModules \
  -H 'Authorization: Api-token abcdefjhij1234567890'

Request URL

https://mySampleEnv.live.dexp.ae/api/config/v1/plugins/activeGatePluginModules

Response body

{
  "values": [
    {
      "id": "1768386982494938781",
      "name": "GDNDYNSYNVSG03"
    },
    {
      "id": "6121289130553435111",
      "name": "l-009"
    },
    {
      "id": "-7614291897790148410",
      "name": "GDNDYNSYNDEMODEVAG01"
    }
  ]
}

Response code

200