POST api/Task/AddTask
Request Information
URI Parameters
None.
Body Parameters
AddTaskModel| Name | Description | Type | Additional information |
|---|---|---|---|
| tmTeamId | integer |
None. |
|
| ClientId | integer |
None. |
|
| tName | string |
None. |
|
| StatusId | integer |
None. |
|
| TaskDescription | string |
None. |
|
| AssignedToId | integer |
None. |
|
| TaskDueDate | date |
None. |
|
| TaskPriorityId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"tmTeamId": 1,
"ClientId": 1,
"tName": "sample string 2",
"StatusId": 3,
"TaskDescription": "sample string 4",
"AssignedToId": 5,
"TaskDueDate": "2025-12-08T14:56:26.7682913+00:00",
"TaskPriorityId": 1
}
application/xml, text/xml
Sample:
<AddTaskModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Focus247_2022.Models"> <AssignedToId>5</AssignedToId> <ClientId>1</ClientId> <StatusId>3</StatusId> <TaskDescription>sample string 4</TaskDescription> <TaskDueDate>2025-12-08T14:56:26.7682913+00:00</TaskDueDate> <TaskPriorityId>1</TaskPriorityId> <tName>sample string 2</tName> <tmTeamId>1</tmTeamId> </AddTaskModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.