<h3>Object Field Groups By Object Id</h3>

<pre><code class="bash">
# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/Objects/ObjectFieldGroupsByObjectId
      ?object_id=111
</code></pre>

<p>
  To get the object field groups by object id, you need to make a GET call to
  the following url :<br />
  <code class="higlighted break-word"
    >http://localhost:8888/api/Objects/ObjectFieldGroupsByObjectId</code
  >
</p>

<br />

<pre><code class="json">
Result example :

[
  {
    "id": 0,
    "group_name": "string",
    "order_index": 0,
    "is_default": 0
  }
]
</code></pre>

<h4>Query Parameters</h4>

<table class="central-overflow-x">
  <thead>
    <tr>
      <th>Field</th>
      <th>Parameter Type</th>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>object_id</td>
      <td>query</td>
      <td>long</td>
      <td>
        Object Id. You can get from another method
        (http://localhost:8888/api/Objects/Objects).
      </td>
    </tr>
    <tr>
      <td>Authorization</td>
      <td>header</td>
      <td>string</td>
      <td>Add Authorization header token</td>
    </tr>
  </tbody>
</table>
