PUT api/Conference/GetAttendess

Request Information

URI Parameters

None.

Body Parameters

APIUserListAgendaRequest
NameDescriptionTypeAdditional information
CustomerId

integer

None.

UniqueId

globally unique identifier

None.

UserUniqueId

integer

None.

SeminarId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerId": 1,
  "UniqueId": "3f4edb9d-553c-44a6-b2ee-b60bb7fb272f",
  "UserUniqueId": 3,
  "SeminarId": 4
}

application/xml, text/xml

Sample:
<APIUserListAgendaRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
  <CustomerId>1</CustomerId>
  <SeminarId>4</SeminarId>
  <UniqueId>3f4edb9d-553c-44a6-b2ee-b60bb7fb272f</UniqueId>
  <UserUniqueId>3</UserUniqueId>
</APIUserListAgendaRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of APIUserListAgendaResponse
NameDescriptionTypeAdditional information
ProfilePic

string

None.

UserUniqueId

integer

None.

Name

string

None.

DateAdded

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ProfilePic": "sample string 1",
    "UserUniqueId": 2,
    "Name": "sample string 3",
    "DateAdded": "2025-08-28T22:20:41.0023951+00:00"
  },
  {
    "ProfilePic": "sample string 1",
    "UserUniqueId": 2,
    "Name": "sample string 3",
    "DateAdded": "2025-08-28T22:20:41.0023951+00:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAPIUserListAgendaResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
  <APIUserListAgendaResponse>
    <DateAdded>2025-08-28T22:20:41.0023951+00:00</DateAdded>
    <Name>sample string 3</Name>
    <ProfilePic>sample string 1</ProfilePic>
    <UserUniqueId>2</UserUniqueId>
  </APIUserListAgendaResponse>
  <APIUserListAgendaResponse>
    <DateAdded>2025-08-28T22:20:41.0023951+00:00</DateAdded>
    <Name>sample string 3</Name>
    <ProfilePic>sample string 1</ProfilePic>
    <UserUniqueId>2</UserUniqueId>
  </APIUserListAgendaResponse>
</ArrayOfAPIUserListAgendaResponse>