Reference > Shop flow URLs > Order Management subsystem URLs > Orders URLs
ShipInfoDelete URL
Deletes either shipping instructions or, for B2B orders, shipping charge type information from an order.
URL structure
- http:// host_name/path/
- The fully qualified name of the WebSphere Commerce Server and the configuration path.
name-value pair with the & character. For a detailed description of the parameters and their values, see the list entitled Parameter values." />
Parameter values
- storeId
- Required: The store ID of the order.
- orderId
- Required: The identifier of the order to which the shipping information applies. Specify zero or more orders, using order reference numbers or one of the special abbreviations ".", "*", ".t", "*t". See the Order abbreviations for a description of these abbreviations. If this parameter is omitted, it defaults to ".".
- URL
- Required: The URL to be called when the command completes successfully.
- addressId_ i
- Optional: Contains a distinct addressId value depending on what shipping information is being stored, for the enumeration group specified as i. If shipping instructions are being stored, the addressId is the identifier of the address associated with the shipping instructions. If the addressID is specified, the shipping instruction is deleted. If addressID is not specified, the shipping carrier account number is deleted.
- shipModeId_ i
- Required: The order ship mode associated with the shipping instructions or shipping carrier account number for the enumeration group specified as i.
Example 1
The following example deletes the shipping instructions provided for order 112233 for the address ID and ship mode listed.
http://host_name/webapp/wcs/stores/servlet/ShipInfoDelete?orderID=112233&storeId=10001 &addressId_0=10&shipModeId_0=100&URL=/
Example 2
The following example deletes the shipping information (carrier account number) associated with order 445566 for a B2B order.
http://host_name/webapp/wcs/stores/servlet/ShipInfoDelete?orderID=223344&storeId=10002 &addressId=2&shipModeId_0=200&URL=/
Behavior
Deletes shipping information for an order. Deletes either the shipping instructions or shipping carrier account number.
When calling the ShipInfoDelete controller command in a JSP file, be sure to include the form action attribute in the calling JSP file. For example:
<form NAME=ShipMethodPage METHOD=GET action="ShipInfoDelete">
Exception conditions
None.
Related concepts
Related reference
Order Management subsystem URLs