Tasks

Get all tasks

Returns all tasks of the enterprise, filtered by identifiers or other filters.

Request

[PlatformAddress]/api/connector/v1/tasks/getAll

{
  "ClientToken": "E0D439EE522F44368DC78E1BFB03710C-D24FB11DBE31D4621C4817E028D9E1D",
  "AccessToken": "C66EF7B239D24632943D115EDE9CB810-EA00F8FD8294692C940F6B5A8F9453D",
  "Client": "Sample Client 1.0.0",
  "TaskIds": [
    "65cf1aac-bef2-4653-9350-ab2600af65af"
  ],
  "DepartmentIds": [
    "c28cfb42-a963-4195-ad26-ab1b009b6425"
  ],
  "ServiceOrderIds": [
    "8d70f718-e19c-458d-8ddb-ab1b009b5487"
  ],
  "CreatedUtc": {
    "StartUtc": "2019-12-08T00:00:00Z",
    "EndUtc": "2019-12-10T00:00:00Z"
  },
  "ClosedUtc": {
    "StartUtc": "2019-12-08T00:00:00Z",
    "EndUtc": "2019-12-10T00:00:00Z"
  },
  "DeadlineUtc": {
    "StartUtc": "2020-01-01T00:00:00Z",
    "EndUtc": "2020-01-02T00:00:00Z"
  }
}
PropertyTypeContractDescription

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.

CreatedUtc

optional, max length 3 months

Interval in which the Task was created.

ClosedUtc

optional, max length 3 months

Interval in which the Task was closed.

DeadlineUtc

optional, max length 3 months

Interval in which the Task has a deadline.

TaskIds

array of string

optional, max 1000 items

Unique identifiers of Tasks.

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.

Response

{
  "Tasks": [
    {
      "Id": "b166fc93-c75a-438f-93b8-ab1e00a031ae",
      "Name": "Test all",
      "State": "Open",
      "Description": "Task description",
      "DepartmentId": "c28cfb42-a963-4195-ad26-ab1b009b6425",
      "ServiceOrderId": "8d70f718-e19c-458d-8ddb-ab1b009b5487",
      "CreatedUtc": "2019-12-09T09:43:14Z",
      "DeadlineUtc": "2020-01-01T14:00:00Z",
      "ClosedUtc": null
    }
  ]
}
PropertyTypeContractDescription

Tasks

array of Task

required

The filtered tasks.

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

PropertyTypeContractDescription

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": "E0D439EE522F44368DC78E1BFB03710C-D24FB11DBE31D4621C4817E028D9E1D",
  "AccessToken": "C66EF7B239D24632943D115EDE9CB810-EA00F8FD8294692C940F6B5A8F9453D",
  "Client": "Sample Client 1.0.0",
  "Name": "Test",
  "Description": "Task description",
  "DeadlineUtc": "2016-01-01T14:00:00Z",
  "ServiceOrderId": "c73cf884-ae2b-4fba-858c-ab1400b4c8c3",
  "DepartmentId": "8a0770a7-5178-4b87-8898-ab0400a346ec"
}
PropertyTypeContractDescription

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.

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.

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": "11bcf947-d629-4781-89f9-ab1800d5aa47"
}
PropertyTypeContractDescription

TaskId

string

required

Unique identifier of added task.

Last updated