Tasks


Tasks Management API

This API allows the administration of tasks.

Any undocumented property or method may be changed or removed without notice.

Info

Tasks list endpoint is always paginated. Refer to pagination section for more details.

# users

It is possible to associate multiple users with a task, but it is also possible to link customizable fields and system fields.

# User Fields

To associate users, you need to send the following code :

[{ "value": "id", "type": "USER" }]
1

# Customizable Fields

To associate a customizable field, you need to send the following code :

[{ "value": "field id", "type": "CUSTOM" }]
1

Note: Only customizable fields of type USER can be used.

# System Fields

To associate a system field, you need to send the following code :

[{ "value": "value", "type": "SYSTEM" }]
1

The possible values are :

  • OWNER: allows you to select the owner of the client.

# teamId

It is possible to associate the entire team of a client with a task by defining the keyword CUSTOMER_TEAM in teamId instead of the ID.

# swagger

Contributors: Julien