PUT api/Conference/GetExhibitors
Request Information
URI Parameters
None.
Body Parameters
APIExhibitorRequestName | Description | Type | Additional information |
---|---|---|---|
CustomerId | integer |
None. |
|
ExhibitorId | integer |
None. |
|
UniqueId | globally unique identifier |
None. |
|
UserUniqueId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "CustomerId": 1, "ExhibitorId": 2, "UniqueId": "ae08b11e-39d6-4554-a0fc-d4213db37b00", "UserUniqueId": 4 }
application/xml, text/xml
Sample:
<APIExhibitorRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <CustomerId>1</CustomerId> <ExhibitorId>2</ExhibitorId> <UniqueId>ae08b11e-39d6-4554-a0fc-d4213db37b00</UniqueId> <UserUniqueId>4</UserUniqueId> </APIExhibitorRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of APIExhibitorListName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
Title | string |
None. |
|
BoothNumber | string |
None. |
|
IsAlreadyInFav | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": 1, "Title": "sample string 1", "BoothNumber": "sample string 2", "IsAlreadyInFav": true }, { "Id": 1, "Title": "sample string 1", "BoothNumber": "sample string 2", "IsAlreadyInFav": true } ]
application/xml, text/xml
Sample:
<ArrayOfAPIExhibitorList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <APIExhibitorList> <BoothNumber>sample string 2</BoothNumber> <Id>1</Id> <IsAlreadyInFav>true</IsAlreadyInFav> <Title>sample string 1</Title> </APIExhibitorList> <APIExhibitorList> <BoothNumber>sample string 2</BoothNumber> <Id>1</Id> <IsAlreadyInFav>true</IsAlreadyInFav> <Title>sample string 1</Title> </APIExhibitorList> </ArrayOfAPIExhibitorList>