Create a new metrics account
POST/v1/account-management/metrics-accounts
Please ensure to change the region in the URL to match your account's region.
Request
- application/json
Body
required
Email address of the account owner
Name of metrics account to be created. If empty, the default name <owner_account_name>_metrics
is used.
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.
IDs of authorized accounts
Responses
- 201
Created
- application/json
- Schema
- Example (from schema)
Schema
ID of the created metrics account
Name of metrics account.
Metrics account token
Timestamp of account creation
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.
IDs of authorized accounts
{
"id": 0,
"accountName": "string",
"token": "string",
"createdAt": "2024-08-04T11:38:13.763Z",
"planUts": 0,
"authorizedAccountsIds": [
0
]
}