POST api/v1/ProjectList
Request Information
URI Parameters
None.
Body Parameters
ProjectListInput| Name | Description | Type | Additional information |
|---|---|---|---|
| Mode | string |
None. |
|
| ProjectID | integer |
None. |
|
| ListType | string |
None. |
|
| PageNumber | integer |
None. |
|
| PageSize | integer |
None. |
|
| Filter | string |
None. |
|
| ProjectStatus | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Mode": "sample string 1",
"ProjectID": 2,
"ListType": "sample string 3",
"PageNumber": 4,
"PageSize": 5,
"Filter": "sample string 6",
"ProjectStatus": "sample string 7"
}
application/xml, text/xml
Sample:
<ProjectListInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <Filter>sample string 6</Filter> <ListType>sample string 3</ListType> <Mode>sample string 1</Mode> <PageNumber>4</PageNumber> <PageSize>5</PageSize> <ProjectID>2</ProjectID> <ProjectStatus>sample string 7</ProjectStatus> </ProjectListInput>
application/x-www-form-urlencoded
Sample:
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. |