PUT api/Conference/GetExhibitors
Request Information
URI Parameters
None.
Body Parameters
APIExhibitorRequest| Name | 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": "1905c35f-a1df-46a5-a11b-cde6f892281f",
"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>1905c35f-a1df-46a5-a11b-cde6f892281f</UniqueId> <UserUniqueId>4</UserUniqueId> </APIExhibitorRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of APIExhibitorList| Name | 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>