Dynatrace Platform Subscription API - GET forecast
Gets a forecast of Dynatrace Platform Subscription usage by the end of the annual commitment period.
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 | Forecast | - |
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 Forecast
object
Element | Type | Description |
---|---|---|
forecastMedian | number | The median of the forecast snapshot. |
forecastLower | number | The lower bound for the forecast snapshot. |
forecastUpper | number | The upper bound for the forecast snapshot. |
budget | number | The budget for the forecast snapshot. |
forecastBudgetPct | number | The budget percent for the forecast snapshot. |
forecastBudgetDate | string | The date the forecast snapshot's budget reached the quota amount. |
forecastCreatedAt | string | The date the forecast snapshot was created. |
Response body JSON model
{
"forecastMedian": 1,
"forecastLower": 1,
"forecastUpper": 1,
"budget": 1,
"forecastBudgetPct": 1,
"forecastBudgetDate": "string",
"forecastCreatedAt": "string"
}