GET api/general/search?Lang={Lang}&DateFrom={DateFrom}&DateTo={DateTo}&SearchText={SearchText}&PageNumber={PageNumber}&PageSize={PageSize}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
Lang | string |
None. |
|
DateFrom | string |
None. |
|
DateTo | string |
None. |
|
SearchText | string |
None. |
|
PageNumber | integer |
None. |
|
PageSize | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
SearchResponseName | Description | Type | Additional information |
---|---|---|---|
ID | integer |
None. |
|
NAME | string |
None. |
|
DESC | string |
None. |
|
DATE | date |
None. |
|
IMAGE | string |
None. |
|
TYPE_ID | integer |
None. |
|
IS_ARTICLE | integer |
None. |
|
IS_VIDEO | integer |
None. |
|
IS_NEWS | integer |
None. |
|
IS_ART | integer |
None. |
|
IS_REPORT | integer |
None. |
|
TYPE | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "ID": 1, "NAME": "sample string 2", "DESC": "sample string 3", "DATE": "2025-07-19T09:28:56.0231935+00:00", "IMAGE": "sample string 5", "TYPE_ID": 6, "IS_ARTICLE": 7, "IS_VIDEO": 8, "IS_NEWS": 9, "IS_ART": 10, "IS_REPORT": 11, "TYPE": "sample string 12" }
application/xml, text/xml
Sample:
<SearchAction.SearchResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Amigos.News.Api.News.Actions"> <Content>sample string 3</Content> <Date>2025-07-19T09:28:56.0231935+00:00</Date> <ID>1</ID> <ImgPath>sample string 5</ImgPath> <IsArt>10</IsArt> <IsArticle>7</IsArticle> <IsNews>9</IsNews> <IsReport>11</IsReport> <IsVideo>8</IsVideo> <Title>sample string 2</Title> <Type>sample string 12</Type> <TypeID>6</TypeID> </SearchAction.SearchResponse>