Extensions API - GET all extensions
Lists all extensions uploaded to your Dynatrace environment.
The request produces an application/json
payload.
GET | ManagedDynatrace for Government | https://{your-domain}/e/{your-environment-id}/api/config/v1/extensions |
SaaS | https://{your-environment-id}.live.dynatrace.com/api/config/v1/extensions | |
Environment ActiveGate | https://{your-activegate-domain}:9999/e/{your-environment-id}/api/config/v1/extensions |
Authentication
To execute this request, you need an access token with ReadConfig
scope.
To learn how to obtain and use it, see Tokens and authentication.
Parameters
Parameter | Type | Description | In | 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 | Type | Description |
---|---|---|
200 | ExtensionListDto | Success |
Response body objects
The ExtensionListDto
object
Element | Type | Description |
---|---|---|
extensions | ExtensionDto[] | A list of extensions. |
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. |
totalResults | integer | The total number of entries in the result. |
The ExtensionDto
object
Element | Type | Description |
---|---|---|
id | string | - |
name | string | - |
type | string | -
|
Response body JSON model
1{2 "extensions": [3 {4 "id": "custom.python.connectionpool",5 "name": "Connection Pool",6 "type": "ONEAGENT"7 }8 ],9 "nextPageToken": "LlUdYmu5S2MfX/ppfCInR9M=",10 "totalResults": 911}