POST api/News/Search
Request Information
URI Parameters
None.
Body Parameters
Common| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Name | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Name": "sample string 2"
}
text/html
Sample:
{"Id":1,"Name":"sample string 2"}
application/xml, text/xml
Sample:
<Common xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <Id>1</Id> <Name>sample string 2</Name> </Common>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponceData| Name | 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>