Tasks
Get all tasks
Returns all tasks of the enterprise, filtered by identifiers or other filters.
Request
[PlatformAddress]/api/connector/v1/tasks/getAll
ClientToken
string
required
Token identifying the client application.
AccessToken
string
required
Access token of the client application.
Client
string
required
Name and version of the client application.
EnterpriseIds
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.
DepartmentIds
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.
ServiceOrderIds
array of string
optional, max 1000 items
Unique identifiers of service orders (reservations or product service orders).
Limitation
required
Limitation on the quantity of data returned and optional Cursor for the starting point of data.
Response
Cursor
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
Id
string
required
Unique identifier of the task.
EnterpriseId
string
required
Unique identifier of the enterprise. Required when using Portfolio Access Tokens, ignored otherwise.
Name
string
required
Name (or title) of the task.
State
string
required
State of the task.
Description
string
optional
Further description of the task.
DepartmentId
string
optional
Unique identifier of the Department the task is addressed to.
ServiceOrderId
string
optional
Unique identifier of the service order (reservation or product service order) the task is linked with.
CreatedUtc
string
required
Creation date and time of the task in UTC timezone in ISO 8601 format.
DeadlineUtc
string
required
Deadline date and time of the task in UTC timezone in ISO 8601 format.
ClosedUtc
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
ClientToken
string
required
Token identifying the client application.
AccessToken
string
required
Access token of the client application.
Client
string
required
Name and version of the client application.
ServiceOrderId
string
optional
Unique identifier of the service order (reservation or product service order) the task is linked with.
Name
string
required
Name (or title) of the task.
Description
string
optional
Further decription of the task.
DeadlineUtc
string
required
Deadline of the task in UTC timezone in ISO 8601 format.
Response
TaskId
string
required
Unique identifier of added task.
Last updated