The CreateHardgoodShippingGroupActor is used to create a new hardgood shipping group. The path to this actor is: /atg/commerce/custsvc/order/CreateHardgoodShippingGroupActor.
This actor contains the addHardgoodShippingGroup actor-chain:
Parameter  | Description  | 
|---|---|
  | The first name of the customer associated with this shipping group.  | 
  | The middle name or initial of the customer associated with this shipping group.  | 
  | The last name of the customer associated with this shipping group.  | 
  | The first address field associated with this shipping group.  | 
  | The second address field associated with this shipping group.  | 
  | The city of the address associated with this shipping group.  | 
  | The state of the address associated with this shipping group.  | 
  | The country of the address associated with this shipping group.  | 
  | The postal code of the address associated with this shipping group.  | 
  | The phone number of the customer associated with this shipping group.  | 
Create New Hardgood Shipping Group Example
curl -L -v -b agent_cookies.txt -H "Content-Type: application/json" -d "{
\"firstName\": \"Joe\",\"lastName\": \"Smith\",\"address1\":
\"1 Main St\",\"city\": \"Cambridge\",\"state\": \"MA\",\"country\": \"USA\",
\"postalCode\": \"02146\" }" "http://localhost:8280/rest/model/atg/commerce/
custsvc/order/CreateHardgoodShippingGroupActor/newHardgoodShippingGroup"
