Name | Method | Endpoint |
---|---|---|
Update, replace, or create new, Workflow Template | PUT | /api/v2/workflowtemplate |
Create a new Workflow Template | POST | /api/v2/workflowtemplate |
Delete a Workflow Template | DELETE | /api/v2/workflowtemplate/{name} |
Retrieve a Workflow Template | GET | /api/v2/workflowtemplate/{name} |
Search for Workflow Templates | GET | /api/v2/workflowtemplate/query |
PUT /api/v2/workflowtemplate?replace=true
Name | Type | Required | Description | Notes | Example |
---|---|---|---|---|---|
replace | Boolean | false | Replace existing version | Defaults to false. | true |
Schema | Required |
---|---|
WorkflowTemplate | true |
Note: this section and the documentation around what is required is still actively being updated.
No authorization required
application/json
*/*
POST /api/v2/workflowtemplate
Name | Type | Required | Description | Notes | Example |
---|
Schema | Required |
---|---|
WorkflowTemplate | true |
Note: this section and the documentation around what is required is still actively being updated.
No authorization required
application/json
*/*
DELETE /api/v2/workflowtemplate/{name}
Name | Type | Required | Description | Notes | Example |
---|---|---|---|---|---|
name | String | true | Name of Workflow Template | Defaults to null. | name_example |
This endpoint does not require a request body.
Note: this section and the documentation around what is required is still actively being updated.
No authorization required
Not defined
Not defined
null (empty response body)
GET /api/v2/workflowtemplate/{name}?version=56,withTasks=true
Retrieve a version of the Workflow Template. Defaults to latest. Optionally without Tasks
Name | Type | Required | Description | Notes | Example |
---|---|---|---|---|---|
name | String | true | Name of Workflow Template | Defaults to null. | name_example |
version | Integer | false | Workflow Template Version | Defaults to null. | 56 |
withTasks | Boolean | false | Include 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.
No authorization required
Not defined
*/*
GET /api/v2/workflowtemplate/query?labels=,names=mongodb-email-query-results,limit=10,page=0,sort=ASC
Name | Type | Required | Description | Notes | Example |
---|---|---|---|---|---|
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. | |
names | List | false | List of WorkflowTemplate names to filter for. Defaults to all. | Defaults to null. | mongodb-email-query-results |
This endpoint does not require a request body.
Note: this section and the documentation around what is required is still actively being updated.
No authorization required
Not defined
*/*