POST api/ToDoList/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
ToDoList| Name | Description | Type | Additional information |
|---|---|---|---|
| TASK_ID | string |
None. |
|
| ASSIGN_BY_ADMIN_ID | string |
None. |
|
| ASSIGN_TO_ADMIN_ID | string |
None. |
|
| TITLE | string |
None. |
|
| DESCRIPTION | string |
None. |
|
| STATUS | string |
None. |
|
| TASK | string |
None. |
|
| EXTRA1 | Collection of byte |
None. |
|
| EXTRA2 | string |
None. |
|
| EXTRA3 | string |
None. |
|
| LANG_ID | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"TASK_ID": "sample string 1",
"ASSIGN_BY_ADMIN_ID": "sample string 2",
"ASSIGN_TO_ADMIN_ID": "sample string 3",
"TITLE": "sample string 4",
"DESCRIPTION": "sample string 5",
"STATUS": "sample string 6",
"TASK": "sample string 7",
"EXTRA1": "QEA=",
"EXTRA2": "sample string 8",
"EXTRA3": "sample string 9",
"LANG_ID": "sample string 10"
}
text/plain
Sample:
{"TASK_ID":"sample string 1","ASSIGN_BY_ADMIN_ID":"sample string 2","ASSIGN_TO_ADMIN_ID":"sample string 3","TITLE":"sample string 4","DESCRIPTION":"sample string 5","STATUS":"sample string 6","TASK":"sample string 7","EXTRA1":"QEA=","EXTRA2":"sample string 8","EXTRA3":"sample string 9","LANG_ID":"sample string 10"}
application/xml, text/xml
Sample:
<ToDoList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApiSangamAgro.Models"> <ASSIGN_BY_ADMIN_ID>sample string 2</ASSIGN_BY_ADMIN_ID> <ASSIGN_TO_ADMIN_ID>sample string 3</ASSIGN_TO_ADMIN_ID> <DESCRIPTION>sample string 5</DESCRIPTION> <EXTRA1>QEA=</EXTRA1> <EXTRA2>sample string 8</EXTRA2> <EXTRA3>sample string 9</EXTRA3> <LANG_ID>sample string 10</LANG_ID> <STATUS>sample string 6</STATUS> <TASK>sample string 7</TASK> <TASK_ID>sample string 1</TASK_ID> <TITLE>sample string 4</TITLE> </ToDoList>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |