<h3>Get Process Items</h3>


<pre><code class="bash">
# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/Processes/GetAffectedItemsInProcess
      ?object_id=111&#38;record_id=111&#38;show_all=true
</code></pre>

<p>
    This method allows you to get process items in processes.
</p>
<p>
    To get process items, you need to make a GET call to the following url:
    :<br />
    <code class="higlighted break-word">http://localhost:8888/api/Processes/GetAffectedItemsInProcess</code>
</p>
<br />

<pre><code class="json">
Result example :
{
   [
    {
      "object_id": 0,
      "record_id": 0,
      "record_guid": "string",
      "affected_items": [
        {
            "object_id": 0,
            "record_id": 0,
            "record_guid": "string",
             record_fields: [
             {
                "system_name": "string",
                "system_description": "string",
                "value": {}
            }
          ]
        }
      ]
    }
  ],
}
</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.
            </td>
        </tr>
        <tr>
            <td>record_id</td>
            <td>query</td>
            <td>long</td>
            <td>
                Record Id. You can get from another method
                (http://localhost:8888/api/Objects/ObjectRecords).
            </td>
        </tr>
        <tr>
            <td>show_all</td>
            <td>query</td>
            <td>boolean</td>
            <td>Show All (Optional - default false).</td>
        </tr>
    </tbody>
</table>