# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/Objects/ObjectById
?object_id=111
To get the object by id, you need to make a GET call to the following url :
http://localhost:8888/api/Objects/ObjectById
Result example :
[
{
"id": 0,
"system_name": "string",
"display_name": "string",
"object_type": 0
}
]
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| object_id | query | long | Object Id. |
| Authorization | header | string | Add Authorization header token |