Extensions API - GET all extension's instances
Lists all instances of the specified extension.
The request produces an application/json
payload.
This request is an Early Adopter release and may be changed in non-compatible way.
GET |
|
Authentication
To execute this request, you need the Read configuration (ReadConfig
) permission assigned to your API token. To learn how to obtain and use it, see Tokens and authentication.
Parameters
Parameter | Type | Description | In | Required |
---|---|---|---|---|
id | string |
The ID of the required extension. |
path | required |
pageSize | integer |
The number of results per result page. Must be between 1 and 500 |
query | optional |
nextPageKey | string |
The cursor for the next page of results. |
query | optional |
Response
Response codes
Code | Description |
---|---|
200 | Success |
Response body
The ExtensionConfigurationList object
A list of configurations.
Element | Type | Description |
---|---|---|
configurationsList |
Entity |
List of configurations. |
totalResults | integer | The total number of entries in the result. |
nextPageKey | string | The cursor for the next page of results. Has the value of Use it in the nextPageKey query parameter to obtain subsequent pages of the result. |
The EntityShortRepresentation object
The short representation of a Dynatrace entity.
Element | Type | Description |
---|---|---|
id | string | The ID of the Dynatrace entity. |
name | string | The name of the Dynatrace entity. |
description | string | A short description of the Dynatrace entity. |
{
"configurationsList": [
{
"id": "custom.remote.python.demo",
"enabled": true,
"useGlobal": false,
"hostId": "HOST-01A7DEFA5340A86D",
"properties": {
"serverIp": "127.0.0.1",
"username": "dynatrace",
"password": "",
"dropdownProperty": "three"
}
}
],
"totalResults": 9,
"nextPageToken": "LlUdYmu5S2MfX/ppfCInR9M="
}