<h3>Remove Deliverables In Projects</h3>


<pre><code class="bash">
    # Here is a curl example
    curl \
    -X POST "http://localhost:8888/api/Projects/RemoveDeliverablesToProjectStage" \
    -H "Authorization: {token}" \
    -H "Content-Type: application/json" \
    -d '{
            "project_object_id": 123,
            "project_record_id": 123,
            "project_stage_id": 123,
            "object_id": 123,
            "record_ids": [1,2,3],
            "remove_all":false
      }'
</code></pre>
<p>
    This method allows you to remove deliverables in project.
</p>
<p>
    To  remove deliverables, you need to make a POST call to the following url:
    :<br />
     <code class="higlighted break-word">http://localhost:8888/api/Projects/RemoveDeliverablesToProjectStage</code>
</p>
<br />

<pre><code class="json">
    Result example :
    [
        {
            "Success": "boolean",
            "Message": "string",
            "Data": object,
            "CustomAction": Dictionary&lt;object, object&gt; ,
            "CustomAttributes":Dictionary&lt;object, object&gt;
        }
    ]
</code></pre>

<h4>From Body 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>project_object_id</td>
            <td>body</td>
            <td>long</td>
            <td>
                Project Object Id.
            </td>
        </tr>
        <tr>
            <td>project_record_id</td>
            <td>body</td>
            <td>long</td>
            <td>
                Project Record Id. You can get from another method
                (http://localhost:8888/api/Objects/ObjectRecords).
            </td>
        </tr>
        <tr>
            <td>project_stage_id</td>
            <td>body</td>
            <td>long</td>
            <td>
                Process stage Id. You can get from another method
                (http://localhost:8888/api/Projects/GetProjectStages).
            </td>
        </tr>
        <tr>
            <td>object_id</td>
            <td>body</td>
            <td>long</td>
            <td>
                Object Id.
            </td>
        </tr>
        <tr>
            <td>record_ids</td>
            <td>body</td>
            <td>List&lt;long&gt;</td>
            <td>
                List of record Ids.
            </td>
        </tr>
        <tr>
            <td>remove_all</td>
            <td>body</td>
            <td>boolean</td>
            <td>
                Remove all
            </td>
        </tr>
        <tr>
            <td>Authorization</td>
            <td>header</td>
            <td>string</td>
            <td>Add Authorization header token</td>
        </tr>
    </tbody>
</table>