# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/Objects/SpecialObjects
?object_id=111
This method gets all Special Objects within an Object.
To get the special objects, you need to make a GET call to the
following url :
http://localhost:8888/api/Objects/SpecialObjects
Result example :
[
{
"group_name": "string",
"object_id": 0,
"filter_id": 0,
"filters": [
{
"group_name": "string",
"object_id": 0,
"filter_id": 0
}
]
}
]
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| object_id | query | long | Object Id. |
| Authorization | header | string | Add Authorization header token |