Vorheriges Thema: info_verbose-Methode (vdc-Objekt)Nächstes Thema: get Method (vdc Object)


list-Methode (vdc-Objekt)
Description

Für die Arbeit mit dem WS_API konfigurierte Grids abrufen

Syntax
/api/v2/vdc/list 
Argument

Keine

Transaktionsart

synchron

Anfragetyp

GET

Beispiele

Grids auflisten.

GET http://192.168.123.200/api/v2/vdc/list 
Beispielausgabe
XML:
<vdcs> 
   <vdc> 
      <name>mygrid</name> 
      <default>1</default> 
      <host>72.233.72.121</host> 
      <location>Dallas, TX, USA</location> 
   </vdc> 
</vdcs>
JSON:
{ 
   "vdc" : [ 
      { 
      "location" : "Dallas, TX, USA", 
      "name" : "mygrid", 
      "default" : 1, 
      "host" : "72.233.72.121" 
      } 
   ] 
}