Footer Section
Explore

The options post endpoint can be used to add options to an existing cart item.
The reference id of the cart. It can be set to 'active' to use the current active cart for the user.
The reference of the cart item representing the parent bundle product.
The namespace for the fields is prefixed if set to False. By default it is True.
The pricing strategy to use. 'default' | 'async' | 'skip'
The rule strategy to use. 'default' | 'async' | 'skip'
The account value from the header is taken as default account if passed as query parameter.
Content type of the request body.
The name of the storefront used for the request.
Request body can be a single record or an array of records if multiple options are to be added. The body of the request should contain an object containing the primitive string id of the option you want added to the bundle along with the quantity to be added.
OK
curl --request POST \--url https://documentation.conga.com/carts/cartId/items/cartItemId/options \--header 'Accept: application/json' \--header 'Authorization: Basic 123' \--header 'Content-Type: application/json' \--header 'x-account: ' \--header 'x-storefront: ' \--data '{"ProductId": "01t4R00000J5R6i","Quantity": 1,"SellingTerm": 1,"ProductAttributes": {"AutoABOPicklist__c": "Option3"},"LineItem": []}'