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

使用Digital Advisor REST API 取得所有客戶列表

此 API 檢索與使用者關聯的所有 customerID 的清單。

要求:

方法

得到

端點

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

標題

  • 接受:應用程式/json

  • 授權令牌:<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 範例

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