Trendsic Platform Service

<back to all web services

WebixKanbanTaskRequest

The following routes are available for this service:
GET,OPTIONS/v1/webix/kanban/tasks
GET,OPTIONS/v1/webix/kanban/tasks/{ProjectUID}
Imports System
Imports System.IO
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports CRM.AgencyPlatform.API.Internal

Namespace Global

    Namespace CRM.AgencyPlatform.API.Internal

        Public Partial Class KanbanTaskAttachment
            Public Overridable Property id As Guid
            Public Overridable Property link As String
            Public Overridable Property size As Long
        End Class

        Public Partial Class WebixKanbanComment
            Public Overridable Property id As String
            Public Overridable Property user_id As Integer?
            Public Overridable Property date As String
            Public Overridable Property text As String
        End Class

        Public Partial Class WebixKanbanTask
            Public Overridable Property id As Guid
            Public Overridable Property status As String
            Public Overridable Property user_id As Integer
            Public Overridable Property text As String
            Public Overridable Property color As String
            Public Overridable Property tags As List(Of String) = New List(Of String)
            Public Overridable Property comments As List(Of WebixKanbanComment) = New List(Of WebixKanbanComment)
            Public Overridable Property attachments As List(Of KanbanTaskAttachment) = New List(Of KanbanTaskAttachment)
            Public Overridable Property list As Integer
        End Class

        Public Partial Class WebixKanbanTaskRequest
            Public Overridable Property ProjectUID As Guid
        End Class

        Public Partial Class WebixKanbanTaskResponse
            Inherits WebixKanbanTask
        End Class
    End Namespace
End Namespace

VB.NET WebixKanbanTaskRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /v1/webix/kanban/tasks HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<WebixKanbanTaskResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
  <attachments>
    <KanbanTaskAttachment>
      <id>00000000-0000-0000-0000-000000000000</id>
      <link>String</link>
      <size>0</size>
    </KanbanTaskAttachment>
  </attachments>
  <color>String</color>
  <comments>
    <WebixKanbanComment>
      <date>String</date>
      <id>String</id>
      <text>String</text>
      <user_id>0</user_id>
    </WebixKanbanComment>
  </comments>
  <id>00000000-0000-0000-0000-000000000000</id>
  <list>0</list>
  <status>String</status>
  <tags xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>String</d2p1:string>
  </tags>
  <text>String</text>
  <user_id>0</user_id>
</WebixKanbanTaskResponse>