WEBCentralizedShoppingCartGetEventRegistrantGroupIndividualList

Initial Build

2008.01

xWEB

Web Method

Response Type

XMLNode

This method returns a list of the individuals who are eligible to be registered as part of the group registration. This list will be the registrant's fellow employees.

Note that you can still register people outside of this group in a Group Registration, but this list serves as starting point. Your application could list the people and suggest that the registrant add them to the Group.

See xWeb Event Group Registration for more.

Parameters

  • EventKey (GUID). Event the group registration is for
  • IndividualCustomerKey (GUID). Customer Key of the Individual performing the group registration
  • OrganizationCustomerKey (GUID). Customer Key of the Organization the group of registrants are related to

Response

Xml (XML Node)—A list of the individuals who can be registered for this event. This includes individuals related to the organization provided as well as individuals related to the primary organization for the individual performing the registration. The results include the individual's name, key, city, state, and country.

Sample Request

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.avectra.com/2005/">
<soapenv:Header>
<ns:AuthorizationToken>
<ns:Token>*****************</ns:Token>
</ns:AuthorizationToken>
</soapenv:Header>
<soapenv:Body>
<ns:WEBCentralizedShoppingCartGetEventRegistrantGroupIndividualList>
<ns:EventKey>2b4fb750-8065-4577-987b-e43d4cd3151a</ns:EventKey>
<ns:IndividualCustomerKey>21f1093b-fd6a-4d7f-9dc2-86cdacce3171</ns:IndividualCustomerKey>
<ns:OrganizationCustomerKey>43a577de-8660-4f1f-be8b-413658c11bac</ns:OrganizationCustomerKey>
</ns:WEBCentralizedShoppingCartGetEventRegistrantGroupIndividualList>
</soapenv:Body>
</soapenv:Envelope>

Sample Response

There will be one <Result> for each customer in the list.

<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>fe0153e9-4e52-4f59-872f-e2a2572ed00b</Token>
</AuthorizationToken>
</soap:Header>
<soap:Body>
<WEBCentralizedShoppingCartGetEventRegistrantGroupIndividualListResponse xmlns="http://www.avectra.com/2005/">
<WEBCentralizedShoppingCartGetEventRegistrantGroupIndividualListResult>
<Results recordReturn="104">
<Result>
<cst_key>cf6a9bb4-04ce-4747-8a68-f1b55e1e6cef</cst_key>
<cst_sort_name_dn>Corleone Michael</cst_sort_name_dn>
<adr_city>Lake Tahoe</adr_city>
<adr_state>CA</adr_state>
<adr_country>UNITED STATES</adr_country>
</Result>
<Result>
<cst_key>ed010cf4-f132-40b5-ac08-ab0a1350b3c9</cst_key>
<cst_sort_name_dn>Lavransdatter Kirsten</cst_sort_name_dn>
<adr_city>Sil</adr_city>
<adr_state>Gudbrandsdal</adr_state>
<adr_country>NORWAY</adr_country>
</Result>
<Result>
<cst_key>038da729-cb12-45eb-8963-bf668745ddda</cst_key>
<cst_sort_name_dn>Jones Jeff</cst_sort_name_dn>
<adr_city>Falls Chruch</adr_city>
<adr_state>VA</adr_state>
<adr_country>UNITED STATES</adr_country>
</Result>
</Results>
</WEBCentralizedShoppingCartGetEventRegistrantGroupIndividualListResult>
</WEBCentralizedShoppingCartGetEventRegistrantGroupIndividualListResponse>
</soap:Body>
</soap:Envelope>