Last Updated: May 05, 2016
Deleting a shopping cart item
This API allows a client application to delete a shopping cart item from a shopping cart based on its unique key.
Request
HTTP Method | Resource URI |
---|---|
DELETE | https://{tenantName}.api.xomni.com/pii/shoppingcartitem?shoppingCartItemUniqueKey={shoppingCartItemUniqueKey}&longitude={latitude}&latitude={latitude} |
URI Parameters
Parameter Name | Description | Type | Conditions |
---|---|---|---|
shoppingCartItemUniqueKey | The unique key of the shopping cart item. | string | |
longitude | Longitude value of the deletion operation location. | number | |
latitude | Latitude value of the deletion operation location. | number |
Request Headers
Header Field Name | Description |
---|---|
PIIToken |
Includes the base64-encoded “Personally Identifiable Information” data.
Sample: dXNlcm5hbWU6SW5uQXBwc1VzZXI7cGFzc3dvcmQ6SW5uQXBwc1Bhc3M=
|
Authorization |
Access or identity token taken from oauth APIs.
Sample: Bearer dc8f1dcdbe454da8a25621839a93569337522968019e4bd7becd6e01285444da
|
Accept |
Includes minor version header.
Sample: application/vnd.xomni.api-v4-1, */*
|
Response
The response does not contain any response entity if the status is successful.
Response Headers
Header Field Name | Description |
---|---|
Content-Type |
Content type of the response entity. The value of this header is always application/json.
|
Status Codes
A successful operation returns status code 202 (Accepted) for DELETE operations. Possible response status codes are as listed below:
Status Code | Description |
---|---|
202 (Accepted) | The shopping cart item is deleted. |
403 (Forbidden) | This shopping cart is private or not accessible to specified PII User. |
404 (Not Found) | The shopping cart item you are trying to delete could not found. |