# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/Objects/ObjectFieldGroupByIds
?object_id=111&group_object_id=111
To get the object field group by ids, you need to make a GET call to the
following url :
http://localhost:8888/api/Objects/ObjectFieldGroupByIds
Result example :
{
"id": 0,
"group_name": "string",
"order_index": 0,
"is_default": 0
}
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| object_id | query | long | Object Id. |
| group_object_id | query | long | Group Object Id. You can get from another method (http://localhost:8888/api/Objects/ObjectFieldGroups, http://localhost:8888/api/Objects/ObjectFieldGroupsByObjectId). |
| Authorization | header | string | Add Authorization header token |