Types
QueryContextInput
Input Fields
customerGroup - String!userViewHistory - [ViewHistoryInput!]Example
{
"customerGroup": "xyz789",
"userViewHistory": [ViewHistoryInput]
}
QuoteItemsSortInput
Specifies the field to use for sorting quote items
Input Fields
field - SortQuoteItemsEnum!order - SortEnum!Example
{"field": "ITEM_ID", "order": "ASC"}
QuoteTemplateExpirationDateInput
Sets quote template expiration date.
Input Fields
expiration_date - String!template_id - ID!NegotiableQuoteTemplate object.Example
{
"expiration_date": "xyz789",
"template_id": 4
}
QuoteTemplateLineItemNoteInput
Sets quote item note.
Input Fields
item_id - IDCartLineItem object.item_uid - IDCartLineItem object.note - StringtemplateId - ID!NegotiableQuoteTemplate object.Example
{
"item_id": 4,
"item_uid": 4,
"note": "abc123",
"templateId": 4
}
QuoteTemplateNotificationMessage
Contains a notification message for a negotiable quote template.
Fields
message - String!type - String!Example
{
"message": "abc123",
"type": "xyz789"
}
RangeBucket
For use on numeric product fields
Fields
count - Int!from - Float!title - String!to - FloatExample
{
"count": 123,
"from": 987.65,
"title": "xyz789",
"to": 123.45
}
RangeOperatorInput
Input Fields
Example
{"type": "UNKNOWN_RANGE_TYPE", "value": RangeValueInput}
RangeType
Values
UNKNOWN_RANGE_TYPESTATICPERCENTAGEDYNAMICExample
""UNKNOWN_RANGE_TYPE""
RangeValueInput
Input Fields
Example
{"from": 123.45, "to": 987.65}
ReCaptchaConfigOutput
Fields
configurations - ReCaptchaConfigurationis_enabled - Boolean!Example
{
"configurations": ReCaptchaConfiguration,
"is_enabled": false
}
ReCaptchaConfiguration
Contains reCAPTCHA form configuration details.
Fields
badge_position - Stringlanguage_code - Stringminimum_score - Floatre_captcha_type - ReCaptchaTypeEmum!technical_failure_message - String!theme - String!validation_failure_message - String!website_key - String!Example
{
"badge_position": "xyz789",
"language_code": "abc123",
"minimum_score": 987.65,
"re_captcha_type": "INVISIBLE",
"technical_failure_message": "xyz789",
"theme": "xyz789",
"validation_failure_message": "xyz789",
"website_key": "xyz789"
}
ReCaptchaConfigurationV3
Contains reCAPTCHA V3-Invisible configuration details.
Fields
badge_position - String!failure_message - String!forms - [ReCaptchaFormEnum]!is_enabled - Boolean!language_code - Stringminimum_score - Float!theme - String!website_key - String!Example
{
"badge_position": "abc123",
"failure_message": "xyz789",
"forms": ["PLACE_ORDER"],
"is_enabled": false,
"language_code": "xyz789",
"minimum_score": 987.65,
"theme": "abc123",
"website_key": "xyz789"
}
ReCaptchaFormConfigItem
Contains reCAPTCHA configuration for a specific form type.
Fields
configurations - ReCaptchaConfigurationform_type - ReCaptchaFormEnum!is_enabled - Boolean!Example
{
"configurations": ReCaptchaConfiguration,
"form_type": "PLACE_ORDER",
"is_enabled": true
}
ReCaptchaFormEnum
Values
PLACE_ORDERCONTACTCUSTOMER_LOGINCUSTOMER_FORGOT_PASSWORDCUSTOMER_CREATECUSTOMER_EDITNEWSLETTERPRODUCT_REVIEWSENDFRIENDBRAINTREERESEND_CONFIRMATION_EMAILExample
""PLACE_ORDER""
ReCaptchaTypeEmum
Values
INVISIBLERECAPTCHARECAPTCHA_V3RECAPTCHA_ENTERPRISEExample
""INVISIBLE""
RecommendationUnit
Recommendation Unit containing product and other details
Fields
displayOrder - IntpageType - StringproductsView - [ProductView]storefrontLabel - StringtotalProducts - InttypeId - StringunitId - StringunitName - StringuserError - StringExample
{
"displayOrder": 123,
"pageType": "abc123",
"productsView": [ProductView],
"storefrontLabel": "abc123",
"totalProducts": 123,
"typeId": "xyz789",
"unitId": "xyz789",
"unitName": "abc123",
"userError": "abc123"
}
Recommendations
Recommendations response
Fields
results - [RecommendationUnit]totalResults - IntExample
{"results": [RecommendationUnit], "totalResults": 123}
Region
Fields
code - Stringid - IntRegion object.name - StringExample
{
"code": "abc123",
"id": 987,
"name": "xyz789"
}
RemoveCouponFromCartInput
Specifies the cart from which to remove a coupon.
Input Fields
cart_id - String!Cart object.Example
{"cart_id": "xyz789"}
RemoveCouponFromCartOutput
Contains details about the cart after removing a coupon.
Fields
cart - CartExample
{"cart": Cart}
RemoveCouponsFromCartInput
Remove coupons from the cart.
Input Fields
cart_id - String!Cart object.coupon_codes - [String]!Example
{
"cart_id": "abc123",
"coupon_codes": ["abc123"]
}
RemoveGiftCardFromCartInput
Defines the input required to run the removeGiftCardFromCart mutation.
Input Fields
cart_id - String!gift_card_code - String!Example
{
"cart_id": "xyz789",
"gift_card_code": "xyz789"
}
RemoveGiftCardFromCartOutput
Defines the possible output for the removeGiftCardFromCart mutation.
Fields
cart - Cart!Example
{"cart": Cart}
RemoveGiftRegistryItemsOutput
Contains the results of a request to remove an item from a gift registry.
Fields
gift_registry - GiftRegistryExample
{"gift_registry": GiftRegistry}
RemoveGiftRegistryOutput
Contains the results of a request to delete a gift registry.
Fields
success - Boolean!Example
{"success": true}
RemoveGiftRegistryRegistrantsOutput
Contains the results of a request to delete a registrant.
Fields
gift_registry - GiftRegistryExample
{"gift_registry": GiftRegistry}
RemoveItemFromCartInput
Specifies which items to remove from the cart.
Input Fields
cart_id - String!Cart object.cart_item_uid - IDCartItemInterface object.Example
{"cart_id": "abc123", "cart_item_uid": 4}
RemoveItemFromCartOutput
Contains details about the cart after removing an item.
Fields
cart - Cart!Example
{"cart": Cart}
RemoveNegotiableQuoteItemsInput
Defines the items to remove from the specified negotiable quote.
Input Fields
quote_item_uids - [ID]!quote_uid - ID!NegotiableQuote object.Example
{"quote_item_uids": [4], "quote_uid": 4}
RemoveNegotiableQuoteItemsOutput
Contains the negotiable quote.
Fields
quote - NegotiableQuoteExample
{"quote": NegotiableQuote}
RemoveNegotiableQuoteTemplateItemsInput
Defines the items to remove from the specified negotiable quote.
Input Fields
item_uids - [ID]!template_id - ID!NegotiableQuoteTemplate object.Example
{"item_uids": [4], "template_id": 4}
RemoveProductsFromCompareListInput
Defines which products to remove from a compare list.
Input Fields
products - [ID]!uid - ID!Example
{"products": [4], "uid": 4}
RemoveProductsFromWishlistOutput
Contains the customer's wish list and any errors encountered.
Fields
user_errors - [WishListUserInputError]!wishlist - Wishlist!Example
{
"user_errors": [WishListUserInputError],
"wishlist": Wishlist
}
RemoveReturnTrackingInput
Defines the tracking information to delete.
Input Fields
return_shipping_tracking_uid - ID!ReturnShippingTracking object.Example
{"return_shipping_tracking_uid": 4}
RemoveReturnTrackingOutput
Contains the response after deleting tracking information.
Fields
return - ReturnExample
{"return": Return}
RemoveRewardPointsFromCartOutput
Contains the customer cart.
Fields
cart - Cart!Example
{"cart": Cart}
RemoveStoreCreditFromCartInput
Defines the input required to run the removeStoreCreditFromCart mutation.
Input Fields
cart_id - String!Example
{"cart_id": "xyz789"}
RemoveStoreCreditFromCartOutput
Defines the possible output for the removeStoreCreditFromCart mutation.
Fields
cart - Cart!Example
{"cart": Cart}
RenameNegotiableQuoteInput
Sets new name for a negotiable quote.
Input Fields
quote_comment - Stringquote_name - String!quote_uid - ID!Example
{
"quote_comment": "abc123",
"quote_name": "xyz789",
"quote_uid": 4
}
RenameNegotiableQuoteOutput
Contains the updated negotiable quote.
Fields
quote - NegotiableQuoteExample
{"quote": NegotiableQuote}
ReorderItemsOutput
Contains the cart and any errors after adding products.
Fields
cart - Cart!userInputErrors - [CheckoutUserInputError]!Example
{
"cart": Cart,
"userInputErrors": [CheckoutUserInputError]
}
RequestGuestReturnInput
Contains information needed to start a return request.
Input Fields
comment_text - Stringcontact_email - Stringitems - [RequestReturnItemInput]!token - String!Example
{
"comment_text": "xyz789",
"contact_email": "abc123",
"items": [RequestReturnItemInput],
"token": "abc123"
}
RequestNegotiableQuoteInput
Defines properties of a negotiable quote request.
Input Fields
cart_id - ID!comment - NegotiableQuoteCommentInput!is_draft - Booleanquote_name - String!Example
{
"cart_id": "4",
"comment": NegotiableQuoteCommentInput,
"is_draft": false,
"quote_name": "abc123"
}
RequestNegotiableQuoteOutput
Contains the NegotiableQuote object generated when a buyer requests a negotiable quote.
Fields
quote - NegotiableQuoteExample
{"quote": NegotiableQuote}
RequestNegotiableQuoteTemplateInput
Defines properties of a negotiable quote template request.
Input Fields
cart_id - ID!Example
{"cart_id": 4}
RequestReturnInput
Contains information needed to start a return request.
Input Fields
comment_text - Stringcontact_email - Stringitems - [RequestReturnItemInput]!order_uid - ID!Order object.Example
{
"comment_text": "abc123",
"contact_email": "abc123",
"items": [RequestReturnItemInput],
"order_uid": 4
}
RequestReturnItemInput
Contains details about an item to be returned.
Input Fields
entered_custom_attributes - [EnteredCustomAttributeInput]order_item_uid - ID!OrderItemInterface object.quantity_to_return - Float!selected_custom_attributes - [SelectedCustomAttributeInput]Example
{
"entered_custom_attributes": [
EnteredCustomAttributeInput
],
"order_item_uid": 4,
"quantity_to_return": 123.45,
"selected_custom_attributes": [
SelectedCustomAttributeInput
]
}
RequestReturnOutput
Contains the response to a return request.
Fields
return - Returnreturns - ReturnsExample
{
"return": Return,
"returns": Returns
}
RequisitionList
Defines the contents of a requisition list.
Fields
description - Stringitems - RequistionListItemsitems_count - Int!name - String!uid - ID!updated_at - StringExample
{
"description": "xyz789",
"items": RequistionListItems,
"items_count": 987,
"name": "abc123",
"uid": "4",
"updated_at": "xyz789"
}
RequisitionListFilterInput
Defines requisition list filters.
Input Fields
name - FilterMatchTypeInputuids - FilterEqualTypeInputExample
{
"name": FilterMatchTypeInput,
"uids": FilterEqualTypeInput
}
RequisitionListItemInterface
The interface for requisition list items.
Fields
customizable_options - [SelectedCustomizableOption]!product - ProductInterface!quantity - Float!sku - String!uid - ID!Possible Types
Example
{
"customizable_options": [SelectedCustomizableOption],
"product": ProductInterface,
"quantity": 987.65,
"sku": "abc123",
"uid": "4"
}
RequisitionListItemsInput
Defines the items to add.
Input Fields
entered_options - [EnteredOptionInput]parent_sku - Stringquantity - Floatselected_options - [String]sku - String!Example
{
"entered_options": [EnteredOptionInput],
"parent_sku": "abc123",
"quantity": 123.45,
"selected_options": ["xyz789"],
"sku": "abc123"
}
RequisitionListSortInput
Defines the field to use to sort a list of requisition lists.
Input Fields
sort_direction - SortEnumsort_field - RequisitionListSortableField!Example
{"sort_direction": "ASC", "sort_field": "NAME"}
RequisitionListSortableField
Values
NAMEUPDATED_ATExample
""NAME""
RequisitionLists
Defines customer requisition lists.
Fields
items - [RequisitionList]page_info - SearchResultPageInfosort_fields - SortFieldstotal_count - IntExample
{
"items": [RequisitionList],
"page_info": SearchResultPageInfo,
"sort_fields": SortFields,
"total_count": 123
}
RequistionListItems
Contains an array of items added to a requisition list.
Fields
items - [RequisitionListItemInterface]!page_info - SearchResultPageInfototal_pages - Int!Example
{
"items": [RequisitionListItemInterface],
"page_info": SearchResultPageInfo,
"total_pages": 123
}
Return
Contains details about a return.
Fields
available_shipping_carriers - [ReturnShippingCarrier]comments - [ReturnComment]created_at - String!customer - ReturnCustomer!items - [ReturnItem]number - String!order - CustomerOrdershipping - ReturnShippingstatus - ReturnStatusuid - ID!Return object.Example
{
"available_shipping_carriers": [ReturnShippingCarrier],
"comments": [ReturnComment],
"created_at": "xyz789",
"customer": ReturnCustomer,
"items": [ReturnItem],
"number": "abc123",
"order": CustomerOrder,
"shipping": ReturnShipping,
"status": "PENDING",
"uid": "4"
}
ReturnComment
Contains details about a return comment.
Fields
author_name - String!created_at - String!text - String!uid - ID!ReturnComment object.Example
{
"author_name": "xyz789",
"created_at": "xyz789",
"text": "abc123",
"uid": "4"
}
ReturnCustomer
The customer information for the return.
Fields
email - String!firstname - Stringlastname - StringExample
{
"email": "xyz789",
"firstname": "xyz789",
"lastname": "xyz789"
}
ReturnItem
Contains details about a product being returned.
Fields
custom_attributesV2 - [AttributeValueInterface]order_item - OrderItemInterface!quantity - Float!request_quantity - Float!status - ReturnItemStatus!uid - ID!ReturnItem object.Example
{
"custom_attributesV2": [AttributeValueInterface],
"order_item": OrderItemInterface,
"quantity": 123.45,
"request_quantity": 123.45,
"status": "PENDING",
"uid": "4"
}
ReturnItemAttributeMetadata
Return Item attribute metadata.
Fields
code - ID!default_value - Stringentity_type - AttributeEntityTypeEnum!frontend_class - Stringfrontend_input - AttributeFrontendInputEnuminput_filter - InputFilterEnumis_required - Boolean!is_unique - Boolean!label - Stringmultiline_count - Intoptions - [CustomAttributeOptionInterface]!sort_order - Intvalidate_rules - [ValidationRule]Example
{
"code": 4,
"default_value": "xyz789",
"entity_type": "CATALOG_PRODUCT",
"frontend_class": "xyz789",
"frontend_input": "BOOLEAN",
"input_filter": "NONE",
"is_required": false,
"is_unique": false,
"label": "abc123",
"multiline_count": 123,
"options": [CustomAttributeOptionInterface],
"sort_order": 123,
"validate_rules": [ValidationRule]
}
ReturnItemStatus
Values
PENDINGAUTHORIZEDRECEIVEDAPPROVEDREJECTEDDENIEDExample
""PENDING""
ReturnShipping
Contains details about the return shipping address.
Fields
address - ReturnShippingAddresstracking - [ReturnShippingTracking]ReturnShippingTracking object. If a single UID is specified, the array contains a single tracking record. Otherwise, array contains all tracking information.Example
{
"address": ReturnShippingAddress,
"tracking": [ReturnShippingTracking]
}
ReturnShippingAddress
Contains details about the shipping address used for receiving returned items.
Fields
city - String!contact_name - Stringcountry - Country!postcode - String!region - Region!street - [String]!telephone - StringExample
{
"city": "abc123",
"contact_name": "xyz789",
"country": Country,
"postcode": "abc123",
"region": Region,
"street": ["xyz789"],
"telephone": "abc123"
}
ReturnShippingCarrier
Contains details about the carrier on a return.
Fields
label - String!uid - ID!ReturnShippingCarrier object assigned to the shipping carrier.Example
{
"label": "xyz789",
"uid": "4"
}
ReturnShippingTracking
Contains shipping and tracking details.
Fields
carrier - ReturnShippingCarrier!status - ReturnShippingTrackingStatustracking_number - String!uid - ID!ReturnShippingTracking object assigned to the tracking item.Example
{
"carrier": ReturnShippingCarrier,
"status": ReturnShippingTrackingStatus,
"tracking_number": "xyz789",
"uid": "4"
}
ReturnShippingTrackingStatus
Contains the status of a shipment.
Fields
text - String!Example
{"text": "abc123", "type": "INFORMATION"}
ReturnShippingTrackingStatusType
Values
INFORMATIONERRORExample
""INFORMATION""
ReturnStatus
Values
PENDINGUNCONFIRMEDAUTHORIZEDPARTIALLY_AUTHORIZEDRECEIVEDPARTIALLY_RECEIVEDAPPROVEDPARTIALLY_APPROVEDREJECTEDPARTIALLY_REJECTEDDENIEDPROCESSED_AND_CLOSEDCLOSEDExample
""PENDING""
Returns
Contains a list of customer return requests.
Fields
items - [Return]page_info - SearchResultPageInfototal_count - IntExample
{
"items": [Return],
"page_info": SearchResultPageInfo,
"total_count": 123
}
RevokeCustomerTokenOutput
Contains the result of a request to revoke a customer token.
Fields
result - Boolean!Example
{"result": true}
RewardPoints
Contains details about a customer's reward points.
Fields
balance - RewardPointsAmountbalance_history - [RewardPointsBalanceHistoryItem]exchange_rates - RewardPointsExchangeRatessubscription_status - RewardPointsSubscriptionStatusExample
{
"balance": RewardPointsAmount,
"balance_history": [RewardPointsBalanceHistoryItem],
"exchange_rates": RewardPointsExchangeRates,
"subscription_status": RewardPointsSubscriptionStatus
}
RewardPointsAmount
Fields
money - Money!points - Float!Example
{"money": Money, "points": 123.45}
RewardPointsBalanceHistoryItem
Contain details about the reward points transaction.
Fields
balance - RewardPointsAmountchange_reason - String!date - String!points_change - Float!Example
{
"balance": RewardPointsAmount,
"change_reason": "xyz789",
"date": "xyz789",
"points_change": 987.65
}
RewardPointsExchangeRates
Lists the reward points exchange rates. The values depend on the customer group.
Fields
earning - RewardPointsRateredemption - RewardPointsRateExample
{
"earning": RewardPointsRate,
"redemption": RewardPointsRate
}
RewardPointsRate
Contains details about customer's reward points rate.
Fields
currency_amount - Float!points - Float!Example
{"currency_amount": 987.65, "points": 123.45}
RewardPointsSubscriptionStatus
Indicates whether the customer subscribes to reward points emails.
Fields
balance_updates - RewardPointsSubscriptionStatusesEnum!points_expiration_notifications - RewardPointsSubscriptionStatusesEnum!Example
{
"balance_updates": "SUBSCRIBED",
"points_expiration_notifications": "SUBSCRIBED"
}
RewardPointsSubscriptionStatusesEnum
Values
SUBSCRIBEDNOT_SUBSCRIBEDExample
""SUBSCRIBED""
SDKParams
Defines the name and value of a SDK parameter
Fields
name - Stringvalue - StringExample
{
"name": "xyz789",
"value": "xyz789"
}
SalesCommentItem
Contains details about a comment.
Fields
message - String!timestamp - String!Example
{
"message": "abc123",
"timestamp": "abc123"
}
ScalarBucket
For use on string and other scalar product fields
Fields
count - Int!id - ID!title - String!Example
{"count": 987, "id": 4, "title": "xyz789"}
ScopeTypeEnum
This enumeration defines the scope type for customer orders.
Values
GLOBALWEBSITESTOREExample
""GLOBAL""
SearchClauseInput
A product attribute to filter on
Input Fields
attribute - String!contains - Stringeq - Stringin - [String]range - SearchRangeInputstartsWith - StringExample
{
"attribute": "xyz789",
"contains": "abc123",
"eq": "abc123",
"in": ["abc123"],
"range": SearchRangeInput,
"startsWith": "abc123"
}
SearchRangeInput
A range of numeric values for use in a search
Input Fields
from - Float0 is appliedto - FloatExample
{"from": 987.65, "to": 123.45}
SearchResultPageInfo
Provides navigation for the query response.
Fields
current_page - Intpage_size - Inttotal_pages - IntExample
{"current_page": 123, "page_size": 123, "total_pages": 123}
SelectedBundleOption
Contains details about a selected bundle option.
Fields
label - String!type - String!uid - ID!SelectedBundleOption objectvalues - [SelectedBundleOptionValue]!Example
{
"label": "xyz789",
"type": "abc123",
"uid": "4",
"values": [SelectedBundleOptionValue]
}
SelectedBundleOptionValue
Contains details about a value for a selected bundle option.
Fields
label - String!original_price - Money!priceV2 - Money!quantity - Float!uid - ID!SelectedBundleOptionValue objectExample
{
"label": "abc123",
"original_price": Money,
"priceV2": Money,
"quantity": 123.45,
"uid": "4"
}
SelectedConfigurableOption
Contains details about a selected configurable option.
Fields
configurable_product_option_uid - ID!ConfigurableProductOptions object.configurable_product_option_value_uid - ID!ConfigurableProductOptionsValues object.option_label - String!value_label - String!Example
{
"configurable_product_option_uid": "4",
"configurable_product_option_value_uid": "4",
"option_label": "xyz789",
"value_label": "abc123"
}
SelectedCustomAttributeInput
Contains details about an attribute the buyer selected.
Input Fields
attribute_code - String!value - String!Example
{
"attribute_code": "abc123",
"value": "xyz789"
}
SelectedCustomizableOption
Identifies a customized product that has been placed in a cart.
Fields
customizable_option_uid - ID!CustomizableOptionInterface object, such as a CustomizableFieldOption, CustomizableFileOption, or CustomizableAreaOption object.is_required - Boolean!label - String!sort_order - Int!type - String!CustomizableOptionInterface object.values - [SelectedCustomizableOptionValue]!Example
{
"customizable_option_uid": 4,
"is_required": false,
"label": "xyz789",
"sort_order": 987,
"type": "abc123",
"values": [SelectedCustomizableOptionValue]
}
SelectedCustomizableOptionValue
Identifies the value of the selected customized option.
Fields
customizable_option_value_uid - ID!customizable_option_uid attribute.label - String!value - String!Example
{
"customizable_option_value_uid": 4,
"label": "xyz789",
"price": CartItemSelectedOptionValuePrice,
"value": "xyz789"
}
SelectedPaymentMethod
Describes the payment method selected by the shopper.
Fields
code - String!oope_payment_method_config - OopePaymentMethodConfigpurchase_order_number - Stringtitle - String!Example
{
"code": "xyz789",
"oope_payment_method_config": OopePaymentMethodConfig,
"purchase_order_number": "xyz789",
"title": "abc123"
}
SelectedShippingMethod
Contains details about the selected shipping method and carrier.
Fields
additional_data - [ShippingAdditionalData]amount - Money!carrier_code - String!carrier_title - String!method_code - String!method_title - String!price_excl_tax - Money!price_incl_tax - Money!Example
{
"additional_data": [ShippingAdditionalData],
"amount": Money,
"carrier_code": "abc123",
"carrier_title": "xyz789",
"method_code": "xyz789",
"method_title": "xyz789",
"price_excl_tax": Money,
"price_incl_tax": Money
}
SendNegotiableQuoteForReviewInput
Specifies which negotiable quote to send for review.
Input Fields
comment - NegotiableQuoteCommentInputquote_uid - ID!NegotiableQuote object.Example
{
"comment": NegotiableQuoteCommentInput,
"quote_uid": "4"
}
SendNegotiableQuoteForReviewOutput
Contains the negotiable quote.
Fields
quote - NegotiableQuoteExample
{"quote": NegotiableQuote}
SetBillingAddressOnCartInput
Sets the billing address.
Input Fields
billing_address - BillingAddressInput!cart_id - String!Cart object.Example
{
"billing_address": BillingAddressInput,
"cart_id": "xyz789"
}
SetBillingAddressOnCartOutput
Contains details about the cart after setting the billing address.
Fields
cart - Cart!Example
{"cart": Cart}
SetCartAsInactiveOutput
Sets the cart as inactive
Fields
error - Stringsuccess - Boolean!Example
{"error": "abc123", "success": false}
SetCustomAttributesOnCompanyInput
Defines the company custom attributes.
Input Fields
custom_attributes - [CustomAttributeInput]id - ID!company object.Example
{
"custom_attributes": [CustomAttributeInput],
"id": "4"
}
SetCustomAttributesOnCompanyOutput
Contains the company.
Fields
company - CompanyExample
{"company": Company}
SetCustomAttributesOnNegotiableQuoteInput
Defines the negotiable quote custom attributes.
Input Fields
custom_attributes - [CustomAttributeInput]quote_uid - ID!NegotiableQuote object.Example
{
"custom_attributes": [CustomAttributeInput],
"quote_uid": "4"
}
SetCustomAttributesOnNegotiableQuoteOutput
Contains the negotiable quote.
Fields
quote - NegotiableQuoteExample
{"quote": NegotiableQuote}
SetGiftOptionsOnCartInput
Defines the gift options applied to the cart.
Input Fields
cart_id - String!gift_message - GiftMessageInputgift_receipt_included - Boolean!gift_wrapping_id - IDGiftWrapping object to be used for the cart.printed_card_included - Boolean!Example
{
"cart_id": "xyz789",
"gift_message": GiftMessageInput,
"gift_receipt_included": false,
"gift_wrapping_id": "4",
"printed_card_included": true
}
SetGiftOptionsOnCartOutput
Contains the cart after gift options have been applied.
Fields
cart - Cart!Example
{"cart": Cart}
SetGuestEmailOnCartInput
Defines the guest email and cart.
Input Fields
cart_id - String!Cart object.email - String!Example
{
"cart_id": "abc123",
"email": "xyz789"
}
SetGuestEmailOnCartOutput
Contains details about the cart after setting the email of a guest.
Fields
cart - Cart!Example
{"cart": Cart}
SetLineItemNoteOutput
Contains the updated negotiable quote.
Fields
quote - NegotiableQuoteExample
{"quote": NegotiableQuote}
SetNegotiableQuoteBillingAddressInput
Sets the billing address.
Input Fields
billing_address - NegotiableQuoteBillingAddressInput!quote_uid - ID!NegotiableQuote object.Example
{
"billing_address": NegotiableQuoteBillingAddressInput,
"quote_uid": "4"
}
SetNegotiableQuoteBillingAddressOutput
Contains the negotiable quote.
Fields
quote - NegotiableQuoteExample
{"quote": NegotiableQuote}
SetNegotiableQuotePaymentMethodInput
Defines the payment method of the specified negotiable quote.
Input Fields
payment_method - NegotiableQuotePaymentMethodInput!quote_uid - ID!NegotiableQuote object.Example
{
"payment_method": NegotiableQuotePaymentMethodInput,
"quote_uid": 4
}
SetNegotiableQuotePaymentMethodOutput
Contains details about the negotiable quote after setting the payment method.
Fields
quote - NegotiableQuoteExample
{"quote": NegotiableQuote}
SetNegotiableQuoteShippingAddressInput
Defines the shipping address to assign to the negotiable quote.
Input Fields
quote_uid - ID!NegotiableQuote object.shipping_addresses - [NegotiableQuoteShippingAddressInput]Example
{
"quote_uid": 4,
"shipping_addresses": [
NegotiableQuoteShippingAddressInput
]
}
SetNegotiableQuoteShippingAddressOutput
Contains the negotiable quote.
Fields
quote - NegotiableQuoteExample
{"quote": NegotiableQuote}
SetNegotiableQuoteShippingMethodsInput
Defines the shipping method to apply to the negotiable quote.
Input Fields
quote_uid - ID!NegotiableQuote object.shipping_methods - [ShippingMethodInput]!Example
{
"quote_uid": 4,
"shipping_methods": [ShippingMethodInput]
}
SetNegotiableQuoteShippingMethodsOutput
Contains the negotiable quote.
Fields
quote - NegotiableQuoteExample
{"quote": NegotiableQuote}
SetNegotiableQuoteTemplateShippingAddressInput
Defines the shipping address to assign to the negotiable quote template.
Input Fields
shipping_address - NegotiableQuoteTemplateShippingAddressInput!template_id - ID!NegotiableQuote object.Example
{
"shipping_address": NegotiableQuoteTemplateShippingAddressInput,
"template_id": "4"
}
SetPaymentMethodOnCartInput
Applies a payment method to the cart.
Input Fields
cart_id - String!Cart object.payment_method - PaymentMethodInput!Example
{
"cart_id": "xyz789",
"payment_method": PaymentMethodInput
}
SetPaymentMethodOnCartOutput
Contains details about the cart after setting the payment method.
Fields
cart - Cart!Example
{"cart": Cart}
SetShippingAddressesOnCartInput
Specifies an array of addresses to use for shipping.
Input Fields
cart_id - String!Cart object.shipping_addresses - [ShippingAddressInput]!Example
{
"cart_id": "abc123",
"shipping_addresses": [ShippingAddressInput]
}
SetShippingAddressesOnCartOutput
Contains details about the cart after setting the shipping addresses.
Fields
cart - Cart!Example
{"cart": Cart}
SetShippingMethodsOnCartInput
Applies one or shipping methods to the cart.
Input Fields
cart_id - String!Cart object.shipping_methods - [ShippingMethodInput]!Example
{
"cart_id": "abc123",
"shipping_methods": [ShippingMethodInput]
}
SetShippingMethodsOnCartOutput
Contains details about the cart after setting the shipping methods.
Fields
cart - Cart!Example
{"cart": Cart}
ShareGiftRegistryInviteeInput
Defines a gift registry invitee.
Input Fields
email - String!name - String!Example
{
"email": "abc123",
"name": "abc123"
}
ShareGiftRegistryOutput
Contains the results of a request to share a gift registry.
Fields
is_shared - Boolean!Example
{"is_shared": true}
ShareGiftRegistrySenderInput
Defines the sender of an invitation to view a gift registry.
Input Fields
message - String!name - String!Example
{
"message": "abc123",
"name": "abc123"
}
ShareRequisitionListByEmailInput
An input object that defines which requisition list shared with company users through email.
Input Fields
customerUids - [ID]!requisitionListUid - ID!Example
{
"customerUids": ["4"],
"requisitionListUid": "4"
}
ShareRequisitionListByEmailOutput
Result of sharing a requisition list by email.
Fields
sent_count - Int!user_errors - [ShareRequisitionListUserError]!Example
{
"sent_count": 987,
"user_errors": [ShareRequisitionListUserError]
}
ShareRequisitionListByTokenOutput
The result of sharing a requisition list by token.
Fields
token - String!Example
{"token": "xyz789"}
ShareRequisitionListUserError
An error related to a specific recipient or constraint.
Fields
Example
{
"code": "MAX_RECIPIENTS_EXCEEDED",
"message": "xyz789"
}
ShareRequisitionListUserErrorCode
Machine-readable error codes for requisition list share-by-email and import operations.
Values
MAX_RECIPIENTS_EXCEEDEDINVALID_EMAILNOT_COMPANY_USERIMPORT_FAILEDExample
""MAX_RECIPIENTS_EXCEEDED""
SharedRequisitionListOutput
Shared requisition list view for a recipient.
Fields
requisition_list - RequisitionList!sender_name - String!Example
{
"requisition_list": RequisitionList,
"sender_name": "xyz789"
}
ShipBundleItemsEnum
Defines whether bundle items must be shipped together.
Values
TOGETHERSEPARATELYExample
""TOGETHER""
ShipmentItem
Fields
id - ID!ShipmentItemInterface object.order_item - OrderItemInterfaceproduct_name - Stringproduct_sale_price - Money!product_sku - String!quantity_shipped - Float!Example
{
"id": 4,
"order_item": OrderItemInterface,
"product_name": "abc123",
"product_sale_price": Money,
"product_sku": "abc123",
"quantity_shipped": 123.45
}
ShipmentItemInterface
Order shipment item details.
Fields
id - ID!ShipmentItemInterface object.order_item - OrderItemInterfaceproduct_name - Stringproduct_sale_price - Money!product_sku - String!quantity_shipped - Float!Possible Types
Example
{
"id": 4,
"order_item": OrderItemInterface,
"product_name": "abc123",
"product_sale_price": Money,
"product_sku": "abc123",
"quantity_shipped": 123.45
}
ShipmentTracking
Contains order shipment tracking details.
Fields
carrier - String!number - Stringtitle - String!tracking_url - StringExample
{
"carrier": "xyz789",
"number": "abc123",
"title": "xyz789",
"tracking_url": "xyz789"
}
ShippingAdditionalData
A simple key value object.
Fields
Example
{
"key": "abc123",
"value": "abc123"
}
ShippingAddressInput
Defines a single shipping address.
Input Fields
address - CartAddressInputcustomer_address_id - Intcustomer_address_uid - IDcustomer_notes - Stringpickup_location_code - StringExample
{
"address": CartAddressInput,
"customer_address_id": 123,
"customer_address_uid": 4,
"customer_notes": "xyz789",
"pickup_location_code": "xyz789"
}
ShippingCartAddress
Contains shipping addresses and methods.
Fields
available_shipping_methods - [AvailableShippingMethod]cart_items_v2 - [CartItemInterface]city - String!company - Stringcountry - CartAddressCountry!custom_attributes - [AttributeValueInterface]!customer_address_uid - IDcustomer_notes - Stringfax - Stringfirstname - String!id - Intcustomer_address_uid instead.)lastname - String!middlename - Stringpickup_location_code - Stringpostcode - Stringprefix - Stringregion - CartAddressRegionsame_as_billing - Boolean!selected_shipping_method - SelectedShippingMethodstreet - [String]!suffix - Stringtelephone - Stringuid - ID!vat_id - StringExample
{
"available_shipping_methods": [AvailableShippingMethod],
"cart_items_v2": [CartItemInterface],
"city": "xyz789",
"company": "xyz789",
"country": CartAddressCountry,
"custom_attributes": [AttributeValueInterface],
"customer_address_uid": 4,
"customer_notes": "xyz789",
"fax": "abc123",
"firstname": "abc123",
"id": 987,
"lastname": "xyz789",
"middlename": "xyz789",
"pickup_location_code": "xyz789",
"postcode": "xyz789",
"prefix": "abc123",
"region": CartAddressRegion,
"same_as_billing": true,
"selected_shipping_method": SelectedShippingMethod,
"street": ["abc123"],
"suffix": "xyz789",
"telephone": "abc123",
"uid": 4,
"vat_id": "abc123"
}
ShippingDiscount
Defines an individual shipping discount. This discount can be applied to shipping.
Fields
amount - Money!Example
{"amount": Money}
ShippingHandling
Contains details about shipping and handling costs.
Fields
amount_excluding_tax - Moneyamount_including_tax - Moneydiscounts - [ShippingDiscount]taxes - [TaxItem]total_amount - Money!Example
{
"amount_excluding_tax": Money,
"amount_including_tax": Money,
"discounts": [ShippingDiscount],
"taxes": [TaxItem],
"total_amount": Money
}
ShippingMethodInput
Defines the shipping carrier and method.
Input Fields
carrier_code - String!method_code - String!Example
{
"carrier_code": "abc123",
"method_code": "xyz789"
}
SimpleCartItem
An implementation for simple product cart items.
Fields
available_gift_wrapping - [GiftWrapping]!backorder_message - Stringcustom_attributes - [CustomAttribute]customizable_options - [SelectedCustomizableOption]!discount - [Discount]errors - [CartItemError]gift_message - GiftMessagegift_wrapping - GiftWrappingis_available - Boolean!is_salable instead. It indicates whether the line can be purchased, including backorder configuration.)is_salable - Boolean!max_qty - Floatmin_qty - Floatnot_available_message - Stringnote_from_buyer - [ItemNote]note_from_seller - [ItemNote]prices - CartItemPricesproduct - ProductInterface!quantity - Float!uid - ID!CartItemInterface object.Example
{
"available_gift_wrapping": [GiftWrapping],
"backorder_message": "xyz789",
"custom_attributes": [CustomAttribute],
"customizable_options": [SelectedCustomizableOption],
"discount": [Discount],
"errors": [CartItemError],
"gift_message": GiftMessage,
"gift_wrapping": GiftWrapping,
"is_available": false,
"is_salable": false,
"max_qty": 987.65,
"min_qty": 123.45,
"not_available_message": "xyz789",
"note_from_buyer": [ItemNote],
"note_from_seller": [ItemNote],
"prices": CartItemPrices,
"product": ProductInterface,
"quantity": 123.45,
"uid": "4"
}
SimpleProduct
Defines a simple product, which is tangible and is usually sold in single units or in fixed quantities.
Fields
canonical_url - Stringcategories - [CategoryInterface]country_of_manufacture - Stringcrosssell_products - [ProductInterface]custom_attributesV2 - ProductCustomAttributesdescription - ComplexTextValuegift_message_available - Boolean!gift_wrapping_available - Boolean!gift_wrapping_price - Moneyimage - ProductImageis_returnable - Stringmanufacturer - Intmax_sale_qty - Floatmedia_gallery - [MediaGalleryInterface]meta_description - Stringmeta_keyword - Stringmeta_title - Stringmin_sale_qty - Floatname - Stringnew_from_date - Stringnew_to_date - Stringonly_x_left_in_stock - Floatoptions - [CustomizableOptionInterface]options_container - Stringprice_range - PriceRange!price_tiers - [TierPrice]TierPrice objects.product_links - [ProductLinksInterface]ProductLinks objects.quantity - Floatrelated_products - [ProductInterface]short_description - ComplexTextValuesku - Stringsmall_image - ProductImagespecial_price - Floatspecial_to_date - Stringstock_status - ProductStockStatusswatch_image - Stringthumbnail - ProductImageuid - ID!ProductInterface object.upsell_products - [ProductInterface]url_key - Stringweight - FloatExample
{
"canonical_url": "xyz789",
"categories": [CategoryInterface],
"country_of_manufacture": "xyz789",
"crosssell_products": [ProductInterface],
"custom_attributesV2": ProductCustomAttributes,
"description": ComplexTextValue,
"gift_message_available": true,
"gift_wrapping_available": false,
"gift_wrapping_price": Money,
"image": ProductImage,
"is_returnable": "abc123",
"manufacturer": 123,
"max_sale_qty": 123.45,
"media_gallery": [MediaGalleryInterface],
"meta_description": "abc123",
"meta_keyword": "xyz789",
"meta_title": "xyz789",
"min_sale_qty": 123.45,
"name": "abc123",
"new_from_date": "abc123",
"new_to_date": "xyz789",
"only_x_left_in_stock": 987.65,
"options": [CustomizableOptionInterface],
"options_container": "abc123",
"price_range": PriceRange,
"price_tiers": [TierPrice],
"product_links": [ProductLinksInterface],
"quantity": 987.65,
"related_products": [ProductInterface],
"short_description": ComplexTextValue,
"sku": "xyz789",
"small_image": ProductImage,
"special_price": 123.45,
"special_to_date": "abc123",
"stock_status": "IN_STOCK",
"swatch_image": "xyz789",
"thumbnail": ProductImage,
"uid": "4",
"upsell_products": [ProductInterface],
"url_key": "xyz789",
"weight": 987.65
}
SimpleProductView
Represents a single-SKU product without selectable variants. Because there are no variant combinations, pricing is returned as a single price (not a price range).
Fields
addToCartAllowed - BooleaninStock - BooleanlowStock - Booleanattributes - [ProductViewAttribute]description - Stringid - ID!images - [ProductViewImage]image, small_image, and swatch.videos - [ProductViewVideo]inputOptions - [ProductViewInputOption]lastModifiedAt - DateTimemetaDescription - StringmetaKeyword - StringmetaTitle - Stringname - Stringprice - ProductViewPriceshortDescription - Stringsku - StringexternalId - String123, 456 or 789. (Deprecated: This field is deprecated and will be removed.)url - Stringhttps://example.com/product-1 or https://example.com/product-2. (Deprecated: This field is deprecated and will be removed.)urlKey - Stringproduct-1, product-2 or product-3.links - [ProductViewLink]queryType - Stringvisibility - StringExample
{
"addToCartAllowed": false,
"inStock": true,
"lowStock": true,
"attributes": [ProductViewAttribute],
"description": "abc123",
"id": "4",
"images": [ProductViewImage],
"videos": [ProductViewVideo],
"inputOptions": [ProductViewInputOption],
"lastModifiedAt": "2007-12-03T10:15:30Z",
"metaDescription": "xyz789",
"metaKeyword": "abc123",
"metaTitle": "xyz789",
"name": "xyz789",
"price": ProductViewPrice,
"shortDescription": "xyz789",
"sku": "abc123",
"externalId": "abc123",
"url": "xyz789",
"urlKey": "xyz789",
"links": [ProductViewLink],
"queryType": "xyz789",
"visibility": "xyz789"
}
SimpleRequisitionListItem
Contains details about simple products added to a requisition list.
Fields
customizable_options - [SelectedCustomizableOption]!product - ProductInterface!quantity - Float!sku - String!uid - ID!Example
{
"customizable_options": [SelectedCustomizableOption],
"product": ProductInterface,
"quantity": 987.65,
"sku": "xyz789",
"uid": "4"
}
SimpleWishlistItem
Contains a simple product wish list item.
Fields
added_at - String!customizable_options - [SelectedCustomizableOption]!description - Stringid - ID!WishlistItemInterface object.product - ProductInterface!quantity - Float!Example
{
"added_at": "abc123",
"customizable_options": [SelectedCustomizableOption],
"description": "abc123",
"id": "4",
"product": ProductInterface,
"quantity": 987.65
}
SmartButtonMethodInput
Smart button payment inputs
Input Fields
payment_source - Stringpayments_order_id - Stringpaypal_order_id - StringExample
{
"payment_source": "xyz789",
"payments_order_id": "abc123",
"paypal_order_id": "xyz789"
}
SmartButtonsConfig
Fields
app_switch_when_available - Booleanbutton_styles - ButtonStylescode - Stringdisplay_message - Booleandisplay_venmo - Booleanis_visible - Booleanmessage_styles - MessageStylespayment_intent - Stringsdk_params - [SDKParams]sort_order - Stringtitle - StringExample
{
"app_switch_when_available": true,
"button_styles": ButtonStyles,
"code": "abc123",
"display_message": false,
"display_venmo": false,
"is_visible": false,
"message_styles": MessageStyles,
"payment_intent": "abc123",
"sdk_params": [SDKParams],
"sort_order": "abc123",
"title": "abc123"
}
SortEnum
Indicates whether to return results in ascending or descending order.
Values
ASCDESCExample
""ASC""
SortField
Defines a possible sort field.
Fields
label - Stringvalue - StringExample
{
"label": "abc123",
"value": "abc123"
}
SortFields
Contains a default value for sort fields and all available sort fields.
Fields
default - Stringoptions - [SortField]Example
{
"default": "xyz789",
"options": [SortField]
}
SortQuoteItemsEnum
Specifies the field to use for sorting quote items
Values
ITEM_IDCREATED_ATUPDATED_ATPRODUCT_IDSKUNAMEDESCRIPTIONWEIGHTQTYPRICEBASE_PRICECUSTOM_PRICEDISCOUNT_PERCENTDISCOUNT_AMOUNTBASE_DISCOUNT_AMOUNTTAX_PERCENTTAX_AMOUNTBASE_TAX_AMOUNTROW_TOTALBASE_ROW_TOTALROW_TOTAL_WITH_DISCOUNTROW_WEIGHTPRODUCT_TYPEBASE_TAX_BEFORE_DISCOUNTTAX_BEFORE_DISCOUNTORIGINAL_CUSTOM_PRICEPRICE_INC_TAXBASE_PRICE_INC_TAXROW_TOTAL_INC_TAXBASE_ROW_TOTAL_INC_TAXDISCOUNT_TAX_COMPENSATION_AMOUNTBASE_DISCOUNT_TAX_COMPENSATION_AMOUNTFREE_SHIPPINGExample
""ITEM_ID""
SortableAttribute
Contains product attributes that be used for sorting in a productSearch query
Fields
attribute - String!frontendInput - Stringlabel - Stringnumeric - BooleanExample
{
"attribute": "abc123",
"frontendInput": "xyz789",
"label": "abc123",
"numeric": false
}
StatsBucket
For retrieving statistics across multiple buckets
Fields
max - Float!min - Float!title - String!Example
{
"max": 987.65,
"min": 123.45,
"title": "abc123"
}
StoreConfig
Contains information about a store's configuration.
Fields
allow_company_registration - Boolean!allow_gift_receipt - Stringallow_gift_wrapping_on_order - Stringallow_gift_wrapping_on_order_items - Stringallow_items - Stringallow_order - Stringallow_printed_card - Stringautocomplete_on_storefront - Booleanbase_currency_code - Stringbase_link_url - Stringbase_url.base_media_url - Stringbase_static_url - Stringbase_url - Stringcart_expires_in_days - Intcart_gift_wrapping - Stringcart_merge_preference - String!cart_printed_card - Stringcart_summary_display_quantity - Intcatalog_default_sort_by - Stringcategory_fixed_product_tax_display_setting - FixedProductTaxDisplaySettingscategory_url_suffix - String.htm or .html.check_money_order_enable_for_specific_countries - Booleancheck_money_order_enabled - Booleancheck_money_order_make_check_payable_to - Stringcheck_money_order_max_order_total - Stringcheck_money_order_min_order_total - Stringcheck_money_order_new_order_status - Stringcheck_money_order_payment_from_specific_countries - Stringcheck_money_order_send_check_to - Stringcheck_money_order_sort_order - Intcheck_money_order_title - Stringcompany_credit_enabled - Boolean!company_enabled - Boolean!configurable_product_image - ProductImageThumbnail!configurable_thumbnail_source - Stringparent or child (itself) thumbnail should be used in the cart for configurable products.contact_enabled - Boolean!countries_with_required_region - Stringcreate_account_confirmation - Booleancustomer_access_token_lifetime - Floatdefault_country - Stringdefault_display_currency_code - Stringdisplay_product_prices_in_catalog - Int!display_shipping_prices - Int!display_state_if_optional - Booleanenable_multiple_wishlists - Stringfixed_product_taxes_apply_tax_to_fpt - Boolean!fixed_product_taxes_display_prices_in_emails - Int!fixed_product_taxes_display_prices_in_product_lists - Int!fixed_product_taxes_display_prices_in_sales_modules - Int!fixed_product_taxes_display_prices_on_product_view_page - Int!fixed_product_taxes_enable - Boolean!fixed_product_taxes_include_fpt_in_subtotal - Boolean!graphql_share_customer_group - Boolean!grid_per_page - Intgrid_per_page_values - Stringgrouped_product_image - ProductImageThumbnail!is_checkout_agreements_enabled - Boolean!is_default_store - Booleanis_default_store_group - Booleanis_guest_checkout_enabled - Booleanis_negotiable_quote_active - Booleanis_one_page_checkout_enabled - Booleanis_requisition_list_active - Stringlist_mode - Stringlist_per_page - Intlist_per_page_values - Stringlocale - Stringmagento_reward_general_is_enabled - Stringmagento_reward_general_is_enabled_on_front - Stringmagento_reward_general_min_points_balance - Stringmagento_reward_general_publish_history - Stringmagento_reward_points_invitation_customer - Stringmagento_reward_points_invitation_customer_limit - Stringmagento_reward_points_invitation_order - Stringmagento_reward_points_invitation_order_limit - Stringmagento_reward_points_newsletter - Stringmagento_reward_points_order - Stringmagento_reward_points_register - Stringmagento_reward_points_review - Stringmagento_reward_points_review_limit - Stringmagento_wishlist_general_is_enabled - Stringmax_items_in_order_summary - Intmaximum_number_of_wishlists - Stringminicart_display - Booleanminicart_max_items - Intminimum_password_length - Stringnewsletter_enabled - Boolean!optional_zip_countries - Stringorder_cancellation_enabled - Boolean!order_cancellation_reasons - [CancellationReason]!orders_invoices_credit_memos_display_full_summary - Boolean!orders_invoices_credit_memos_display_grandtotal - Boolean!orders_invoices_credit_memos_display_price - Int!orders_invoices_credit_memos_display_shipping_amount - Int!orders_invoices_credit_memos_display_subtotal - Int!orders_invoices_credit_memos_display_zero_tax - Boolean!printed_card_priceV2 - Moneyproduct_fixed_product_tax_display_setting - FixedProductTaxDisplaySettingsproduct_url_suffix - String.htm or .html.quickorder_active - Boolean!quote_minimum_amount - Floatquote_minimum_amount_message - Stringrequired_character_classes_number - Stringrequisition_list_share_link_validity_days - Int!requisition_list_share_max_recipients - Int!requisition_list_share_storefront_path - String!requisition_list_sharing_enabled - Boolean!returns_enabled - String!root_category_uid - IDCategoryInterface object.sales_fixed_product_tax_display_setting - FixedProductTaxDisplaySettingssales_gift_wrapping - Stringsales_printed_card - Stringsecure_base_link_url - Stringbase_url.secure_base_media_url - Stringsecure_base_static_url - Stringsecure_base_url - Stringshare_active_segments - Boolean!share_applied_cart_rule - Boolean!shopping_assistance_checkbox_title - Stringshopping_assistance_checkbox_tooltip - Stringshopping_assistance_enabled - Boolean!shopping_cart_display_full_summary - Booleanshopping_cart_display_grand_total - Booleanshopping_cart_display_price - Intshopping_cart_display_shipping - Intshopping_cart_display_subtotal - Intshopping_cart_display_tax_gift_wrapping - TaxWrappingEnumshopping_cart_display_zero_tax - Booleanstore_code - IDStore header to provide the scope.store_group_code - IDstore_group_name - Stringstore_name - Stringstore_sort_order - Inttimezone - Stringtitle_separator - Stringuse_store_in_url - Booleanwebsite_code - IDwebsite_name - Stringweight_unit - Stringzero_subtotal_enable_for_specific_countries - Booleanzero_subtotal_enabled - Booleanzero_subtotal_new_order_status - Stringzero_subtotal_payment_action - Stringauthorize_capture to automatically invoice all items that have a zero balance.zero_subtotal_payment_from_specific_countries - Stringzero_subtotal_sort_order - Intzero_subtotal_title - StringExample
{
"allow_company_registration": true,
"allow_gift_receipt": "abc123",
"allow_gift_wrapping_on_order": "abc123",
"allow_gift_wrapping_on_order_items": "abc123",
"allow_items": "abc123",
"allow_order": "abc123",
"allow_printed_card": "abc123",
"autocomplete_on_storefront": true,
"base_currency_code": "abc123",
"base_link_url": "xyz789",
"base_media_url": "abc123",
"base_static_url": "xyz789",
"base_url": "abc123",
"cart_expires_in_days": 123,
"cart_gift_wrapping": "abc123",
"cart_merge_preference": "xyz789",
"cart_printed_card": "abc123",
"cart_summary_display_quantity": 123,
"catalog_default_sort_by": "xyz789",
"category_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS",
"category_url_suffix": "xyz789",
"check_money_order_enable_for_specific_countries": false,
"check_money_order_enabled": false,
"check_money_order_make_check_payable_to": "abc123",
"check_money_order_max_order_total": "abc123",
"check_money_order_min_order_total": "xyz789",
"check_money_order_new_order_status": "xyz789",
"check_money_order_payment_from_specific_countries": "xyz789",
"check_money_order_send_check_to": "xyz789",
"check_money_order_sort_order": 987,
"check_money_order_title": "abc123",
"company_credit_enabled": true,
"company_enabled": true,
"configurable_product_image": "ITSELF",
"configurable_thumbnail_source": "abc123",
"contact_enabled": true,
"countries_with_required_region": "xyz789",
"create_account_confirmation": true,
"customer_access_token_lifetime": 123.45,
"default_country": "abc123",
"default_display_currency_code": "abc123",
"display_product_prices_in_catalog": 123,
"display_shipping_prices": 987,
"display_state_if_optional": false,
"enable_multiple_wishlists": "xyz789",
"fixed_product_taxes_apply_tax_to_fpt": false,
"fixed_product_taxes_display_prices_in_emails": 987,
"fixed_product_taxes_display_prices_in_product_lists": 987,
"fixed_product_taxes_display_prices_in_sales_modules": 987,
"fixed_product_taxes_display_prices_on_product_view_page": 123,
"fixed_product_taxes_enable": false,
"fixed_product_taxes_include_fpt_in_subtotal": true,
"graphql_share_customer_group": true,
"grid_per_page": 987,
"grid_per_page_values": "abc123",
"grouped_product_image": "ITSELF",
"is_checkout_agreements_enabled": false,
"is_default_store": true,
"is_default_store_group": true,
"is_guest_checkout_enabled": true,
"is_negotiable_quote_active": false,
"is_one_page_checkout_enabled": false,
"is_requisition_list_active": "xyz789",
"list_mode": "xyz789",
"list_per_page": 987,
"list_per_page_values": "xyz789",
"locale": "abc123",
"magento_reward_general_is_enabled": "abc123",
"magento_reward_general_is_enabled_on_front": "abc123",
"magento_reward_general_min_points_balance": "abc123",
"magento_reward_general_publish_history": "abc123",
"magento_reward_points_invitation_customer": "xyz789",
"magento_reward_points_invitation_customer_limit": "xyz789",
"magento_reward_points_invitation_order": "xyz789",
"magento_reward_points_invitation_order_limit": "abc123",
"magento_reward_points_newsletter": "abc123",
"magento_reward_points_order": "abc123",
"magento_reward_points_register": "abc123",
"magento_reward_points_review": "abc123",
"magento_reward_points_review_limit": "abc123",
"magento_wishlist_general_is_enabled": "xyz789",
"max_items_in_order_summary": 987,
"maximum_number_of_wishlists": "abc123",
"minicart_display": false,
"minicart_max_items": 123,
"minimum_password_length": "xyz789",
"newsletter_enabled": true,
"optional_zip_countries": "xyz789",
"order_cancellation_enabled": true,
"order_cancellation_reasons": [CancellationReason],
"orders_invoices_credit_memos_display_full_summary": true,
"orders_invoices_credit_memos_display_grandtotal": true,
"orders_invoices_credit_memos_display_price": 123,
"orders_invoices_credit_memos_display_shipping_amount": 987,
"orders_invoices_credit_memos_display_subtotal": 123,
"orders_invoices_credit_memos_display_zero_tax": false,
"printed_card_priceV2": Money,
"product_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS",
"product_url_suffix": "abc123",
"quickorder_active": false,
"quote_minimum_amount": 987.65,
"quote_minimum_amount_message": "abc123",
"required_character_classes_number": "abc123",
"requisition_list_share_link_validity_days": 123,
"requisition_list_share_max_recipients": 987,
"requisition_list_share_storefront_path": "xyz789",
"requisition_list_sharing_enabled": false,
"returns_enabled": "xyz789",
"root_category_uid": "4",
"sales_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS",
"sales_gift_wrapping": "abc123",
"sales_printed_card": "abc123",
"secure_base_link_url": "abc123",
"secure_base_media_url": "xyz789",
"secure_base_static_url": "xyz789",
"secure_base_url": "xyz789",
"share_active_segments": false,
"share_applied_cart_rule": true,
"shopping_assistance_checkbox_title": "abc123",
"shopping_assistance_checkbox_tooltip": "abc123",
"shopping_assistance_enabled": false,
"shopping_cart_display_full_summary": false,
"shopping_cart_display_grand_total": false,
"shopping_cart_display_price": 987,
"shopping_cart_display_shipping": 987,
"shopping_cart_display_subtotal": 987,
"shopping_cart_display_tax_gift_wrapping": "DISPLAY_EXCLUDING_TAX",
"shopping_cart_display_zero_tax": false,
"store_code": 4,
"store_group_code": 4,
"store_group_name": "abc123",
"store_name": "xyz789",
"store_sort_order": 123,
"timezone": "abc123",
"title_separator": "abc123",
"use_store_in_url": false,
"website_code": 4,
"website_name": "abc123",
"weight_unit": "xyz789",
"zero_subtotal_enable_for_specific_countries": false,
"zero_subtotal_enabled": false,
"zero_subtotal_new_order_status": "xyz789",
"zero_subtotal_payment_action": "xyz789",
"zero_subtotal_payment_from_specific_countries": "abc123",
"zero_subtotal_sort_order": 123,
"zero_subtotal_title": "xyz789"
}
String
The String scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
Example
"abc123"
StringOperatorInput
Input Fields
type - StringOperatorTypeExample
{"type": "UNKNOWN_STRING_OPERATOR"}
StringOperatorType
Values
UNKNOWN_STRING_OPERATORSAME_AS_CURRENTALL_EXCEPT_CURRENTExample
""UNKNOWN_STRING_OPERATOR""
SubmitNegotiableQuoteTemplateForReviewInput
Specifies the quote template properties to update.
Input Fields
attachments - [NegotiableQuoteCommentAttachmentInput]comment - Stringmax_order_commitment - Intmin_order_commitment - Intname - Stringreference_document_links - [NegotiableQuoteTemplateReferenceDocumentLinkInput]template_id - ID!NegotiableQuoteTemplate object.Example
{
"attachments": [NegotiableQuoteCommentAttachmentInput],
"comment": "xyz789",
"max_order_commitment": 123,
"min_order_commitment": 987,
"name": "xyz789",
"reference_document_links": [
NegotiableQuoteTemplateReferenceDocumentLinkInput
],
"template_id": 4
}
SubscribeEmailToNewsletterOutput
Contains the result of the subscribeEmailToNewsletter operation.
Fields
status - SubscriptionStatusesEnumExample
{"status": "NOT_ACTIVE"}
SubscriptionStatusesEnum
Indicates the status of the request.
Values
NOT_ACTIVESUBSCRIBEDUNSUBSCRIBEDUNCONFIRMEDExample
""NOT_ACTIVE""
Subtree
Represents the subtree of the categories to retrieve.
Input Fields
depth - Int!2 returns two levels of subcategories beneath the value specified in startLevel.startLevel - Int!1 indicates the topmost category is the starting point.Example
{"depth": 123, "startLevel": 123}
SwatchDataInterface
Fields
value - StringPossible Types
Example
{"value": "xyz789"}
SwatchInputTypeEnum
Swatch attribute metadata input types.
Values
BOOLEANDATEDATETIMEDROPDOWNFILEGALLERYHIDDENIMAGEMEDIA_IMAGEMULTILINEMULTISELECTPRICESELECTTEXTTEXTAREAUNDEFINEDVISUALWEIGHTExample
""BOOLEAN""
SwatchType
The type of the swatch.
Values
TEXTIMAGECOLOR_HEXCUSTOMExample
""TEXT""
SyncPaymentOrderInput
Synchronizes the payment order details
Input Fields
Example
{
"cartId": "xyz789",
"id": "abc123"
}