Update a metrics account
PUT/v1/account-management/metrics-accounts/:metricsAccountId
Please ensure to change the region in the URL to match your account's region.
Request
Path Parameters
metricsAccountId integerrequired
- application/json
Body
required
accountName string
Name of metrics account.
planUts integer
Usage plan for Unique Time Series (UTS). UTS defines the number of unique time series an account is allowed to have. If usage exceeds the plan, exceeding data points will not be processed.
authorizedAccountsIds integer[]
IDs of authorized accounts
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
id integer
ID of the metrics account
accountName string
Name of metrics account.
token string
Metrics account token
createdAt date-time
Timestamp of account creation
planUts integer
Usage plan for Unique Time Series (UTS). UTS defines the number of unique time series an account is allowed to have. If usage exceeds the plan, exceeding data points will not be processed.
authorizedAccountsIds integer[]
IDs of authorized accounts
{
"id": 0,
"accountName": "string",
"token": "string",
"createdAt": "2024-08-04T11:38:13.765Z",
"planUts": 0,
"authorizedAccountsIds": [
0
]
}
Loading...