GET v1/Events/Attendees/Search?SearchTerm={SearchTerm}&sort={sort}

Retrieves details of attendee when searchterm is provided.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
SearchTerm

When searchterm is given, it results in list of attendee details related to that serach term , if not this will result into error.

string

Required

sort

A comma delimited list of columns to sort by. Field are sorted in ascending order by default. To have a field sort in descending order, preface it with the minus (-) sign.

string

Default value is

Body Parameters

None.

Response Information

Resource Description

Collection of EventAttendeeDetails
NameDescriptionTypeAdditional information
id

PersonID of Event Attendee

integer

None.

firstName

First Name of Attendee

string

None.

lastName

Last Name of Attendee

string

None.

city

City of Event Attendee

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "firstName": "sample string 2",
    "lastName": "sample string 3",
    "city": "sample string 4"
  },
  {
    "id": 1,
    "firstName": "sample string 2",
    "lastName": "sample string 3",
    "city": "sample string 4"
  }
]

text/html

Sample:
[{"id":1,"firstName":"sample string 2","lastName":"sample string 3","city":"sample string 4"},{"id":1,"firstName":"sample string 2","lastName":"sample string 3","city":"sample string 4"}]

application/xml, text/xml

Sample:
<ArrayOfv1_Events_EventsEndpointController.EventAttendeeDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aptify.Services.Generated.v1_Events_EventsEndpoint">
  <v1_Events_EventsEndpointController.EventAttendeeDetails>
    <city>sample string 4</city>
    <firstName>sample string 2</firstName>
    <id>1</id>
    <lastName>sample string 3</lastName>
  </v1_Events_EventsEndpointController.EventAttendeeDetails>
  <v1_Events_EventsEndpointController.EventAttendeeDetails>
    <city>sample string 4</city>
    <firstName>sample string 2</firstName>
    <id>1</id>
    <lastName>sample string 3</lastName>
  </v1_Events_EventsEndpointController.EventAttendeeDetails>
</ArrayOfv1_Events_EventsEndpointController.EventAttendeeDetails>