POST api/Proj/Data
Request Information
URI Parameters
None.
Body Parameters
ProjSearchData| Name | Description | Type | Additional information |
|---|---|---|---|
| CompID | integer |
None. |
|
| ProjTypeID | integer |
None. |
|
| Keyword | string |
None. |
|
| PageState | string |
None. |
|
| Page | integer |
None. |
|
| PageSize | integer |
None. |
|
| StartDate | string |
None. |
|
| EndDate | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CompID": 1,
"ProjTypeID": 2,
"Keyword": "sample string 3",
"PageState": "sample string 4",
"Page": 5,
"PageSize": 6,
"StartDate": "sample string 7",
"EndDate": "sample string 8"
}
application/xml, text/xml
Sample:
<ProjSearchData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WORK.Api.Models"> <CompID>1</CompID> <EndDate>sample string 8</EndDate> <Keyword>sample string 3</Keyword> <Page>5</Page> <PageSize>6</PageSize> <PageState>sample string 4</PageState> <ProjTypeID>2</ProjTypeID> <StartDate>sample string 7</StartDate> </ProjSearchData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResOfListOfProjData| Name | Description | Type | Additional information |
|---|---|---|---|
| code | integer |
None. |
|
| msg | string |
None. |
|
| data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": 1,
"msg": "sample string 2",
"data": {}
}
application/xml, text/xml
Sample:
<HttpResOfArrayOfProjDatasCSXBc_Sm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WORK.Api.Models"> <code>1</code> <data /> <msg>sample string 2</msg> </HttpResOfArrayOfProjDatasCSXBc_Sm>