WEBCentralizedShoppingCartRemoveEventRegistrantGroup

Initial Build

2008.01

xWEB

Web Method

Response Type

object

This method will remove a Group Registration from the shopping cart.

Parameters

  • oCentralizedOrderEntry (Shopping Cart Object). The shopping cart object which contains the group registration.
  • GroupRegistrationKey (GUID). Key corresponding to the group registration object to remove.

Response

CentralizedOrderEntry (Shopping Cart Object). The provided shopping cart object with the specified group registration and related line items removed.

Sample Request

<<SAMPLE REQUEST>>

Sample Response

<<SAMPLE RESPONSE>>
   

JSON Method

Removes a registrant group from cart using the group registration key.

Call this method instead of WEBCentralizedShoppingCartRemoveLineItem. This method removes all event and sessions fees from the cart for the selected registration group.

See WEBCentralizedShoppingCartGetNew or WEBCentralizedShoppingCartRefresh for examples of the shopping cart POST and response objects.

 

GET n/a

POST /xweb/JSON/WEBCentralizedShoppingCartRemoveEventRegistrantGroup

Copy
DATA: JSON
{
    "WEBCentralizedShoppingCartRemoveEventRegistrantGroup": {
        "GroupRegistrationKey": "00000000-0000-0000-0000-000000000000",
            "oCentralizedOrderEntry": {
                <<shopping_cart_object>>
            }
      }
}

 

Copy
SAMPLE RESULT
HTTP STATUS: 200
DATA: JSON
<<Updated_Shopping_Cart_Object>>