Skip to main content
日本語は機械翻訳による参考訳です。内容に矛盾や不一致があった場合には、英語の内容が優先されます。

Digital Advisor REST APIを使用してお客様のサブスクリプションを取得

共同作成者

このAPIは、指定されたcustomerIDに関連付けられているすべてのサブスクリプションとサービスレベルのリストを取得します。

リクエスト:

* メソッド *

取得

エンドポイント

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

* パラメータ *

  • タイプ:"customer"

  • 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>'