Cart Custom Properties

You can enable a mini cart view in the following requests to show changes to the cart immediately. Find out more in the Views for Cart modifying operations

Prerequisites

Add Custom Properties to Cart

Parameters

  • key the unique key of the property (string)

  • value the value of the property (string)

Request

curl -D- -X POST <base_url>/api/v1/carts/<cartId>/properties \
    -H 'Authorization: Bearer <ACCESS_TOKEN>'
    -H 'Content-Type: application/json' \
    -d '{
        "cultureCode": "<cultureCode>",
        "priceGroupId": "<priceGroupId>",
        "key": "<key>",
        "value": "<value>"
    }'

Response

Delete Custom Property from Cart

Parameters

Request

Response

Get Custom Properties for Cart

Request

Response

Update Custom Properties for Cart

Parameters

Request

Response

Error Handling

Error
Description

BadRequest (400)

Execution of the pipeline fails; Price group is not found; AccessToken is not attached.

Unauthorized (401)

The token is expired.

Forbidden (403)

The token does not have access to this endpoint.

NotFound (404)

Cart or Property not found.

Conflict (409)

Property already exists on the order.

Error Response Example

Error Handling

Last updated

Was this helpful?