Offer Product Filter
Represents the product filter
List of the product's identifiers with type. Limited to 100 values. One of the two is required skus or references.
List of product's skus separated with comma. Limited to 100 values. One of the two is required skus or references.
{ "references": [ { "__typename": "OfferProductReferenceFilter" } ], "skus": [ "Example String" ] }
Shopping Cart Input
Compute U.S. order taxes Default to false
Customer identifier code. Ignored if compute_order_taxes is set to false
Customer shipping address Required if compute_order_taxes is set to true
List of the selected offers
The code of the channel the order will be placed on. The selected offers get the price and promotions defined on this specific channel.If not specified, only the default prices of the offers are taken into account.
For Customer Pricing users only. Customer identifier code the API will use to return the applicable price. Ignored if value does not exist.
A list of promo codes, max 100 values
Code of the selected shipping zone
{ "computeOrderTaxes": true, "customerCode": "Example String", "customerShippingAddress": { "__typename": "ShoppingCartCustomerShippingAddressInput" }, "offers": [ { "__typename": "ShoppingCartOfferInput" } ], "pricingChannelCode": "Example String", "pricingCustomerOrganizationId": "Example String", "promoCodes": [ "Example String" ], "shippingZoneCode": "Example String" }
Shopping Cart Customer Shipping Address Input
Customer shipping address street 1. Required if compute_order_taxes is set to true
Customer shipping address street 2. Ignored if compute_order_taxes is set to false
Customer shipping address state. (Two letters US State code). Required if compute_order_taxes is set to true
Customer shipping address zipcode. Required if compute_order_taxes is set to true
Customer shipping address city. Required if compute_order_taxes is set to true
Customer shipping address country (ISO 3166-1, three letters code). Required if compute_order_taxes is set to true
{ "street1": "Example String", "street2": "Example String", "state": "Example String", "zipCode": "Example String", "city": "Example String", "country": "Example Custom Scalar" }
Thread Filter
Filter to apply on threads.
Customer's identifier. If not provided, customerOrganizationId must be provided
Customer's organization identifier. If not provided, customerId must be provided
Entity's identifiers link to the thread. If provided, entityType must be provided
Entity's type link to the thread. Possible values: MMP_ORDER, MMP_OFFER, MPS_ORDER, MPS_SERVICE, SELLER_OPERATOR. If provided, entityIds must be provided.
Thread's channels code.
{ "customerId": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "customerOrganizationId": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "entityIds": [ "9cfb1c81-4c79-452f-b1f5-8ee6571276b4" ], "entityType": "Example String", "channelCodes": [ "Example String" ] }