GET attendee/{webProductId}/{eventId}/{accountId}/{attendeeId}/{cartId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
webProductId | string |
Required |
|
eventId | string |
Required |
|
accountId | string |
Required |
|
attendeeId | string |
Required |
|
cartId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
AttendeeName | Description | Type | Additional information |
---|---|---|---|
PortalId | string |
None. |
|
Id | string |
None. |
|
FullName | string |
None. |
|
EventAttendeePrice | EventAttendeePrice |
None. |
|
SessionAttendeePrices | Collection of SessionAttendeePrice |
None. |
|
RegistrationTypePrices | Collection of RegistrationTypePrice |
None. |
Response Formats
application/json, text/json
Sample:
{ "PortalId": "sample string 1", "Id": "sample string 2", "FullName": "sample string 3", "EventAttendeePrice": { "RegistrationTypeId": "sample string 1", "WebProductId": "sample string 2", "AlreadyRegistered": true, "Price": 4.0 }, "SessionAttendeePrices": [ { "AlreadyRegistered": true, "WebProductId": "sample string 2", "Price": 3.0 }, { "AlreadyRegistered": true, "WebProductId": "sample string 2", "Price": 3.0 } ], "RegistrationTypePrices": [ { "RegistrationTypeId": "sample string 1", "Price": 2.0 }, { "RegistrationTypeId": "sample string 1", "Price": 2.0 } ] }
application/xml, text/xml
Sample:
<Attendee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AltaiStandard.Web.Services.Models"> <EventAttendeePrice> <AlreadyRegistered>true</AlreadyRegistered> <Price>4</Price> <RegistrationTypeId>sample string 1</RegistrationTypeId> <WebProductId>sample string 2</WebProductId> </EventAttendeePrice> <FullName>sample string 3</FullName> <Id>sample string 2</Id> <PortalId>sample string 1</PortalId> <RegistrationTypePrices> <RegistrationTypePrice> <Price>2</Price> <RegistrationTypeId>sample string 1</RegistrationTypeId> </RegistrationTypePrice> <RegistrationTypePrice> <Price>2</Price> <RegistrationTypeId>sample string 1</RegistrationTypeId> </RegistrationTypePrice> </RegistrationTypePrices> <SessionAttendeePrices> <SessionAttendeePrice> <AlreadyRegistered>true</AlreadyRegistered> <Price>3</Price> <WebProductId>sample string 2</WebProductId> </SessionAttendeePrice> <SessionAttendeePrice> <AlreadyRegistered>true</AlreadyRegistered> <Price>3</Price> <WebProductId>sample string 2</WebProductId> </SessionAttendeePrice> </SessionAttendeePrices> </Attendee>