Plugins API - GET all endpoints of a plugin

Lists all endpoints of the specified plugin.

The request produces an application/json payload.

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

Parameters

Parameter Type Description In Required
id string

The ID of the required plugin.

path required

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 inquires for endpoints of the SAP plugin, which has the ID of custom.remote.python.sap.

The API token is passed in the Authorization header.

The request lists these endpoints:

Plugin endpoints

Curl

curl -X GET \
  https://mySampleEnv.live.dexp.ae/api/config/v1/plugins/custom.remote.python.sap/endpoints \
  -H 'Authorization: Api-token abcdefjhij1234567890'

Request URL

https://mySampleEnv.live.dexp.ae/api/config/v1/plugins/custom.remote.python.sap/endpoints

Response body

{
  "values": [
    {
      "id": "5677163660730843402",
      "name": "SAPacceptance"
    },
    {
      "id": "3369768960632214848",
      "name": "SAPdevel"
    }
  ]
}

Response code

200