PUT api/Conference/AddNote
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": "ccf7aa96-c9b1-4a73-b8fb-95ad986538a2",
"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>ccf7aa96-c9b1-4a73-b8fb-95ad986538a2</UniqueId> <UserUniqueId>7</UserUniqueId> </APINoteRequest>
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>