Skip to main content
Keystone
本繁體中文版使用機器翻譯,譯文僅供參考,若與英文版本牴觸,應以英文版本為準。

使用 Digital Advisor REST API 取得客戶訂閱

貢獻者

此 API 會擷取與指定客戶 ID 相關的所有訂閱和服務層級清單。

  • 申請: *

方法

取得

* 端點 *

https://api.activeiq.netapp.com/v1/keystone/customer/subscriptions-info

參數

  • 類型:「客戶」

  • ID : <customer-id>

* 標題 *

  • 接受: application/json

  • authorizationToken : <access_key>

  • 回應: *

API 將會回應 JSON 物件、其中包含指定客戶所有訂閱和相關服務層級詳細資料的清單。以下是回應範例:

[
{
"results": {
"returned_records": 0,
"records": [
{
"subscription": {
"account_name": "string",
"number": "string",
"start_date": "2024-05-28T15:47:49.254Z",
"end_date": "2024-05-28T15:47:49.255Z"
},
"service_levels": [
{
"name": "string",
"committed_tib": 0
}
]
}
],
"request_id": "string",
"response_time": "string"
}
}
]
  • 狀態代碼 * : 200 –成功申請

  • 目前範例 * :

curl -X 'GET' \ 'https://api.activeiq.netapp.com/v1/keystone/customer/subscriptions-info?type=customer&id=<customerID>' \ -H 'accept: application/json' \ -H 'authorizationToken: <access-key>'