PUT api/Conference/GetNote
Request Information
URI Parameters
None.
Body Parameters
APINoteRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Note | string |
None. |
|
| SeminarId | integer |
None. |
|
| ExhibitorId | integer |
None. |
|
| SpeakerId | integer |
None. |
|
| CustomerId | integer |
None. |
|
| UserUniqueId | integer |
None. |
|
| UniqueId | globally unique identifier |
None. |
|
| Type | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Note": "sample string 2",
"SeminarId": 3,
"ExhibitorId": 4,
"SpeakerId": 5,
"CustomerId": 6,
"UserUniqueId": 7,
"UniqueId": "469473cd-affe-44a5-84a9-52c300aa03de",
"Type": 9
}
application/xml, text/xml
Sample:
<APINoteRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <CustomerId>6</CustomerId> <ExhibitorId>4</ExhibitorId> <Id>1</Id> <Note>sample string 2</Note> <SeminarId>3</SeminarId> <SpeakerId>5</SpeakerId> <Type>9</Type> <UniqueId>469473cd-affe-44a5-84a9-52c300aa03de</UniqueId> <UserUniqueId>7</UserUniqueId> </APINoteRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APINoteResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Note | string |
None. |
|
| UpdatedDate | date |
None. |
|
| Speaker | APISpeakerResponseList |
None. |
|
| Seminar | ApISeminarList |
None. |
|
| Exhibitor | APIExhibitorList |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Note": "sample string 2",
"UpdatedDate": "2026-01-14T22:38:47.3568292+00:00",
"Speaker": {
"Id": 1,
"Name": "sample string 2",
"Title": "sample string 3",
"CompanyName": "sample string 4",
"IsAlreadyInFav": true,
"ProfilePhoto": "sample string 6",
"Description": "sample string 7"
},
"Seminar": {
"Id": 1,
"Title": "sample string 1",
"Location": "sample string 2",
"SeminarDate": "2026-01-14T22:38:47.3568292+00:00",
"SeminarTime": "sample string 4",
"TimeTo": "sample string 5",
"TimeFrom": "sample string 6",
"Time": "2026-01-14T22:38:47.3568292+00:00",
"IsAlreadyInFav": true
},
"Exhibitor": {
"Id": 1,
"Title": "sample string 1",
"BoothNumber": "sample string 2",
"IsAlreadyInFav": true
}
}
application/xml, text/xml
Sample:
<APINoteResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
<Exhibitor>
<BoothNumber>sample string 2</BoothNumber>
<Id>1</Id>
<IsAlreadyInFav>true</IsAlreadyInFav>
<Title>sample string 1</Title>
</Exhibitor>
<Id>1</Id>
<Note>sample string 2</Note>
<Seminar>
<Id>1</Id>
<IsAlreadyInFav>true</IsAlreadyInFav>
<Location>sample string 2</Location>
<SeminarDate>2026-01-14T22:38:47.3568292+00:00</SeminarDate>
<SeminarTime>sample string 4</SeminarTime>
<Time>2026-01-14T22:38:47.3568292+00:00</Time>
<TimeFrom>sample string 6</TimeFrom>
<TimeTo>sample string 5</TimeTo>
<Title>sample string 1</Title>
</Seminar>
<Speaker>
<CompanyName>sample string 4</CompanyName>
<Description>sample string 7</Description>
<Id>1</Id>
<IsAlreadyInFav>true</IsAlreadyInFav>
<Name>sample string 2</Name>
<ProfilePhoto>sample string 6</ProfilePhoto>
<Title>sample string 3</Title>
</Speaker>
<UpdatedDate>2026-01-14T22:38:47.3568292+00:00</UpdatedDate>
</APINoteResponse>