Appearance
Set Project Active Status
Set the active or inactive status of a project instance. Requires the PROJECT_MANAGEMENT feature flag and ADMIN or MANAGE_PROJECTS permissions.
Parameters
| name * are required parameters | data type | description |
|---|---|---|
projectInstanceId* | string | The unique identifier of the project instance |
body.isActive* | boolean | Whether the project should be active |
Return Value
The updated project instance with the new active status.
Examples
bash
curl -X POST "https://app.wombat.software/api/{targetPath}/project/:projectInstanceId/set-active-status" \
-H "Content-Type: application/json" \
-H "Authentication: Bearer ..." \
-d '{"isActive": false}'ENDPOINTS
post
/api/{targetPath}/project/:projectInstanceId/set-active-status