POST api/Task/PostTaskMaster
Request Information
URI Parameters
None.
Body Parameters
TaskMasterInPuts| Name | Description | Type | Additional information |
|---|---|---|---|
| TSM_ID | integer |
None. |
|
| TSM_PG_ID | integer |
None. |
|
| TSM_NAME | string |
None. |
|
| TSM_DESCRIPTION | string |
None. |
|
| TSM_STATUS | string |
None. |
|
| TSM_CREATED_BY | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"TSM_ID": 1,
"TSM_PG_ID": 1,
"TSM_NAME": "sample string 1",
"TSM_DESCRIPTION": "sample string 2",
"TSM_STATUS": "sample string 3",
"TSM_CREATED_BY": 1
}
application/xml, text/xml
Sample:
<TaskMasterInPuts xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZealitAPI.Models"> <TSM_CREATED_BY>1</TSM_CREATED_BY> <TSM_DESCRIPTION>sample string 2</TSM_DESCRIPTION> <TSM_ID>1</TSM_ID> <TSM_NAME>sample string 1</TSM_NAME> <TSM_PG_ID>1</TSM_PG_ID> <TSM_STATUS>sample string 3</TSM_STATUS> </TaskMasterInPuts>
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. |