# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/Objects/Objects
Gets all objects (based on user permissions)
To get all objects, you need to make a GET call to the following url :
http://localhost:8888/api/Objects/Objects
Result example :
[
{
"id": 0,
"system_name": "string",
"display_name": "string",
"object_type": 0
}
]
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| Authorization | header | string | Add Authorization header token |