Skip to main content
Celoxis API v2
LiveUpdated 2 Sep 2026

Workflow App Records

Create a record

POST/api/v2/appsCreate a Workflow App record

Use app to identify the configured Workflow App. A record must belong to either a project or a workspace.

bash
curl -X POST \
  -H 'Content-Type: application/json' \
  -H 'Authorization: bearer YourTokenHere' \
  -d '{
    "app": "Risk",
    "name": "Supplier delay",
    "description": "Delivery may slip",
    "project": "Website Redesign"
  }' \
  'https://app.celoxis.com/psa/api/v2/apps'