Use this object to get list and info for API objects.
|
Method |
Description |
|
Retrieve list of objects |
|
|
Retrieve information for an object |
Retrieve list of objects
/api/v2/obj/list
None
synchronous
GET
Retrieve list of objects
GET http://192.168.123.200/api/v2/obj/list
<objects> <object> <name>app</name> </object> <object> <name>cat</name> </object> <object> <name>class</name> </object> <object> <name>comp</name> </object> . . . <objects>
{
"object" : [
{
"name" : "app"
},
{
"name" : "cat"
},
{
"name" : "class"
},
{
"name" : "comp"
},
.
.
.
}
Retrieve information for an object
/api/v2/obj/info?obj=object
API object
synchronous
GET
Retrieve information for obj=vdc
GET http://192.168.123.200/api/v2/obj/info?obj=vdc
<methods> <method> <name>info</name> </method> <method> <name>info_verbose</name> </method> <method> <name>list</name> </method>> </methods>
{
"method" : [
{
"name" : "info"
},
{
"name" : "info_verbose"
,
{
"name" : "list"
}
]
}
|
Copyright © 2013 CA Technologies.
All rights reserved.
|
|