Difference between revisions of "Summary Data Using the API"

From Observer GigaFlow Support | VIAVI Solutions Inc.
Jump to: navigation, search
Line 2: Line 2:
 
  curl -H "Content-Type: application/json" -X POST -d '{"start":0,"length":25,"action":"get","type":"devices"}' "http://172.21.40.14:7902/rest/?portalUser=admin@myipsla.com"
 
  curl -H "Content-Type: application/json" -X POST -d '{"start":0,"length":25,"action":"get","type":"devices"}' "http://172.21.40.14:7902/rest/?portalUser=admin@myipsla.com"
  
List Specific Device
+
List Specific Device (use ids filer)
 
  curl -H "Content-Type: application/json" -X POST -d '{"start":0,"length":25,"action":"get","type":"devices","ids":["172.21.40.254"]}' "http://172.21.40.14:7902/rest/?portalUser=admin@myipsla.com"
 
  curl -H "Content-Type: application/json" -X POST -d '{"start":0,"length":25,"action":"get","type":"devices","ids":["172.21.40.254"]}' "http://172.21.40.14:7902/rest/?portalUser=admin@myipsla.com"
  
Line 8: Line 8:
 
  curl -H "Content-Type: application/json" -X POST -d '{"start":0,"length":25,"action":"get","type":" interfacelist "}' "http://172.21.40.14:7902/rest/?portalUser=admin@myipsla.com"
 
  curl -H "Content-Type: application/json" -X POST -d '{"start":0,"length":25,"action":"get","type":" interfacelist "}' "http://172.21.40.14:7902/rest/?portalUser=admin@myipsla.com"
  
List Interfaces On Specific Device
+
List Interfaces On Specific Device (use device filer)
 
  curl -H "Content-Type: application/json" -X POST -d '{"start":0,"length":25,"action":"get","type":"interfacelist","device":["172.21.40.254"]}' "http://172.21.40.14:7902/rest/?portalUser=admin@myipsla.com"
 
  curl -H "Content-Type: application/json" -X POST -d '{"start":0,"length":25,"action":"get","type":"interfacelist","device":["172.21.40.254"]}' "http://172.21.40.14:7902/rest/?portalUser=admin@myipsla.com"
 +
 +
List Specific Interface (use interface filer)
 +
curl -H "Content-Type: application/json" -X POST -d '{"start":0,"length":25,"action":"get","type":"interfacelist","interface":["172.21.40.254_1"]}' "http://172.21.40.14:7902/rest/?portalUser=admin@myipsla.com"

Revision as of 11:18, 4 November 2016

List All Devices

curl -H "Content-Type: application/json" -X POST -d '{"start":0,"length":25,"action":"get","type":"devices"}' "http://172.21.40.14:7902/rest/?portalUser=admin@myipsla.com"

List Specific Device (use ids filer)

curl -H "Content-Type: application/json" -X POST -d '{"start":0,"length":25,"action":"get","type":"devices","ids":["172.21.40.254"]}' "http://172.21.40.14:7902/rest/?portalUser=admin@myipsla.com"

List All Interfaces

curl -H "Content-Type: application/json" -X POST -d '{"start":0,"length":25,"action":"get","type":" interfacelist "}' "http://172.21.40.14:7902/rest/?portalUser=admin@myipsla.com"

List Interfaces On Specific Device (use device filer)

curl -H "Content-Type: application/json" -X POST -d '{"start":0,"length":25,"action":"get","type":"interfacelist","device":["172.21.40.254"]}' "http://172.21.40.14:7902/rest/?portalUser=admin@myipsla.com"

List Specific Interface (use interface filer)

curl -H "Content-Type: application/json" -X POST -d '{"start":0,"length":25,"action":"get","type":"interfacelist","interface":["172.21.40.254_1"]}' "http://172.21.40.14:7902/rest/?portalUser=admin@myipsla.com"