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

Digital Advisor REST APIを使用しているすべてのお客様のリストを取得する

共同作成者

このAPIは、ユーザに関連付けられているすべてのcustomerIDのリストを取得します。

リクエスト:

* メソッド *

取得

エンドポイント

https://api.activeiq.netapp.com/v1/keystone/customers

ヘッダー

  • 承認:application/json

  • AuthorizationToken:<access_key>

回答:

APIは、顧客名とそれぞれのIDのリストを含むJSONオブジェクトで応答します。以下に回答例を示します。

{
"results":  {
"returned_records": 0,
"records": [
{
"Customers": [
{
"customer_id": "string",
"customer_name": "string"
}
]
}
],
"request_id": "string",
"response_time": "string"
}
}

ステータスコード:200–要求に成功しました

カールの例

curl -X 'GET' \ 'https://api.activeiq.netapp.com/v1/keystone/customers' \ -H 'accept: application/json' -H 'authorizationToken: <access-key>'