# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/Objects/ObjectTree
?object_id=111
To get the object tree, you need to make a GET call to the following url :
http://localhost:8888/api/Objects/ObjectTree
Result example :
[
[
{
"object_id": 0,
"description": "string",
"is_filter": true,
"object_type": 0,
"section_id": "string",
"section_name": "string",
"parent_id": "string",
"level": 0,
"group_object_id": 0,
"has_children": true,
"sub_object_guid": "string"
}
]
]
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| object_id | query | long | Object Id. |
| Authorization | header | string | Add Authorization header token |