POST api/ldb/AddTodolist
Request Information
URI Parameters
None.
Body Parameters
TodoRequestEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| ApiUserName | string |
None. |
|
| Token | string |
None. |
|
| Empid | integer |
None. |
|
| TodoSummary | string |
None. |
|
| ProcId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ApiUserName": "sample string 1",
"Token": "sample string 2",
"Empid": 3,
"TodoSummary": "sample string 4",
"ProcId": 5
}
application/xml, text/xml
Sample:
<TodoRequestEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LDBAPI.Models"> <ApiUserName>sample string 1</ApiUserName> <Empid>3</Empid> <ProcId>5</ProcId> <TodoSummary>sample string 4</TodoSummary> <Token>sample string 2</Token> </TodoRequestEntity>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
TodoResponseEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| respCode | string |
None. |
|
| respMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"respCode": "sample string 1",
"respMessage": "sample string 2"
}
application/xml, text/xml
Sample:
<TodoResponseEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LDBAPI.Models"> <respCode>sample string 1</respCode> <respMessage>sample string 2</respMessage> </TodoResponseEntity>