Dynatrace Platform Subscription API - GET all subscriptions
Lists all Dynatrace Platform Subscriptions of an account.
The request produces an application/json
payload.
GET |
|
Authentication
To execute this request, you need the Allow read access for usage and consumption resources (account-uac-read
) scope assigned to your token. To learn how to obtain and use it, see Authentication.
Parameters
Parameter | Type | Description | In | Required |
---|---|---|---|---|
accountUuid | string | The ID of the required account. You can find the UUID on the Account > Account management API page, during creation of an OAuth client. | path | required |
Response
Response codes
Code | Type | Description |
---|---|---|
200 | Subscription | Success. The response contains a list of the account's subscriptions. |
400 | The request was unacceptable, often due to missing a required parameter | |
401 | The bearer token is incorrect/expired or the requested account information does not match the bearer token | |
403 | Access denied | |
404 | The requested resource was not found | |
500 | Something went wrong on Account Management API's end |
Response body objects
The SubscriptionListDto
object
Element | Type | Description |
---|---|---|
data | Subscription | A list of subscriptions of the account. |
The SubscriptionSummaryDto
object
Element | Type | Description |
---|---|---|
uuid | string | The UUID of the Dynatrace Platform Subscription. |
type | string | The type of the Dynatrace Platform Subscription. |
name | string | The name of the Dynatrace Platform Subscription. |
status | string | The status of the Dynatrace Platform Subscription. |
startTime | string | The start date and time of the subscription in |
endTime | string | The end date and time of the subscription in |
Response body JSON model
{
"data": [
{
"uuid": "string",
"type": "string",
"name": "string",
"status": "string",
"startTime": "string",
"endTime": "string"
}
]
}