Skip to main content
3.0
Die deutsche Sprachversion wurde als Serviceleistung für Sie durch maschinelle Übersetzung erstellt. Bei eventuellen Unstimmigkeiten hat die englische Sprachversion Vorrang.

Rufen Sie eine Liste aller Keystone Kunden mithilfe der Digital Advisor REST API ab.

Beitragende netapp-shwetav

Diese API ruft eine Liste aller Kunden-IDs ab, die dem Benutzer zugeordnet sind.

Anfrage:

Methode

GET

Endpunkt

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

Kopfzeilen

  • Akzeptieren: Anwendung/json

  • AutorizationToken: <access_key>

Antwort:

Die API antwortet mit einem JSON-Objekt, das eine Liste von Kundennamen und entsprechenden IDs enthält. Hier ein Beispiel für eine Antwort:

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

Statuscode: 200 – erfolgreiche Anfrage

Beispiel für Curl:

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