WEBCentralizedShoppingCartGetEventRegistrantTypeListByEvent

Initial Build

2008.01

xWEB

Web Method

Response Type

XML node

This method returns a list of the Registrant Types, excluding guest registrant types, which have been configured for a specified event. With this list, you can pass the <rgt_key> into the <Registrant.reg_rgt_key> element of a Registrant Object to select the Registrant's Registrant Type.

See XWeb Event Registration for a complete walk-through of how to create an Event Registration in xWeb.

Parameters

EventKey (GUID). The key of the event for which the list of registrant types should be returned.

Response

Xml (XML Node). A list of the registrant types which are related to the event specified, and are not marked as a guest registrant type. The list will include the registrant type key and code.

Sample Request

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.avectra.com/2005/">
<soapenv:Header>
<ns:AuthorizationToken>
<!--Optional:-->
<ns:Token>cd360455-46fd-43e0-b149-bed7c0e144eb</ns:Token>
</ns:AuthorizationToken>
</soapenv:Header>
<soapenv:Body>
<ns:WEBCentralizedShoppingCartGetEventRegistrantTypeListByEvent>
<ns:EventKey>4df7d0e5-108d-45b6-997b-2e8731e4cea6</ns:EventKey>
</ns:WEBCentralizedShoppingCartGetEventRegistrantTypeListByEvent>
</soapenv:Body>
</soapenv:Envelope>

Sample Response

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Header>
<AuthorizationToken xmlns="http://www.avectra.com/2005/">
<Token>cd360455-46fd-43e0-b149-bed7c0e144eb</Token>
</AuthorizationToken>
</soap:Header>
<soap:Body>
<WEBCentralizedShoppingCartGetEventRegistrantTypeListByEventResponse xmlns="http://www.avectra.com/2005/">
<WEBCentralizedShoppingCartGetEventRegistrantTypeListByEventResult>
<Results recordReturn="5">
<Result>
<rgt_key>bba65476-d899-41d1-9ea4-de2a8ef8673b</rgt_key>
<rgt_code>Full Meeting</rgt_code>
</Result>
<Result>
<rgt_key>faa3f453-d665-4ec0-a143-db1c498ee014</rgt_key>
<rgt_code>Monday Only</rgt_code>
</Result>
<Result>
<rgt_key>81632aaf-3d2d-4d50-9cbd-96adc98567ea</rgt_key>
<rgt_code>Pre-Con Only</rgt_code>
</Result>
<Result>
<rgt_key>53ff2efd-07e2-42be-bac4-f6c7eae675b1</rgt_key>
<rgt_code>Saturday Only</rgt_code>
</Result>
<Result>
<rgt_key>6c37e559-338c-4e89-8149-8f7235a0442b</rgt_key>
<rgt_code>Sunday Only</rgt_code>
</Result>
</Results>
</WEBCentralizedShoppingCartGetEventRegistrantTypeListByEventResult>
</WEBCentralizedShoppingCartGetEventRegistrantTypeListByEventResponse>
</soap:Body>
</soap:Envelope>