Name | Method | Endpoint |
---|---|---|
Update, replace, or create new, Workflow for Canvas | PUT | /api/v2/team/{team}/workflow/{workflow}/compose |
Update, replace, or create new, Workflow | PUT | /api/v2/team/{team}/workflow |
Convert workflow to compose model for UI Designer and detailed Activity screens. | GET | /api/v2/team/{team}/workflow/{workflow}/compose |
Create a new workflow | POST | /api/v2/team/{team}/workflow |
Delete a workflow | DELETE | /api/v2/team/{team}/workflow/{workflow} |
Duplicates the workflow. | POST | /api/v2/team/{team}/workflow/{workflow}/duplicate |
Export the Workflow as JSON. | GET | /api/v2/team/{team}/workflow/{workflow}/export |
Retrieve the parameters. | GET | /api/v2/team/{team}/workflow/{workflow}/available-parameters |
Retrieve the changlog | GET | /api/v2/team/{team}/workflow/{workflow}/changelog |
Retrieve a Workflow | GET | /api/v2/team/{team}/workflow/{workflow} |
Search for Workflows | GET | /api/v2/team/{team}/workflow/query |
Submit a Workflow to be run. Will queue the WorkflowRun ready for execution. | POST | /api/v2/team/{team}/workflow/{workflow}/submit |
PUT /api/v2/team/{team}/workflow/{workflow}/compose?replace=true
Name | Type | Required | Description | Notes | Example |
---|---|---|---|---|---|
team | String | true | Owning team name. | Defaults to null. | my-amazing-team |
replace | Boolean | false | Replace existing version | Defaults to false. | true |
Schema | Required |
---|---|
WorkflowCanvas | true |
Note: this section and the documentation around what is required is still actively being updated.
application/json
*/*
PUT /api/v2/team/{team}/workflow?replace=true
Name | Type | Required | Description | Notes | Example |
---|---|---|---|---|---|
team | String | true | Owning team name. | Defaults to null. | my-amazing-team |
replace | Boolean | false | Replace existing version | Defaults to false. | true |
Schema | Required |
---|---|
Workflow | true |
Note: this section and the documentation around what is required is still actively being updated.
application/json
*/*
GET /api/v2/team/{team}/workflow/{workflow}/compose?version=56
Name | Type | Required | Description | Notes | Example |
---|---|---|---|---|---|
team | String | true | Owning team name. | Defaults to null. | my-amazing-team |
workflow | String | true | Workflow reference | Defaults to null. | workflow_example |
version | Integer | false | Workflow Version | Defaults to null. | 56 |
This endpoint does not require a request body.
Note: this section and the documentation around what is required is still actively being updated.
Not defined
*/*
POST /api/v2/team/{team}/workflow
Name | Type | Required | Description | Notes | Example |
---|---|---|---|---|---|
team | String | true | Owning team name. | Defaults to null. | my-amazing-team |
Schema | Required |
---|---|
Workflow | true |
Note: this section and the documentation around what is required is still actively being updated.
application/json
*/*
DELETE /api/v2/team/{team}/workflow/{workflow}
Name | Type | Required | Description | Notes | Example |
---|---|---|---|---|---|
team | String | true | Owning team name. | Defaults to null. | my-amazing-team |
workflow | String | true | Workflow reference | Defaults to null. | workflow_example |
This endpoint does not require a request body.
Note: this section and the documentation around what is required is still actively being updated.
Not defined
Not defined
null (empty response body)
POST /api/v2/team/{team}/workflow/{workflow}/duplicate
Name | Type | Required | Description | Notes | Example |
---|---|---|---|---|---|
team | String | true | Owning team name. | Defaults to null. | my-amazing-team |
workflow | String | true | Workflow reference | Defaults to null. | workflow_example |
This endpoint does not require a request body.
Note: this section and the documentation around what is required is still actively being updated.
Not defined
*/*
GET /api/v2/team/{team}/workflow/{workflow}/export
Name | Type | Required | Description | Notes | Example |
---|---|---|---|---|---|
team | String | true | Owning team name. | Defaults to null. | my-amazing-team |
workflow | String | true | Workflow reference | Defaults to null. | workflow_example |
This endpoint does not require a request body.
Note: this section and the documentation around what is required is still actively being updated.
Not defined
application/json
File
GET /api/v2/team/{team}/workflow/{workflow}/available-parameters
Name | Type | Required | Description | Notes | Example |
---|---|---|---|---|---|
team | String | true | Owning team name. | Defaults to null. | my-amazing-team |
workflow | String | true | Workflow reference | Defaults to null. | workflow_example |
This endpoint does not require a request body.
Note: this section and the documentation around what is required is still actively being updated.
Not defined
*/*
List
GET /api/v2/team/{team}/workflow/{workflow}/changelog
Retrieves each versions changelog and returns them all as a list.
Name | Type | Required | Description | Notes | Example |
---|---|---|---|---|---|
team | String | true | Owning team name. | Defaults to null. | my-amazing-team |
workflow | String | true | Workflow reference | Defaults to null. | workflow_example |
This endpoint does not require a request body.
Note: this section and the documentation around what is required is still actively being updated.
Not defined
*/*
GET /api/v2/team/{team}/workflow/{workflow}?version=56,withTasks=true
Retrieve a version of the Workflow. Defaults to latest. Optionally without Tasks
Name | Type | Required | Description | Notes | Example |
---|---|---|---|---|---|
workflow | String | true | Workflow reference | Defaults to null. | workflow_example |
team | String | true | Owning team name. | Defaults to null. | my-amazing-team |
version | Integer | false | Workflow Version | Defaults to null. | 56 |
withTasks | Boolean | false | Include Workflow Tasks | Defaults to true. | true |
This endpoint does not require a request body.
Note: this section and the documentation around what is required is still actively being updated.
Not defined
*/*
GET /api/v2/team/{team}/workflow/query?labels=,statuses=active,inactive,workflows=,limit=10,page=0,sort=ASC
Name | Type | Required | Description | Notes | Example |
---|---|---|---|---|---|
team | String | true | Owning team name. | Defaults to null. | my-amazing-team |
limit | Integer | true | Result Size | Defaults to null. | 10 |
page | Integer | true | Page Number | Defaults to null. | 0 |
sort | String | true | Ascending (ASC) or Descending (DESC) sort on creationDate | Defaults to Optional[ASC]. Enum: [ASC, DESC] | ASC |
labels | List | false | List of url encoded labels. For example Organization=Boomerang,customKey=test would be encoded as Organization%3DBoomerang,customKey%3Dtest) | Defaults to null. | |
statuses | List | false | List of statuses to filter for. Defaults to all. | Defaults to null. | active,inactive |
workflows | List | false | List of workflows to filter for. | Defaults to null. |
This endpoint does not require a request body.
Note: this section and the documentation around what is required is still actively being updated.
Not defined
*/*
POST /api/v2/team/{team}/workflow/{workflow}/submit?start=true
Name | Type | Required | Description | Notes | Example |
---|---|---|---|---|---|
team | String | true | Owning team name. | Defaults to null. | my-amazing-team |
workflow | String | true | Workflow reference | Defaults to null. | workflow_example |
start | Boolean | false | Start the WorkflowRun immediately after submission | Defaults to false. | true |
Schema | Required |
---|---|
WorkflowSubmitRequest | true |
Note: this section and the documentation around what is required is still actively being updated.
application/json
*/*