PUT api/Conference/AddExhibitorToAgenda
Request Information
URI Parameters
None.
Body Parameters
ExhibitorAgenda| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| ExhibitorId | integer |
None. |
|
| Notes | string |
None. |
|
| UserUniqueId | integer |
None. |
|
| UniqueId | globally unique identifier |
None. |
|
| Location | string |
None. |
|
| StartDate | date |
None. |
|
| Time | string |
None. |
|
| Duration | integer |
None. |
|
| CustomerId | integer |
None. |
|
| AlertTime | integer |
None. |
|
| Alert | boolean |
None. |
|
| AlertAtStartOfEvent | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"ExhibitorId": 2,
"Notes": "sample string 3",
"UserUniqueId": 4,
"UniqueId": "d8ac6b1f-3125-48de-af9d-a10fcc512401",
"Location": "sample string 6",
"StartDate": "2026-01-14T14:38:05.3907521+00:00",
"Time": "sample string 8",
"Duration": 9,
"CustomerId": 10,
"AlertTime": 11,
"Alert": true,
"AlertAtStartOfEvent": true
}
application/xml, text/xml
Sample:
<ExhibitorAgenda xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <Alert>true</Alert> <AlertAtStartOfEvent>true</AlertAtStartOfEvent> <AlertTime>11</AlertTime> <CustomerId>10</CustomerId> <Duration>9</Duration> <ExhibitorId>2</ExhibitorId> <Id>1</Id> <Location>sample string 6</Location> <Notes>sample string 3</Notes> <StartDate>2026-01-14T14:38:05.3907521+00:00</StartDate> <Time>sample string 8</Time> <UniqueId>d8ac6b1f-3125-48de-af9d-a10fcc512401</UniqueId> <UserUniqueId>4</UserUniqueId> </ExhibitorAgenda>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<long xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</long>