# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/Objects/ObjectFieldGroups
To get the object field groups, you need to make a GET call to the following
url :
http://localhost:8888/api/Objects/ObjectFieldGroups
Result example :
[
{
"object_id": 0,
"object_name": "string",
"object_groups": [
{
"id": 0,
"group_name": "string",
"order_index": 0,
"is_default": 0
}
]
}
]
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| Authorization | header | string | Add Authorization header token |