PUT api/Conference/AddNote

Request Information

URI Parameters

None.

Body Parameters

APINoteRequest
NameDescriptionTypeAdditional 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": "8817eae8-c77e-49b8-bc05-958a2870b329",
  "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>8817eae8-c77e-49b8-bc05-958a2870b329</UniqueId>
  <UserUniqueId>7</UserUniqueId>
</APINoteRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<long xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</long>