POST api/Resource/ResourceList
Request Information
URI Parameters
None.
Body Parameters
ResourceListRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ResourceId | integer |
None. |
|
| status | byte |
None. |
|
| PageNumber | integer |
None. |
|
| PageSize | integer |
None. |
|
| SearchText | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ResourceId": 1,
"status": 64,
"PageNumber": 3,
"PageSize": 4,
"SearchText": "sample string 5"
}
text/xml
Sample:
<ResourceListRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Project"> <PageNumber>3</PageNumber> <PageSize>4</PageSize> <ResourceId>1</ResourceId> <SearchText>sample string 5</SearchText> <status>64</status> </ResourceListRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of ObjectNone.
Response Formats
application/json, text/json
Sample:
{}
text/xml
Sample:
<ArrayOfKeyValueOfstringanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />