GET api/v1/SearchEvent?searchkey={searchkey}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
searchkey

string

Default value is

Body Parameters

None.

Response Information

Resource Description

Collection of EventSearchResult
NameDescriptionTypeAdditional information
id

integer

None.

eventname

string

None.

cover

string

None.

acode

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "eventname": "sample string 2",
    "cover": "sample string 3",
    "acode": "sample string 4"
  },
  {
    "id": 1,
    "eventname": "sample string 2",
    "cover": "sample string 3",
    "acode": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEventSearchResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppBridge">
  <EventSearchResult>
    <acode>sample string 4</acode>
    <cover>sample string 3</cover>
    <eventname>sample string 2</eventname>
    <id>1</id>
  </EventSearchResult>
  <EventSearchResult>
    <acode>sample string 4</acode>
    <cover>sample string 3</cover>
    <eventname>sample string 2</eventname>
    <id>1</id>
  </EventSearchResult>
</ArrayOfEventSearchResult>