| DELETE | /v1/webix/kanban/tasks/{id} |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| id | form | Guid | No | |
| status | form | string | No | |
| user_id | form | int | No | |
| text | form | string | No | |
| color | form | string | No | |
| tags | form | List<string> | No | |
| comments | form | List<WebixKanbanComment> | No | |
| attachments | form | List<KanbanTaskAttachment> | No | |
| list | form | int | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| id | form | string | No | |
| user_id | form | int? | No | |
| date | form | string | No | |
| text | form | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| id | form | Guid | No | |
| link | form | string | No | |
| size | form | long | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
DELETE /v1/webix/kanban/tasks/{id} HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
id: 00000000000000000000000000000000,
status: String,
user_id: 0,
text: String,
color: String,
tags:
[
String
],
comments:
[
{
id: String,
user_id: 0,
date: String,
text: String
}
],
attachments:
[
{
id: 00000000000000000000000000000000,
link: String,
size: 0
}
],
list: 0
}