Tasks
Get all tasks
Returns all tasks of the enterprise, filtered by identifiers or other filters.
Request
[PlatformAddress]/api/connector/v1/tasks/getAll
Property | Type | Contract | Description |
---|---|---|---|
| string | required | Token identifying the client application. |
| string | required | Access token of the client application. |
| string | required | Name and version of the client application. |
| array of string | optional, max 1000 items | Unique identifiers of the Enterprises. If not specified, the operation returns data for all enterprises within scope of the Access Token. |
| optional, max length 3 months | Interval in which the Task was created. | |
| optional, max length 3 months | Interval in which the Task was closed. | |
| optional, max length 3 months | Interval in which the Task has a deadline. | |
| array of string | optional, max 1000 items | Unique identifiers of Tasks. |
| array of string | optional, max 1000 items | Unique identifiers of Departments. Not possible to be used standalone, needs to be used in combination with other filters. |
| array of string | optional, max 1000 items | Unique identifiers of service orders (reservations or product service orders). |
| required | Limitation on the quantity of data returned. |
Response
Property | Type | Contract | Description |
---|---|---|---|
| array of Task | required | The filtered tasks. |
| string | optional | Unique identifier of the item one newer in time order than the items to be returned. If Cursor is not specified, i.e. null, then the latest or most recent items will be returned. |
Task
Property | Type | Contract | Description |
---|---|---|---|
| string | required | Unique identifier of the task. |
| string | required | Unique identifier of the enterprise. Required when using Portfolio Access Tokens, ignored otherwise. |
| string | required | Name (or title) of the task. |
| string | required | State of the task. |
| string | optional | Further description of the task. |
| string | optional | Unique identifier of the Department the task is addressed to. |
| string | optional | Unique identifier of the service order (reservation or product service order) the task is linked with. |
| string | required | Creation date and time of the task in UTC timezone in ISO 8601 format. |
| string | required | Deadline date and time of the task in UTC timezone in ISO 8601 format. |
| string | required | Last update date and time of the task in UTC timezone in ISO 8601 format. |
Add task
Adds a new task to the enterprise, optionally to a specified department.
Request
[PlatformAddress]/api/connector/v1/tasks/add
Property | Type | Contract | Description |
---|---|---|---|
| string | required | Token identifying the client application. |
| string | required | Access token of the client application. |
| string | required | Name and version of the client application. |
| string | optional | Unique identifier of the Department the task is addressed to. |
| string | optional | Unique identifier of the service order (reservation or product service order) the task is linked with. |
| string | required | Name (or title) of the task. |
| string | optional | Further decription of the task. |
| string | required | Deadline of the task in UTC timezone in ISO 8601 format. |
Response
Property | Type | Contract | Description |
---|---|---|---|
| string | required | Unique identifier of added task. |
Last updated