Skip to content

Process Status

Update the workflow status of a process (ROPA).


Update process status

POST /external/smart-inventory/process/{ropa}/status

Request body

{
  "statusTypeId": 5
}

Status type IDs

ID Status
1 In Progress
2 Completed
3 Archived
4 Expired
5 For Review

Setting status to Completed may require approver permissions in the app.

Response

204 No Content on success.


Example

curl -X POST https://api.trustview.eu/external/smart-inventory/process/6a054b8b9ae1a/status \
  -H "X-API-Key: tvw_sk_live_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"statusTypeId": 5}'

Use GET /external/smart-inventory/process/{ropa}/item to verify the updated status.