# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/Objects/ObjectBySystemName
?system_name=1111
To get the object by system name, you need to make a GET call to the following
url :
http://localhost:8888/api/Objects/ObjectBySystemName
Result example :
[
{
"id": 0,
"system_name": "string",
"display_name": "string",
"object_type": 0
}
]
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| system_name | query | string | System Name. You can get from another method (http://localhost:8888/api/Objects/ObjectById). |
| Authorization | header | string | Add Authorization header token |