Create a Task
The task is the basic building block in SmartTask. In the SmartTask application, middle pane is populated with tasks. When a task is selected, it opens up the right hand side detailed pane with selected task's parameters.
Create a Task
POST
https://api.smarttask.io/v{api-version}/Task/CreateTask/{company_id}
Path Parameters
Name | Type | Description |
---|---|---|
api-version | string | API Version - 1.0 |
company_id | number | CompanyId of SmartTask organization |
Headers
Name | Type | Description |
---|---|---|
Authorization | string | Authorization Bearer token |
Request Body
Name | Type | Description |
---|---|---|
IsArchived | boolean | Whether the task is archived or not |
CompanyId | number | CompanyId of organization |
Taskname | string | |
Description | string | Description notes in HTML string |
PriorityId | number | 1 - No Label 2 - High 3 - Medium 4 - Low |
CreatorUserId | number | UserId of the person who creates the task |
AssignedUser | object | CompanyUserModel |
DateModel | object | TaskDateModel |
Status | number | 0 - Incomplete 1 - Complete |
Projects | array | ProjectInfoModel |
Followers | array | Array of CompanyUserModel |
Tags | array | Array of TagModel |
ParentGTaskId | string | Parent Task Id |
ContactIds | array | Array of ContactIds to link with the task |
Last updated