PUT api/Conference/GetCheckInPhotosForSeminar
Request Information
URI Parameters
None.
Body Parameters
APISeminarPhotoCheckIn| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
None. |
|
| UniqueId | globally unique identifier |
None. |
|
| UserUniqueId | integer |
None. |
|
| SeminarId | integer |
None. |
|
| PageNumber | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": 1,
"UniqueId": "389c0eaa-8a77-49c7-b5c9-3bf577425ff0",
"UserUniqueId": 3,
"SeminarId": 4,
"PageNumber": 5
}
application/xml, text/xml
Sample:
<APISeminarPhotoCheckIn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <CustomerId>1</CustomerId> <PageNumber>5</PageNumber> <SeminarId>4</SeminarId> <UniqueId>389c0eaa-8a77-49c7-b5c9-3bf577425ff0</UniqueId> <UserUniqueId>3</UserUniqueId> </APISeminarPhotoCheckIn>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIGetPhotoListForCheckInResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| List | Collection of PhotoListOfCheckIn |
None. |
|
| TotalRecords | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"List": [
{
"Id": 1,
"PhotoUrl": "sample string 2",
"Thumb": "sample string 3"
},
{
"Id": 1,
"PhotoUrl": "sample string 2",
"Thumb": "sample string 3"
}
],
"TotalRecords": 1
}
application/xml, text/xml
Sample:
<APIGetPhotoListForCheckInResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
<List>
<PhotoListOfCheckIn>
<Id>1</Id>
<PhotoUrl>sample string 2</PhotoUrl>
<Thumb>sample string 3</Thumb>
</PhotoListOfCheckIn>
<PhotoListOfCheckIn>
<Id>1</Id>
<PhotoUrl>sample string 2</PhotoUrl>
<Thumb>sample string 3</Thumb>
</PhotoListOfCheckIn>
</List>
<TotalRecords>1</TotalRecords>
</APIGetPhotoListForCheckInResponse>