Get a list of all customers using the Digital Advisor REST API
This API retrieves a list of all the customerIDs associated with the user.
Request:
Method  | 
GET  | 
Endpoint  | 
|
Headers  | 
  | 
Response:
The API will respond with a JSON object containing a list of customer names and respective IDs. Here's an example response:
{
"results":  {
"returned_records": 0,
"records": [
{
"Customers": [
{
"customer_id": "string",
"customer_name": "string"
}
]
}
],
"request_id": "string",
"response_time": "string"
}
}
Status code: 200 – Successful request
Curl example:
curl -X 'GET' \ 'https://api.activeiq.netapp.com/v1/keystone/customers' \ -H 'accept: application/json' -H 'authorizationToken: <access-key>'