Skip to main content
POST
/
v3
/
workflow-definition-versions
Creates a new workflow definition version
curl --request POST \
  --url https://api.ctrl-hub.com/v3/workflow-definition-versions \
  --header 'Content-Type: application/vnd.api+json' \
  --header 'X-Session-Token: <api-key>' \
  --data '
{
  "data": {
    "type": "<string>",
    "attributes": {
      "steps": [
        {
          "id": "<string>",
          "name": "<string>",
          "order": 123,
          "step_type": "initial",
          "allowed_transitions": [
            {
              "id": "<string>",
              "name": "<string>",
              "description": "<string>",
              "requires_note": true
            }
          ],
          "position": {
            "x": 123,
            "y": 123
          }
        }
      ]
    },
    "relationships": {
      "organisation": {
        "data": {
          "type": "<string>",
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
        }
      },
      "definition": {
        "data": {
          "type": "<string>",
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
        }
      }
    }
  }
}
'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "type": "<string>",
    "attributes": {
      "steps": [
        {
          "id": "<string>",
          "name": "<string>",
          "order": 123,
          "step_type": "initial",
          "allowed_transitions": [
            {
              "id": "<string>",
              "name": "<string>",
              "description": "<string>",
              "requires_note": true
            }
          ],
          "position": {
            "x": 123,
            "y": 123
          }
        }
      ]
    },
    "meta": {
      "created_at": "2023-11-07T05:31:56Z"
    },
    "relationships": {
      "organisation": {
        "data": {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "type": "<string>"
        }
      }
    }
  },
  "jsonapi": {
    "version": "<string>"
  }
}

Authorizations

X-Session-Token
string
header
required

Session token for authentication.

Body

application/vnd.api+json

The workflow definition version to create.

data
object
required

Response

Get a workflow definition version.

JSON API response object

data
object
required

A workflow definition version resource.

jsonapi
object
required