POST api/Themes/GetAllData
Request Information
URI Parameters
None.
Body Parameters
SortName | Description | Type | Additional information |
---|---|---|---|
PageIndex | integer |
None. |
|
PageSize | integer |
None. |
|
Id | integer |
None. |
|
Status | string |
None. |
|
Type | string |
None. |
|
MaterId | integer |
None. |
|
Lang | string |
None. |
|
IsFeatured | boolean |
None. |
|
CategoryName | string |
None. |
|
Name | string |
None. |
|
Day | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "PageIndex": 1, "PageSize": 2, "Id": 3, "Status": "sample string 4", "Type": "sample string 5", "MaterId": 6, "Lang": "sample string 7", "IsFeatured": true, "CategoryName": "sample string 9", "Name": "sample string 10", "Day": "sample string 11" }
text/html
Sample:
{"PageIndex":1,"PageSize":2,"Id":3,"Status":"sample string 4","Type":"sample string 5","MaterId":6,"Lang":"sample string 7","IsFeatured":true,"CategoryName":"sample string 9","Name":"sample string 10","Day":"sample string 11"}
application/xml, text/xml
Sample:
<Sort xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <CategoryName>sample string 9</CategoryName> <Day>sample string 11</Day> <Id>3</Id> <IsFeatured>true</IsFeatured> <Lang>sample string 7</Lang> <MaterId>6</MaterId> <Name>sample string 10</Name> <PageIndex>1</PageIndex> <PageSize>2</PageSize> <Status>sample string 4</Status> <Type>sample string 5</Type> </Sort>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponceDataName | Description | Type | Additional information |
---|---|---|---|
TotalCount | integer |
None. |
|
Message | string |
None. |
|
Success | boolean |
None. |
|
Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{ "TotalCount": 1, "Message": "sample string 2", "Success": true, "Data": {} }
text/html
Sample:
{"TotalCount":1,"Message":"sample string 2","Success":true,"Data":{}}
application/xml, text/xml
Sample:
<ResponceData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Formatter"> <Data /> <Message>sample string 2</Message> <Success>true</Success> <TotalCount>1</TotalCount> </ResponceData>