Dynatrace Platform Subscription API - GET cost per environment
Gets the cost data for a Dynatrace Platform Subscription split by monitoring environment.
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 |
subscriptionUuid | string | The UUID of the requested subscription | path | required |
startTime | string | Date as ISO string | query | required |
endTime | string | Date as ISO string | query | required |
environmentIds | string[] | - | query | optional |
capabilityKeys | string[] | - | query | optional |
Response
Response codes
Code | Type | Description |
---|---|---|
200 | SubscriptionEnvironmentCostListDto | - |
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 SubscriptionEnvironmentCostListDto
object
Element | Type | Description |
---|---|---|
data | SubscriptionEnvironmentCostDto[] | Subscription cost data |
lastModifiedTime | string | The time the subscription data was last modified in |
The SubscriptionEnvironmentCostDto
object
Element | Type | Description |
---|---|---|
environmentId | string | The id of the environment |
cost | SubscriptionCapabilityCostDto[] | A list of subscription cost for the environment. |
The SubscriptionCapabilityCostDto
object
Element | Type | Description |
---|---|---|
startTime | string | The start time for the capability cost in |
endTime | string | The end time for the capability cost in |
value | number | The total cost for all the capabilities combined |
currencyCode | string | The currency code for the cost |
capabilityKey | string | The capability key |
capabilityName | string | The name of the capability |
Response body JSON model
1{2 "data": [3 {4 "environmentId": "string",5 "cost": [6 {7 "startTime": "string",8 "endTime": "string",9 "value": 1,10 "currencyCode": "string",11 "capabilityKey": "string",12 "capabilityName": "string"13 }14 ]15 }16 ],17 "lastModifiedTime": "string"18}