Bpmn Service v1.0.0
Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.
a Reusable, customizable and workflow based task service
Base URLs:
Authentication¶
- HTTP Authentication, scheme: bearer
EventController
EventController.count¶
Code samples
GET /events/count
Permissions |
---|
16002 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
where | query | object | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Event model count | loopback.Count |
EventController.mapEventToWorkflow¶
Code samples
POST /events/mapping
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
body | body | EventWorkflowMapping | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
EventController.findById¶
Code samples
GET /events/{id}
Permissions |
---|
16002 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
filter | query | events.Filter | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Event model instance | EventWithRelations |
EventController.find¶
Code samples
GET /events
Permissions |
---|
16002 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
filter | query | events.Filter1 | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Array of Event model instances | Inline |
Response Schema
Status Code 200
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | [EventWithRelations] | false | none | [(tsType: EventWithRelations, schemaOptions: { includeRelations: true })] |
» EventWithRelations | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»» id | string | false | none | none |
»» key | string | true | none | An identifier for a particular event queued by a service or a user |
»» description | string | true | none | A short description of an event |
»» source | string | true | none | Origination of an event- can be a service or from a user |
»» payload | object | true | none | A dynamic object that contains information to be run in the workers of a bpmn engine |
»» timestamp | number | true | none | A short message to indicate the progression of the event |
TaskController
TaskController.count¶
Code samples
GET /tasks/count
Permissions |
---|
16003 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
where | query | object | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Task model count | loopback.Count |
TaskController.mapTaskToWorkflow¶
Code samples
POST /tasks/mapping
Permissions |
---|
16006 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
body | body | TaskWorkFlowMapping | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
TaskController.findById¶
Code samples
GET /tasks/{id}
Permissions |
---|
16003 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
filter | query | tasks.Filter | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Task model instance | TaskWithRelations |
TaskController.deleteById¶
Code samples
DELETE /tasks/{id}
Permissions |
---|
16008 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
cascade | query | boolean | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Task DELETE by id success | None |
TaskController.find¶
Code samples
GET /tasks
Permissions |
---|
16003 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
filter | query | tasks.Filter1 | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Array of Task model instances | Inline |
Response Schema
Status Code 200
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | [TaskWithRelations] | false | none | [(tsType: TaskWithRelations, schemaOptions: { includeRelations: true })] |
» TaskWithRelations | TaskWithRelations | false | none | (tsType: TaskWithRelations, schemaOptions: { includeRelations: true }) |
»» deleted | boolean | false | none | none |
»» deletedOn | string(date-time)¦null | false | none | none |
»» deletedBy | string¦null | false | none | none |
»» createdOn | string(date-time) | false | none | none |
»» modifiedOn | string(date-time) | false | none | none |
»» createdBy | string | false | none | none |
»» modifiedBy | string | false | none | none |
»» id | string | false | none | none |
»» key | string | true | none | An identifier for a particular task within an event |
»» name | string | true | none | A name given by the consumer service for this task |
»» description | string | false | none | A short description of this task |
»» status | string | false | none | A short message to indicate the progression of the task |
»» priority | string | true | none | none |
»» severity | string | true | none | none |
»» type | string | true | none | none |
»» startDate | string(date-time) | false | none | none |
»» dueDate | string(date-time) | false | none | none |
»» endDate | string(date-time) | false | none | none |
»» assigneeId | string | false | none | none |
»» metadata | object | true | none | none |
»» externalId | string | false | none | none |
»» userTasks | [UserTaskWithRelations] | false | none | [(tsType: UserTaskWithRelations, schemaOptions: { includeRelations: true })] |
»»» UserTaskWithRelations | UserTaskWithRelations | false | none | (tsType: UserTaskWithRelations, schemaOptions: { includeRelations: true }) |
»»»» deleted | boolean | false | none | none |
»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»» deletedBy | string¦null | false | none | none |
»»»» createdOn | string(date-time) | false | none | none |
»»»» modifiedOn | string(date-time) | false | none | none |
»»»» createdBy | string | false | none | none |
»»»» modifiedBy | string | false | none | none |
»»»» id | string | false | none | none |
»»»» name | string | true | none | none |
»»»» taskId | string | true | none | none |
»»»» status | string | true | none | none |
»»»» externalId | string | true | none | none |
TaskController.delete¶
Code samples
DELETE /tasks
Permissions |
---|
16008 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
where | query | object | false | none |
cascade | query | boolean | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Tasks DELETE success | None |
TaskUserTaskController
TaskUserTaskController.count¶
Code samples
GET /tasks/{taskId}/user-tasks/count
Permissions |
---|
16004 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
taskId | path | string | true | none |
where | query | object | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Task model count | loopback.Count |
TaskUserTaskController.completeTask¶
Code samples
PATCH /tasks/{taskId}/user-tasks/{userTaskId}/complete
Permissions |
---|
16005 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
taskId | path | string | true | none |
userTaskId | path | string | true | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
TaskUserTaskController.findById¶
Code samples
GET /tasks/{taskId}/user-tasks/{userTaskId}
Permissions |
---|
16004 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
taskId | path | string | true | none |
userTaskId | path | string | true | none |
filter | query | user_tasks.Filter | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | UserTask model instance | UserTaskWithRelations |
TaskUserTaskController.deleteById¶
Code samples
DELETE /tasks/{taskId}/user-tasks/{id}
Permissions |
---|
16009 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | UserTasks DELETE by id success | None |
TaskUserTaskController.find¶
Code samples
GET /tasks/{taskId}/user-tasks
Permissions |
---|
16004 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
taskId | path | string | true | none |
filter | query | user_tasks.Filter1 | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Array of UserTask model instances | Inline |
Response Schema
Status Code 200
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | [UserTaskWithRelations] | false | none | [(tsType: UserTaskWithRelations, schemaOptions: { includeRelations: true })] |
» UserTaskWithRelations | UserTaskWithRelations | false | none | (tsType: UserTaskWithRelations, schemaOptions: { includeRelations: true }) |
»» deleted | boolean | false | none | none |
»» deletedOn | string(date-time)¦null | false | none | none |
»» deletedBy | string¦null | false | none | none |
»» createdOn | string(date-time) | false | none | none |
»» modifiedOn | string(date-time) | false | none | none |
»» createdBy | string | false | none | none |
»» modifiedBy | string | false | none | none |
»» id | string | false | none | none |
»» name | string | true | none | none |
»» taskId | string | true | none | none |
»» status | string | true | none | none |
»» externalId | string | true | none | none |
TaskUserTaskController.delete¶
Code samples
DELETE /tasks/{taskId}/user-tasks
Permissions |
---|
16009 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
where | query | object | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | UserTasks DELETE success | None |
WorkflowController
WorkflowController.startWorkflow¶
Code samples
POST /workflows/{id}/execute
Permissions |
---|
CreateWorkflow |
2 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | ExecuteWorkflowDto | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Workflow instance | None |
WorkflowController.deleteVersionById¶
Code samples
DELETE /workflows/{id}/version/{version}
Permissions |
---|
DeleteWorkflow |
4 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
version | path | number | true | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Workflow DELETE success | None |
WorkflowController.updateById¶
Code samples
PATCH /workflows/{id}
Permissions |
---|
UpdateWorkflow |
3 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | WorkflowDtoPartial | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Workflow PATCH success | None |
WorkflowController.count¶
Code samples
GET /workflows/{id}
Permissions |
---|
ViewWorkflow |
1 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Workflow Model | None |
WorkflowController.deleteById¶
Code samples
DELETE /workflows/{id}
Permissions |
---|
DeleteWorkflow |
4 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Workflow DELETE success | None |
WorkflowController.create¶
Code samples
POST /workflows
Permissions |
---|
CreateWorkflow |
2 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
body | body | NewWorkflow | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Workflow model instance | Workflow |
WorkflowController.find¶
Code samples
GET /workflows
Permissions |
---|
ViewWorkflow |
1 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
filter | query | workflows.Filter | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Array of Workflow model instances | Inline |
Response Schema
Status Code 200
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | [Workflow] | false | none | none |
» Workflow | Workflow | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | string(date-time)¦null | false | none | none |
»» deletedBy | string¦null | false | none | none |
»» createdOn | string(date-time) | false | none | none |
»» modifiedOn | string(date-time) | false | none | none |
»» createdBy | string | false | none | none |
»» modifiedBy | string | false | none | none |
»» id | string | false | none | none |
»» workflowVersion | number | true | none | Last deployed workflow version |
»» externalIdentifier | string | true | none | The key that is used to identify the workflow in the respective workflow engine. |
»» name | string | false | none | Name of the workflow |
»» provider | string | true | none | Provider could be the engine that will handle the workflow - camunda, zeebe, etc |
»» inputSchema | object | true | none | Schema used for validation during workflow execution |
»» description | string | false | none | Description of the workflow |
Schemas¶
Workflow
Workflow
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
workflowVersion | number | true | none | Last deployed workflow version |
externalIdentifier | string | true | none | The key that is used to identify the workflow in the respective workflow engine. |
name | string | false | none | Name of the workflow |
provider | string | true | none | Provider could be the engine that will handle the workflow - camunda, zeebe, etc |
inputSchema | object | true | none | Schema used for validation during workflow execution |
description | string | false | none | Description of the workflow |
NewWorkflow
NewWorkflow
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
name | string | true | none | none |
bpmnFile | string | true | none | none |
inputSchema | object | true | none | none |
description | string | false | none | none |
WorkflowDto
WorkflowDto
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
name | string | true | none | none |
bpmnFile | string | true | none | none |
inputSchema | object | true | none | none |
description | string | false | none | none |
WorkflowDtoPartial
WorkflowDtoPartial
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
name | string | false | none | none |
bpmnFile | string | false | none | none |
inputSchema | object | false | none | none |
description | string | false | none | none |
ExecuteWorkflowDto
ExecuteWorkflowDto
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
workflowVersion | number | false | none | none |
input | object | true | none | none |
EventWithRelations
EventWithRelations
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
id | string | false | none | none |
key | string | true | none | An identifier for a particular event queued by a service or a user |
description | string | true | none | A short description of an event |
source | string | true | none | Origination of an event- can be a service or from a user |
payload | object | true | none | A dynamic object that contains information to be run in the workers of a bpmn engine |
timestamp | number | true | none | A short message to indicate the progression of the event |
EventWorkflowMapping
EventWorkflowMapping
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
eventKey | string | true | none | An identifier for a particular event queued by a service or a user |
workflowKey | string | true | none | An identifier for a particular workflow |
UserTaskWithRelations
UserTaskWithRelations
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
name | string | true | none | none |
taskId | string | true | none | none |
status | string | true | none | none |
externalId | string | true | none | none |
TaskWithRelations
TaskWithRelations
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
key | string | true | none | An identifier for a particular task within an event |
name | string | true | none | A name given by the consumer service for this task |
description | string | false | none | A short description of this task |
status | string | false | none | A short message to indicate the progression of the task |
priority | string | true | none | none |
severity | string | true | none | none |
type | string | true | none | none |
startDate | string(date-time) | false | none | none |
dueDate | string(date-time) | false | none | none |
endDate | string(date-time) | false | none | none |
assigneeId | string | false | none | none |
metadata | object | true | none | none |
externalId | string | false | none | none |
userTasks | [UserTaskWithRelations] | false | none | [(tsType: UserTaskWithRelations, schemaOptions: { includeRelations: true })] |
TaskWorkFlowMapping
TaskWorkFlowMapping
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
workflowKey | string | true | none | An identifier for a particular workflow |
taskKey | string | true | none | An identifier for a particular task within an event |
loopback.Count
loopback.Count
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
count | number | false | none | none |
events.Filter
events.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» id | boolean | false | none | none |
»» key | boolean | false | none | none |
»» description | boolean | false | none | none |
»» source | boolean | false | none | none |
»» payload | boolean | false | none | none |
»» timestamp | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
events.Filter1
events.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
where | object | false | none | none |
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» id | boolean | false | none | none |
»» key | boolean | false | none | none |
»» description | boolean | false | none | none |
»» source | boolean | false | none | none |
»» payload | boolean | false | none | none |
»» timestamp | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
user_tasks.Filter
user_tasks.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | boolean | false | none | none |
»» deletedBy | boolean | false | none | none |
»» createdOn | boolean | false | none | none |
»» modifiedOn | boolean | false | none | none |
»» createdBy | boolean | false | none | none |
»» modifiedBy | boolean | false | none | none |
»» id | boolean | false | none | none |
»» name | boolean | false | none | none |
»» taskId | boolean | false | none | none |
»» status | boolean | false | none | none |
»» externalId | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
user_tasks.Filter1
user_tasks.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
where | object | false | none | none |
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | boolean | false | none | none |
»» deletedBy | boolean | false | none | none |
»» createdOn | boolean | false | none | none |
»» modifiedOn | boolean | false | none | none |
»» createdBy | boolean | false | none | none |
»» modifiedBy | boolean | false | none | none |
»» id | boolean | false | none | none |
»» name | boolean | false | none | none |
»» taskId | boolean | false | none | none |
»» status | boolean | false | none | none |
»» externalId | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
tasks.ScopeFilter
tasks.ScopeFilter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
where | object | false | none | none |
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [object] | false | none | none |
tasks.IncludeFilter.Items
tasks.IncludeFilter.Items
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
relation | string | false | none | none |
scope | tasks.ScopeFilter | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
relation | userTasks |
tasks.Filter
tasks.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | boolean | false | none | none |
»» deletedBy | boolean | false | none | none |
»» createdOn | boolean | false | none | none |
»» modifiedOn | boolean | false | none | none |
»» createdBy | boolean | false | none | none |
»» modifiedBy | boolean | false | none | none |
»» id | boolean | false | none | none |
»» key | boolean | false | none | none |
»» name | boolean | false | none | none |
»» description | boolean | false | none | none |
»» status | boolean | false | none | none |
»» priority | boolean | false | none | none |
»» severity | boolean | false | none | none |
»» type | boolean | false | none | none |
»» startDate | boolean | false | none | none |
»» dueDate | boolean | false | none | none |
»» endDate | boolean | false | none | none |
»» assigneeId | boolean | false | none | none |
»» metadata | boolean | false | none | none |
»» externalId | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [anyOf] | false | none | none |
anyOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | tasks.IncludeFilter.Items | false | none | none |
or
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
tasks.Filter1
tasks.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
where | object | false | none | none |
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | boolean | false | none | none |
»» deletedBy | boolean | false | none | none |
»» createdOn | boolean | false | none | none |
»» modifiedOn | boolean | false | none | none |
»» createdBy | boolean | false | none | none |
»» modifiedBy | boolean | false | none | none |
»» id | boolean | false | none | none |
»» key | boolean | false | none | none |
»» name | boolean | false | none | none |
»» description | boolean | false | none | none |
»» status | boolean | false | none | none |
»» priority | boolean | false | none | none |
»» severity | boolean | false | none | none |
»» type | boolean | false | none | none |
»» startDate | boolean | false | none | none |
»» dueDate | boolean | false | none | none |
»» endDate | boolean | false | none | none |
»» assigneeId | boolean | false | none | none |
»» metadata | boolean | false | none | none |
»» externalId | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [anyOf] | false | none | none |
anyOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | tasks.IncludeFilter.Items | false | none | none |
or
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
workflows.ScopeFilter
workflows.ScopeFilter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
where | object | false | none | none |
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [object] | false | none | none |
workflows.IncludeFilter.Items
workflows.IncludeFilter.Items
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
relation | string | false | none | none |
scope | workflows.ScopeFilter | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
relation | workflowVersions |
workflows.Filter
workflows.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
where | object | false | none | none |
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | boolean | false | none | none |
»» deletedBy | boolean | false | none | none |
»» createdOn | boolean | false | none | none |
»» modifiedOn | boolean | false | none | none |
»» createdBy | boolean | false | none | none |
»» modifiedBy | boolean | false | none | none |
»» id | boolean | false | none | none |
»» workflowVersion | boolean | false | none | none |
»» externalIdentifier | boolean | false | none | none |
»» name | boolean | false | none | none |
»» provider | boolean | false | none | none |
»» inputSchema | boolean | false | none | none |
»» description | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [anyOf] | false | none | none |
anyOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | workflows.IncludeFilter.Items | false | none | none |
or
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |