POST api/events/search
Request Information
URI Parameters
None.
Body Parameters
GenericQueryObjectName | Description | Type | Additional information |
---|---|---|---|
Ids | Collection of integer |
None. |
|
MaxDateTime | date |
None. |
|
MinDateTime | date |
None. |
|
QueryString | string |
None. |
|
Language | string |
None. |
|
Countries | string |
None. |
|
CountriesAsList | Collection of string |
None. |
Request Formats
application/json, text/json
Sample:
{ "Ids": [ 1, 2 ], "MaxDateTime": "2023-03-25T14:44:41.5457382+03:00", "MinDateTime": "2023-03-25T14:44:41.5457382+03:00", "QueryString": "sample string 3", "Language": "sample string 4", "Countries": "sample string 5", "CountriesAsList": [ "sample string 5" ] }
application/xml, text/xml
Sample:
<GenericQueryObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Data_Acess_Layer.QueryingObjects"> <Countries>sample string 5</Countries> <Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:int>1</d2p1:int> <d2p1:int>2</d2p1:int> </Ids> <Language>sample string 4</Language> <MaxDateTime>2023-03-25T14:44:41.5457382+03:00</MaxDateTime> <MinDateTime>2023-03-25T14:44:41.5457382+03:00</MinDateTime> <QueryString>sample string 3</QueryString> </GenericQueryObject>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ObjectNone.
Response Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />