根据订阅标识获取计费账户信息 | 大装置帮助中心
跳到主要内容

根据订阅标识获取计费账户信息

接口描述

GET /v1/subscriptions/{subscription_name}/billingAccounts 根据订阅标识获取计费账户信息

请求头(Request Header)

参考认证(authentication)

请求参数(Request Parameters)

名称位置类型必须描述
subscription_namepathstringtrue订阅标识

请求体(Request Body)

请求示例(Request Example)

curl --request GET \
--url https://management.sensecoreapi.dev/rmh/v1/subscriptions/string/billingAccounts \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {access-token}'

响应参数(Response Parameters)

StatusMeaningDescriptionSchema
200OKOKGetSubscriptionBillingAccountsResponse

响应示例(Response Example)

200 Response

{
"billing_accounts": [
{
"billing_account_id": "string",
"billing_account_display_name": "string",
"distribution_ratio": 0,
"available_balance": {
"currency_code": "string",
"units": 0,
"nanos": 0
}
}
]
}

数据结构(Schemas)

AvailableSubscriptionBillingAccount

名称类型必须限制描述
billing_account_idstringfalsenone计费帐号ID
billing_account_display_namestringfalsenone计费账户名称
distribution_ratiointeger(int32)falsenone当前计费账户分配比例
available_balanceMoneyfalsenone价格

GetSubscriptionBillingAccountsResponse

名称类型必须限制描述
billing_accounts[AvailableSubscriptionBillingAccount]falsenone计费账户信息

Money

名称类型必须限制描述
currency_codestringfalsenone货币代码, 参考ISO 4217
unitsinteger(int64)falsenone价格整数部分
nanosinteger(int32)falsenone价格小数部分