# Here is a curl example
curl \
-X POST "http://localhost:8888/api/Processes/RemoveAffectedItemsInProcess" \
-H "Authorization: {token}" \
-H "Content-Type: application/json" \
-d '{
"process_object_id": 123,
"process_record_id": 123,
"record_ids": [1,2,3],
"child_object_id": 123,
"process_stage_id": 123,
}'
This method allows you to remove process items in processes.
To remove process items, you need to make a POST call to the following url:
:
http://localhost:8888/api/Processes/RemoveAffectedItemsInProcess
Result example :
[
{
"Success": "boolean",
"Message": "string",
"Data": object,
"CustomAction": Dictionary<object, object> ,
"CustomAttributes":Dictionary<object, object>
}
]
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| process_object_id | body | long | Process Object Id. |
| process_record_id | body | long | Process Record Id. You can get from another method (http://localhost:8888/api/Objects/ObjectRecords). |
| record_ids | body | List<long> | Record ids. |
| child_object_id | body | long | Child Object Id. |
| process_stage_id | body | long | Process stage Id. You can get from another method (http://localhost:8888/api/PropertyCard/RecordInfo). |
| Authorization | header | string | Add Authorization header token |