# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/Objects/ObjectStructure
?module_id=111§ion_id=filter1117&level=2&object_id=111
To get the object structure, you need to make a GET call to the following url
:
http://localhost:8888/api/Objects/ObjectStructure
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 |
|---|---|---|---|
| module_id | query | long | Module Id. You can get from another method (http://localhost:8888/api/Objects/Modules). |
| section_id | query | string | Section Id (Optional - default 0). |
| level | query | integer | Level (Optional - default 2). |
| object_id | query | long | Object Id (Optional - default -1). |
| Authorization | header | string | Add Authorization header token |