Lists all Dynatrace Platform Subscriptions of an account.
The request produces an application/json
payload.
GET |
|
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 OAuth clients.
Parameter | Type | Description | In | Required |
---|---|---|---|---|
accountUuid | string | The ID of the required account. You can find the UUID on the Account Management > Identity & access management > OAuth clients page, during creation of an OAuth client. | path | required |
Code | Type | Description |
---|---|---|
200 | Subscription | Success. The response contains a list of the account's subscriptions. |
400 | - | Failed. The request was unacceptable, often due to missing a required parameter |
401 | - | Failed. The bearer token is incorrect/expired or the requested account information does not match the bearer token |
403 | - | Access denied |
404 | - | Failed. The requested resource was not found |
500 | - | Failed. Something went wrong in Account Management API |
SubscriptionListDto
objectElement | Type | Description |
---|---|---|
data | Subscription | A list of subscriptions of the account. |
SubscriptionSummaryDto
objectElement | Type | Description |
---|---|---|
uuid | string | The UUID of the Dynatrace Platform Subscription. |
type | string | The type of the Dynatrace Platform Subscription. |
subType | string | The sub-type of the Dynatrace Platform Subscription. |
name | string | The display name of the Dynatrace Platform Subscription. |
status | string | The status of the Dynatrace Platform Subscription. |
startTime | string | The start date of the subscription in |
endTime | string | The end date of the subscription in |
{"data": [{"uuid": "string","type": "string","subType": "string","name": "string","status": "string","startTime": "string","endTime": "string"}]}