From 84d6ac7f4272cb6bda0e186fab86233e65421b75 Mon Sep 17 00:00:00 2001 From: Jared Hoover Date: Thu, 28 May 2026 14:29:36 -0500 Subject: [PATCH 1/9] update schemas --- spectaql/schema_saas.json | 1730 ++++++++- src/openapi/accs-schema.yaml | 2 +- static/graphql-api/saas/index.html | 5339 +++++++++++++++++++--------- 3 files changed, 5410 insertions(+), 1661 deletions(-) diff --git a/spectaql/schema_saas.json b/spectaql/schema_saas.json index 20860cb5e..c529c13e2 100644 --- a/spectaql/schema_saas.json +++ b/spectaql/schema_saas.json @@ -1922,6 +1922,124 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "AdminAssistanceAction", + "description": "A single admin assistance action performed on behalf of the customer.", + "fields": [ + { + "name": "action", + "description": "Action identifier, e.g. add_to_cart, place_order.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": "When the action occurred.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "details", + "description": "Action related details, e.g. product SKUs, order id.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AdminAssistanceActions", + "description": "Paginated admin assistance actions for the customer.", + "fields": [ + { + "name": "items", + "description": "Admin assistance actions for the current page.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AdminAssistanceAction", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "page_info", + "description": "Contains pagination metadata.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SearchResultPageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total_count", + "description": "The total count of admin assistance actions for the customer.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "OBJECT", "name": "Aggregation", @@ -3030,6 +3148,72 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "AssignChildCompanyInput", + "description": "Defines the input schema for assigning a child company to a parent company.", + "fields": null, + "inputFields": [ + { + "name": "child_company_id", + "description": "The unique ID of the child company.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "parent_company_id", + "description": "The unique ID of the parent company.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AssignChildCompanyOutput", + "description": "Contains the response to the request to assign a child company.", + "fields": [ + { + "name": "company_hierarchy", + "description": "The updated company hierarchy for the parent company.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CompanyHierarchy", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "OBJECT", "name": "AssignCompareListToCustomerOutput", @@ -5323,6 +5507,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "backorder_message", + "description": "Customer-facing hint when the line is salable on notify backorders with insufficient physical quantity; null otherwise.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "bundle_options", "description": "An array containing the bundle options the shopper selected.", @@ -5448,6 +5644,22 @@ "ofType": null } }, + "isDeprecated": true, + "deprecationReason": "Use `is_salable` instead. It indicates whether the line can be purchased, including backorder configuration." + }, + { + "name": "is_salable", + "description": "True when the item can be purchased and should not block checkout: stock status is in stock and either physical quantity covers the requested quantity or backorders are allowed.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, @@ -5477,7 +5689,7 @@ }, { "name": "not_available_message", - "description": "Message to display when the product is not available with this selected option.", + "description": "Shortage or unavailability message for the line; null when the item is salable.", "args": [], "type": { "kind": "SCALAR", @@ -9271,6 +9483,18 @@ "name": "CartItemInterface", "description": "An interface for products in a cart.", "fields": [ + { + "name": "backorder_message", + "description": "Customer-facing hint when the line is salable on notify backorders with insufficient physical quantity; null otherwise.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "custom_attributes", "description": "The custom attributes for the cart item", @@ -9332,6 +9556,22 @@ "ofType": null } }, + "isDeprecated": true, + "deprecationReason": "Use `is_salable` instead. It indicates whether the line can be purchased, including backorder configuration." + }, + { + "name": "is_salable", + "description": "True when the item can be purchased and should not block checkout: stock status is in stock and either physical quantity covers the requested quantity or backorders are allowed.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, @@ -9361,7 +9601,7 @@ }, { "name": "not_available_message", - "description": "Message to display when the product is not available with this selected option.", + "description": "Shortage or unavailability message for the line; null when the item is salable.", "args": [], "type": { "kind": "SCALAR", @@ -11824,6 +12064,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "position", + "description": "The position of the category in sort order. For example, `1`, `2`, `3` or `10`.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "path", "description": "Category path. For example, `/electronics/laptops`, `/clothing/shirts` or `/books/fiction`.", @@ -13536,6 +13788,22 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "is_admin", + "description": "Indicates whether the company is the admin (parent) company in the returned relation hierarchy.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "legal_name", "description": "The full legal name of the company.", @@ -14062,6 +14330,49 @@ ], "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "CompanyHierarchy", + "description": "Defines a parent company and its direct child companies.", + "fields": [ + { + "name": "children", + "description": "An array of direct child companies.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CompanyBasicInfo", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": "The parent company in the relation hierarchy. Null if the company has no parent.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CompanyBasicInfo", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "CompanyInvitationInput", @@ -15659,6 +15970,33 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "CompletePayByLinkPaymentOutput", + "description": "Result of completing a Pay By Link payment.", + "fields": [ + { + "name": "order_number", + "description": "The increment id of the order whose payment was completed.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "OBJECT", "name": "ComplexProductView", @@ -16242,6 +16580,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "backorder_message", + "description": "Customer-facing hint when the line is salable on notify backorders with insufficient physical quantity; null otherwise.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "configurable_options", "description": "An array containing the configuranle options the shopper selected.", @@ -16383,6 +16733,22 @@ "ofType": null } }, + "isDeprecated": true, + "deprecationReason": "Use `is_salable` instead. It indicates whether the line can be purchased, including backorder configuration." + }, + { + "name": "is_salable", + "description": "True when the item can be purchased and should not block checkout: stock status is in stock and either physical quantity covers the requested quantity or backorders are allowed.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, @@ -16412,7 +16778,7 @@ }, { "name": "not_available_message", - "description": "Message to display when the product is not available with this selected option.", + "description": "Shortage or unavailability message for the line; null when the item is salable.", "args": [], "type": { "kind": "SCALAR", @@ -22783,6 +23149,37 @@ ], "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "CurrentProductInput", + "description": "Attributes of the product currently being viewed on PDP", + "fields": null, + "inputFields": [ + { + "name": "sku", + "description": "SKU of the current product", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "price", + "description": "Resolved display price of the current product (specialPrice ?? regularPrice)", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "OBJECT", "name": "CustomAttribute", @@ -23175,6 +23572,43 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "admin_assistance_actions", + "description": "Actions performed by an admin on behalf of the customer (Login as Customer logging).", + "args": [ + { + "name": "currentPage", + "description": "Specifies which page of results to return. The default value is 1.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "1" + }, + { + "name": "pageSize", + "description": "Specifies the maximum number of results to return at once. The default value is 20.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "20" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AdminAssistanceActions", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "allow_remote_shopping_assistance", "description": "Indicates whether the customer has enabled remote shopping assistance.", @@ -23218,6 +23652,22 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "company_hierarchy", + "description": "The company relation hierarchies for all companies. Only available to the company administrator.", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CompanyHierarchy", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "compare_list", "description": "The contents of the customer's compare list.", @@ -25357,6 +25807,18 @@ "name": "CustomerOrder", "description": "Contains details about each of the customer's orders.", "fields": [ + { + "name": "admin_assisted_order", + "description": "Admin user id when the order was placed with assistance (Login as Customer); null if not assisted.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "applied_coupons", "description": "Coupons applied to the order.", @@ -28942,6 +29404,18 @@ "name": "DownloadableCartItem", "description": "An implementation for downloadable product cart items.", "fields": [ + { + "name": "backorder_message", + "description": "Customer-facing hint when the line is salable on notify backorders with insufficient physical quantity; null otherwise.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "custom_attributes", "description": "The custom attributes for the cart item", @@ -29023,6 +29497,22 @@ "ofType": null } }, + "isDeprecated": true, + "deprecationReason": "Use `is_salable` instead. It indicates whether the line can be purchased, including backorder configuration." + }, + { + "name": "is_salable", + "description": "True when the item can be purchased and should not block checkout: stock status is in stock and either physical quantity covers the requested quantity or backorders are allowed.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, @@ -29068,7 +29558,7 @@ }, { "name": "not_available_message", - "description": "Message to display when the product is not available with this selected option.", + "description": "Shortage or unavailability message for the line; null when the item is salable.", "args": [], "type": { "kind": "SCALAR", @@ -32593,6 +33083,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "backorder_message", + "description": "Customer-facing hint when the line is salable on notify backorders with insufficient physical quantity; null otherwise.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "custom_attributes", "description": "The custom attributes for the cart item", @@ -32698,6 +33200,22 @@ "ofType": null } }, + "isDeprecated": true, + "deprecationReason": "Use `is_salable` instead. It indicates whether the line can be purchased, including backorder configuration." + }, + { + "name": "is_salable", + "description": "True when the item can be purchased and should not block checkout: stock status is in stock and either physical quantity covers the requested quantity or backorders are allowed.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, @@ -32739,7 +33257,7 @@ }, { "name": "not_available_message", - "description": "Message to display when the product is not available with this selected option.", + "description": "Shortage or unavailability message for the line; null when the item is salable.", "args": [], "type": { "kind": "SCALAR", @@ -38167,6 +38685,49 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "ImportSharedRequisitionListOutput", + "description": "Result of importing a shared requisition list.", + "fields": [ + { + "name": "requisition_list", + "description": "The imported requisition list for the current customer.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "RequisitionList", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user_errors", + "description": "Validation or import issues.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ShareRequisitionListUserError", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "initiateUploadInput", @@ -40899,6 +41460,33 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "assignChildCompany", + "description": "Assign a child company to a parent company within the company relation hierarchy.", + "args": [ + { + "name": "input", + "description": "An input object that defines which companies to relate.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AssignChildCompanyInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "AssignChildCompanyOutput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "assignCompareListToCustomer", "description": "Assign the specified compare list to the logged in customer.", @@ -41183,6 +41771,47 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "completePayByLinkPayment", + "description": "Complete a Pay By Link payment for an in-process gateway (Payment Services).", + "args": [ + { + "name": "token", + "description": "The token issued for the Pay By Link payment.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "payment_method", + "description": "The payment method the customer has selected to complete the order.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PaymentMethodInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CompletePayByLinkPaymentOutput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "confirmCancelOrder", "description": "Cancel the specified guest customer order.", @@ -42297,7 +42926,7 @@ }, { "name": "exchangeOtpForCustomerToken", - "description": "Exchange a customer's one time password for a customer token.", + "description": "Exchange one time login code for customer token.", "args": [ { "name": "email", @@ -42458,6 +43087,33 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "importSharedRequisitionList", + "description": "Import a shared requisition list into the current customer account.", + "args": [ + { + "name": "token", + "description": "The token for the shared requisition list.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ImportSharedRequisitionListOutput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "initiateUpload", "description": null, @@ -44313,6 +44969,60 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "shareRequisitionListByEmail", + "description": "Share a requisition list with company colleagues via email using a secure link.", + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ShareRequisitionListByEmailInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ShareRequisitionListByEmailOutput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shareRequisitionListByToken", + "description": "Share a requisition list by issuing a token for colleagues in the same company. Use the token to build a shareable link on the storefront.", + "args": [ + { + "name": "requisitionListUid", + "description": "The unique ID of the requisition list.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ShareRequisitionListByTokenOutput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "submitNegotiableQuoteTemplateForReview", "description": "Accept an existing negotiable quote template.", @@ -44444,6 +45154,33 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "unassignChildCompany", + "description": "Unassign a child company from its parent company within the company relation hierarchy.", + "args": [ + { + "name": "input", + "description": "An input object that defines which company to unassign.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnassignChildCompanyInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "UnassignChildCompanyOutput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "unsubscribeProductAlertPrice", "description": "Unsubscribe logged-in customer to price alert for a product.", @@ -51349,6 +52086,423 @@ ], "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "PayByLinkInput", + "description": "Defines optional inputs for the Pay By Link payment method.", + "fields": null, + "inputFields": [ + { + "name": "recipient_email", + "description": "Email address of the person who should receive the payment link. When omitted, the link is sent to the order customer's email.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PayByLinkOrder", + "description": "Read-only projection of the pending order behind a Pay By Link token. Returned by `payByLinkOrder` so the EDS payment page can render the order summary before collecting payment.", + "fields": [ + { + "name": "billing_address", + "description": "The order's billing address. Read-only on the payment page.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "PayByLinkOrderAddress", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customer_email", + "description": "Email address the payment link was sent to.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "expires_at", + "description": "UTC `Y-m-d H:i:s` timestamp after which the token is no longer redeemable.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "items", + "description": "Top-level line items on the order. Resolve product detail (image, description, variant) from the Catalog Service using `sku`.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PayByLinkOrderItem", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shipping_address", + "description": "The order's shipping address. Read-only on the payment page.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "PayByLinkOrderAddress", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totals", + "description": "Money totals for the order.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PayByLinkOrderTotals", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PayByLinkOrderAddress", + "description": "Read-only address attached to a Pay By Link order.", + "fields": [ + { + "name": "city", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "country_code", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "firstname", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastname", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "postcode", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "region", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "region_code", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "street", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "telephone", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PayByLinkOrderItem", + "description": "A single line item on a Pay By Link order.", + "fields": [ + { + "name": "name", + "description": "Product name captured on the order at placement time.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price", + "description": "Unit price for the item, including currency.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": "Quantity ordered.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sku", + "description": "SKU captured on the order line. Use this to resolve product detail from the Catalog Service.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PayByLinkOrderTotals", + "description": "Order-level money totals.", + "fields": [ + { + "name": "grand_total", + "description": "Amount the customer will be charged.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shipping", + "description": "Shipping amount.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subtotal", + "description": "Sum of line item prices before shipping/tax/discount.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tax", + "description": "Tax amount.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "PaymentAttributeInput", @@ -51745,6 +52899,16 @@ }, "defaultValue": null }, + { + "name": "paybylink", + "description": "Pay By Link payment method options.", + "type": { + "kind": "INPUT_OBJECT", + "name": "PayByLinkInput", + "ofType": null + }, + "defaultValue": null + }, { "name": "payment_services_paypal_apple_pay", "description": "Required input for Apple Pay button", @@ -59421,7 +60585,7 @@ }, { "name": "searchCategory", - "description": "Search for categories by name with optional filtering and pagination.", + "description": "Search for categories by name with optional filtering and pagination. Results are returned in alphabetical order by category name.", "args": [ { "name": "searchTerm", @@ -60567,6 +61731,33 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "payByLinkOrder", + "description": "Resolves a Pay By Link token to the pending order's summary so the EDS payment page can render it before collecting payment.", + "args": [ + { + "name": "token", + "description": "The token issued for the Pay By Link payment.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "PayByLinkOrder", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "pickupLocations", "description": "The pickup locations query searches for locations that match the search request requirements.", @@ -60722,6 +61913,33 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "sharedRequisitionList", + "description": "View a shared requisition list when the receiver is logged in and belongs to the same company as the sender.", + "args": [ + { + "name": "token", + "description": "The share token which is extracted from the requisition list share link and acts as an identifier for the requisition list.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SharedRequisitionListOutput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "storeConfig", "description": "Return details about the store's configuration.", @@ -60772,6 +61990,16 @@ }, "defaultValue": null }, + { + "name": "currentProduct", + "description": "Current product context from PDP (SKU, price, category, etc.)", + "type": { + "kind": "INPUT_OBJECT", + "name": "CurrentProductInput", + "ofType": null + }, + "defaultValue": null + }, { "name": "pageType", "description": "Type of page on which recommendations are requested", @@ -60865,6 +62093,16 @@ }, "defaultValue": null }, + { + "name": "currentProduct", + "description": "Current product context from PDP (SKU, price, category, etc.)", + "type": { + "kind": "INPUT_OBJECT", + "name": "CurrentProductInput", + "ofType": null + }, + "defaultValue": null + }, { "name": "userPurchaseHistory", "description": "User purchase history with timestamp", @@ -62043,6 +63281,18 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "userError", + "description": "User error message if the unit could not be fully resolved (e.g. required currentSku was not provided)", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -67390,6 +68640,49 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "SharedRequisitionListOutput", + "description": "Shared requisition list view for a recipient.", + "fields": [ + { + "name": "requisition_list", + "description": "The sender's requisition list (read-only for the recipient).", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequisitionList", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sender_name", + "description": "Display name of the requisition list sender.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "ShareGiftRegistryInviteeInput", @@ -67495,6 +68788,201 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "ShareRequisitionListByEmailInput", + "description": "An input object that defines which requisition list shared with company users through email.", + "fields": null, + "inputFields": [ + { + "name": "customerUids", + "description": "An array of IDs representing company users with whom the sender wants to share the requisition list.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "requisitionListUid", + "description": "The unique ID of the requisition list.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ShareRequisitionListByEmailOutput", + "description": "Result of sharing a requisition list by email.", + "fields": [ + { + "name": "sent_count", + "description": "Number of notification emails successfully sent.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user_errors", + "description": "Per-email validation or delivery issues.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ShareRequisitionListUserError", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ShareRequisitionListByTokenOutput", + "description": "The result of sharing a requisition list by token.", + "fields": [ + { + "name": "token", + "description": "Token used to generate a shareable link for the requisition list.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ShareRequisitionListUserError", + "description": "An error related to a specific recipient or constraint.", + "fields": [ + { + "name": "code", + "description": "Machine-readable error code.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ShareRequisitionListUserErrorCode", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "message", + "description": "Human-readable error message.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ShareRequisitionListUserErrorCode", + "description": "Machine-readable error codes for requisition list share-by-email and import operations.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "MAX_RECIPIENTS_EXCEEDED", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INVALID_EMAIL", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NOT_COMPANY_USER", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "IMPORT_FAILED", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, { "kind": "ENUM", "name": "ShipBundleItemsEnum", @@ -67786,6 +69274,18 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "tracking_url", + "description": "The tracking URL for the shipment. Available for both built-in and custom shipping carriers when a URL template is configured.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -68416,6 +69916,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "backorder_message", + "description": "Customer-facing hint when the line is salable on notify backorders with insufficient physical quantity; null otherwise.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "custom_attributes", "description": "The custom attributes for the cart item", @@ -68521,6 +70033,22 @@ "ofType": null } }, + "isDeprecated": true, + "deprecationReason": "Use `is_salable` instead. It indicates whether the line can be purchased, including backorder configuration." + }, + { + "name": "is_salable", + "description": "True when the item can be purchased and should not block checkout: stock status is in stock and either physical quantity covers the requested quantity or backorders are allowed.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, @@ -68550,7 +70078,7 @@ }, { "name": "not_available_message", - "description": "Message to display when the product is not available with this selected option.", + "description": "Shortage or unavailability message for the line; null when the item is salable.", "args": [], "type": { "kind": "SCALAR", @@ -71852,6 +73380,70 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "requisition_list_share_link_validity_days", + "description": "Configuration data from btob/requisition_list_sharing/link_validity_days", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requisition_list_share_max_recipients", + "description": "Configuration data from btob/requisition_list_sharing/max_recipients", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requisition_list_share_storefront_path", + "description": "Configuration data from btob/requisition_list_sharing/storefront_share_path (route path for share links, no leading or trailing slashes)", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requisition_list_sharing_enabled", + "description": "Configuration data from btob/requisition_list_sharing/enabled", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "returns_enabled", "description": "Indicates whether RMA is enabled on the storefront. Possible values: enabled/disabled.", @@ -71996,6 +73588,46 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "shopping_assistance_checkbox_title", + "description": "Configuration data from login_as_customer/general/shopping_assistance_checkbox_title", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shopping_assistance_checkbox_tooltip", + "description": "Configuration data from login_as_customer/general/shopping_assistance_checkbox_tooltip", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shopping_assistance_enabled", + "description": "Configuration data from login_as_customer/general/enabled", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "shopping_cart_display_full_summary", "description": "Extended Config Data - tax/cart_display/full_summary", @@ -73073,6 +74705,58 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "UnassignChildCompanyInput", + "description": "Defines the input schema for unassigning a child company from its parent company.", + "fields": null, + "inputFields": [ + { + "name": "child_company_id", + "description": "The unique ID of the child company.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UnassignChildCompanyOutput", + "description": "Contains the response to the request to unassign a child company.", + "fields": [ + { + "name": "company_hierarchy", + "description": "The updated company relation hierarchy for the current company.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CompanyHierarchy", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "UnitConfigInput", @@ -74740,6 +76424,18 @@ "name": "VirtualCartItem", "description": "An implementation for virtual product cart items.", "fields": [ + { + "name": "backorder_message", + "description": "Customer-facing hint when the line is salable on notify backorders with insufficient physical quantity; null otherwise.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "custom_attributes", "description": "The custom attributes for the cart item", @@ -74821,6 +76517,22 @@ "ofType": null } }, + "isDeprecated": true, + "deprecationReason": "Use `is_salable` instead. It indicates whether the line can be purchased, including backorder configuration." + }, + { + "name": "is_salable", + "description": "True when the item can be purchased and should not block checkout: stock status is in stock and either physical quantity covers the requested quantity or backorders are allowed.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, @@ -74850,7 +76562,7 @@ }, { "name": "not_available_message", - "description": "Message to display when the product is not available with this selected option.", + "description": "Shortage or unavailability message for the line; null when the item is salable.", "args": [], "type": { "kind": "SCALAR", diff --git a/src/openapi/accs-schema.yaml b/src/openapi/accs-schema.yaml index 7ef7c0f4e..93039b7a3 100644 --- a/src/openapi/accs-schema.yaml +++ b/src/openapi/accs-schema.yaml @@ -10384,7 +10384,7 @@ definitions: host: https://.api.commerce.adobe.com/ info: title: Adobe Commerce as a Cloud Service - version: April 2026 + version: May 2026 description: "$ref": "../_includes/accs-intro.md" paths: diff --git a/static/graphql-api/saas/index.html b/static/graphql-api/saas/index.html index 066405889..e22881232 100644 --- a/static/graphql-api/saas/index.html +++ b/static/graphql-api/saas/index.html @@ -82,6 +82,7 @@
  • AddReturnTrackingInput
  • AddReturnTrackingOutput
  • AddWishlistItemsToCartOutput
  • +
  • AdminAssistanceAction
  • +
  • AdminAssistanceActions
  • Aggregation
  • AggregationType
  • ApplePayConfig
  • @@ -322,6 +332,8 @@
  • AreaInput
  • AssetImage
  • AssetVideo
  • +
  • AssignChildCompanyInput
  • +
  • AssignChildCompanyOutput
  • AssignCompareListToCustomerOutput
  • AttributeEntityTypeEnum
  • AttributeFile
  • @@ -436,6 +448,7 @@
  • CompanyCreditOperationType
  • CompanyCreditOperationUser
  • CompanyCreditOperationUserType
  • +
  • CompanyHierarchy
  • CompanyInvitationInput
  • CompanyInvitationOutput
  • CompanyInvitationUserInput
  • @@ -465,6 +478,7 @@
  • ComparableItem
  • CompareList
  • CompleteOrderInput
  • +
  • CompletePayByLinkPaymentOutput
  • ComplexProductView
  • ComplexTextValue
  • ConditionInput
  • @@ -522,6 +536,7 @@
  • CreditMemoTotal
  • Currency
  • CurrencyEnum
  • +
  • CurrentProductInput
  • CustomAttribute
  • CustomAttributeInput
  • CustomAttributeMetadataInterface
  • @@ -691,6 +706,7 @@
  • HostedFieldsInput
  • ID
  • ImageSwatchData
  • +
  • ImportSharedRequisitionListOutput
  • InputFilterEnum
  • InsufficientStockError
  • Int
  • @@ -796,6 +812,11 @@
  • OrderTotal
  • PageInfo
  • PageType
  • +
  • PayByLinkInput
  • +
  • PayByLinkOrder
  • +
  • PayByLinkOrderAddress
  • +
  • PayByLinkOrderItem
  • +
  • PayByLinkOrderTotals
  • PaymentAttributeInput
  • PaymentConfigItem
  • PaymentConfigOutput
  • @@ -1027,6 +1048,12 @@
  • ShareGiftRegistryInviteeInput
  • ShareGiftRegistryOutput
  • ShareGiftRegistrySenderInput
  • +
  • ShareRequisitionListByEmailInput
  • +
  • ShareRequisitionListByEmailOutput
  • +
  • ShareRequisitionListByTokenOutput
  • +
  • ShareRequisitionListUserError
  • +
  • ShareRequisitionListUserErrorCode
  • +
  • SharedRequisitionListOutput
  • ShipBundleItemsEnum
  • ShipmentItem
  • ShipmentItemInterface
  • @@ -1067,6 +1094,8 @@
  • TextSwatchData
  • ThreeDSMode
  • TierPrice
  • +
  • UnassignChildCompanyInput
  • +
  • UnassignChildCompanyOutput
  • UnitConfigInput
  • UpdateCartItemsInput
  • UpdateCartItemsOutput
  • @@ -1273,7 +1302,7 @@
    Query
    Variables
    -
    {"formCode": "xyz789"}
    +                  
    {"formCode": "abc123"}
     
    @@ -1541,6 +1570,10 @@
    Query
    quote_minimum_amount quote_minimum_amount_message required_character_classes_number + requisition_list_share_link_validity_days + requisition_list_share_max_recipients + requisition_list_share_storefront_path + requisition_list_sharing_enabled returns_enabled root_category_uid sales_fixed_product_tax_display_setting @@ -1552,6 +1585,9 @@
    Query
    secure_base_url share_active_segments share_applied_cart_rule + shopping_assistance_checkbox_title + shopping_assistance_checkbox_tooltip + shopping_assistance_enabled shopping_cart_display_full_summary shopping_cart_display_grand_total shopping_cart_display_price @@ -1583,7 +1619,7 @@
    Query
    Variables
    -
    {"useCurrentGroup": false}
    +                  
    {"useCurrentGroup": true}
     
    @@ -1593,69 +1629,69 @@
    Response
    "availableStores": [ { "allow_company_registration": false, - "allow_gift_receipt": "abc123", + "allow_gift_receipt": "xyz789", "allow_gift_wrapping_on_order": "abc123", "allow_gift_wrapping_on_order_items": "abc123", "allow_items": "xyz789", - "allow_order": "abc123", - "allow_printed_card": "xyz789", + "allow_order": "xyz789", + "allow_printed_card": "abc123", "autocomplete_on_storefront": true, "base_currency_code": "xyz789", - "base_link_url": "xyz789", + "base_link_url": "abc123", "base_media_url": "xyz789", - "base_static_url": "abc123", - "base_url": "xyz789", - "cart_expires_in_days": 987, + "base_static_url": "xyz789", + "base_url": "abc123", + "cart_expires_in_days": 123, "cart_gift_wrapping": "abc123", "cart_merge_preference": "xyz789", - "cart_printed_card": "xyz789", - "cart_summary_display_quantity": 987, - "catalog_default_sort_by": "abc123", + "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": "abc123", + "category_url_suffix": "xyz789", "check_money_order_enable_for_specific_countries": false, "check_money_order_enabled": true, - "check_money_order_make_check_payable_to": "xyz789", + "check_money_order_make_check_payable_to": "abc123", "check_money_order_max_order_total": "xyz789", "check_money_order_min_order_total": "abc123", - "check_money_order_new_order_status": "xyz789", + "check_money_order_new_order_status": "abc123", "check_money_order_payment_from_specific_countries": "xyz789", - "check_money_order_send_check_to": "xyz789", + "check_money_order_send_check_to": "abc123", "check_money_order_sort_order": 987, - "check_money_order_title": "abc123", + "check_money_order_title": "xyz789", "company_credit_enabled": false, "company_enabled": false, "configurable_product_image": "ITSELF", "configurable_thumbnail_source": "abc123", - "contact_enabled": false, - "countries_with_required_region": "abc123", - "create_account_confirmation": true, - "customer_access_token_lifetime": 987.65, + "contact_enabled": true, + "countries_with_required_region": "xyz789", + "create_account_confirmation": false, + "customer_access_token_lifetime": 123.45, "default_country": "abc123", - "default_display_currency_code": "xyz789", - "display_product_prices_in_catalog": 123, - "display_shipping_prices": 987, - "display_state_if_optional": true, - "enable_multiple_wishlists": "abc123", + "default_display_currency_code": "abc123", + "display_product_prices_in_catalog": 987, + "display_shipping_prices": 123, + "display_state_if_optional": false, + "enable_multiple_wishlists": "xyz789", "fixed_product_taxes_apply_tax_to_fpt": false, "fixed_product_taxes_display_prices_in_emails": 123, - "fixed_product_taxes_display_prices_in_product_lists": 987, - "fixed_product_taxes_display_prices_in_sales_modules": 123, + "fixed_product_taxes_display_prices_in_product_lists": 123, + "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, + "fixed_product_taxes_enable": true, + "fixed_product_taxes_include_fpt_in_subtotal": false, "graphql_share_customer_group": false, - "grid_per_page": 123, + "grid_per_page": 987, "grid_per_page_values": "xyz789", "grouped_product_image": "ITSELF", "is_checkout_agreements_enabled": true, - "is_default_store": true, - "is_default_store_group": false, + "is_default_store": false, + "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": "abc123", - "list_mode": "abc123", + "is_negotiable_quote_active": true, + "is_one_page_checkout_enabled": true, + "is_requisition_list_active": "xyz789", + "list_mode": "xyz789", "list_per_page": 123, "list_per_page_values": "xyz789", "locale": "xyz789", @@ -1665,19 +1701,19 @@
    Response
    "magento_reward_general_publish_history": "abc123", "magento_reward_points_invitation_customer": "xyz789", "magento_reward_points_invitation_customer_limit": "abc123", - "magento_reward_points_invitation_order": "xyz789", + "magento_reward_points_invitation_order": "abc123", "magento_reward_points_invitation_order_limit": "abc123", - "magento_reward_points_newsletter": "xyz789", + "magento_reward_points_newsletter": "abc123", "magento_reward_points_order": "xyz789", "magento_reward_points_register": "xyz789", "magento_reward_points_review": "xyz789", - "magento_reward_points_review_limit": "abc123", - "magento_wishlist_general_is_enabled": "xyz789", - "max_items_in_order_summary": 123, + "magento_reward_points_review_limit": "xyz789", + "magento_wishlist_general_is_enabled": "abc123", + "max_items_in_order_summary": 987, "maximum_number_of_wishlists": "abc123", "minicart_display": true, - "minicart_max_items": 987, - "minimum_password_length": "xyz789", + "minicart_max_items": 123, + "minimum_password_length": "abc123", "newsletter_enabled": false, "optional_zip_countries": "abc123", "order_cancellation_enabled": true, @@ -1686,48 +1722,55 @@
    Response
    ], "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_price": 987, "orders_invoices_credit_memos_display_shipping_amount": 123, "orders_invoices_credit_memos_display_subtotal": 123, - "orders_invoices_credit_memos_display_zero_tax": true, + "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": "xyz789", - "quickorder_active": false, + "quickorder_active": true, "quote_minimum_amount": 123.45, - "quote_minimum_amount_message": "xyz789", + "quote_minimum_amount_message": "abc123", "required_character_classes_number": "abc123", + "requisition_list_share_link_validity_days": 987, + "requisition_list_share_max_recipients": 123, + "requisition_list_share_storefront_path": "abc123", + "requisition_list_sharing_enabled": true, "returns_enabled": "xyz789", "root_category_uid": "4", "sales_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", - "sales_gift_wrapping": "xyz789", + "sales_gift_wrapping": "abc123", "sales_printed_card": "xyz789", - "secure_base_link_url": "xyz789", + "secure_base_link_url": "abc123", "secure_base_media_url": "abc123", "secure_base_static_url": "xyz789", "secure_base_url": "xyz789", - "share_active_segments": true, + "share_active_segments": false, "share_applied_cart_rule": false, - "shopping_cart_display_full_summary": false, + "shopping_assistance_checkbox_title": "abc123", + "shopping_assistance_checkbox_tooltip": "xyz789", + "shopping_assistance_enabled": false, + "shopping_cart_display_full_summary": true, "shopping_cart_display_grand_total": false, "shopping_cart_display_price": 987, - "shopping_cart_display_shipping": 987, + "shopping_cart_display_shipping": 123, "shopping_cart_display_subtotal": 123, "shopping_cart_display_tax_gift_wrapping": "DISPLAY_EXCLUDING_TAX", - "shopping_cart_display_zero_tax": false, - "store_code": "4", + "shopping_cart_display_zero_tax": true, + "store_code": 4, "store_group_code": "4", - "store_group_name": "abc123", + "store_group_name": "xyz789", "store_name": "xyz789", "store_sort_order": 123, - "timezone": "abc123", + "timezone": "xyz789", "title_separator": "xyz789", - "use_store_in_url": true, - "website_code": 4, - "website_name": "abc123", + "use_store_in_url": false, + "website_code": "4", + "website_name": "xyz789", "weight_unit": "xyz789", "zero_subtotal_enable_for_specific_countries": true, - "zero_subtotal_enabled": true, + "zero_subtotal_enabled": false, "zero_subtotal_new_order_status": "abc123", "zero_subtotal_payment_action": "xyz789", "zero_subtotal_payment_from_specific_countries": "abc123", @@ -1848,7 +1891,7 @@
    Query
    Variables
    -
    {"cart_id": "xyz789"}
    +                  
    {"cart_id": "abc123"}
     
    @@ -1868,17 +1911,17 @@
    Response
    "custom_attributes": [CustomAttribute], "email": "xyz789", "gift_message": GiftMessage, - "gift_receipt_included": true, + "gift_receipt_included": false, "gift_wrapping": GiftWrapping, "id": "4", - "is_virtual": false, + "is_virtual": true, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": false, + "printed_card_included": true, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], - "total_quantity": 987.65 + "total_quantity": 123.45 } } } @@ -1970,6 +2013,7 @@
    Query
    level name parentId + position path roles urlKey @@ -1983,8 +2027,8 @@
    Query
    Variables
    {
    -  "ids": ["abc123"],
    -  "roles": ["xyz789"],
    +  "ids": ["xyz789"],
    +  "roles": ["abc123"],
       "subtree": Subtree
     }
     
    @@ -1997,17 +2041,18 @@
    Response
    { "availableSortBy": ["abc123"], "children": ["abc123"], - "defaultSortBy": "xyz789", - "id": 4, + "defaultSortBy": "abc123", + "id": "4", "level": 123, "name": "abc123", "parentId": "abc123", + "position": 987, "path": "xyz789", - "roles": ["xyz789"], - "urlKey": "abc123", - "urlPath": "abc123", + "roles": ["abc123"], + "urlKey": "xyz789", + "urlPath": "xyz789", "count": 123, - "title": "xyz789" + "title": "abc123" } ] } @@ -2106,8 +2151,8 @@
    Query
    Variables
    {
       "family": "xyz789",
    -  "slugs": ["abc123"],
    -  "depth": 987
    +  "slugs": ["xyz789"],
    +  "depth": 123
     }
     
    @@ -2118,12 +2163,12 @@
    Response
    "categoryTree": [ { "slug": "abc123", - "name": "abc123", + "name": "xyz789", "description": "xyz789", "metaTags": CategoryMetaTags, "images": [CategoryImage], "level": 987, - "parentSlug": "xyz789", + "parentSlug": "abc123", "childrenSlugs": ["abc123"] } ] @@ -2182,8 +2227,8 @@
    Response
    "checkoutAgreements": [ { "agreement_id": 123, - "checkbox_text": "abc123", - "content": "abc123", + "checkbox_text": "xyz789", + "content": "xyz789", "content_height": "xyz789", "is_html": false, "mode": "AUTO", @@ -2234,7 +2279,13 @@
    Query
    Response
    -
    {"data": {"commerceOptimizer": {"priceBookId": 4}}}
    +                  
    {
    +  "data": {
    +    "commerceOptimizer": {
    +      "priceBookId": "4"
    +    }
    +  }
    +}
     
    @@ -2343,11 +2394,11 @@
    Response
    "credit": CompanyCredit, "credit_history": CompanyCreditHistory, "custom_attributes": [CustomAttribute], - "email": "abc123", - "id": "4", + "email": "xyz789", + "id": 4, "legal_address": CompanyLegalAddress, "legal_name": "xyz789", - "name": "abc123", + "name": "xyz789", "payment_methods": ["abc123"], "reseller_id": "xyz789", "role": CompanyRole, @@ -2439,9 +2490,9 @@
    Response
    "data": { "compareList": { "attributes": [ComparableAttribute], - "item_count": 123, + "item_count": 987, "items": [ComparableItem], - "uid": 4 + "uid": "4" } } } @@ -2500,10 +2551,10 @@
    Response
    { "available_regions": [Region], "full_name_english": "xyz789", - "full_name_locale": "abc123", + "full_name_locale": "xyz789", "id": "xyz789", "three_letter_abbreviation": "abc123", - "two_letter_abbreviation": "xyz789" + "two_letter_abbreviation": "abc123" } ] } @@ -2587,9 +2638,9 @@
    Response
    "country": { "available_regions": [Region], "full_name_english": "abc123", - "full_name_locale": "xyz789", - "id": "xyz789", - "three_letter_abbreviation": "xyz789", + "full_name_locale": "abc123", + "id": "abc123", + "three_letter_abbreviation": "abc123", "two_letter_abbreviation": "xyz789" } } @@ -2650,7 +2701,7 @@
    Response
    "xyz789" ], "base_currency_code": "xyz789", - "base_currency_symbol": "xyz789", + "base_currency_symbol": "abc123", "default_display_currency_code": "xyz789", "default_display_currency_symbol": "xyz789", "exchange_rates": [ExchangeRate] @@ -2778,10 +2829,16 @@
    Query
    addressesV2 { ...CustomerAddressesFragment } + admin_assistance_actions { + ...AdminAssistanceActionsFragment + } allow_remote_shopping_assistance companies { ...UserCompaniesOutputFragment } + company_hierarchy { + ...CompanyHierarchyFragment + } compare_list { ...CompareListFragment } @@ -2877,35 +2934,37 @@
    Response
    "customer": { "addresses": [CustomerAddress], "addressesV2": CustomerAddresses, + "admin_assistance_actions": AdminAssistanceActions, "allow_remote_shopping_assistance": false, "companies": UserCompaniesOutput, + "company_hierarchy": [CompanyHierarchy], "compare_list": CompareList, "confirmation_status": "ACCOUNT_CONFIRMED", - "created_at": "xyz789", + "created_at": "abc123", "custom_attributes": [AttributeValueInterface], "date_of_birth": "xyz789", "default_billing": "abc123", - "default_shipping": "abc123", + "default_shipping": "xyz789", "email": "abc123", - "firstname": "abc123", - "gender": 987, + "firstname": "xyz789", + "gender": 123, "gift_registries": [GiftRegistry], "gift_registry": GiftRegistry, "group": CustomerGroupStorefront, - "id": 4, - "is_subscribed": true, + "id": "4", + "is_subscribed": false, "job_title": "xyz789", "lastname": "xyz789", "middlename": "xyz789", "orders": CustomerOrders, - "prefix": "abc123", + "prefix": "xyz789", "purchase_order": PurchaseOrder, "purchase_order_approval_rule": PurchaseOrderApprovalRule, "purchase_order_approval_rule_metadata": PurchaseOrderApprovalRuleMetadata, "purchase_order_approval_rules": PurchaseOrderApprovalRules, "purchase_orders": PurchaseOrders, "purchase_orders_enabled": true, - "quote_enabled": false, + "quote_enabled": true, "requisition_lists": RequisitionLists, "return": Return, "returns": Returns, @@ -2914,7 +2973,7 @@
    Response
    "segments": [CustomerSegmentStorefront], "status": "ACTIVE", "store_credit": CustomerStoreCredit, - "structure_id": "4", + "structure_id": 4, "suffix": "xyz789", "taxvat": "abc123", "team": CompanyTeam, @@ -3031,13 +3090,13 @@
    Response
    "custom_attributes": [CustomAttribute], "email": "abc123", "gift_message": GiftMessage, - "gift_receipt_included": false, + "gift_receipt_included": true, "gift_wrapping": GiftWrapping, "id": 4, "is_virtual": true, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": false, + "printed_card_included": true, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], @@ -3254,7 +3313,11 @@
    Variables
    Response
    -
    {"data": {"customerSegments": [{"uid": 4}]}}
    +                  
    {
    +  "data": {
    +    "customerSegments": [{"uid": "4"}]
    +  }
    +}
     
    @@ -3425,8 +3488,8 @@
    Query
    Variables
    {
    -  "cartId": "xyz789",
    -  "id": "xyz789"
    +  "cartId": "abc123",
    +  "id": "abc123"
     }
     
    @@ -3641,7 +3704,7 @@
    Response
    "giftCardAccount": { "balance": Money, "code": "xyz789", - "expiration_date": "abc123" + "expiration_date": "xyz789" } } } @@ -3735,14 +3798,14 @@
    Response
    {
       "data": {
         "giftRegistry": {
    -      "created_at": "abc123",
    +      "created_at": "xyz789",
           "dynamic_attributes": [
             GiftRegistryDynamicAttribute
           ],
    -      "event_name": "abc123",
    +      "event_name": "xyz789",
           "items": [GiftRegistryItemInterface],
    -      "message": "xyz789",
    -      "owner_name": "xyz789",
    +      "message": "abc123",
    +      "owner_name": "abc123",
           "privacy_settings": "PRIVATE",
           "registrants": [GiftRegistryRegistrant],
           "shipping_address": CustomerAddress,
    @@ -3830,9 +3893,9 @@ 
    Response
    "event_date": "xyz789", "event_title": "xyz789", "gift_registry_uid": "4", - "location": "abc123", - "name": "xyz789", - "type": "xyz789" + "location": "xyz789", + "name": "abc123", + "type": "abc123" } ] } @@ -3903,7 +3966,7 @@
    Query
    Variables
    -
    {"giftRegistryUid": "4"}
    +                  
    {"giftRegistryUid": 4}
     
    @@ -3913,11 +3976,11 @@
    Response
    "giftRegistryIdSearch": [ { "event_date": "abc123", - "event_title": "xyz789", + "event_title": "abc123", "gift_registry_uid": "4", "location": "xyz789", - "name": "abc123", - "type": "xyz789" + "name": "xyz789", + "type": "abc123" } ] } @@ -4011,7 +4074,7 @@
    Variables
    {
       "firstName": "xyz789",
       "lastName": "abc123",
    -  "giftRegistryTypeUid": 4
    +  "giftRegistryTypeUid": "4"
     }
     
    @@ -4022,8 +4085,8 @@
    Response
    "giftRegistryTypeSearch": [ { "event_date": "xyz789", - "event_title": "xyz789", - "gift_registry_uid": "4", + "event_title": "abc123", + "gift_registry_uid": 4, "location": "abc123", "name": "abc123", "type": "abc123" @@ -4085,7 +4148,7 @@
    Response
    GiftRegistryDynamicAttributeMetadataInterface ], "label": "abc123", - "uid": 4 + "uid": "4" } ] } @@ -4145,6 +4208,7 @@

    Example

    Query
    query guestOrder($input: GuestOrderInformationInput!) {
       guestOrder(input: $input) {
    +    admin_assisted_order
         applied_coupons {
           ...AppliedCouponFragment
         }
    @@ -4226,6 +4290,7 @@ 
    Response
    {
       "data": {
         "guestOrder": {
    +      "admin_assisted_order": 123,
           "applied_coupons": [AppliedCoupon],
           "applied_gift_cards": [ApplyGiftCardToOrder],
           "available_actions": ["REORDER"],
    @@ -4237,9 +4302,9 @@ 
    Response
    "customer_info": OrderCustomerInfo, "email": "xyz789", "gift_message": GiftMessage, - "gift_receipt_included": true, + "gift_receipt_included": false, "gift_wrapping": GiftWrapping, - "id": "4", + "id": 4, "invoices": [Invoice], "is_virtual": false, "items": [OrderItemInterface], @@ -4247,15 +4312,15 @@
    Response
    "negotiable_quote": NegotiableQuote, "number": "xyz789", "order_date": "abc123", - "order_status_change_date": "abc123", + "order_status_change_date": "xyz789", "payment_methods": [OrderPaymentMethod], "printed_card_included": false, "returns": Returns, "shipments": [OrderShipment], "shipping_address": OrderAddress, - "shipping_method": "abc123", + "shipping_method": "xyz789", "status": "abc123", - "token": "xyz789", + "token": "abc123", "total": OrderTotal } } @@ -4315,6 +4380,7 @@

    Example

    Query
    query guestOrderByToken($input: OrderTokenInput!) {
       guestOrderByToken(input: $input) {
    +    admin_assisted_order
         applied_coupons {
           ...AppliedCouponFragment
         }
    @@ -4396,26 +4462,27 @@ 
    Response
    {
       "data": {
         "guestOrderByToken": {
    +      "admin_assisted_order": 123,
           "applied_coupons": [AppliedCoupon],
           "applied_gift_cards": [ApplyGiftCardToOrder],
           "available_actions": ["REORDER"],
           "billing_address": OrderAddress,
    -      "carrier": "abc123",
    +      "carrier": "xyz789",
           "comments": [SalesCommentItem],
           "credit_memos": [CreditMemo],
           "custom_attributes": [CustomAttribute],
           "customer_info": OrderCustomerInfo,
    -      "email": "xyz789",
    +      "email": "abc123",
           "gift_message": GiftMessage,
    -      "gift_receipt_included": true,
    +      "gift_receipt_included": false,
           "gift_wrapping": GiftWrapping,
    -      "id": 4,
    +      "id": "4",
           "invoices": [Invoice],
           "is_virtual": false,
           "items": [OrderItemInterface],
           "items_eligible_for_return": [OrderItemInterface],
           "negotiable_quote": NegotiableQuote,
    -      "number": "xyz789",
    +      "number": "abc123",
           "order_date": "xyz789",
           "order_status_change_date": "xyz789",
           "payment_methods": [OrderPaymentMethod],
    @@ -4424,7 +4491,7 @@ 
    Response
    "shipments": [OrderShipment], "shipping_address": OrderAddress, "shipping_method": "xyz789", - "status": "xyz789", + "status": "abc123", "token": "xyz789", "total": OrderTotal } @@ -4492,12 +4559,12 @@
    Query
    Variables
    -
    {"email": "abc123"}
    +                  
    {"email": "xyz789"}
     
    Response
    -
    {"data": {"isCompanyAdminEmailAvailable": {"is_email_available": true}}}
    +                  
    {"data": {"isCompanyAdminEmailAvailable": {"is_email_available": false}}}
     
    @@ -4560,12 +4627,12 @@
    Query
    Variables
    -
    {"email": "xyz789"}
    +                  
    {"email": "abc123"}
     
    Response
    -
    {"data": {"isCompanyEmailAvailable": {"is_email_available": false}}}
    +                  
    {"data": {"isCompanyEmailAvailable": {"is_email_available": true}}}
     
    @@ -4633,7 +4700,7 @@
    Variables
    Response
    -
    {"data": {"isCompanyRoleNameAvailable": {"is_role_name_available": true}}}
    +                  
    {"data": {"isCompanyRoleNameAvailable": {"is_role_name_available": false}}}
     
    @@ -4696,12 +4763,12 @@
    Query
    Variables
    -
    {"email": "xyz789"}
    +                  
    {"email": "abc123"}
     
    Response
    -
    {"data": {"isCompanyUserEmailAvailable": {"is_email_available": false}}}
    +                  
    {"data": {"isCompanyUserEmailAvailable": {"is_email_available": true}}}
     
    @@ -4768,7 +4835,7 @@
    Variables
    Response
    -
    {"data": {"isEmailAvailable": {"is_email_available": false}}}
    +                  
    {"data": {"isEmailAvailable": {"is_email_available": true}}}
     
    @@ -4917,7 +4984,7 @@
    Response
    "data": { "isSubscribedProductAlertStock": { "isSubscribed": false, - "message": "xyz789" + "message": "abc123" } } } @@ -5108,7 +5175,7 @@
    Query
    Variables
    -
    {"uid": 4}
    +                  
    {"uid": "4"}
     
    @@ -5122,14 +5189,14 @@
    Response
    "billing_address": NegotiableQuoteBillingAddress, "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", + "created_at": "xyz789", "custom_attributes": [CustomAttribute], "email": "xyz789", "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], - "is_virtual": false, + "is_virtual": true, "items": [CartItemInterface], - "name": "xyz789", + "name": "abc123", "order": CustomerOrder, "prices": CartPrices, "sales_rep_name": "xyz789", @@ -5141,8 +5208,8 @@
    Response
    "template_id": "4", "template_name": "xyz789", "total_quantity": 123.45, - "uid": 4, - "updated_at": "xyz789" + "uid": "4", + "updated_at": "abc123" } } } @@ -5247,7 +5314,7 @@
    Query
    Variables
    -
    {"templateId": 4}
    +                  
    {"templateId": "4"}
     
    @@ -5257,14 +5324,14 @@
    Response
    "negotiableQuoteTemplate": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", - "expiration_date": "xyz789", + "created_at": "xyz789", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": false, + "is_min_max_qty_used": true, "is_virtual": false, "items": [CartItemInterface], - "max_order_commitment": 123, + "max_order_commitment": 987, "min_order_commitment": 987, "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], @@ -5272,15 +5339,15 @@
    Response
    "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "abc123", + "sales_rep_name": "xyz789", "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", + "status": "xyz789", "template_id": "4", - "total_quantity": 123.45, + "total_quantity": 987.65, "uid": "4", - "updated_at": "abc123" + "updated_at": "xyz789" } } } @@ -5516,7 +5583,98 @@
    Response
    "items": [NegotiableQuote], "page_info": SearchResultPageInfo, "sort_fields": SortFields, - "total_count": 987 + "total_count": 123 + } + } +} +
    + + + back to top + + +
    +
    + Queries +
    +

    + payByLinkOrder +

    +
    +
    +
    +
    Description
    +

    Resolves a Pay By Link token to the pending order's summary so the EDS payment page can render it before collecting payment.

    +
    +
    +
    +
    +
    +
    +
    Response
    +

    Returns a PayByLinkOrder +

    +
    +
    +
    Arguments
    + + + + + + + + + + + + + +
    NameDescription
    + token - String! + The token issued for the Pay By Link payment.
    +
    +
    +
    +

    Example

    +
    +
    Query
    +
    query payByLinkOrder($token: String!) {
    +  payByLinkOrder(token: $token) {
    +    billing_address {
    +      ...PayByLinkOrderAddressFragment
    +    }
    +    customer_email
    +    expires_at
    +    items {
    +      ...PayByLinkOrderItemFragment
    +    }
    +    shipping_address {
    +      ...PayByLinkOrderAddressFragment
    +    }
    +    totals {
    +      ...PayByLinkOrderTotalsFragment
    +    }
    +  }
    +}
    +
    +
    +
    +
    Variables
    +
    {"token": "abc123"}
    +
    +
    +
    +
    Response
    +
    {
    +  "data": {
    +    "payByLinkOrder": {
    +      "billing_address": PayByLinkOrderAddress,
    +      "customer_email": "abc123",
    +      "expires_at": "abc123",
    +      "items": [PayByLinkOrderItem],
    +      "shipping_address": PayByLinkOrderAddress,
    +      "totals": PayByLinkOrderTotals
         }
       }
     }
    @@ -5789,9 +5947,9 @@ 
    Response
    "facets": [Aggregation], "items": [ProductSearchItem], "page_info": SearchResultPageInfo, - "related_terms": ["xyz789"], - "suggestions": ["xyz789"], - "total_count": 987, + "related_terms": ["abc123"], + "suggestions": ["abc123"], + "total_count": 123, "warnings": [ProductSearchWarning] } } @@ -5891,7 +6049,7 @@
    Query
    Variables
    -
    {"skus": ["xyz789"]}
    +                  
    {"skus": ["abc123"]}
     
    @@ -5900,29 +6058,29 @@
    Response
    "data": { "products": [ { - "addToCartAllowed": true, - "inStock": true, + "addToCartAllowed": false, + "inStock": false, "lowStock": false, "attributes": [ProductViewAttribute], "description": "xyz789", - "id": 4, + "id": "4", "images": [ProductViewImage], "videos": [ProductViewVideo], "lastModifiedAt": "2007-12-03T10:15:30Z", - "metaDescription": "abc123", - "metaKeyword": "abc123", + "metaDescription": "xyz789", + "metaKeyword": "xyz789", "metaTitle": "xyz789", "name": "abc123", - "shortDescription": "abc123", + "shortDescription": "xyz789", "inputOptions": [ProductViewInputOption], "sku": "xyz789", "externalId": "abc123", "url": "xyz789", - "urlKey": "abc123", + "urlKey": "xyz789", "links": [ProductViewLink], "categories": [CategoryProductView], "queryType": "xyz789", - "visibility": "xyz789" + "visibility": "abc123" } ] } @@ -5993,7 +6151,7 @@
    Response
    "data": { "recaptchaFormConfig": { "configurations": ReCaptchaConfiguration, - "is_enabled": false + "is_enabled": true } } } @@ -6131,13 +6289,13 @@
    Response
    {
       "data": {
         "recaptchaV3Config": {
    -      "badge_position": "abc123",
    -      "failure_message": "xyz789",
    +      "badge_position": "xyz789",
    +      "failure_message": "abc123",
           "forms": ["PLACE_ORDER"],
           "is_enabled": true,
           "language_code": "xyz789",
           "minimum_score": 987.65,
    -      "theme": "abc123",
    +      "theme": "xyz789",
           "website_key": "abc123"
         }
       }
    @@ -6198,6 +6356,12 @@ 
    Arguments
    SKU of the product currently being viewed on PDP + + + currentProduct - CurrentProductInput + + Current product context from PDP (SKU, price, category, etc.) + pageType - PageType @@ -6234,6 +6398,7 @@
    Query
    $cartSkus: [String], $category: String, $currentSku: String, + $currentProduct: CurrentProductInput, $pageType: PageType, $userPurchaseHistory: [PurchaseHistory], $userViewHistory: [ViewHistory], @@ -6243,6 +6408,7 @@
    Query
    cartSkus: $cartSkus, category: $category, currentSku: $currentSku, + currentProduct: $currentProduct, pageType: $pageType, userPurchaseHistory: $userPurchaseHistory, userViewHistory: $userViewHistory, @@ -6260,8 +6426,9 @@
    Query
    Variables
    {
       "cartSkus": ["abc123"],
    -  "category": "abc123",
    +  "category": "xyz789",
       "currentSku": "abc123",
    +  "currentProduct": CurrentProductInput,
       "pageType": "CMS",
       "userPurchaseHistory": [PurchaseHistory],
       "userViewHistory": [ViewHistory],
    @@ -6275,7 +6442,7 @@ 
    Response
    "data": { "recommendations": { "results": [RecommendationUnit], - "totalResults": 123 + "totalResults": 987 } } } @@ -6321,6 +6488,12 @@
    Arguments
    SKU of the product currently being viewed on PDP + + + currentProduct - CurrentProductInput + + Current product context from PDP (SKU, price, category, etc.) + userPurchaseHistory - [PurchaseHistory] @@ -6350,6 +6523,7 @@
    Query
    query recommendationsByUnitIds(
       $unitIds: [String!]!,
       $currentSku: String,
    +  $currentProduct: CurrentProductInput,
       $userPurchaseHistory: [PurchaseHistory],
       $userViewHistory: [ViewHistory],
       $cartSkus: [String]
    @@ -6357,6 +6531,7 @@ 
    Query
    recommendationsByUnitIds( unitIds: $unitIds, currentSku: $currentSku, + currentProduct: $currentProduct, userPurchaseHistory: $userPurchaseHistory, userViewHistory: $userViewHistory, cartSkus: $cartSkus @@ -6372,8 +6547,9 @@
    Query
    Variables
    {
    -  "unitIds": ["abc123"],
    -  "currentSku": "abc123",
    +  "unitIds": ["xyz789"],
    +  "currentSku": "xyz789",
    +  "currentProduct": CurrentProductInput,
       "userPurchaseHistory": [PurchaseHistory],
       "userViewHistory": [ViewHistory],
       "cartSkus": ["abc123"]
    @@ -6386,7 +6562,7 @@ 
    Response
    "data": { "recommendationsByUnitIds": { "results": [RecommendationUnit], - "totalResults": 123 + "totalResults": 987 } } } @@ -6498,8 +6674,8 @@
    Query
    Variables
    {
    -  "optionIds": ["xyz789"],
    -  "sku": "xyz789"
    +  "optionIds": ["abc123"],
    +  "sku": "abc123"
     }
     
    @@ -6508,29 +6684,29 @@
    Response
    {
       "data": {
         "refineProduct": {
    -      "addToCartAllowed": false,
    -      "inStock": true,
    -      "lowStock": false,
    +      "addToCartAllowed": true,
    +      "inStock": false,
    +      "lowStock": true,
           "attributes": [ProductViewAttribute],
    -      "description": "abc123",
    -      "id": "4",
    +      "description": "xyz789",
    +      "id": 4,
           "images": [ProductViewImage],
           "videos": [ProductViewVideo],
           "lastModifiedAt": "2007-12-03T10:15:30Z",
           "metaDescription": "abc123",
    -      "metaKeyword": "xyz789",
    -      "metaTitle": "abc123",
    +      "metaKeyword": "abc123",
    +      "metaTitle": "xyz789",
           "name": "xyz789",
    -      "shortDescription": "abc123",
    +      "shortDescription": "xyz789",
           "inputOptions": [ProductViewInputOption],
    -      "sku": "xyz789",
    +      "sku": "abc123",
           "externalId": "abc123",
    -      "url": "abc123",
    -      "urlKey": "abc123",
    +      "url": "xyz789",
    +      "urlKey": "xyz789",
           "links": [ProductViewLink],
           "categories": [CategoryProductView],
           "queryType": "abc123",
    -      "visibility": "xyz789"
    +      "visibility": "abc123"
         }
       }
     }
    @@ -6551,7 +6727,7 @@ 

    Description
    -

    Search for categories by name with optional filtering and pagination.

    +

    Search for categories by name with optional filtering and pagination. Results are returned in alphabetical order by category name.

    @@ -6631,7 +6807,7 @@
    Query
    Variables
    {
       "searchTerm": "abc123",
    -  "family": "abc123",
    +  "family": "xyz789",
       "pageSize": 20,
       "currentPage": 1
     }
    @@ -6643,11 +6819,88 @@ 
    Response
    "data": { "searchCategory": { "items": [CategoryTreeView], - "totalCount": 123, + "totalCount": 987, "pageInfo": PageInfo } } } +
    +
    +
    + back to top +
    +
    +
    +
    + Queries +
    +

    + sharedRequisitionList +

    +
    +
    +
    +
    Description
    +

    View a shared requisition list when the receiver is logged in and belongs to the same company as the sender.

    +
    +
    +
    +
    +
    +
    +
    Response
    +

    Returns a SharedRequisitionListOutput +

    +
    +
    +
    Arguments
    + + + + + + + + + + + + + +
    NameDescription
    + token - String! + The share token which is extracted from the requisition list share link and acts as an identifier for the requisition list.
    +
    +
    +
    +

    Example

    +
    +
    Query
    +
    query sharedRequisitionList($token: String!) {
    +  sharedRequisitionList(token: $token) {
    +    requisition_list {
    +      ...RequisitionListFragment
    +    }
    +    sender_name
    +  }
    +}
    +
    +
    +
    +
    Variables
    +
    {"token": "abc123"}
    +
    +
    +
    +
    Response
    +
    {
    +  "data": {
    +    "sharedRequisitionList": {
    +      "requisition_list": RequisitionList,
    +      "sender_name": "xyz789"
    +    }
    +  }
    +}
     
    @@ -6790,6 +7043,10 @@
    Query
    quote_minimum_amount quote_minimum_amount_message required_character_classes_number + requisition_list_share_link_validity_days + requisition_list_share_max_recipients + requisition_list_share_storefront_path + requisition_list_sharing_enabled returns_enabled root_category_uid sales_fixed_product_tax_display_setting @@ -6801,6 +7058,9 @@
    Query
    secure_base_url share_active_segments share_applied_cart_rule + shopping_assistance_checkbox_title + shopping_assistance_checkbox_tooltip + shopping_assistance_enabled shopping_cart_display_full_summary shopping_cart_display_grand_total shopping_cart_display_price @@ -6836,108 +7096,112 @@
    Response
    "data": { "storeConfig": { "allow_company_registration": true, - "allow_gift_receipt": "abc123", - "allow_gift_wrapping_on_order": "xyz789", + "allow_gift_receipt": "xyz789", + "allow_gift_wrapping_on_order": "abc123", "allow_gift_wrapping_on_order_items": "abc123", - "allow_items": "xyz789", + "allow_items": "abc123", "allow_order": "abc123", "allow_printed_card": "xyz789", - "autocomplete_on_storefront": true, + "autocomplete_on_storefront": false, "base_currency_code": "abc123", "base_link_url": "abc123", "base_media_url": "xyz789", "base_static_url": "abc123", "base_url": "abc123", - "cart_expires_in_days": 123, + "cart_expires_in_days": 987, "cart_gift_wrapping": "abc123", - "cart_merge_preference": "xyz789", + "cart_merge_preference": "abc123", "cart_printed_card": "abc123", "cart_summary_display_quantity": 123, - "catalog_default_sort_by": "xyz789", + "catalog_default_sort_by": "abc123", "category_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", - "category_url_suffix": "abc123", - "check_money_order_enable_for_specific_countries": true, - "check_money_order_enabled": false, - "check_money_order_make_check_payable_to": "xyz789", - "check_money_order_max_order_total": "abc123", - "check_money_order_min_order_total": "abc123", + "category_url_suffix": "xyz789", + "check_money_order_enable_for_specific_countries": false, + "check_money_order_enabled": true, + "check_money_order_make_check_payable_to": "abc123", + "check_money_order_max_order_total": "xyz789", + "check_money_order_min_order_total": "xyz789", "check_money_order_new_order_status": "xyz789", - "check_money_order_payment_from_specific_countries": "abc123", + "check_money_order_payment_from_specific_countries": "xyz789", "check_money_order_send_check_to": "abc123", - "check_money_order_sort_order": 123, - "check_money_order_title": "xyz789", - "company_credit_enabled": true, - "company_enabled": false, + "check_money_order_sort_order": 987, + "check_money_order_title": "abc123", + "company_credit_enabled": false, + "company_enabled": true, "configurable_product_image": "ITSELF", "configurable_thumbnail_source": "xyz789", "contact_enabled": true, "countries_with_required_region": "abc123", "create_account_confirmation": false, - "customer_access_token_lifetime": 123.45, + "customer_access_token_lifetime": 987.65, "default_country": "abc123", "default_display_currency_code": "abc123", "display_product_prices_in_catalog": 987, - "display_shipping_prices": 123, - "display_state_if_optional": true, - "enable_multiple_wishlists": "xyz789", + "display_shipping_prices": 987, + "display_state_if_optional": false, + "enable_multiple_wishlists": "abc123", "fixed_product_taxes_apply_tax_to_fpt": true, - "fixed_product_taxes_display_prices_in_emails": 123, - "fixed_product_taxes_display_prices_in_product_lists": 987, + "fixed_product_taxes_display_prices_in_emails": 987, + "fixed_product_taxes_display_prices_in_product_lists": 123, "fixed_product_taxes_display_prices_in_sales_modules": 987, - "fixed_product_taxes_display_prices_on_product_view_page": 987, - "fixed_product_taxes_enable": false, - "fixed_product_taxes_include_fpt_in_subtotal": true, - "graphql_share_customer_group": false, - "grid_per_page": 123, + "fixed_product_taxes_display_prices_on_product_view_page": 123, + "fixed_product_taxes_enable": true, + "fixed_product_taxes_include_fpt_in_subtotal": false, + "graphql_share_customer_group": true, + "grid_per_page": 987, "grid_per_page_values": "xyz789", "grouped_product_image": "ITSELF", - "is_checkout_agreements_enabled": false, + "is_checkout_agreements_enabled": true, "is_default_store": false, "is_default_store_group": false, - "is_guest_checkout_enabled": true, + "is_guest_checkout_enabled": false, "is_negotiable_quote_active": true, - "is_one_page_checkout_enabled": true, + "is_one_page_checkout_enabled": false, "is_requisition_list_active": "xyz789", "list_mode": "abc123", - "list_per_page": 987, - "list_per_page_values": "xyz789", - "locale": "xyz789", - "magento_reward_general_is_enabled": "abc123", - "magento_reward_general_is_enabled_on_front": "abc123", + "list_per_page": 123, + "list_per_page_values": "abc123", + "locale": "abc123", + "magento_reward_general_is_enabled": "xyz789", + "magento_reward_general_is_enabled_on_front": "xyz789", "magento_reward_general_min_points_balance": "abc123", - "magento_reward_general_publish_history": "xyz789", + "magento_reward_general_publish_history": "abc123", "magento_reward_points_invitation_customer": "xyz789", - "magento_reward_points_invitation_customer_limit": "xyz789", - "magento_reward_points_invitation_order": "abc123", + "magento_reward_points_invitation_customer_limit": "abc123", + "magento_reward_points_invitation_order": "xyz789", "magento_reward_points_invitation_order_limit": "xyz789", "magento_reward_points_newsletter": "xyz789", - "magento_reward_points_order": "xyz789", + "magento_reward_points_order": "abc123", "magento_reward_points_register": "abc123", "magento_reward_points_review": "xyz789", "magento_reward_points_review_limit": "xyz789", - "magento_wishlist_general_is_enabled": "xyz789", + "magento_wishlist_general_is_enabled": "abc123", "max_items_in_order_summary": 123, "maximum_number_of_wishlists": "xyz789", - "minicart_display": false, + "minicart_display": true, "minicart_max_items": 123, - "minimum_password_length": "abc123", + "minimum_password_length": "xyz789", "newsletter_enabled": true, "optional_zip_countries": "xyz789", "order_cancellation_enabled": false, "order_cancellation_reasons": [CancellationReason], "orders_invoices_credit_memos_display_full_summary": false, - "orders_invoices_credit_memos_display_grandtotal": true, + "orders_invoices_credit_memos_display_grandtotal": false, "orders_invoices_credit_memos_display_price": 123, "orders_invoices_credit_memos_display_shipping_amount": 123, - "orders_invoices_credit_memos_display_subtotal": 123, + "orders_invoices_credit_memos_display_subtotal": 987, "orders_invoices_credit_memos_display_zero_tax": true, "printed_card_priceV2": Money, "product_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", - "product_url_suffix": "xyz789", - "quickorder_active": false, + "product_url_suffix": "abc123", + "quickorder_active": true, "quote_minimum_amount": 123.45, "quote_minimum_amount_message": "xyz789", "required_character_classes_number": "abc123", + "requisition_list_share_link_validity_days": 123, + "requisition_list_share_max_recipients": 123, + "requisition_list_share_storefront_path": "abc123", + "requisition_list_sharing_enabled": true, "returns_enabled": "abc123", "root_category_uid": 4, "sales_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", @@ -6949,30 +7213,33 @@
    Response
    "secure_base_url": "abc123", "share_active_segments": true, "share_applied_cart_rule": true, + "shopping_assistance_checkbox_title": "abc123", + "shopping_assistance_checkbox_tooltip": "abc123", + "shopping_assistance_enabled": true, "shopping_cart_display_full_summary": false, "shopping_cart_display_grand_total": false, "shopping_cart_display_price": 123, "shopping_cart_display_shipping": 987, - "shopping_cart_display_subtotal": 123, + "shopping_cart_display_subtotal": 987, "shopping_cart_display_tax_gift_wrapping": "DISPLAY_EXCLUDING_TAX", - "shopping_cart_display_zero_tax": false, + "shopping_cart_display_zero_tax": true, "store_code": 4, "store_group_code": "4", "store_group_name": "xyz789", - "store_name": "xyz789", + "store_name": "abc123", "store_sort_order": 123, "timezone": "abc123", - "title_separator": "abc123", + "title_separator": "xyz789", "use_store_in_url": false, "website_code": 4, "website_name": "xyz789", - "weight_unit": "abc123", - "zero_subtotal_enable_for_specific_countries": false, - "zero_subtotal_enabled": false, - "zero_subtotal_new_order_status": "xyz789", + "weight_unit": "xyz789", + "zero_subtotal_enable_for_specific_countries": true, + "zero_subtotal_enabled": true, + "zero_subtotal_new_order_status": "abc123", "zero_subtotal_payment_action": "xyz789", - "zero_subtotal_payment_from_specific_countries": "abc123", - "zero_subtotal_sort_order": 123, + "zero_subtotal_payment_from_specific_countries": "xyz789", + "zero_subtotal_sort_order": 987, "zero_subtotal_title": "xyz789" } } @@ -7064,7 +7331,7 @@
    Variables
    {
       "sku": "xyz789",
       "optionIds": ["abc123"],
    -  "pageSize": 123,
    +  "pageSize": 987,
       "cursor": "abc123"
     }
     
    @@ -7144,7 +7411,7 @@
    Variables
    Response
    -
    {"data": {"acceptCompanyInvitation": {"success": false}}}
    +                  
    {"data": {"acceptCompanyInvitation": {"success": true}}}
     
    @@ -7263,7 +7530,7 @@
    Response
    "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 123, - "min_order_commitment": 987, + "min_order_commitment": 123, "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, @@ -7276,8 +7543,8 @@
    Response
    ], "status": "abc123", "template_id": "4", - "total_quantity": 987.65, - "uid": 4, + "total_quantity": 123.45, + "uid": "4", "updated_at": "xyz789" } } @@ -7524,7 +7791,7 @@
    Query
    Variables
    {
    -  "cartId": "xyz789",
    +  "cartId": "abc123",
       "cartItems": [CartItemInput]
     }
     
    @@ -7616,7 +7883,7 @@
    Response
    "data": { "addProductsToCompareList": { "attributes": [ComparableAttribute], - "item_count": 987, + "item_count": 123, "items": [ComparableItem], "uid": 4 } @@ -7777,7 +8044,7 @@
    Query
    Variables
    {
    -  "requisitionListUid": "4",
    +  "requisitionListUid": 4,
       "requisitionListItems": [RequisitionListItemsInput]
     }
     
    @@ -8121,7 +8388,7 @@
    Query
    Variables
    {
    -  "requisitionListUid": 4,
    +  "requisitionListUid": "4",
       "requisitionListItemUids": ["4"]
     }
     
    @@ -8135,7 +8402,7 @@
    Response
    AddRequisitionListItemToCartUserError ], "cart": Cart, - "status": true + "status": false } } } @@ -8366,7 +8633,7 @@
    Query
    Variables
    -
    {"wishlistId": 4, "wishlistItemIds": ["4"]}
    +                  
    {"wishlistId": 4, "wishlistItemIds": [4]}
     
    @@ -8653,7 +8920,7 @@
    Query
    Variables
    -
    {"cartId": 4}
    +                  
    {"cartId": "4"}
     
    @@ -8808,6 +9075,81 @@
    Response
    } } } +
    + + + back to top + + +
    +
    + Mutations +
    +

    + assignChildCompany +

    +
    +
    +
    +
    Description
    +

    Assign a child company to a parent company within the company relation hierarchy.

    +
    +
    +
    +
    +
    +
    +
    Response
    +

    Returns an AssignChildCompanyOutput +

    +
    +
    +
    Arguments
    + + + + + + + + + + + + + +
    NameDescription
    + input - AssignChildCompanyInput! + An input object that defines which companies to relate.
    +
    +
    +
    +

    Example

    +
    +
    Query
    +
    mutation assignChildCompany($input: AssignChildCompanyInput!) {
    +  assignChildCompany(input: $input) {
    +    company_hierarchy {
    +      ...CompanyHierarchyFragment
    +    }
    +  }
    +}
    +
    +
    +
    +
    Variables
    +
    {"input": AssignChildCompanyInput}
    +
    +
    +
    +
    Response
    +
    {
    +  "data": {
    +    "assignChildCompany": {
    +      "company_hierarchy": CompanyHierarchy
    +    }
    +  }
    +}
     
    @@ -8872,7 +9214,7 @@
    Query
    Variables
    -
    {"uid": "4"}
    +                  
    {"uid": 4}
     
    @@ -9015,11 +9357,11 @@
    Response
    ], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "xyz789", + "email": "abc123", "gift_message": GiftMessage, "gift_receipt_included": false, "gift_wrapping": GiftWrapping, - "id": 4, + "id": "4", "is_virtual": true, "itemsV2": CartItems, "prices": CartPrices, @@ -9027,7 +9369,7 @@
    Response
    "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], - "total_quantity": 123.45 + "total_quantity": 987.65 } } } @@ -9141,30 +9483,30 @@
    Response
    "cancelNegotiableQuoteTemplate": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "xyz789", + "created_at": "abc123", "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": false, - "is_virtual": true, + "is_virtual": false, "items": [CartItemInterface], "max_order_commitment": 987, "min_order_commitment": 123, - "name": "abc123", + "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "shipping_addresses": [ NegotiableQuoteShippingAddress ], "status": "xyz789", - "template_id": "4", - "total_quantity": 123.45, - "uid": "4", - "updated_at": "xyz789" + "template_id": 4, + "total_quantity": 987.65, + "uid": 4, + "updated_at": "abc123" } } } @@ -9244,7 +9586,7 @@
    Response
    {
       "data": {
         "cancelOrder": {
    -      "error": "abc123",
    +      "error": "xyz789",
           "errorV2": CancelOrderError,
           "order": CustomerOrder
         }
    @@ -9402,10 +9744,16 @@ 
    Query
    addressesV2 { ...CustomerAddressesFragment } + admin_assistance_actions { + ...AdminAssistanceActionsFragment + } allow_remote_shopping_assistance companies { ...UserCompaniesOutputFragment } + company_hierarchy { + ...CompanyHierarchyFragment + } compare_list { ...CompareListFragment } @@ -9497,8 +9845,8 @@
    Query
    Variables
    {
    -  "currentPassword": "abc123",
    -  "newPassword": "abc123"
    +  "currentPassword": "xyz789",
    +  "newPassword": "xyz789"
     }
     
    @@ -9509,26 +9857,28 @@
    Response
    "changeCustomerPassword": { "addresses": [CustomerAddress], "addressesV2": CustomerAddresses, - "allow_remote_shopping_assistance": false, + "admin_assistance_actions": AdminAssistanceActions, + "allow_remote_shopping_assistance": true, "companies": UserCompaniesOutput, + "company_hierarchy": [CompanyHierarchy], "compare_list": CompareList, "confirmation_status": "ACCOUNT_CONFIRMED", "created_at": "abc123", "custom_attributes": [AttributeValueInterface], "date_of_birth": "abc123", - "default_billing": "xyz789", - "default_shipping": "abc123", + "default_billing": "abc123", + "default_shipping": "xyz789", "email": "abc123", "firstname": "abc123", - "gender": 123, + "gender": 987, "gift_registries": [GiftRegistry], "gift_registry": GiftRegistry, "group": CustomerGroupStorefront, "id": 4, - "is_subscribed": false, + "is_subscribed": true, "job_title": "xyz789", - "lastname": "abc123", - "middlename": "abc123", + "lastname": "xyz789", + "middlename": "xyz789", "orders": CustomerOrders, "prefix": "xyz789", "purchase_order": PurchaseOrder, @@ -9548,7 +9898,7 @@
    Response
    "store_credit": CustomerStoreCredit, "structure_id": 4, "suffix": "abc123", - "taxvat": "abc123", + "taxvat": "xyz789", "team": CompanyTeam, "telephone": "abc123", "wishlist_v2": Wishlist, @@ -9627,7 +9977,7 @@
    Variables
    Response
    {
       "data": {
    -    "clearCustomerCart": {"cart": Cart, "status": false}
    +    "clearCustomerCart": {"cart": Cart, "status": true}
       }
     }
     
    @@ -9696,7 +10046,7 @@
    Query
    Variables
    -
    {"wishlistId": 4}
    +                  
    {"wishlistId": "4"}
     
    @@ -9876,6 +10226,94 @@
    Response
    } } } +
    + + + back to top + + +
    +
    + Mutations +
    +

    + completePayByLinkPayment +

    +
    +
    +
    +
    Description
    +

    Complete a Pay By Link payment for an in-process gateway (Payment Services).

    +
    +
    +
    +
    +
    +
    +
    Response
    +

    Returns a CompletePayByLinkPaymentOutput +

    +
    +
    +
    Arguments
    + + + + + + + + + + + + + + + + + +
    NameDescription
    + token - String! + The token issued for the Pay By Link payment.
    + payment_method - PaymentMethodInput! + The payment method the customer has selected to complete the order.
    +
    +
    +
    +

    Example

    +
    +
    Query
    +
    mutation completePayByLinkPayment(
    +  $token: String!,
    +  $payment_method: PaymentMethodInput!
    +) {
    +  completePayByLinkPayment(
    +    token: $token,
    +    payment_method: $payment_method
    +  ) {
    +    order_number
    +  }
    +}
    +
    +
    +
    +
    Variables
    +
    {
    +  "token": "abc123",
    +  "payment_method": PaymentMethodInput
    +}
    +
    +
    +
    +
    Response
    +
    {
    +  "data": {
    +    "completePayByLinkPayment": {
    +      "order_number": "xyz789"
    +    }
    +  }
    +}
     
    @@ -10258,7 +10696,7 @@
    Query
    Variables
    {
    -  "sourceRequisitionListUid": "4",
    +  "sourceRequisitionListUid": 4,
       "destinationRequisitionListUid": "4",
       "requisitionListItem": CopyItemsBetweenRequisitionListsInput
     }
    @@ -10740,7 +11178,7 @@ 
    Response
    "attributes": [ComparableAttribute], "item_count": 987, "items": [ComparableItem], - "uid": 4 + "uid": "4" } } } @@ -10847,20 +11285,20 @@
    Response
    "default_billing": true, "default_shipping": true, "extension_attributes": [CustomerAddressAttribute], - "fax": "abc123", + "fax": "xyz789", "firstname": "abc123", - "id": 987, + "id": 123, "lastname": "xyz789", - "middlename": "abc123", + "middlename": "xyz789", "postcode": "xyz789", "prefix": "xyz789", "region": CustomerAddressRegion, - "region_id": 123, + "region_id": 987, "street": ["abc123"], "suffix": "xyz789", - "telephone": "abc123", + "telephone": "xyz789", "uid": 4, - "vat_id": "xyz789" + "vat_id": "abc123" } } } @@ -11150,10 +11588,10 @@
    Response
    "data": { "createPaymentOrder": { "amount": 123.45, - "currency_code": "abc123", - "id": "xyz789", - "mp_order_id": "xyz789", - "status": "abc123" + "currency_code": "xyz789", + "id": "abc123", + "mp_order_id": "abc123", + "status": "xyz789" } } } @@ -11246,12 +11684,12 @@
    Response
    "approver_roles": [CompanyRole], "condition": PurchaseOrderApprovalRuleConditionInterface, "created_at": "abc123", - "created_by": "abc123", + "created_by": "xyz789", "description": "xyz789", "name": "abc123", "status": "ENABLED", "uid": "4", - "updated_at": "xyz789" + "updated_at": "abc123" } } } @@ -11477,7 +11915,7 @@
    Response
    {
       "data": {
         "createVaultCardSetupToken": {
    -      "setup_token": "xyz789"
    +      "setup_token": "abc123"
         }
       }
     }
    @@ -11685,7 +12123,7 @@ 
    Variables
    Response
    -
    {"data": {"deleteCompanyTeam": {"success": false}}}
    +                  
    {"data": {"deleteCompanyTeam": {"success": true}}}
     
    @@ -11753,7 +12191,7 @@
    Variables
    Response
    -
    {"data": {"deleteCompanyUserV2": {"success": true}}}
    +                  
    {"data": {"deleteCompanyUserV2": {"success": false}}}
     
    @@ -11861,7 +12299,7 @@
    Query
    Response
    -
    {"data": {"deleteCustomer": false}}
    +                  
    {"data": {"deleteCustomer": true}}
     
    @@ -11933,7 +12371,7 @@
    Variables
    Response
    -
    {"data": {"deleteCustomerAddress": false}}
    +                  
    {"data": {"deleteCustomerAddress": true}}
     
    @@ -11993,7 +12431,7 @@
    Query
    Variables
    -
    {"uid": 4}
    +                  
    {"uid": "4"}
     
    @@ -12216,7 +12654,7 @@
    Query
    Variables
    -
    {"public_hash": "abc123"}
    +                  
    {"public_hash": "xyz789"}
     
    @@ -12369,7 +12807,7 @@
    Query
    Variables
    -
    {"requisitionListUid": "4"}
    +                  
    {"requisitionListUid": 4}
     
    @@ -12378,7 +12816,7 @@
    Response
    "data": { "deleteRequisitionList": { "requisition_lists": RequisitionLists, - "status": true + "status": false } } } @@ -12457,7 +12895,10 @@
    Query
    Variables
    -
    {"requisitionListUid": 4, "requisitionListItemUids": [4]}
    +                  
    {
    +  "requisitionListUid": 4,
    +  "requisitionListItemUids": ["4"]
    +}
     
    @@ -12533,7 +12974,7 @@
    Query
    Variables
    -
    {"wishlistId": 4}
    +                  
    {"wishlistId": "4"}
     
    @@ -12541,7 +12982,7 @@
    Response
    {
       "data": {
         "deleteWishlist": {
    -      "status": true,
    +      "status": false,
           "wishlists": [Wishlist]
         }
       }
    @@ -12710,7 +13151,7 @@ 
    Response
    "amount": Money, "available": false, "carrier_code": "xyz789", - "carrier_title": "abc123", + "carrier_title": "xyz789", "error_message": "xyz789", "method_code": "abc123", "method_title": "xyz789", @@ -12862,7 +13303,7 @@
    Response
    "data": { "exchangeExternalCustomerToken": { "customer": Customer, - "token": "xyz789" + "token": "abc123" } } } @@ -12883,7 +13324,7 @@

    Description
    -

    Exchange a customer's one time password for a customer token.

    +

    Exchange one time login code for customer token.

    @@ -12940,8 +13381,8 @@
    Query
    Variables
    {
    -  "email": "abc123",
    -  "otp": "abc123"
    +  "email": "xyz789",
    +  "otp": "xyz789"
     }
     
    @@ -12950,7 +13391,7 @@
    Response
    {
       "data": {
         "exchangeOtpForCustomerToken": {
    -      "token": "abc123"
    +      "token": "xyz789"
         }
       }
     }
    @@ -13098,8 +13539,8 @@ 
    Query
    Variables
    {
    -  "email": "abc123",
    -  "password": "xyz789"
    +  "email": "xyz789",
    +  "password": "abc123"
     }
     
    @@ -13108,7 +13549,7 @@
    Response
    {
       "data": {
         "generateCustomerToken": {
    -      "token": "abc123"
    +      "token": "xyz789"
         }
       }
     }
    @@ -13252,6 +13693,85 @@ 
    Variables
    Response
    {"data": {"generateNegotiableQuoteFromTemplate": {"negotiable_quote_uid": 4}}}
    +
    +
    + + back to top + +
    +
    +
    + Mutations +
    +

    + importSharedRequisitionList +

    +
    +
    +
    +
    Description
    +

    Import a shared requisition list into the current customer account.

    +
    +
    +
    +
    +
    +
    +
    Response
    +

    Returns an ImportSharedRequisitionListOutput +

    +
    +
    +
    Arguments
    + + + + + + + + + + + + + +
    NameDescription
    + token - String! + The token for the shared requisition list.
    +
    +
    +
    +

    Example

    +
    +
    Query
    +
    mutation importSharedRequisitionList($token: String!) {
    +  importSharedRequisitionList(token: $token) {
    +    requisition_list {
    +      ...RequisitionListFragment
    +    }
    +    user_errors {
    +      ...ShareRequisitionListUserErrorFragment
    +    }
    +  }
    +}
    +
    +
    +
    +
    Variables
    +
    {"token": "abc123"}
    +
    +
    +
    +
    Response
    +
    {
    +  "data": {
    +    "importSharedRequisitionList": {
    +      "requisition_list": RequisitionList,
    +      "user_errors": [ShareRequisitionListUserError]
    +    }
    +  }
    +}
     
    @@ -13318,7 +13838,7 @@
    Response
    "initiateUpload": { "expires_at": "xyz789", "key": "abc123", - "upload_url": "xyz789" + "upload_url": "abc123" } } } @@ -13446,8 +13966,8 @@
    Query
    Variables
    {
    -  "source_cart_id": "abc123",
    -  "destination_cart_id": "abc123"
    +  "source_cart_id": "xyz789",
    +  "destination_cart_id": "xyz789"
     }
     
    @@ -13466,15 +13986,15 @@
    Response
    ], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "xyz789", + "email": "abc123", "gift_message": GiftMessage, - "gift_receipt_included": false, + "gift_receipt_included": true, "gift_wrapping": GiftWrapping, - "id": 4, + "id": "4", "is_virtual": true, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": true, + "printed_card_included": false, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], @@ -13662,7 +14182,7 @@
    Query
    Variables
    {
    -  "sourceRequisitionListUid": "4",
    +  "sourceRequisitionListUid": 4,
       "destinationRequisitionListUid": 4,
       "requisitionListItem": MoveItemsBetweenRequisitionListsInput
     }
    @@ -13843,8 +14363,8 @@ 
    Query
    Variables
    {
    -  "sourceWishlistUid": "4",
    -  "destinationWishlistUid": "4",
    +  "sourceWishlistUid": 4,
    +  "destinationWishlistUid": 4,
       "wishlistItems": [WishlistItemMoveInput]
     }
     
    @@ -13979,7 +14499,7 @@
    Response
    "items": [CartItemInterface], "max_order_commitment": 123, "min_order_commitment": 123, - "name": "abc123", + "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ @@ -13989,9 +14509,9 @@
    Response
    "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "xyz789", + "status": "abc123", "template_id": 4, - "total_quantity": 987.65, + "total_quantity": 123.45, "uid": 4, "updated_at": "abc123" } @@ -14455,7 +14975,7 @@
    Response
    "data": { "redeemGiftCardBalanceAsStoreCredit": { "balance": Money, - "code": "xyz789", + "code": "abc123", "expiration_date": "xyz789" } } @@ -14813,7 +15333,7 @@
    Variables
    Response
    -
    {"data": {"removeGiftRegistry": {"success": false}}}
    +                  
    {"data": {"removeGiftRegistry": {"success": true}}}
     
    @@ -14889,7 +15409,7 @@
    Query
    Variables
    -
    {"giftRegistryUid": 4, "itemsUid": [4]}
    +                  
    {"giftRegistryUid": "4", "itemsUid": [4]}
     
    @@ -14977,8 +15497,8 @@
    Query
    Variables
    {
    -  "giftRegistryUid": 4,
    -  "registrantsUid": ["4"]
    +  "giftRegistryUid": "4",
    +  "registrantsUid": [4]
     }
     
    @@ -15246,7 +15766,7 @@
    Response
    "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], "created_at": "xyz789", - "expiration_date": "xyz789", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": true, @@ -15254,7 +15774,7 @@
    Response
    "items": [CartItemInterface], "max_order_commitment": 987, "min_order_commitment": 123, - "name": "abc123", + "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ @@ -15264,10 +15784,10 @@
    Response
    "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", - "template_id": "4", + "status": "xyz789", + "template_id": 4, "total_quantity": 987.65, - "uid": 4, + "uid": "4", "updated_at": "abc123" } } @@ -15433,7 +15953,7 @@
    Query
    Variables
    -
    {"wishlistId": 4, "wishlistItemsIds": ["4"]}
    +                  
    {"wishlistId": "4", "wishlistItemsIds": [4]}
     
    @@ -15579,7 +16099,7 @@
    Query
    Variables
    -
    {"cartId": 4}
    +                  
    {"cartId": "4"}
     
    @@ -15794,7 +16314,7 @@
    Query
    Variables
    -
    {"orderNumber": "xyz789"}
    +                  
    {"orderNumber": "abc123"}
     
    @@ -15883,7 +16403,7 @@
    Response
    {
       "data": {
         "requestGuestOrderCancel": {
    -      "error": "xyz789",
    +      "error": "abc123",
           "errorV2": CancelOrderError,
           "order": CustomerOrder
         }
    @@ -16144,10 +16664,10 @@ 
    Response
    "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], "created_at": "xyz789", - "expiration_date": "xyz789", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": true, + "is_min_max_qty_used": false, "is_virtual": false, "items": [CartItemInterface], "max_order_commitment": 987, @@ -16158,15 +16678,15 @@
    Response
    "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "abc123", + "sales_rep_name": "xyz789", "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", + "status": "xyz789", "template_id": "4", "total_quantity": 987.65, "uid": 4, - "updated_at": "abc123" + "updated_at": "xyz789" } } } @@ -16373,12 +16893,12 @@
    Query
    Variables
    -
    {"email": "abc123"}
    +                  
    {"email": "xyz789"}
     
    Response
    -
    {"data": {"resendConfirmationEmail": true}}
    +                  
    {"data": {"resendConfirmationEmail": false}}
     
    @@ -16459,7 +16979,7 @@
    Query
    Variables
    {
    -  "email": "abc123",
    +  "email": "xyz789",
       "resetPasswordToken": "xyz789",
       "newPassword": "abc123"
     }
    @@ -16467,7 +16987,7 @@ 
    Variables
    Response
    -
    {"data": {"resetPassword": true}}
    +                  
    {"data": {"resetPassword": false}}
     
    @@ -16510,7 +17030,7 @@
    Query
    Response
    -
    {"data": {"revokeCustomerToken": {"result": false}}}
    +                  
    {"data": {"revokeCustomerToken": {"result": true}}}
     
    @@ -16717,7 +17237,7 @@
    Query
    Variables
    -
    {"cartId": "abc123"}
    +                  
    {"cartId": "xyz789"}
     
    @@ -16726,7 +17246,7 @@
    Response
    "data": { "setCartAsInactive": { "error": "xyz789", - "success": true + "success": false } } } @@ -17946,24 +18466,24 @@
    Response
    "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": true, - "is_virtual": true, + "is_virtual": false, "items": [CartItemInterface], "max_order_commitment": 123, "min_order_commitment": 987, - "name": "abc123", + "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "abc123", + "sales_rep_name": "xyz789", "shipping_addresses": [ NegotiableQuoteShippingAddress ], "status": "abc123", "template_id": 4, - "total_quantity": 123.45, - "uid": "4", + "total_quantity": 987.65, + "uid": 4, "updated_at": "abc123" } } @@ -18151,12 +18671,12 @@
    Response
    "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": false, - "is_virtual": false, + "is_min_max_qty_used": true, + "is_virtual": true, "items": [CartItemInterface], - "max_order_commitment": 987, + "max_order_commitment": 123, "min_order_commitment": 987, - "name": "abc123", + "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ @@ -18166,7 +18686,7 @@
    Response
    "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", + "status": "xyz789", "template_id": 4, "total_quantity": 987.65, "uid": "4", @@ -18288,12 +18808,12 @@
    Response
    "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": true, - "is_virtual": true, + "is_min_max_qty_used": false, + "is_virtual": false, "items": [CartItemInterface], "max_order_commitment": 987, - "min_order_commitment": 987, - "name": "abc123", + "min_order_commitment": 123, + "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ @@ -18303,10 +18823,10 @@
    Response
    "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "xyz789", - "template_id": "4", - "total_quantity": 987.65, - "uid": "4", + "status": "abc123", + "template_id": 4, + "total_quantity": 123.45, + "uid": 4, "updated_at": "xyz789" } } @@ -18540,6 +19060,157 @@
    Variables
    Response
    {"data": {"shareGiftRegistry": {"is_shared": false}}}
    +
    +
    +
    + back to top + +
    +
    +
    + Mutations +
    +

    + shareRequisitionListByEmail +

    +
    +
    +
    +
    Description
    +

    Share a requisition list with company colleagues via email using a secure link.

    +
    +
    +
    +
    +
    +
    +
    Response
    +

    Returns a ShareRequisitionListByEmailOutput +

    +
    +
    +
    Arguments
    + + + + + + + + + + + + + +
    NameDescription
    + input - ShareRequisitionListByEmailInput! + +
    +
    +
    +
    +

    Example

    +
    +
    Query
    +
    mutation shareRequisitionListByEmail($input: ShareRequisitionListByEmailInput!) {
    +  shareRequisitionListByEmail(input: $input) {
    +    sent_count
    +    user_errors {
    +      ...ShareRequisitionListUserErrorFragment
    +    }
    +  }
    +}
    +
    +
    +
    +
    Variables
    +
    {"input": ShareRequisitionListByEmailInput}
    +
    +
    +
    +
    Response
    +
    {
    +  "data": {
    +    "shareRequisitionListByEmail": {
    +      "sent_count": 987,
    +      "user_errors": [ShareRequisitionListUserError]
    +    }
    +  }
    +}
    +
    +
    +
    + back to top +
    +
    +
    +
    + Mutations +
    +

    + shareRequisitionListByToken +

    +
    +
    +
    +
    Description
    +

    Share a requisition list by issuing a token for colleagues in the same company. Use the token to build a shareable link on the storefront.

    +
    +
    +
    +
    +
    +
    +
    Response
    +

    Returns a ShareRequisitionListByTokenOutput +

    +
    +
    +
    Arguments
    + + + + + + + + + + + + + +
    NameDescription
    + requisitionListUid - ID! + The unique ID of the requisition list.
    +
    +
    +
    +

    Example

    +
    +
    Query
    +
    mutation shareRequisitionListByToken($requisitionListUid: ID!) {
    +  shareRequisitionListByToken(requisitionListUid: $requisitionListUid) {
    +    token
    +  }
    +}
    +
    +
    +
    +
    Variables
    +
    {"requisitionListUid": "4"}
    +
    +
    +
    +
    Response
    +
    {
    +  "data": {
    +    "shareRequisitionListByToken": {
    +      "token": "abc123"
    +    }
    +  }
    +}
     
    @@ -18651,29 +19322,29 @@
    Response
    "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], "created_at": "xyz789", - "expiration_date": "abc123", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": true, - "is_virtual": true, + "is_min_max_qty_used": false, + "is_virtual": false, "items": [CartItemInterface], - "max_order_commitment": 123, - "min_order_commitment": 123, + "max_order_commitment": 987, + "min_order_commitment": 987, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "shipping_addresses": [ NegotiableQuoteShippingAddress ], "status": "xyz789", "template_id": 4, - "total_quantity": 987.65, + "total_quantity": 123.45, "uid": "4", - "updated_at": "xyz789" + "updated_at": "abc123" } } } @@ -18816,7 +19487,7 @@
    Response
    "data": { "subscribeProductAlertPrice": { "message": "xyz789", - "success": true + "success": false } } } @@ -18892,7 +19563,7 @@
    Response
    "data": { "subscribeProductAlertStock": { "message": "xyz789", - "success": true + "success": false } } } @@ -18960,7 +19631,82 @@
    Variables
    Response
    -
    {"data": {"syncPaymentOrder": false}}
    +                  
    {"data": {"syncPaymentOrder": true}}
    +
    +
    + + back to top + +
    +
    +
    + Mutations +
    +

    + unassignChildCompany +

    +
    +
    +
    +
    Description
    +

    Unassign a child company from its parent company within the company relation hierarchy.

    +
    +
    +
    +
    +
    +
    +
    Response
    +

    Returns an UnassignChildCompanyOutput +

    +
    +
    +
    Arguments
    + + + + + + + + + + + + + +
    NameDescription
    + input - UnassignChildCompanyInput! + An input object that defines which company to unassign.
    +
    +
    +
    +

    Example

    +
    +
    Query
    +
    mutation unassignChildCompany($input: UnassignChildCompanyInput!) {
    +  unassignChildCompany(input: $input) {
    +    company_hierarchy {
    +      ...CompanyHierarchyFragment
    +    }
    +  }
    +}
    +
    +
    +
    +
    Variables
    +
    {"input": UnassignChildCompanyInput}
    +
    +
    +
    +
    Response
    +
    {
    +  "data": {
    +    "unassignChildCompany": {
    +      "company_hierarchy": CompanyHierarchy
    +    }
    +  }
    +}
     
    @@ -19211,7 +19957,7 @@
    Response
    "data": { "unsubscribeProductAlertStockAll": { "message": "xyz789", - "success": false + "success": true } } } @@ -19758,27 +20504,27 @@
    Response
    {
       "data": {
         "updateCustomerAddress": {
    -      "city": "xyz789",
    +      "city": "abc123",
           "company": "xyz789",
           "country_code": "AF",
           "custom_attributesV2": [AttributeValueInterface],
    -      "default_billing": false,
    -      "default_shipping": true,
    +      "default_billing": true,
    +      "default_shipping": false,
           "extension_attributes": [CustomerAddressAttribute],
           "fax": "xyz789",
    -      "firstname": "xyz789",
    -      "id": 987,
    +      "firstname": "abc123",
    +      "id": 123,
           "lastname": "xyz789",
    -      "middlename": "abc123",
    +      "middlename": "xyz789",
           "postcode": "abc123",
    -      "prefix": "xyz789",
    +      "prefix": "abc123",
           "region": CustomerAddressRegion,
    -      "region_id": 987,
    +      "region_id": 123,
           "street": ["xyz789"],
           "suffix": "xyz789",
           "telephone": "abc123",
    -      "uid": "4",
    -      "vat_id": "xyz789"
    +      "uid": 4,
    +      "vat_id": "abc123"
         }
       }
     }
    @@ -19881,10 +20627,7 @@ 
    Query
    Variables
    -
    {
    -  "uid": "4",
    -  "input": CustomerAddressInput
    -}
    +                  
    {"uid": 4, "input": CustomerAddressInput}
     
    @@ -19892,15 +20635,15 @@
    Response
    {
       "data": {
         "updateCustomerAddressV2": {
    -      "city": "xyz789",
    -      "company": "abc123",
    +      "city": "abc123",
    +      "company": "xyz789",
           "country_code": "AF",
           "custom_attributesV2": [AttributeValueInterface],
           "default_billing": true,
    -      "default_shipping": false,
    +      "default_shipping": true,
           "extension_attributes": [CustomerAddressAttribute],
    -      "fax": "xyz789",
    -      "firstname": "xyz789",
    +      "fax": "abc123",
    +      "firstname": "abc123",
           "id": 123,
           "lastname": "xyz789",
           "middlename": "xyz789",
    @@ -19910,8 +20653,8 @@ 
    Response
    "region_id": 123, "street": ["abc123"], "suffix": "xyz789", - "telephone": "xyz789", - "uid": 4, + "telephone": "abc123", + "uid": "4", "vat_id": "abc123" } } @@ -20323,7 +21066,7 @@
    Query
    Variables
    {
    -  "giftRegistryUid": "4",
    +  "giftRegistryUid": 4,
       "registrants": [UpdateGiftRegistryRegistrantInput]
     }
     
    @@ -20566,7 +21309,7 @@
    Query
    Variables
    {
    -  "wishlistId": 4,
    +  "wishlistId": "4",
       "wishlistItems": [WishlistItemUpdateInput]
     }
     
    @@ -20669,9 +21412,9 @@
    Response
    "applies_to_roles": [CompanyRole], "approver_roles": [CompanyRole], "condition": PurchaseOrderApprovalRuleConditionInterface, - "created_at": "abc123", - "created_by": "abc123", - "description": "xyz789", + "created_at": "xyz789", + "created_by": "xyz789", + "description": "abc123", "name": "abc123", "status": "ENABLED", "uid": "4", @@ -20946,7 +21689,7 @@
    Query
    Variables
    {
    -  "wishlistId": 4,
    +  "wishlistId": "4",
       "name": "abc123",
       "visibility": "PUBLIC"
     }
    @@ -21270,7 +22013,7 @@ 
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "email": "abc123", + "email": "xyz789", "firstname": "abc123", "lastname": "abc123" } @@ -21408,7 +22151,7 @@
    Fields
    Example
    -
    {"products": [4], "uid": "4"}
    +                  
    {"products": ["4"], "uid": 4}
     
    @@ -21593,7 +22336,7 @@
    Fields
    Example
    {
       "comment": "xyz789",
    -  "purchase_order_uid": 4
    +  "purchase_order_uid": "4"
     }
     
    @@ -21688,9 +22431,9 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    +  "cart_id": "abc123",
       "purchase_order_uid": 4,
    -  "replace_existing_cart_items": true
    +  "replace_existing_cart_items": false
     }
     
    @@ -21853,7 +22596,7 @@
    Example
    AddRequisitionListItemToCartUserError ], "cart": Cart, - "status": true + "status": false }
    @@ -21902,7 +22645,7 @@
    Fields
    Example
    {
    -  "comment_text": "xyz789",
    +  "comment_text": "abc123",
       "return_uid": "4"
     }
     
    @@ -21999,7 +22742,7 @@
    Fields
    Example
    {
       "carrier_uid": 4,
    -  "return_uid": 4,
    +  "return_uid": "4",
       "tracking_number": "abc123"
     }
     
    @@ -22103,9 +22846,117 @@
    Example
    "add_wishlist_items_to_cart_user_errors": [ WishlistCartUserInputError ], - "status": false, + "status": true, "wishlist": Wishlist } +
    + + + back to top + + +
    +
    + Types +
    +

    AdminAssistanceAction

    +
    +
    +
    +
    Description
    +

    A single admin assistance action performed on behalf of the customer.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + + + + + + + + + +
    Field NameDescription
    action - String! + Action identifier, e.g. add_to_cart, place_order.
    date - String! + When the action occurred.
    details - String + Action related details, e.g. product SKUs, order id.
    +
    +
    +
    +
    +
    Example
    +
    {
    +  "action": "xyz789",
    +  "date": "abc123",
    +  "details": "abc123"
    +}
    +
    +
    +
    + back to top +
    +
    +
    +
    + Types +
    +

    AdminAssistanceActions

    +
    +
    +
    +
    Description
    +

    Paginated admin assistance actions for the customer.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + + + + + + + + + +
    Field NameDescription
    items - [AdminAssistanceAction]! + Admin assistance actions for the current page.
    page_info - SearchResultPageInfo! + Contains pagination metadata.
    total_count - Int! + The total count of admin assistance actions for the customer.
    +
    +
    +
    +
    +
    Example
    +
    {
    +  "items": [AdminAssistanceAction],
    +  "page_info": SearchResultPageInfo,
    +  "total_count": 123
    +}
     
    @@ -22296,10 +23147,10 @@
    Example
    "button_styles": ButtonStyles, "code": "xyz789", "is_visible": false, - "payment_intent": "abc123", + "payment_intent": "xyz789", "payment_source": "abc123", "sdk_params": [SDKParams], - "sort_order": "xyz789", + "sort_order": "abc123", "title": "xyz789" }
    @@ -22355,9 +23206,9 @@
    Fields
    Example
    {
    -  "payment_source": "abc123",
    -  "payments_order_id": "xyz789",
    -  "paypal_order_id": "abc123"
    +  "payment_source": "xyz789",
    +  "payments_order_id": "abc123",
    +  "paypal_order_id": "xyz789"
     }
     
    @@ -22398,7 +23249,7 @@
    Fields
    Example
    -
    {"code": "abc123"}
    +                  
    {"code": "xyz789"}
     
    @@ -22455,9 +23306,9 @@
    Fields
    Example
    {
       "applied_balance": Money,
    -  "code": "xyz789",
    +  "code": "abc123",
       "current_balance": Money,
    -  "expiration_date": "xyz789"
    +  "expiration_date": "abc123"
     }
     
    @@ -22511,7 +23362,7 @@
    Example
    {
       "action_type": "BOOST",
       "rule_id": "abc123",
    -  "rule_name": "xyz789"
    +  "rule_name": "abc123"
     }
     
    @@ -22671,7 +23522,7 @@
    Fields
    Example
    {
       "cart_id": "xyz789",
    -  "coupon_code": "abc123"
    +  "coupon_code": "xyz789"
     }
     
    @@ -22866,7 +23717,7 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    +  "cart_id": "abc123",
       "gift_card_code": "xyz789"
     }
     
    @@ -22955,7 +23806,7 @@
    Fields
    Example
    {
       "applied_balance": Money,
    -  "code": "xyz789"
    +  "code": "abc123"
     }
     
    @@ -23124,7 +23975,7 @@
    Fields
    Example
    -
    {"radius": 123, "search_term": "abc123"}
    +                  
    {"radius": 987, "search_term": "xyz789"}
     
    @@ -23186,8 +24037,8 @@
    Fields
    Example
    {
       "asset_image": ProductMediaGalleryEntriesAssetImage,
    -  "disabled": true,
    -  "label": "abc123",
    +  "disabled": false,
    +  "label": "xyz789",
       "position": 123,
       "url": "abc123"
     }
    @@ -23254,9 +24105,99 @@ 
    Example
    "asset_video": ProductMediaGalleryEntriesAssetVideo, "disabled": false, "label": "abc123", - "position": 987, - "url": "xyz789" + "position": 123, + "url": "abc123" } +
    + + + back to top + + +
    +
    + Types +
    +

    AssignChildCompanyInput

    +
    +
    +
    +
    Description
    +

    Defines the input schema for assigning a child company to a parent company.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + + + + + +
    Input FieldDescription
    + child_company_id - ID! + The unique ID of the child company.
    + parent_company_id - ID! + The unique ID of the parent company.
    +
    +
    +
    +
    +
    Example
    +
    {
    +  "child_company_id": "4",
    +  "parent_company_id": "4"
    +}
    +
    +
    +
    + back to top +
    +
    +
    +
    + Types +
    +

    AssignChildCompanyOutput

    +
    +
    +
    +
    Description
    +

    Contains the response to the request to assign a child company.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + +
    Field NameDescription
    company_hierarchy - CompanyHierarchy! + The updated company hierarchy for the parent company.
    +
    +
    +
    +
    +
    Example
    +
    {"company_hierarchy": CompanyHierarchy}
     
    @@ -23423,10 +24364,10 @@
    Fields
    Example
    {
    -  "attribute_type": "xyz789",
    -  "code": 4,
    -  "url": "xyz789",
    -  "value": "xyz789"
    +  "attribute_type": "abc123",
    +  "code": "4",
    +  "url": "abc123",
    +  "value": "abc123"
     }
     
    @@ -23535,18 +24476,18 @@
    Fields
    Example
    {
    -  "is_comparable": false,
    -  "is_filterable": true,
    +  "is_comparable": true,
    +  "is_filterable": false,
       "is_filterable_in_search": false,
       "is_html_allowed_on_front": true,
       "is_searchable": true,
       "is_used_for_customer_segment": true,
    -  "is_used_for_price_rules": false,
    -  "is_used_for_promo_rules": true,
    -  "is_visible_in_advanced_search": false,
    +  "is_used_for_price_rules": true,
    +  "is_used_for_promo_rules": false,
    +  "is_visible_in_advanced_search": true,
       "is_visible_on_front": true,
       "is_wysiwyg_enabled": true,
    -  "used_in_product_listing": false
    +  "used_in_product_listing": true
     }
     
    @@ -23748,7 +24689,7 @@
    Example
    {
       "attribute_type": "xyz789",
       "code": 4,
    -  "url": "abc123",
    +  "url": "xyz789",
       "value": "abc123"
     }
     
    @@ -23799,7 +24740,7 @@
    Fields
    Example
    {
       "attribute_code": "xyz789",
    -  "entity_type": "xyz789"
    +  "entity_type": "abc123"
     }
     
    @@ -23925,10 +24866,10 @@
    Example
    "code": "4", "default_value": "xyz789", "entity_type": "CATALOG_PRODUCT", - "frontend_class": "xyz789", + "frontend_class": "abc123", "frontend_input": "BOOLEAN", "is_required": true, - "is_unique": true, + "is_unique": false, "label": "abc123", "options": [CustomAttributeOptionInterface] } @@ -23977,7 +24918,7 @@
    Fields
    Example
    {
    -  "message": "xyz789",
    +  "message": "abc123",
       "type": "ENTITY_NOT_FOUND"
     }
     
    @@ -24137,9 +25078,9 @@
    Fields
    Example
    {
    -  "is_default": true,
    +  "is_default": false,
       "label": "xyz789",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -24182,8 +25123,8 @@
    Fields
    Example
    {
    -  "label": "abc123",
    -  "value": "xyz789"
    +  "label": "xyz789",
    +  "value": "abc123"
     }
     
    @@ -24243,8 +25184,8 @@
    Possible Types
    Example
    {
    -  "label": "abc123",
    -  "value": "xyz789"
    +  "label": "xyz789",
    +  "value": "abc123"
     }
     
    @@ -24293,8 +25234,8 @@
    Fields
    Example
    {
    -  "attribute_type": "abc123",
    -  "code": 4,
    +  "attribute_type": "xyz789",
    +  "code": "4",
       "selected_options": [AttributeSelectedOptionInterface]
     }
     
    @@ -24402,7 +25343,7 @@
    Example
    {
       "attribute_code": "abc123",
       "selected_options": [AttributeInputSelectedOption],
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -24481,10 +25422,7 @@
    Possible Types
    Example
    -
    {
    -  "attribute_type": "xyz789",
    -  "code": "4"
    -}
    +                  
    {"attribute_type": "xyz789", "code": 4}
     
    @@ -24625,7 +25563,7 @@
    Fields
    Example
    -
    {"code": "AFN", "symbol": "xyz789"}
    +                  
    {"code": "AFN", "symbol": "abc123"}
     
    @@ -24681,10 +25619,10 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    +  "code": "abc123",
       "is_deferred": false,
       "oope_payment_method_config": OopePaymentMethodConfig,
    -  "title": "abc123"
    +  "title": "xyz789"
     }
     
    @@ -24773,12 +25711,12 @@
    Example
    {
       "additional_data": [ShippingAdditionalData],
       "amount": Money,
    -  "available": true,
    -  "carrier_code": "xyz789",
    -  "carrier_title": "xyz789",
    -  "error_message": "abc123",
    -  "method_code": "xyz789",
    -  "method_title": "abc123",
    +  "available": false,
    +  "carrier_code": "abc123",
    +  "carrier_title": "abc123",
    +  "error_message": "xyz789",
    +  "method_code": "abc123",
    +  "method_title": "xyz789",
       "price_excl_tax": Money,
       "price_incl_tax": Money
     }
    @@ -24900,10 +25838,10 @@ 
    Fields
    Example
    {
       "address": CartAddressInput,
    -  "customer_address_id": 987,
    -  "customer_address_uid": 4,
    +  "customer_address_id": 123,
    +  "customer_address_uid": "4",
       "same_as_shipping": false,
    -  "use_for_shipping": true
    +  "use_for_shipping": false
     }
     
    @@ -24979,9 +25917,9 @@
    Example
    "address_line_1": "xyz789", "address_line_2": "xyz789", "city": "xyz789", - "country_code": "abc123", + "country_code": "xyz789", "postal_code": "abc123", - "region": "xyz789" + "region": "abc123" }
    @@ -25110,23 +26048,23 @@
    Fields
    Example
    {
       "city": "abc123",
    -  "company": "xyz789",
    +  "company": "abc123",
       "country": CartAddressCountry,
       "custom_attributes": [AttributeValueInterface],
       "customer_address_uid": 4,
    -  "fax": "xyz789",
    -  "firstname": "xyz789",
    -  "id": 123,
    +  "fax": "abc123",
    +  "firstname": "abc123",
    +  "id": 987,
       "lastname": "abc123",
       "middlename": "abc123",
       "postcode": "xyz789",
    -  "prefix": "abc123",
    +  "prefix": "xyz789",
       "region": CartAddressRegion,
    -  "street": ["xyz789"],
    -  "suffix": "xyz789",
    +  "street": ["abc123"],
    +  "suffix": "abc123",
       "telephone": "abc123",
    -  "uid": "4",
    -  "vat_id": "abc123"
    +  "uid": 4,
    +  "vat_id": "xyz789"
     }
     
    @@ -25211,9 +26149,9 @@
    Fields
    Example
    {
       "category_level": 987,
    -  "category_name": "xyz789",
    -  "category_uid": "4",
    -  "category_url_key": "abc123",
    +  "category_name": "abc123",
    +  "category_uid": 4,
    +  "category_url_key": "xyz789",
       "category_url_path": "xyz789"
     }
     
    @@ -25292,7 +26230,7 @@
    Possible Types
    Example
    -
    {"title": "xyz789"}
    +                  
    {"title": "abc123"}
     
    @@ -25325,6 +26263,11 @@
    Fields
    The list of available gift wrapping options for the cart item. + + backorder_message - String + + Customer-facing hint when the line is salable on notify backorders with insufficient physical quantity; null otherwise. + bundle_options - [SelectedBundleOption]! @@ -25361,9 +26304,15 @@
    Fields
    The selected gift wrapping for the cart item. - is_available - Boolean! + is_available - Boolean! + + True if requested quantity is less than available stock, false otherwise. Use is_salable instead. It indicates whether the line can be purchased, including backorder configuration. - True if requested quantity is less than available stock, false otherwise. + + + is_salable - Boolean! + + True when the item can be purchased and should not block checkout: stock status is in stock and either physical quantity covers the requested quantity or backorders are allowed. max_qty - Float @@ -25378,7 +26327,7 @@
    Fields
    not_available_message - String - Message to display when the product is not available with this selected option. + Shortage or unavailability message for the line; null when the item is salable. note_from_buyer - [ItemNote] @@ -25420,6 +26369,7 @@
    Fields
    Example
    {
       "available_gift_wrapping": [GiftWrapping],
    +  "backorder_message": "xyz789",
       "bundle_options": [SelectedBundleOption],
       "custom_attributes": [CustomAttribute],
       "customizable_options": [SelectedCustomizableOption],
    @@ -25427,16 +26377,17 @@ 
    Example
    "errors": [CartItemError], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "is_available": false, + "is_available": true, + "is_salable": true, "max_qty": 123.45, - "min_qty": 123.45, + "min_qty": 987.65, "not_available_message": "abc123", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 987.65, - "uid": 4 + "quantity": 123.45, + "uid": "4" }
    @@ -25523,10 +26474,10 @@
    Example
    "discounts": [Discount], "id": "4", "order_item": OrderItemInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "xyz789", - "quantity_refunded": 987.65 + "product_sku": "abc123", + "quantity_refunded": 123.45 }
    @@ -25611,12 +26562,12 @@
    Example
    "bundle_options": [ItemSelectedBundleOption], "custom_attributes": [CustomAttribute], "discounts": [Discount], - "id": 4, + "id": "4", "order_item": OrderItemInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, "product_sku": "abc123", - "quantity_invoiced": 987.65 + "quantity_invoiced": 123.45 }
    @@ -25697,10 +26648,10 @@
    Example
    "position": 987, "price_range": PriceRange, "required": true, - "sku": "abc123", + "sku": "xyz789", "title": "xyz789", "type": "abc123", - "uid": "4" + "uid": 4 }
    @@ -25784,9 +26735,9 @@
    Example
    {
       "can_change_quantity": true,
       "is_default": false,
    -  "label": "xyz789",
    +  "label": "abc123",
       "position": 987,
    -  "price": 123.45,
    +  "price": 987.65,
       "price_type": "FIXED",
       "product": ProductInterface,
       "quantity": 123.45,
    @@ -25960,24 +26911,24 @@ 
    Example
    "entered_options": [OrderItemOption], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "id": "4", - "parent_sku": "xyz789", + "id": 4, + "parent_sku": "abc123", "prices": OrderItemPrices, "product": ProductInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, - "product_sku": "xyz789", + "product_sku": "abc123", "product_type": "xyz789", "product_url_key": "abc123", - "quantity_canceled": 987.65, + "quantity_canceled": 123.45, "quantity_invoiced": 987.65, - "quantity_ordered": 987.65, + "quantity_ordered": 123.45, "quantity_refunded": 987.65, - "quantity_return_requested": 123.45, - "quantity_returned": 987.65, + "quantity_return_requested": 987.65, + "quantity_returned": 123.45, "quantity_shipped": 123.45, "selected_options": [OrderItemOption], - "status": "xyz789" + "status": "abc123" }
    @@ -26267,34 +27218,34 @@
    filters
    Example
    {
    -  "canonical_url": "xyz789",
    +  "canonical_url": "abc123",
       "categories": [CategoryInterface],
    -  "country_of_manufacture": "abc123",
    +  "country_of_manufacture": "xyz789",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
       "dynamic_price": true,
    -  "dynamic_sku": true,
    -  "dynamic_weight": false,
    -  "gift_message_available": false,
    -  "gift_wrapping_available": false,
    +  "dynamic_sku": false,
    +  "dynamic_weight": true,
    +  "gift_message_available": true,
    +  "gift_wrapping_available": true,
       "gift_wrapping_price": Money,
       "image": ProductImage,
    -  "is_returnable": "xyz789",
    +  "is_returnable": "abc123",
       "items": [BundleItem],
       "manufacturer": 987,
    -  "max_sale_qty": 987.65,
    +  "max_sale_qty": 123.45,
       "media_gallery": [MediaGalleryInterface],
    -  "meta_description": "xyz789",
    +  "meta_description": "abc123",
       "meta_keyword": "xyz789",
       "meta_title": "abc123",
    -  "min_sale_qty": 987.65,
    -  "name": "abc123",
    +  "min_sale_qty": 123.45,
    +  "name": "xyz789",
       "new_from_date": "abc123",
       "new_to_date": "xyz789",
       "only_x_left_in_stock": 987.65,
       "options": [CustomizableOptionInterface],
    -  "options_container": "abc123",
    +  "options_container": "xyz789",
       "price_details": PriceDetails,
       "price_range": PriceRange,
       "price_tiers": [TierPrice],
    @@ -26306,15 +27257,15 @@ 
    Example
    "short_description": ComplexTextValue, "sku": "abc123", "small_image": ProductImage, - "special_price": 123.45, + "special_price": 987.65, "special_to_date": "xyz789", "stock_status": "IN_STOCK", "swatch_image": "xyz789", "thumbnail": ProductImage, - "uid": "4", + "uid": 4, "upsell_products": [ProductInterface], "url_key": "xyz789", - "weight": 123.45 + "weight": 987.65 }
    @@ -26384,9 +27335,9 @@
    Example
    "bundle_options": [SelectedBundleOption], "customizable_options": [SelectedCustomizableOption], "product": ProductInterface, - "quantity": 987.65, + "quantity": 123.45, "sku": "abc123", - "uid": "4" + "uid": 4 } @@ -26459,11 +27410,11 @@
    Fields
    Example
    {
       "bundle_options": [ItemSelectedBundleOption],
    -  "id": 4,
    +  "id": "4",
       "order_item": OrderItemInterface,
    -  "product_name": "abc123",
    +  "product_name": "xyz789",
       "product_sale_price": Money,
    -  "product_sku": "xyz789",
    +  "product_sku": "abc123",
       "quantity_shipped": 987.65
     }
     
    @@ -26543,7 +27494,7 @@
    Example
    "description": "xyz789", "id": 4, "product": ProductInterface, - "quantity": 123.45 + "quantity": 987.65 } @@ -26611,12 +27562,12 @@
    Fields
    Example
    {
    -  "color": "abc123",
    -  "height": 987,
    -  "label": "abc123",
    +  "color": "xyz789",
    +  "height": 123,
    +  "label": "xyz789",
       "layout": "abc123",
    -  "shape": "abc123",
    -  "tagline": true,
    +  "shape": "xyz789",
    +  "tagline": false,
       "use_default_height": false
     }
     
    @@ -26834,7 +27785,7 @@
    Fields
    Example
    {
       "order_id": "4",
    -  "reason": "abc123"
    +  "reason": "xyz789"
     }
     
    @@ -26986,8 +27937,8 @@
    Example
    {
       "bin_details": CardBin,
       "card_expiry_month": "abc123",
    -  "card_expiry_year": "abc123",
    -  "last_digits": "xyz789",
    +  "card_expiry_year": "xyz789",
    +  "last_digits": "abc123",
       "name": "abc123"
     }
     
    @@ -27128,7 +28079,7 @@
    Example
    {
       "brand": "abc123",
       "expiry": "xyz789",
    -  "last_digits": "xyz789"
    +  "last_digits": "abc123"
     }
     
    @@ -27300,7 +28251,7 @@
    Example
    "available_payment_methods": [AvailablePaymentMethod], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "abc123", + "email": "xyz789", "gift_message": GiftMessage, "gift_receipt_included": false, "gift_wrapping": GiftWrapping, @@ -27312,7 +28263,7 @@
    Example
    "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], - "total_quantity": 987.65 + "total_quantity": 123.45 } @@ -27499,23 +28450,23 @@
    Fields
    Example
    {
    -  "city": "xyz789",
    +  "city": "abc123",
       "company": "xyz789",
       "country_code": "abc123",
       "custom_attributes": [AttributeValueInput],
    -  "fax": "abc123",
    +  "fax": "xyz789",
       "firstname": "abc123",
       "lastname": "abc123",
       "middlename": "abc123",
    -  "postcode": "xyz789",
    +  "postcode": "abc123",
       "prefix": "abc123",
       "region": "xyz789",
    -  "region_id": 987,
    +  "region_id": 123,
       "save_in_address_book": false,
       "street": ["xyz789"],
       "suffix": "xyz789",
    -  "telephone": "xyz789",
    -  "vat_id": "abc123"
    +  "telephone": "abc123",
    +  "vat_id": "xyz789"
     }
     
    @@ -27667,17 +28618,17 @@
    Example
    "custom_attributes": [AttributeValueInterface], "customer_address_uid": "4", "fax": "xyz789", - "firstname": "abc123", - "id": 123, - "lastname": "abc123", + "firstname": "xyz789", + "id": 987, + "lastname": "xyz789", "middlename": "xyz789", "postcode": "abc123", - "prefix": "xyz789", + "prefix": "abc123", "region": CartAddressRegion, - "street": ["abc123"], + "street": ["xyz789"], "suffix": "xyz789", "telephone": "abc123", - "uid": "4", + "uid": 4, "vat_id": "xyz789" } @@ -27731,7 +28682,7 @@
    Fields
    Example
    {
       "code": "xyz789",
    -  "label": "xyz789",
    +  "label": "abc123",
       "region_id": 987
     }
     
    @@ -27882,8 +28833,8 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    -  "cart_item_id": "abc123",
    +  "cart_id": "xyz789",
    +  "cart_item_id": "xyz789",
       "custom_attributes": [CustomAttributeInput]
     }
     
    @@ -27926,7 +28877,7 @@
    Fields
    Example
    -
    {"code": "UNDEFINED", "message": "abc123"}
    +                  
    {"code": "UNDEFINED", "message": "xyz789"}
     
    @@ -28046,9 +28997,9 @@
    Example
    {
       "entered_options": [EnteredOptionInput],
       "parent_sku": "abc123",
    -  "quantity": 123.45,
    +  "quantity": 987.65,
       "selected_options": ["4"],
    -  "sku": "abc123"
    +  "sku": "xyz789"
     }
     
    @@ -28077,6 +29028,11 @@
    Fields
    + + backorder_message - String + + Customer-facing hint when the line is salable on notify backorders with insufficient physical quantity; null otherwise. + custom_attributes - [CustomAttribute] @@ -28093,9 +29049,15 @@
    Fields
    An array of errors encountered while loading the cart item - is_available - Boolean! + is_available - Boolean! + + True if requested quantity is less than available stock, false otherwise. Use is_salable instead. It indicates whether the line can be purchased, including backorder configuration. - True if requested quantity is less than available stock, false otherwise. + + + is_salable - Boolean! + + True when the item can be purchased and should not block checkout: stock status is in stock and either physical quantity covers the requested quantity or backorders are allowed. max_qty - Float @@ -28110,7 +29072,7 @@
    Fields
    not_available_message - String - Message to display when the product is not available with this selected option. + Shortage or unavailability message for the line; null when the item is salable. note_from_buyer - [ItemNote] @@ -28193,13 +29155,15 @@
    Possible Types
    Example
    {
    +  "backorder_message": "abc123",
       "custom_attributes": [CustomAttribute],
       "discount": [Discount],
       "errors": [CartItemError],
    -  "is_available": false,
    +  "is_available": true,
    +  "is_salable": false,
       "max_qty": 987.65,
    -  "min_qty": 123.45,
    -  "not_available_message": "xyz789",
    +  "min_qty": 987.65,
    +  "not_available_message": "abc123",
       "note_from_buyer": [ItemNote],
       "note_from_seller": [ItemNote],
       "prices": CartItemPrices,
    @@ -28360,8 +29324,8 @@ 
    Fields
    Example
    {
       "type": "FIXED",
    -  "units": "xyz789",
    -  "value": 123.45
    +  "units": "abc123",
    +  "value": 987.65
     }
     
    @@ -28428,11 +29392,11 @@
    Fields
    Example
    {
    -  "cart_item_uid": "4",
    +  "cart_item_uid": 4,
       "customizable_options": [CustomizableOptionInput],
       "gift_message": GiftMessageInput,
    -  "gift_wrapping_id": "4",
    -  "quantity": 123.45
    +  "gift_wrapping_id": 4,
    +  "quantity": 987.65
     }
     
    @@ -28482,7 +29446,7 @@
    Example
    {
       "items": [CartItemInterface],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -28603,7 +29567,7 @@
    Fields
    Example
    -
    {"uid": "4"}
    +                  
    {"uid": 4}
     
    @@ -28650,7 +29614,7 @@
    Fields
    Example
    {
       "amount": Money,
    -  "label": "xyz789"
    +  "label": "abc123"
     }
     
    @@ -29019,28 +29983,28 @@
    Fields
    Example
    {
       "apply_to": ["SIMPLE"],
    -  "code": 4,
    +  "code": "4",
       "default_value": "xyz789",
       "entity_type": "CATALOG_PRODUCT",
    -  "frontend_class": "xyz789",
    +  "frontend_class": "abc123",
       "frontend_input": "BOOLEAN",
       "is_comparable": false,
    -  "is_filterable": false,
    -  "is_filterable_in_search": true,
    +  "is_filterable": true,
    +  "is_filterable_in_search": false,
       "is_html_allowed_on_front": false,
    -  "is_required": true,
    +  "is_required": false,
       "is_searchable": false,
       "is_unique": true,
       "is_used_for_price_rules": true,
    -  "is_used_for_promo_rules": false,
    +  "is_used_for_promo_rules": true,
       "is_visible_in_advanced_search": true,
       "is_visible_on_front": true,
       "is_wysiwyg_enabled": false,
    -  "label": "xyz789",
    +  "label": "abc123",
       "options": [CustomAttributeOptionInterface],
       "swatch_input_type": "BOOLEAN",
       "update_product_preview_image": true,
    -  "use_product_image_for_swatch": false,
    +  "use_product_image_for_swatch": true,
       "used_in_product_listing": false
     }
     
    @@ -29102,10 +30066,10 @@
    Fields
    Example
    {
    -  "count": 987,
    +  "count": 123,
       "id": 4,
    -  "path": "abc123",
    -  "title": "xyz789"
    +  "path": "xyz789",
    +  "title": "abc123"
     }
     
    @@ -29160,7 +30124,7 @@
    Possible Types
    Example
    -
    {"id": 4}
    +                  
    {"id": "4"}
     
    @@ -29217,9 +30181,9 @@
    Fields
    Example
    {
       "url": "abc123",
    -  "label": "abc123",
    +  "label": "xyz789",
       "roles": ["abc123"],
    -  "customRoles": ["abc123"]
    +  "customRoles": ["xyz789"]
     }
     
    @@ -29415,26 +30379,26 @@
    Example
    "canonical_url": "xyz789", "children_count": "abc123", "custom_layout_update_file": "abc123", - "default_sort_by": "abc123", - "description": "xyz789", + "default_sort_by": "xyz789", + "description": "abc123", "display_mode": "abc123", "filter_price_range": 123.45, "image": "abc123", "include_in_menu": 987, - "is_anchor": 987, - "landing_page": 987, - "level": 987, + "is_anchor": 123, + "landing_page": 123, + "level": 123, "meta_description": "abc123", "meta_keywords": "xyz789", - "meta_title": "abc123", + "meta_title": "xyz789", "name": "abc123", - "path": "xyz789", - "path_in_store": "abc123", - "position": 123, + "path": "abc123", + "path_in_store": "xyz789", + "position": 987, "product_count": 987, "uid": 4, "url_key": "abc123", - "url_path": "abc123" + "url_path": "xyz789" }
    @@ -29487,7 +30451,7 @@
    Fields
    Example
    {
       "title": "xyz789",
    -  "description": "abc123",
    +  "description": "xyz789",
       "keywords": ["xyz789"]
     }
     
    @@ -29541,7 +30505,7 @@
    Fields
    Example
    {
       "slug": "abc123",
    -  "name": "xyz789",
    +  "name": "abc123",
       "children": [CategoryNavigationView]
     }
     
    @@ -29600,8 +30564,8 @@
    Fields
    Example
    {
       "name": "xyz789",
    -  "slug": "abc123",
    -  "level": 123,
    +  "slug": "xyz789",
    +  "level": 987,
       "parents": [CategoryProductView]
     }
     
    @@ -29779,28 +30743,28 @@
    Example
    "available_sort_by": ["xyz789"], "breadcrumbs": [Breadcrumb], "canonical_url": "xyz789", - "children_count": "xyz789", + "children_count": "abc123", "custom_layout_update_file": "abc123", - "default_sort_by": "xyz789", - "description": "abc123", - "display_mode": "abc123", + "default_sort_by": "abc123", + "description": "xyz789", + "display_mode": "xyz789", "filter_price_range": 987.65, - "image": "xyz789", - "include_in_menu": 987, - "is_anchor": 123, + "image": "abc123", + "include_in_menu": 123, + "is_anchor": 987, "landing_page": 987, "level": 123, - "meta_description": "abc123", + "meta_description": "xyz789", "meta_keywords": "xyz789", "meta_title": "abc123", "name": "xyz789", "path": "abc123", - "path_in_store": "xyz789", + "path_in_store": "abc123", "position": 987, - "product_count": 987, - "uid": 4, - "url_key": "xyz789", - "url_path": "xyz789" + "product_count": 123, + "uid": "4", + "url_key": "abc123", + "url_path": "abc123" }
    @@ -29882,8 +30846,8 @@
    Example
    "description": "xyz789", "metaTags": CategoryMetaTags, "images": [CategoryImage], - "level": 123, - "parentSlug": "abc123", + "level": 987, + "parentSlug": "xyz789", "childrenSlugs": ["xyz789"] }
    @@ -29949,6 +30913,11 @@
    Fields
    Parent category ID. For example, 123, 456 or 789. + + position - Int + + The position of the category in sort order. For example, 1, 2, 3 or 10. + path - String @@ -29995,14 +30964,15 @@
    Example
    "availableSortBy": ["xyz789"], "children": ["abc123"], "defaultSortBy": "xyz789", - "id": "4", - "level": 123, - "name": "xyz789", + "id": 4, + "level": 987, + "name": "abc123", "parentId": "xyz789", + "position": 123, "path": "abc123", - "roles": ["abc123"], - "urlKey": "xyz789", - "urlPath": "abc123", + "roles": ["xyz789"], + "urlKey": "abc123", + "urlPath": "xyz789", "count": 123, "title": "abc123" } @@ -30106,13 +31076,13 @@
    Example
    {
       "availableSortBy": ["xyz789"],
       "defaultSortBy": "xyz789",
    -  "id": "4",
    +  "id": 4,
       "level": 987,
       "name": "abc123",
    -  "path": "abc123",
    -  "roles": ["abc123"],
    +  "path": "xyz789",
    +  "roles": ["xyz789"],
       "urlKey": "abc123",
    -  "urlPath": "abc123"
    +  "urlPath": "xyz789"
     }
     
    @@ -30186,7 +31156,7 @@
    Possible Types
    Example
    {
    -  "slug": "xyz789",
    +  "slug": "abc123",
       "name": "abc123"
     }
     
    @@ -30259,11 +31229,11 @@
    Fields
    Example
    {
    -  "agreement_id": 987,
    +  "agreement_id": 123,
       "checkbox_text": "xyz789",
    -  "content": "xyz789",
    -  "content_height": "abc123",
    -  "is_html": true,
    +  "content": "abc123",
    +  "content_height": "xyz789",
    +  "is_html": false,
       "mode": "AUTO",
       "name": "xyz789"
     }
    @@ -30478,7 +31448,7 @@ 
    Fields
    Example
    -
    {"cart": Cart, "status": true}
    +                  
    {"cart": Cart, "status": false}
     
    @@ -30570,7 +31540,7 @@
    Fields
    Example
    {
       "errors": [NegotiableQuoteInvalidStateError],
    -  "quote_uid": "4"
    +  "quote_uid": 4
     }
     
    @@ -30773,7 +31743,7 @@
    Fields
    Example
    -
    {"value": "abc123"}
    +                  
    {"value": "xyz789"}
     
    @@ -30813,7 +31783,7 @@
    Fields
    Example
    -
    {"priceBookId": 4}
    +                  
    {"priceBookId": "4"}
     
    @@ -31188,8 +32158,8 @@
    Example
    "legal_address": CompanyLegalAddress, "legal_name": "abc123", "name": "abc123", - "payment_methods": ["abc123"], - "reseller_id": "xyz789", + "payment_methods": ["xyz789"], + "reseller_id": "abc123", "role": CompanyRole, "roles": CompanyRoles, "sales_representative": CompanySalesRepresentative, @@ -31198,7 +32168,7 @@
    Example
    "team": CompanyTeam, "user": Customer, "users": CompanyUsers, - "vat_tax_id": "abc123" + "vat_tax_id": "xyz789" }
    @@ -31256,8 +32226,8 @@
    Fields
    Example
    {
       "children": [CompanyAclResource],
    -  "id": "4",
    -  "sort_order": 123,
    +  "id": 4,
    +  "sort_order": 987,
       "text": "xyz789"
     }
     
    @@ -31340,10 +32310,10 @@
    Example
    "custom_attributes": [AttributeValueInput], "email": "xyz789", "firstname": "xyz789", - "gender": 123, + "gender": 987, "job_title": "abc123", - "lastname": "xyz789", - "telephone": "xyz789" + "lastname": "abc123", + "telephone": "abc123" }
    @@ -31427,6 +32397,11 @@
    Fields
    The unique ID of a Company object. + + is_admin - Boolean! + + Indicates whether the company is the admin (parent) company in the returned relation hierarchy. + legal_name - String @@ -31450,9 +32425,10 @@
    Fields
    Example
    {
    -  "id": 4,
    -  "legal_name": "xyz789",
    -  "name": "abc123",
    +  "id": "4",
    +  "is_admin": true,
    +  "legal_name": "abc123",
    +  "name": "xyz789",
       "status": "PENDING"
     }
     
    @@ -31536,7 +32512,7 @@
    Example
    "company_email": "abc123", "company_name": "abc123", "legal_address": CompanyLegalAddressCreateInput, - "legal_name": "xyz789", + "legal_name": "abc123", "reseller_id": "abc123", "vat_tax_id": "xyz789" } @@ -31597,7 +32573,7 @@
    Example
    {
       "available_credit": Money,
       "credit_limit": Money,
    -  "exceed_limit": true,
    +  "exceed_limit": false,
       "outstanding_balance": Money
     }
     
    @@ -31652,7 +32628,7 @@
    Example
    {
       "items": [CompanyCreditOperation],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -31709,7 +32685,7 @@
    Example
    {
       "custom_reference_number": "xyz789",
       "operation_type": "ALLOCATION",
    -  "updated_by": "abc123"
    +  "updated_by": "xyz789"
     }
     
    @@ -31900,7 +32876,7 @@
    Fields
    Example
    -
    {"name": "xyz789", "type": "CUSTOMER"}
    +                  
    {"name": "abc123", "type": "CUSTOMER"}
     
    @@ -31946,6 +32922,54 @@
    Values
    Example
    "CUSTOMER"
    +
    +
    + + back to top + +
    +
    +
    + Types +
    +

    CompanyHierarchy

    +
    +
    +
    +
    Description
    +

    Defines a parent company and its direct child companies.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + + + + + +
    Field NameDescription
    children - [CompanyBasicInfo]! + An array of direct child companies.
    parent - CompanyBasicInfo + The parent company in the relation hierarchy. Null if the company has no parent.
    +
    +
    +
    +
    +
    Example
    +
    {
    +  "children": [CompanyBasicInfo],
    +  "parent": CompanyBasicInfo
    +}
     
    @@ -31999,7 +33023,7 @@
    Fields
    Example
    {
    -  "code": "abc123",
    +  "code": "xyz789",
       "role_id": 4,
       "user": CompanyInvitationUserInput
     }
    @@ -32042,7 +33066,7 @@ 
    Fields
    Example
    -
    {"success": true}
    +                  
    {"success": false}
     
    @@ -32110,9 +33134,9 @@
    Example
    {
       "company_id": 4,
       "customer_id": "4",
    -  "job_title": "abc123",
    +  "job_title": "xyz789",
       "status": "ACTIVE",
    -  "telephone": "xyz789"
    +  "telephone": "abc123"
     }
     
    @@ -32181,7 +33205,7 @@
    Example
    {
       "city": "abc123",
       "country_code": "AF",
    -  "postcode": "abc123",
    +  "postcode": "xyz789",
       "region": CustomerAddressRegion,
       "street": ["abc123"],
       "telephone": "abc123"
    @@ -32257,12 +33281,12 @@ 
    Fields
    Example
    {
    -  "city": "abc123",
    +  "city": "xyz789",
       "country_id": "AF",
       "postcode": "abc123",
       "region": CustomerAddressRegionInput,
    -  "street": ["xyz789"],
    -  "telephone": "abc123"
    +  "street": ["abc123"],
    +  "telephone": "xyz789"
     }
     
    @@ -32339,7 +33363,7 @@
    Example
    "country_id": "AF", "postcode": "xyz789", "region": CustomerAddressRegionInput, - "street": ["abc123"], + "street": ["xyz789"], "telephone": "abc123" }
    @@ -32400,7 +33424,7 @@
    Example
    "id": 4, "name": "xyz789", "permissions": [CompanyAclResource], - "users_count": 987 + "users_count": 123 }
    @@ -32505,9 +33529,9 @@
    Fields
    Example
    {
    -  "id": "4",
    -  "name": "abc123",
    -  "permissions": ["abc123"]
    +  "id": 4,
    +  "name": "xyz789",
    +  "permissions": ["xyz789"]
     }
     
    @@ -32561,7 +33585,7 @@
    Example
    {
       "items": [CompanyRole],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -32613,7 +33637,7 @@
    Fields
    Example
    {
    -  "email": "xyz789",
    +  "email": "abc123",
       "firstname": "abc123",
       "lastname": "xyz789"
     }
    @@ -32856,10 +33880,7 @@ 
    Fields
    Example
    -
    {
    -  "parent_tree_id": "4",
    -  "tree_id": "4"
    -}
    +                  
    {"parent_tree_id": "4", "tree_id": 4}
     
    @@ -32915,9 +33936,9 @@
    Fields
    Example
    {
    -  "description": "abc123",
    -  "id": 4,
    -  "name": "abc123",
    +  "description": "xyz789",
    +  "id": "4",
    +  "name": "xyz789",
       "structure_id": 4
     }
     
    @@ -32974,7 +33995,7 @@
    Fields
    Example
    {
       "description": "xyz789",
    -  "name": "xyz789",
    +  "name": "abc123",
       "target_id": 4
     }
     
    @@ -33030,9 +34051,9 @@
    Fields
    Example
    {
    -  "description": "xyz789",
    +  "description": "abc123",
       "id": "4",
    -  "name": "xyz789"
    +  "name": "abc123"
     }
     
    @@ -33105,12 +34126,12 @@
    Fields
    Example
    {
    -  "company_email": "abc123",
    +  "company_email": "xyz789",
       "company_name": "abc123",
       "legal_address": CompanyLegalAddressUpdateInput,
    -  "legal_name": "xyz789",
    -  "reseller_id": "xyz789",
    -  "vat_tax_id": "abc123"
    +  "legal_name": "abc123",
    +  "reseller_id": "abc123",
    +  "vat_tax_id": "xyz789"
     }
     
    @@ -33196,13 +34217,13 @@
    Fields
    Example
    {
       "email": "abc123",
    -  "firstname": "abc123",
    +  "firstname": "xyz789",
       "job_title": "xyz789",
       "lastname": "xyz789",
       "role_id": 4,
       "status": "ACTIVE",
    -  "target_id": "4",
    -  "telephone": "abc123"
    +  "target_id": 4,
    +  "telephone": "xyz789"
     }
     
    @@ -33341,7 +34362,7 @@
    Example
    "lastname": "xyz789", "role_id": 4, "status": "ACTIVE", - "telephone": "abc123" + "telephone": "xyz789" }
    @@ -33484,7 +34505,7 @@
    Fields
    Example
    {
       "code": "abc123",
    -  "label": "abc123"
    +  "label": "xyz789"
     }
     
    @@ -33539,7 +34560,7 @@
    Example
    {
       "attributes": [ProductAttribute],
       "product": ProductInterface,
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -33597,7 +34618,7 @@
    Fields
    Example
    {
       "attributes": [ComparableAttribute],
    -  "item_count": 987,
    +  "item_count": 123,
       "items": [ComparableItem],
       "uid": 4
     }
    @@ -33649,8 +34670,48 @@ 
    Fields
    Example
    {
       "cartId": "abc123",
    -  "id": "xyz789"
    +  "id": "abc123"
     }
    +
    + + + back to top + +
    +
    +
    + Types +
    +

    CompletePayByLinkPaymentOutput

    +
    +
    +
    +
    Description
    +

    Result of completing a Pay By Link payment.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + +
    Field NameDescription
    order_number - String! + The increment id of the order whose payment was completed.
    +
    +
    +
    +
    +
    Example
    +
    {"order_number": "abc123"}
     
    @@ -33883,26 +34944,26 @@
    Example
    "lowStock": false, "attributes": [ProductViewAttribute], "description": "xyz789", - "id": 4, + "id": "4", "images": [ProductViewImage], "videos": [ProductViewVideo], "lastModifiedAt": "2007-12-03T10:15:30Z", "metaDescription": "xyz789", "metaKeyword": "xyz789", - "metaTitle": "xyz789", + "metaTitle": "abc123", "name": "xyz789", "inputOptions": [ProductViewInputOption], "options": [ProductViewOption], "priceRange": ProductViewPriceRange, "shortDescription": "abc123", - "sku": "abc123", - "externalId": "xyz789", - "url": "xyz789", + "sku": "xyz789", + "externalId": "abc123", + "url": "abc123", "urlKey": "xyz789", "links": [ProductViewLink], "categories": [CategoryProductView], "queryType": "abc123", - "visibility": "abc123" + "visibility": "xyz789" }
    @@ -34051,9 +35112,9 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    -  "label": "abc123",
    -  "uid": 4,
    +  "code": "abc123",
    +  "label": "xyz789",
    +  "uid": "4",
       "value_index": 987
     }
     
    @@ -34088,6 +35149,11 @@
    Fields
    The list of available gift wrapping options for the cart item. + + backorder_message - String + + Customer-facing hint when the line is salable on notify backorders with insufficient physical quantity; null otherwise. + configurable_options - [SelectedConfigurableOption]! @@ -34129,9 +35195,15 @@
    Fields
    The selected gift wrapping for the cart item. - is_available - Boolean! + is_available - Boolean! + + True if requested quantity is less than available stock, false otherwise. Use is_salable instead. It indicates whether the line can be purchased, including backorder configuration. - True if requested quantity is less than available stock, false otherwise. + + + is_salable - Boolean! + + True when the item can be purchased and should not block checkout: stock status is in stock and either physical quantity covers the requested quantity or backorders are allowed. max_qty - Float @@ -34146,7 +35218,7 @@
    Fields
    not_available_message - String - Message to display when the product is not available with this selected option. + Shortage or unavailability message for the line; null when the item is salable. note_from_buyer - [ItemNote] @@ -34188,6 +35260,7 @@
    Fields
    Example
    {
       "available_gift_wrapping": [GiftWrapping],
    +  "backorder_message": "abc123",
       "configurable_options": [SelectedConfigurableOption],
       "configured_variant": ProductInterface,
       "custom_attributes": [CustomAttribute],
    @@ -34196,10 +35269,11 @@ 
    Example
    "errors": [CartItemError], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "is_available": false, + "is_available": true, + "is_salable": false, "max_qty": 987.65, "min_qty": 987.65, - "not_available_message": "xyz789", + "not_available_message": "abc123", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, @@ -34252,8 +35326,8 @@
    Fields
    Example
    {
    -  "attribute_code": "abc123",
    -  "option_value_uids": ["4"]
    +  "attribute_code": "xyz789",
    +  "option_value_uids": [4]
     }
     
    @@ -34409,26 +35483,26 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "eligible_for_return": true,
    +  "eligible_for_return": false,
       "entered_options": [OrderItemOption],
       "gift_message": GiftMessage,
       "gift_wrapping": GiftWrapping,
    -  "id": 4,
    -  "parent_sku": "abc123",
    +  "id": "4",
    +  "parent_sku": "xyz789",
       "prices": OrderItemPrices,
       "product": ProductInterface,
    -  "product_name": "xyz789",
    +  "product_name": "abc123",
       "product_sale_price": Money,
       "product_sku": "abc123",
       "product_type": "abc123",
    -  "product_url_key": "abc123",
    -  "quantity_canceled": 987.65,
    -  "quantity_invoiced": 123.45,
    +  "product_url_key": "xyz789",
    +  "quantity_canceled": 123.45,
    +  "quantity_invoiced": 987.65,
       "quantity_ordered": 123.45,
    -  "quantity_refunded": 123.45,
    +  "quantity_refunded": 987.65,
       "quantity_return_requested": 987.65,
       "quantity_returned": 123.45,
    -  "quantity_shipped": 123.45,
    +  "quantity_shipped": 987.65,
       "selected_options": [OrderItemOption],
       "status": "xyz789"
     }
    @@ -34713,32 +35787,32 @@ 
    filters
    Example
    {
    -  "canonical_url": "xyz789",
    +  "canonical_url": "abc123",
       "categories": [CategoryInterface],
       "configurable_options": [ConfigurableProductOptions],
       "configurable_product_options_selection": ConfigurableProductOptionsSelection,
    -  "country_of_manufacture": "xyz789",
    +  "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    -  "gift_message_available": false,
    -  "gift_wrapping_available": false,
    +  "gift_message_available": true,
    +  "gift_wrapping_available": true,
       "gift_wrapping_price": Money,
       "image": ProductImage,
    -  "is_returnable": "abc123",
    +  "is_returnable": "xyz789",
       "manufacturer": 987,
    -  "max_sale_qty": 123.45,
    +  "max_sale_qty": 987.65,
       "media_gallery": [MediaGalleryInterface],
       "meta_description": "abc123",
    -  "meta_keyword": "abc123",
    +  "meta_keyword": "xyz789",
       "meta_title": "xyz789",
       "min_sale_qty": 123.45,
       "name": "xyz789",
    -  "new_from_date": "abc123",
    +  "new_from_date": "xyz789",
       "new_to_date": "abc123",
    -  "only_x_left_in_stock": 123.45,
    +  "only_x_left_in_stock": 987.65,
       "options": [CustomizableOptionInterface],
    -  "options_container": "xyz789",
    +  "options_container": "abc123",
       "price_range": PriceRange,
       "price_tiers": [TierPrice],
       "product_links": [ProductLinksInterface],
    @@ -34747,14 +35821,14 @@ 
    Example
    "short_description": ComplexTextValue, "sku": "abc123", "small_image": ProductImage, - "special_price": 987.65, - "special_to_date": "abc123", + "special_price": 123.45, + "special_to_date": "xyz789", "stock_status": "IN_STOCK", "swatch_image": "xyz789", "thumbnail": ProductImage, - "uid": 4, + "uid": "4", "upsell_products": [ProductInterface], - "url_key": "xyz789", + "url_key": "abc123", "variants": [ConfigurableVariant], "weight": 987.65 } @@ -34813,7 +35887,7 @@
    Fields
    Example
    {
    -  "attribute_code": "abc123",
    +  "attribute_code": "xyz789",
       "label": "xyz789",
       "uid": 4,
       "values": [ConfigurableProductOptionValue]
    @@ -34878,7 +35952,7 @@ 
    Fields
    Example
    {
    -  "is_available": false,
    +  "is_available": true,
       "is_use_default": false,
       "label": "abc123",
       "swatch": SwatchDataInterface,
    @@ -34956,7 +36030,7 @@ 
    Example
    {
       "attribute_code": "abc123",
       "attribute_uid": 4,
    -  "label": "abc123",
    +  "label": "xyz789",
       "position": 123,
       "uid": "4",
       "use_default": true,
    @@ -35093,7 +36167,7 @@ 
    Example
    "label": "xyz789", "store_label": "xyz789", "swatch_data": SwatchDataInterface, - "uid": 4, + "uid": "4", "use_default_value": true }
    @@ -35292,12 +36366,12 @@
    Fields
    Example
    {
    -  "added_at": "abc123",
    +  "added_at": "xyz789",
       "configurable_options": [SelectedConfigurableOption],
       "configured_variant": ProductInterface,
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "xyz789",
    -  "id": "4",
    +  "description": "abc123",
    +  "id": 4,
       "product": ProductInterface,
       "quantity": 987.65
     }
    @@ -35344,8 +36418,8 @@ 
    Fields
    Example
    {
    -  "confirmation_key": "abc123",
    -  "order_id": "4"
    +  "confirmation_key": "xyz789",
    +  "order_id": 4
     }
     
    @@ -35395,7 +36469,7 @@
    Fields
    Example
    {
       "confirmation_key": "abc123",
    -  "email": "xyz789"
    +  "email": "abc123"
     }
     
    @@ -35440,8 +36514,8 @@
    Fields
    Example
    {
    -  "confirmation_key": "xyz789",
    -  "order_id": 4
    +  "confirmation_key": "abc123",
    +  "order_id": "4"
     }
     
    @@ -35546,7 +36620,7 @@
    Fields
    Example
    {
       "comment": "xyz789",
    -  "email": "abc123",
    +  "email": "xyz789",
       "name": "xyz789",
       "telephone": "xyz789"
     }
    @@ -35589,7 +36663,7 @@ 
    Fields
    Example
    -
    {"status": false}
    +                  
    {"status": true}
     
    @@ -35630,7 +36704,7 @@
    Fields
    Example
    -
    {"requisitionListItemUids": [4]}
    +                  
    {"requisitionListItemUids": ["4"]}
     
    @@ -35788,9 +36862,9 @@
    Example
    {
       "available_regions": [Region],
       "full_name_english": "abc123",
    -  "full_name_locale": "abc123",
    +  "full_name_locale": "xyz789",
       "id": "xyz789",
    -  "three_letter_abbreviation": "xyz789",
    +  "three_letter_abbreviation": "abc123",
       "two_letter_abbreviation": "xyz789"
     }
     
    @@ -37498,7 +38572,7 @@
    Fields
    Example
    -
    {"products": ["4"]}
    +                  
    {"products": [4]}
     
    @@ -37585,9 +38659,9 @@
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "event_name": "xyz789", - "gift_registry_type_uid": 4, - "message": "abc123", + "event_name": "abc123", + "gift_registry_type_uid": "4", + "message": "xyz789", "privacy_settings": "PRIVATE", "registrants": [AddGiftRegistryRegistrantInput], "shipping_address": GiftRegistryShippingAddressInput, @@ -37669,7 +38743,7 @@
    Fields
    Example
    -
    {"cart_uid": 4}
    +                  
    {"cart_uid": "4"}
     
    @@ -37771,11 +38845,11 @@
    Fields
    Example
    {
    -  "cartId": "abc123",
    +  "cartId": "xyz789",
       "location": "PRODUCT_DETAIL",
    -  "methodCode": "xyz789",
    -  "paymentSource": "xyz789",
    -  "vaultIntent": false
    +  "methodCode": "abc123",
    +  "paymentSource": "abc123",
    +  "vaultIntent": true
     }
     
    @@ -37837,11 +38911,11 @@
    Fields
    Example
    {
    -  "amount": 123.45,
    -  "currency_code": "xyz789",
    -  "id": "xyz789",
    -  "mp_order_id": "xyz789",
    -  "status": "xyz789"
    +  "amount": 987.65,
    +  "currency_code": "abc123",
    +  "id": "abc123",
    +  "mp_order_id": "abc123",
    +  "status": "abc123"
     }
     
    @@ -37889,7 +38963,7 @@
    Fields
    Example
    -
    {"currency": "AFN", "value": 987.65}
    +                  
    {"currency": "AFN", "value": 123.45}
     
    @@ -37952,7 +39026,7 @@
    Example
    "amount": CreatePurchaseOrderApprovalRuleConditionAmountInput, "attribute": "GRAND_TOTAL", "operator": "MORE_THAN", - "quantity": 987 + "quantity": 123 }
    @@ -38001,7 +39075,7 @@
    Fields
    Example
    {
    -  "description": "abc123",
    +  "description": "xyz789",
       "name": "xyz789"
     }
     
    @@ -38140,7 +39214,7 @@
    Fields
    Example
    {
       "payment_source": PaymentSourceOutput,
    -  "vault_token_id": "abc123"
    +  "vault_token_id": "xyz789"
     }
     
    @@ -38278,7 +39352,7 @@
    Fields
    Example
    -
    {"name": "abc123", "visibility": "PUBLIC"}
    +                  
    {"name": "xyz789", "visibility": "PUBLIC"}
     
    @@ -38386,7 +39460,7 @@
    Example
    {
       "comments": [SalesCommentItem],
       "custom_attributes": [CustomAttribute],
    -  "id": "4",
    +  "id": 4,
       "items": [CreditMemoItemInterface],
       "number": "xyz789",
       "total": CreditMemoTotal
    @@ -38438,7 +39512,7 @@ 
    Fields
    Example
    {
    -  "credit_memo_id": "xyz789",
    +  "credit_memo_id": "abc123",
       "custom_attributes": [CustomAttributeInput]
     }
     
    @@ -38691,8 +39765,8 @@
    Example
    "order_item": OrderItemInterface, "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "abc123", - "quantity_refunded": 987.65 + "product_sku": "xyz789", + "quantity_refunded": 123.45 }
    @@ -38887,7 +39961,7 @@
    Example
    {
       "available_currency_codes": ["abc123"],
       "base_currency_code": "xyz789",
    -  "base_currency_symbol": "abc123",
    +  "base_currency_symbol": "xyz789",
       "default_display_currency_code": "abc123",
       "default_display_currency_symbol": "xyz789",
       "exchange_rates": [ExchangeRate]
    @@ -40110,6 +41184,53 @@ 
    Values
    Example
    "AFN"
    +
    +
    +
    + back to top +
    +
    +
    +
    + Types +
    +

    CurrentProductInput

    +
    +
    +
    +
    Description
    +

    Attributes of the product currently being viewed on PDP

    +
    +
    +
    Fields
    + + + + + + + + + + + + + + + + + +
    Input FieldDescription
    + sku - String + SKU of the current product
    + price - Float + Resolved display price of the current product (specialPrice ?? regularPrice)
    +
    +
    +
    +
    +
    Example
    +
    {"sku": "xyz789", "price": 987.65}
     
    @@ -40156,7 +41277,7 @@
    Fields
    Example
    {
       "attribute_code": "xyz789",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -40205,8 +41326,8 @@
    Fields
    Example
    {
    -  "attribute_code": "abc123",
    -  "value": "xyz789"
    +  "attribute_code": "xyz789",
    +  "value": "abc123"
     }
     
    @@ -40320,14 +41441,14 @@
    Possible Types
    Example
    {
    -  "code": "4",
    +  "code": 4,
       "default_value": "xyz789",
       "entity_type": "CATALOG_PRODUCT",
    -  "frontend_class": "abc123",
    +  "frontend_class": "xyz789",
       "frontend_input": "BOOLEAN",
    -  "is_required": false,
    -  "is_unique": true,
    -  "label": "xyz789",
    +  "is_required": true,
    +  "is_unique": false,
    +  "label": "abc123",
       "options": [CustomAttributeOptionInterface]
     }
     
    @@ -40393,9 +41514,9 @@
    Possible Types
    Example
    {
    -  "is_default": false,
    +  "is_default": true,
       "label": "abc123",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -40444,8 +41565,8 @@
    Fields
    Example
    {
    -  "key": "xyz789",
    -  "value": "abc123"
    +  "key": "abc123",
    +  "value": "xyz789"
     }
     
    @@ -40493,7 +41614,7 @@
    Fields
    Example
    {
       "type": "UNKNOWN_CUSTOMOPERATOR_TYPE",
    -  "value": ["xyz789"]
    +  "value": ["abc123"]
     }
     
    @@ -40596,6 +41717,30 @@
    pageSize + + admin_assistance_actions - AdminAssistanceActions! + + Actions performed by an admin on behalf of the customer (Login as Customer logging). + + + +
    +
    Arguments
    +
    +
    +
    currentPage - Int +
    +

    Specifies which page of results to return. The default value is 1.

    +
    +
    +
    pageSize - Int +
    +

    Specifies the maximum number of results to return at once. The default value is 20.

    +
    +
    +
    + + allow_remote_shopping_assistance - Boolean! @@ -40619,6 +41764,11 @@
    input + + company_hierarchy - [CompanyHierarchy] + + The company relation hierarchies for all companies. Only available to the company administrator. + compare_list - CompareList @@ -41058,8 +42208,10 @@
    Example
    {
       "addresses": [CustomerAddress],
       "addressesV2": CustomerAddresses,
    +  "admin_assistance_actions": AdminAssistanceActions,
       "allow_remote_shopping_assistance": false,
       "companies": UserCompaniesOutput,
    +  "company_hierarchy": [CompanyHierarchy],
       "compare_list": CompareList,
       "confirmation_status": "ACCOUNT_CONFIRMED",
       "created_at": "abc123",
    @@ -41068,16 +42220,16 @@ 
    Example
    "default_billing": "xyz789", "default_shipping": "xyz789", "email": "xyz789", - "firstname": "xyz789", - "gender": 123, + "firstname": "abc123", + "gender": 987, "gift_registries": [GiftRegistry], "gift_registry": GiftRegistry, "group": CustomerGroupStorefront, "id": 4, "is_subscribed": true, - "job_title": "abc123", + "job_title": "xyz789", "lastname": "xyz789", - "middlename": "abc123", + "middlename": "xyz789", "orders": CustomerOrders, "prefix": "xyz789", "purchase_order": PurchaseOrder, @@ -41086,7 +42238,7 @@
    Example
    "purchase_order_approval_rules": PurchaseOrderApprovalRules, "purchase_orders": PurchaseOrders, "purchase_orders_enabled": false, - "quote_enabled": false, + "quote_enabled": true, "requisition_lists": RequisitionLists, "return": Return, "returns": Returns, @@ -41096,10 +42248,10 @@
    Example
    "status": "ACTIVE", "store_credit": CustomerStoreCredit, "structure_id": 4, - "suffix": "xyz789", - "taxvat": "abc123", + "suffix": "abc123", + "taxvat": "xyz789", "team": CompanyTeam, - "telephone": "abc123", + "telephone": "xyz789", "wishlist_v2": Wishlist, "wishlists": [Wishlist] } @@ -41257,27 +42409,27 @@
    attributeCodes
    Example
    {
    -  "city": "xyz789",
    +  "city": "abc123",
       "company": "abc123",
       "country_code": "AF",
       "custom_attributesV2": [AttributeValueInterface],
       "default_billing": false,
       "default_shipping": true,
       "extension_attributes": [CustomerAddressAttribute],
    -  "fax": "xyz789",
    +  "fax": "abc123",
       "firstname": "abc123",
       "id": 123,
       "lastname": "abc123",
    -  "middlename": "xyz789",
    +  "middlename": "abc123",
       "postcode": "abc123",
       "prefix": "abc123",
       "region": CustomerAddressRegion,
    -  "region_id": 987,
    +  "region_id": 123,
       "street": ["xyz789"],
    -  "suffix": "abc123",
    +  "suffix": "xyz789",
       "telephone": "xyz789",
       "uid": "4",
    -  "vat_id": "xyz789"
    +  "vat_id": "abc123"
     }
     
    @@ -41324,7 +42476,7 @@
    Fields
    Example
    {
    -  "attribute_code": "xyz789",
    +  "attribute_code": "abc123",
       "value": "xyz789"
     }
     
    @@ -41465,22 +42617,22 @@
    Fields
    Example
    {
       "city": "xyz789",
    -  "company": "xyz789",
    +  "company": "abc123",
       "country_code": "AF",
       "custom_attributesV2": [AttributeValueInput],
       "default_billing": false,
    -  "default_shipping": true,
    +  "default_shipping": false,
       "fax": "xyz789",
    -  "firstname": "abc123",
    +  "firstname": "xyz789",
       "lastname": "abc123",
       "middlename": "xyz789",
       "postcode": "abc123",
       "prefix": "abc123",
       "region": CustomerAddressRegionInput,
    -  "street": ["abc123"],
    -  "suffix": "abc123",
    -  "telephone": "xyz789",
    -  "vat_id": "abc123"
    +  "street": ["xyz789"],
    +  "suffix": "xyz789",
    +  "telephone": "abc123",
    +  "vat_id": "xyz789"
     }
     
    @@ -41532,8 +42684,8 @@
    Fields
    Example
    {
    -  "region": "abc123",
    -  "region_code": "xyz789",
    +  "region": "xyz789",
    +  "region_code": "abc123",
       "region_id": 987
     }
     
    @@ -41589,7 +42741,7 @@
    Fields
    Example
    {
    -  "region": "abc123",
    +  "region": "xyz789",
       "region_code": "abc123",
       "region_id": 987
     }
    @@ -41641,7 +42793,7 @@ 
    Example
    {
       "items": [CustomerAddress],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -41744,14 +42896,14 @@
    Fields
    Example
    {
       "code": 4,
    -  "default_value": "xyz789",
    +  "default_value": "abc123",
       "entity_type": "CATALOG_PRODUCT",
    -  "frontend_class": "abc123",
    +  "frontend_class": "xyz789",
       "frontend_input": "BOOLEAN",
       "input_filter": "NONE",
       "is_required": true,
       "is_unique": true,
    -  "label": "xyz789",
    +  "label": "abc123",
       "multiline_count": 987,
       "options": [CustomAttributeOptionInterface],
       "sort_order": 123,
    @@ -41872,16 +43024,16 @@ 
    Example
    {
       "allow_remote_shopping_assistance": false,
       "custom_attributes": [AttributeValueInput],
    -  "date_of_birth": "xyz789",
    -  "email": "abc123",
    +  "date_of_birth": "abc123",
    +  "email": "xyz789",
       "firstname": "abc123",
    -  "gender": 987,
    -  "is_subscribed": true,
    -  "lastname": "abc123",
    -  "middlename": "abc123",
    +  "gender": 123,
    +  "is_subscribed": false,
    +  "lastname": "xyz789",
    +  "middlename": "xyz789",
       "password": "abc123",
    -  "prefix": "xyz789",
    -  "suffix": "xyz789",
    +  "prefix": "abc123",
    +  "suffix": "abc123",
       "taxvat": "abc123"
     }
     
    @@ -41946,9 +43098,9 @@
    Example
    {
       "date": "abc123",
       "download_url": "xyz789",
    -  "order_increment_id": "xyz789",
    -  "remaining_downloads": "abc123",
    -  "status": "abc123"
    +  "order_increment_id": "abc123",
    +  "remaining_downloads": "xyz789",
    +  "status": "xyz789"
     }
     
    @@ -42029,7 +43181,7 @@
    Fields
    Example
    -
    {"uid": 4}
    +                  
    {"uid": "4"}
     
    @@ -42057,6 +43209,11 @@
    Fields
    + + admin_assisted_order - Int + + Admin user id when the order was placed with assistance (Login as Customer); null if not assisted. + applied_coupons - [AppliedCoupon]! @@ -42241,11 +43398,12 @@
    currentPage
    Example
    {
    +  "admin_assisted_order": 123,
       "applied_coupons": [AppliedCoupon],
       "applied_gift_cards": [ApplyGiftCardToOrder],
       "available_actions": ["REORDER"],
       "billing_address": OrderAddress,
    -  "carrier": "xyz789",
    +  "carrier": "abc123",
       "comments": [SalesCommentItem],
       "credit_memos": [CreditMemo],
       "custom_attributes": [CustomAttribute],
    @@ -42261,14 +43419,14 @@ 
    Example
    "items_eligible_for_return": [OrderItemInterface], "negotiable_quote": NegotiableQuote, "number": "abc123", - "order_date": "xyz789", + "order_date": "abc123", "order_status_change_date": "abc123", "payment_methods": [OrderPaymentMethod], - "printed_card_included": true, + "printed_card_included": false, "returns": Returns, "shipments": [OrderShipment], "shipping_address": OrderAddress, - "shipping_method": "abc123", + "shipping_method": "xyz789", "status": "xyz789", "token": "xyz789", "total": OrderTotal @@ -42422,7 +43580,7 @@
    Fields
    Example
    {
    -  "date_of_first_order": "abc123",
    +  "date_of_first_order": "xyz789",
       "items": [CustomerOrder],
       "page_info": SearchResultPageInfo,
       "total_count": 123
    @@ -42610,7 +43768,7 @@ 
    Fields
    Example
    -
    {"uid": 4}
    +                  
    {"uid": "4"}
     
    @@ -42796,7 +43954,7 @@
    Example
    "action": "xyz789", "actual_balance": Money, "balance_change": Money, - "date_time_changed": "xyz789" + "date_time_changed": "abc123" }
    @@ -42837,7 +43995,7 @@
    Fields
    Example
    -
    {"token": "abc123"}
    +                  
    {"token": "xyz789"}
     
    @@ -42941,15 +44099,15 @@
    Example
    {
       "allow_remote_shopping_assistance": false,
       "custom_attributes": [AttributeValueInput],
    -  "date_of_birth": "abc123",
    -  "firstname": "xyz789",
    +  "date_of_birth": "xyz789",
    +  "firstname": "abc123",
       "gender": 987,
       "is_subscribed": false,
       "lastname": "abc123",
    -  "middlename": "abc123",
    -  "prefix": "abc123",
    -  "suffix": "xyz789",
    -  "taxvat": "xyz789"
    +  "middlename": "xyz789",
    +  "prefix": "xyz789",
    +  "suffix": "abc123",
    +  "taxvat": "abc123"
     }
     
    @@ -43017,10 +44175,10 @@
    Fields
    Example
    {
       "product_sku": "abc123",
    -  "required": false,
    -  "sort_order": 987,
    +  "required": true,
    +  "sort_order": 123,
       "title": "abc123",
    -  "uid": "4",
    +  "uid": 4,
       "value": CustomizableAreaValue
     }
     
    @@ -43083,11 +44241,11 @@
    Fields
    Example
    {
    -  "max_characters": 987,
    -  "price": 123.45,
    +  "max_characters": 123,
    +  "price": 987.65,
       "price_type": "FIXED",
       "sku": "abc123",
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -43149,9 +44307,9 @@
    Fields
    Example
    {
    -  "required": false,
    -  "sort_order": 123,
    -  "title": "xyz789",
    +  "required": true,
    +  "sort_order": 987,
    +  "title": "abc123",
       "uid": "4",
       "value": [CustomizableCheckboxValue]
     }
    @@ -43228,10 +44386,10 @@ 
    Example
    "option_type_id": 987, "price": 987.65, "price_type": "FIXED", - "sku": "xyz789", - "sort_order": 123, - "title": "abc123", - "uid": 4 + "sku": "abc123", + "sort_order": 987, + "title": "xyz789", + "uid": "4" }
    @@ -43298,9 +44456,9 @@
    Fields
    Example
    {
    -  "product_sku": "xyz789",
    +  "product_sku": "abc123",
       "required": true,
    -  "sort_order": 123,
    +  "sort_order": 987,
       "title": "abc123",
       "uid": 4,
       "value": CustomizableDateValue
    @@ -43421,11 +44579,11 @@ 
    Fields
    Example
    {
    -  "price": 987.65,
    +  "price": 123.45,
       "price_type": "FIXED",
       "sku": "abc123",
       "type": "DATE",
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -43487,7 +44645,7 @@
    Fields
    Example
    {
    -  "required": true,
    +  "required": false,
       "sort_order": 123,
       "title": "abc123",
       "uid": "4",
    @@ -43563,12 +44721,12 @@ 
    Fields
    Example
    {
    -  "option_type_id": 123,
    +  "option_type_id": 987,
       "price": 123.45,
       "price_type": "FIXED",
    -  "sku": "xyz789",
    -  "sort_order": 123,
    -  "title": "abc123",
    +  "sku": "abc123",
    +  "sort_order": 987,
    +  "title": "xyz789",
       "uid": "4"
     }
     
    @@ -43639,8 +44797,8 @@
    Example
    "product_sku": "abc123", "required": false, "sort_order": 123, - "title": "abc123", - "uid": 4, + "title": "xyz789", + "uid": "4", "value": CustomizableFieldValue }
    @@ -43706,8 +44864,8 @@
    Example
    "max_characters": 123, "price": 987.65, "price_type": "FIXED", - "sku": "xyz789", - "uid": "4" + "sku": "abc123", + "uid": 4 }
    @@ -43776,9 +44934,9 @@
    Example
    {
       "product_sku": "xyz789",
       "required": true,
    -  "sort_order": 123,
    -  "title": "xyz789",
    -  "uid": "4",
    +  "sort_order": 987,
    +  "title": "abc123",
    +  "uid": 4,
       "value": CustomizableFileValue
     }
     
    @@ -43851,12 +45009,12 @@
    Fields
    Example
    {
    -  "file_extension": "xyz789",
    +  "file_extension": "abc123",
       "image_size_x": 987,
    -  "image_size_y": 123,
    +  "image_size_y": 987,
       "price": 987.65,
       "price_type": "FIXED",
    -  "sku": "xyz789",
    +  "sku": "abc123",
       "uid": "4"
     }
     
    @@ -43919,9 +45077,9 @@
    Fields
    Example
    {
    -  "required": false,
    +  "required": true,
       "sort_order": 987,
    -  "title": "xyz789",
    +  "title": "abc123",
       "uid": "4",
       "value": [CustomizableMultipleValue]
     }
    @@ -43996,12 +45154,12 @@ 
    Fields
    Example
    {
       "option_type_id": 123,
    -  "price": 123.45,
    +  "price": 987.65,
       "price_type": "FIXED",
       "sku": "xyz789",
    -  "sort_order": 123,
    -  "title": "xyz789",
    -  "uid": 4
    +  "sort_order": 987,
    +  "title": "abc123",
    +  "uid": "4"
     }
     
    @@ -44049,10 +45207,7 @@
    Fields
    Example
    -
    {
    -  "uid": "4",
    -  "value_string": "abc123"
    -}
    +                  
    {"uid": 4, "value_string": "xyz789"}
     
    @@ -44160,10 +45315,10 @@
    Possible Types
    Example
    {
    -  "required": false,
    -  "sort_order": 987,
    -  "title": "abc123",
    -  "uid": "4"
    +  "required": true,
    +  "sort_order": 123,
    +  "title": "xyz789",
    +  "uid": 4
     }
     
    @@ -44307,9 +45462,9 @@
    Fields
    Example
    {
    -  "required": false,
    -  "sort_order": 123,
    -  "title": "abc123",
    +  "required": true,
    +  "sort_order": 987,
    +  "title": "xyz789",
       "uid": 4,
       "value": [CustomizableRadioValue]
     }
    @@ -44388,8 +45543,8 @@ 
    Example
    "price_type": "FIXED", "sku": "abc123", "sort_order": 123, - "title": "abc123", - "uid": "4" + "title": "xyz789", + "uid": 4 }
    @@ -44452,7 +45607,7 @@
    Fields
    Example
    -
    {"success": false}
    +                  
    {"success": true}
     
    @@ -44492,7 +45647,7 @@
    Fields
    Example
    -
    {"success": false}
    +                  
    {"success": true}
     
    @@ -44572,7 +45727,7 @@
    Fields
    Example
    -
    {"result": true}
    +                  
    {"result": false}
     
    @@ -44665,7 +45820,7 @@
    Fields
    Example
    {
       "errors": [NegotiableQuoteInvalidStateError],
    -  "quote_uid": "4"
    +  "quote_uid": 4
     }
     
    @@ -45048,7 +46203,7 @@
    Fields
    Example
    -
    {"approval_rule_uids": [4]}
    +                  
    {"approval_rule_uids": ["4"]}
     
    @@ -45173,7 +46328,7 @@
    Fields
    Example
    -
    {"requisition_lists": RequisitionLists, "status": true}
    +                  
    {"requisition_lists": RequisitionLists, "status": false}
     
    @@ -45218,7 +46373,7 @@
    Fields
    Example
    -
    {"status": false, "wishlists": [Wishlist]}
    +                  
    {"status": true, "wishlists": [Wishlist]}
     
    @@ -45292,10 +46447,10 @@
    Example
    "amount": Money, "applied_to": "ITEM", "coupon": AppliedCoupon, - "is_discounting_locked": true, + "is_discounting_locked": false, "label": "abc123", - "type": "xyz789", - "value": 987.65 + "type": "abc123", + "value": 123.45 }
    @@ -45324,6 +46479,11 @@
    Fields
    + + backorder_message - String + + Customer-facing hint when the line is salable on notify backorders with insufficient physical quantity; null otherwise. + custom_attributes - [CustomAttribute] @@ -45345,9 +46505,15 @@
    Fields
    An array of errors encountered while loading the cart item - is_available - Boolean! + is_available - Boolean! + + True if requested quantity is less than available stock, false otherwise. Use is_salable instead. It indicates whether the line can be purchased, including backorder configuration. - True if requested quantity is less than available stock, false otherwise. + + + is_salable - Boolean! + + True when the item can be purchased and should not block checkout: stock status is in stock and either physical quantity covers the requested quantity or backorders are allowed. links - [DownloadableProductLinks] @@ -45367,7 +46533,7 @@
    Fields
    not_available_message - String - Message to display when the product is not available with this selected option. + Shortage or unavailability message for the line; null when the item is salable. note_from_buyer - [ItemNote] @@ -45413,14 +46579,16 @@
    Fields
    Example
    {
    +  "backorder_message": "xyz789",
       "custom_attributes": [CustomAttribute],
       "customizable_options": [SelectedCustomizableOption],
       "discount": [Discount],
       "errors": [CartItemError],
    -  "is_available": false,
    +  "is_available": true,
    +  "is_salable": true,
       "links": [DownloadableProductLinks],
       "max_qty": 123.45,
    -  "min_qty": 987.65,
    +  "min_qty": 123.45,
       "not_available_message": "abc123",
       "note_from_buyer": [ItemNote],
       "note_from_seller": [ItemNote],
    @@ -45428,7 +46596,7 @@ 
    Example
    "product": ProductInterface, "quantity": 123.45, "samples": [DownloadableProductSamples], - "uid": 4 + "uid": "4" }
    @@ -45607,8 +46775,8 @@
    Example
    "order_item": OrderItemInterface, "product_name": "abc123", "product_sale_price": Money, - "product_sku": "xyz789", - "quantity_invoiced": 123.45 + "product_sku": "abc123", + "quantity_invoiced": 987.65 }
    @@ -45661,7 +46829,7 @@
    Fields
    Example
    {
       "sort_order": 987,
    -  "title": "abc123",
    +  "title": "xyz789",
       "uid": "4"
     }
     
    @@ -45827,21 +46995,21 @@
    Example
    "entered_options": [OrderItemOption], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "id": 4, + "id": "4", "prices": OrderItemPrices, "product": ProductInterface, "product_name": "xyz789", "product_sale_price": Money, "product_sku": "abc123", "product_type": "xyz789", - "product_url_key": "xyz789", - "quantity_canceled": 987.65, - "quantity_invoiced": 123.45, + "product_url_key": "abc123", + "quantity_canceled": 123.45, + "quantity_invoiced": 987.65, "quantity_ordered": 987.65, "quantity_refunded": 123.45, "quantity_return_requested": 987.65, "quantity_returned": 987.65, - "quantity_shipped": 123.45, + "quantity_shipped": 987.65, "selected_options": [OrderItemOption], "status": "xyz789" } @@ -46115,7 +47283,7 @@
    Example
    {
       "canonical_url": "xyz789",
       "categories": [CategoryInterface],
    -  "country_of_manufacture": "abc123",
    +  "country_of_manufacture": "xyz789",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    @@ -46125,35 +47293,35 @@ 
    Example
    "downloadable_product_samples": [ DownloadableProductSamples ], - "gift_message_available": true, - "gift_wrapping_available": true, + "gift_message_available": false, + "gift_wrapping_available": false, "gift_wrapping_price": Money, "image": ProductImage, - "is_returnable": "xyz789", - "links_purchased_separately": 123, + "is_returnable": "abc123", + "links_purchased_separately": 987, "links_title": "abc123", - "manufacturer": 123, - "max_sale_qty": 987.65, + "manufacturer": 987, + "max_sale_qty": 123.45, "media_gallery": [MediaGalleryInterface], - "meta_description": "xyz789", - "meta_keyword": "xyz789", + "meta_description": "abc123", + "meta_keyword": "abc123", "meta_title": "xyz789", - "min_sale_qty": 987.65, + "min_sale_qty": 123.45, "name": "xyz789", "new_from_date": "abc123", "new_to_date": "abc123", "only_x_left_in_stock": 123.45, "options": [CustomizableOptionInterface], - "options_container": "abc123", + "options_container": "xyz789", "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], "quantity": 987.65, "related_products": [ProductInterface], "short_description": ComplexTextValue, - "sku": "xyz789", + "sku": "abc123", "small_image": ProductImage, - "special_price": 987.65, + "special_price": 123.45, "special_to_date": "xyz789", "stock_status": "IN_STOCK", "swatch_image": "xyz789", @@ -46281,11 +47449,11 @@
    Fields
    Example
    {
    -  "price": 987.65,
    -  "sample_url": "abc123",
    -  "sort_order": 987,
    -  "title": "xyz789",
    -  "uid": "4"
    +  "price": 123.45,
    +  "sample_url": "xyz789",
    +  "sort_order": 123,
    +  "title": "abc123",
    +  "uid": 4
     }
     
    @@ -46327,7 +47495,7 @@
    Fields
    Example
    -
    {"link_id": 987}
    +                  
    {"link_id": 123}
     
    @@ -46379,8 +47547,8 @@
    Fields
    Example
    {
       "sample_url": "abc123",
    -  "sort_order": 123,
    -  "title": "abc123"
    +  "sort_order": 987,
    +  "title": "xyz789"
     }
     
    @@ -46455,10 +47623,10 @@
    Example
    "customizable_options": [SelectedCustomizableOption], "links": [DownloadableProductLinks], "product": ProductInterface, - "quantity": 987.65, + "quantity": 123.45, "samples": [DownloadableProductSamples], - "sku": "xyz789", - "uid": 4 + "sku": "abc123", + "uid": "4" }
    @@ -46536,10 +47704,10 @@
    Fields
    Example
    {
    -  "added_at": "xyz789",
    +  "added_at": "abc123",
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "abc123",
    -  "id": 4,
    +  "description": "xyz789",
    +  "id": "4",
       "links_v2": [DownloadableProductLinks],
       "product": ProductInterface,
       "quantity": 123.45,
    @@ -46592,7 +47760,7 @@ 
    Fields
    Example
    {
    -  "duplicated_quote_uid": 4,
    +  "duplicated_quote_uid": "4",
       "quote_uid": "4"
     }
     
    @@ -46683,7 +47851,7 @@
    Fields
    Example
    {
       "attribute_code": "abc123",
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -46731,10 +47899,7 @@
    Fields
    Example
    -
    {
    -  "uid": "4",
    -  "value": "abc123"
    -}
    +                  
    {"uid": 4, "value": "xyz789"}
     
    @@ -47105,7 +48270,7 @@
    Fields
    Example
    {
       "customer": Customer,
    -  "token": "abc123"
    +  "token": "xyz789"
     }
     
    @@ -47151,7 +48316,7 @@
    Fields
    Example
    -
    {"currency_to": "abc123", "rate": 987.65}
    +                  
    {"currency_to": "xyz789", "rate": 987.65}
     
    @@ -47223,10 +48388,10 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    +  "code": "abc123",
       "is_visible": true,
    -  "payment_intent": "xyz789",
    -  "payment_source": "xyz789",
    +  "payment_intent": "abc123",
    +  "payment_source": "abc123",
       "sdk_params": [SDKParams],
       "sort_order": "xyz789",
       "three_ds_mode": "OFF",
    @@ -47279,7 +48444,7 @@ 
    Fields
    Example
    {
    -  "payment_source": "abc123",
    +  "payment_source": "xyz789",
       "paypal_fastlane_token": "abc123"
     }
     
    @@ -47510,7 +48675,7 @@
    Fields
    Example
    -
    {"match": "abc123", "match_type": "FULL"}
    +                  
    {"match": "xyz789", "match_type": "FULL"}
     
    @@ -47722,8 +48887,8 @@
    Fields
    Example
    {
    -  "eq": "abc123",
    -  "in": ["xyz789"],
    +  "eq": "xyz789",
    +  "in": ["abc123"],
       "match": "xyz789"
     }
     
    @@ -47846,18 +49011,18 @@
    Fields
    Example
    {
       "eq": "xyz789",
    -  "from": "abc123",
    -  "gt": "xyz789",
    -  "gteq": "xyz789",
    -  "in": ["xyz789"],
    -  "like": "abc123",
    +  "from": "xyz789",
    +  "gt": "abc123",
    +  "gteq": "abc123",
    +  "in": ["abc123"],
    +  "like": "xyz789",
       "lt": "abc123",
    -  "lteq": "xyz789",
    +  "lteq": "abc123",
       "moreq": "abc123",
       "neq": "xyz789",
    -  "nin": ["xyz789"],
    +  "nin": ["abc123"],
       "notnull": "abc123",
    -  "null": "xyz789",
    +  "null": "abc123",
       "to": "xyz789"
     }
     
    @@ -47918,7 +49083,7 @@
    Example
    "attribute": "xyz789", "frontendInput": "abc123", "label": "xyz789", - "numeric": false + "numeric": true }
    @@ -47966,7 +49131,7 @@
    Fields
    Example
    {
       "amount": Money,
    -  "label": "xyz789"
    +  "label": "abc123"
     }
     
    @@ -48054,7 +49219,7 @@
    Description
    Example
    -
    987.65
    +                  
    123.45
     
    @@ -48095,7 +49260,7 @@
    Fields
    Example
    -
    {"customer_email": "xyz789"}
    +                  
    {"customer_email": "abc123"}
     
    @@ -48135,7 +49300,7 @@
    Fields
    Example
    -
    {"customer_token": "xyz789"}
    +                  
    {"customer_token": "abc123"}
     
    @@ -48216,7 +49381,7 @@
    Fields
    Example
    -
    {"negotiable_quote_uid": "4"}
    +                  
    {"negotiable_quote_uid": 4}
     
    @@ -48308,7 +49473,7 @@
    Fields
    Example
    {
       "balance": Money,
    -  "code": "abc123",
    +  "code": "xyz789",
       "expiration_date": "xyz789"
     }
     
    @@ -48351,7 +49516,7 @@
    Fields
    Example
    -
    {"gift_card_code": "xyz789"}
    +                  
    {"gift_card_code": "abc123"}
     
    @@ -48412,11 +49577,11 @@
    Fields
    Example
    {
    -  "attribute_id": 987,
    -  "uid": "4",
    +  "attribute_id": 123,
    +  "uid": 4,
       "value": 123.45,
    -  "website_id": 123,
    -  "website_value": 987.65
    +  "website_id": 987,
    +  "website_value": 123.45
     }
     
    @@ -48455,6 +49620,11 @@
    Fields
    The list of available gift wrapping options for the cart item. + + backorder_message - String + + Customer-facing hint when the line is salable on notify backorders with insufficient physical quantity; null otherwise. + custom_attributes - [CustomAttribute] @@ -48486,9 +49656,15 @@
    Fields
    The selected gift wrapping option for the cart item. - is_available - Boolean! + is_available - Boolean! + + True if requested quantity is less than available stock, false otherwise. Use is_salable instead. It indicates whether the line can be purchased, including backorder configuration. + + + + is_salable - Boolean! - True if requested quantity is less than available stock, false otherwise. + True when the item can be purchased and should not block checkout: stock status is in stock and either physical quantity covers the requested quantity or backorders are allowed. max_qty - Float @@ -48508,7 +49684,7 @@
    Fields
    not_available_message - String - Message to display when the product is not available with this selected option. + Shortage or unavailability message for the line; null when the item is salable. note_from_buyer - [ItemNote] @@ -48571,17 +49747,19 @@
    Example
    {
       "amount": Money,
       "available_gift_wrapping": [GiftWrapping],
    +  "backorder_message": "abc123",
       "custom_attributes": [CustomAttribute],
       "customizable_options": [SelectedCustomizableOption],
       "discount": [Discount],
       "errors": [CartItemError],
       "gift_message": GiftMessage,
       "gift_wrapping": GiftWrapping,
    -  "is_available": false,
    +  "is_available": true,
    +  "is_salable": false,
       "max_qty": 987.65,
    -  "message": "xyz789",
    +  "message": "abc123",
       "min_qty": 987.65,
    -  "not_available_message": "xyz789",
    +  "not_available_message": "abc123",
       "note_from_buyer": [ItemNote],
       "note_from_seller": [ItemNote],
       "prices": CartItemPrices,
    @@ -48590,8 +49768,8 @@ 
    Example
    "recipient_email": "xyz789", "recipient_name": "abc123", "sender_email": "xyz789", - "sender_name": "abc123", - "uid": "4" + "sender_name": "xyz789", + "uid": 4 }
    @@ -48672,11 +49850,11 @@
    Example
    "custom_attributes": [CustomAttribute], "discounts": [Discount], "gift_card": GiftCardItem, - "id": 4, + "id": "4", "order_item": OrderItemInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, - "product_sku": "abc123", + "product_sku": "xyz789", "quantity_refunded": 123.45 }
    @@ -48758,9 +49936,9 @@
    Example
    "custom_attributes": [CustomAttribute], "discounts": [Discount], "gift_card": GiftCardItem, - "id": 4, + "id": "4", "order_item": OrderItemInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, "product_sku": "abc123", "quantity_invoiced": 123.45 @@ -48827,8 +50005,8 @@
    Example
    {
       "message": "xyz789",
       "recipient_email": "xyz789",
    -  "recipient_name": "abc123",
    -  "sender_email": "xyz789",
    +  "recipient_name": "xyz789",
    +  "sender_email": "abc123",
       "sender_name": "abc123"
     }
     
    @@ -48903,11 +50081,11 @@
    Example
    {
       "amount": Money,
       "custom_giftcard_amount": Money,
    -  "message": "abc123",
    +  "message": "xyz789",
       "recipient_email": "abc123",
    -  "recipient_name": "abc123",
    +  "recipient_name": "xyz789",
       "sender_email": "xyz789",
    -  "sender_name": "abc123"
    +  "sender_name": "xyz789"
     }
     
    @@ -49073,16 +50251,16 @@
    Example
    "product": ProductInterface, "product_name": "abc123", "product_sale_price": Money, - "product_sku": "abc123", + "product_sku": "xyz789", "product_type": "abc123", "product_url_key": "abc123", - "quantity_canceled": 123.45, - "quantity_invoiced": 987.65, + "quantity_canceled": 987.65, + "quantity_invoiced": 123.45, "quantity_ordered": 123.45, - "quantity_refunded": 987.65, - "quantity_return_requested": 987.65, + "quantity_refunded": 123.45, + "quantity_return_requested": 123.45, "quantity_returned": 987.65, - "quantity_shipped": 987.65, + "quantity_shipped": 123.45, "selected_options": [OrderItemOption], "status": "xyz789" } @@ -49389,8 +50567,8 @@
    filters
    Example
    {
    -  "allow_message": false,
    -  "allow_open_amount": false,
    +  "allow_message": true,
    +  "allow_open_amount": true,
       "canonical_url": "abc123",
       "categories": [CategoryInterface],
       "country_of_manufacture": "xyz789",
    @@ -49398,48 +50576,48 @@ 
    Example
    "custom_attributesV2": ProductCustomAttributes, "description": ComplexTextValue, "gift_card_options": [CustomizableOptionInterface], - "gift_message_available": true, + "gift_message_available": false, "gift_wrapping_available": false, "gift_wrapping_price": Money, "giftcard_amounts": [GiftCardAmounts], "giftcard_type": "VIRTUAL", "image": ProductImage, "is_redeemable": false, - "is_returnable": "abc123", + "is_returnable": "xyz789", "lifetime": 123, "manufacturer": 123, - "max_sale_qty": 987.65, + "max_sale_qty": 123.45, "media_gallery": [MediaGalleryInterface], "message_max_length": 123, "meta_description": "abc123", "meta_keyword": "xyz789", "meta_title": "abc123", "min_sale_qty": 987.65, - "name": "xyz789", - "new_from_date": "xyz789", - "new_to_date": "xyz789", + "name": "abc123", + "new_from_date": "abc123", + "new_to_date": "abc123", "only_x_left_in_stock": 987.65, - "open_amount_max": 123.45, - "open_amount_min": 123.45, + "open_amount_max": 987.65, + "open_amount_min": 987.65, "options": [CustomizableOptionInterface], - "options_container": "abc123", + "options_container": "xyz789", "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], - "quantity": 987.65, + "quantity": 123.45, "related_products": [ProductInterface], "short_description": ComplexTextValue, "sku": "abc123", "small_image": ProductImage, - "special_price": 987.65, - "special_to_date": "xyz789", + "special_price": 123.45, + "special_to_date": "abc123", "stock_status": "IN_STOCK", "swatch_image": "abc123", "thumbnail": ProductImage, "uid": "4", "upsell_products": [ProductInterface], - "url_key": "abc123", - "weight": 123.45 + "url_key": "xyz789", + "weight": 987.65 }
    @@ -49585,7 +50763,7 @@
    Example
    "order_item": OrderItemInterface, "product_name": "abc123", "product_sale_price": Money, - "product_sku": "abc123", + "product_sku": "xyz789", "quantity_shipped": 987.65 }
    @@ -49719,9 +50897,9 @@
    Example
    "customizable_options": [SelectedCustomizableOption], "description": "abc123", "gift_card_options": GiftCardOptions, - "id": "4", + "id": 4, "product": ProductInterface, - "quantity": 987.65 + "quantity": 123.45 }
    @@ -49773,8 +50951,8 @@
    Fields
    Example
    {
    -  "from": "xyz789",
    -  "message": "abc123",
    +  "from": "abc123",
    +  "message": "xyz789",
       "to": "xyz789"
     }
     
    @@ -49832,7 +51010,7 @@
    Example
    {
       "from": "abc123",
       "message": "abc123",
    -  "to": "xyz789"
    +  "to": "abc123"
     }
     
    @@ -50003,9 +51181,9 @@
    Example
    {
       "created_at": "xyz789",
       "dynamic_attributes": [GiftRegistryDynamicAttribute],
    -  "event_name": "abc123",
    +  "event_name": "xyz789",
       "items": [GiftRegistryItemInterface],
    -  "message": "abc123",
    +  "message": "xyz789",
       "owner_name": "abc123",
       "privacy_settings": "PRIVATE",
       "registrants": [GiftRegistryRegistrant],
    @@ -50065,10 +51243,10 @@ 
    Fields
    Example
    {
    -  "code": 4,
    +  "code": "4",
       "group": "EVENT_INFORMATION",
       "label": "abc123",
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -50193,7 +51371,10 @@
    Fields
    Example
    -
    {"code": 4, "value": "abc123"}
    +                  
    {
    +  "code": "4",
    +  "value": "abc123"
    +}
     
    @@ -50327,11 +51508,11 @@
    Fields
    Example
    {
    -  "attribute_group": "abc123",
    -  "code": 4,
    -  "input_type": "abc123",
    -  "is_required": true,
    -  "label": "abc123",
    +  "attribute_group": "xyz789",
    +  "code": "4",
    +  "input_type": "xyz789",
    +  "is_required": false,
    +  "label": "xyz789",
       "sort_order": 987
     }
     
    @@ -50414,9 +51595,9 @@
    Example
    {
       "attribute_group": "xyz789",
       "code": "4",
    -  "input_type": "abc123",
    +  "input_type": "xyz789",
       "is_required": true,
    -  "label": "abc123",
    +  "label": "xyz789",
       "sort_order": 987
     }
     
    @@ -50481,10 +51662,10 @@
    Fields
    Example
    {
    -  "created_at": "xyz789",
    +  "created_at": "abc123",
       "note": "xyz789",
       "product": ProductInterface,
    -  "quantity": 123.45,
    +  "quantity": 987.65,
       "quantity_fulfilled": 123.45,
       "uid": 4
     }
    @@ -50636,7 +51817,7 @@ 
    Possible Types
    Example
    {
    -  "status": false,
    +  "status": true,
       "user_errors": [GiftRegistryItemsUserError]
     }
     
    @@ -50703,7 +51884,7 @@
    Example
    "gift_registry_item_uid": "4", "gift_registry_uid": "4", "message": "abc123", - "product_uid": "4" + "product_uid": 4 }
    @@ -50927,7 +52108,7 @@
    Example
    "dynamic_attributes": [ GiftRegistryRegistrantDynamicAttribute ], - "email": "abc123", + "email": "xyz789", "firstname": "abc123", "lastname": "xyz789", "uid": 4 @@ -50978,9 +52159,9 @@
    Fields
    Example
    {
    -  "code": 4,
    +  "code": "4",
       "label": "xyz789",
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -51051,8 +52232,8 @@
    Example
    "event_title": "abc123", "gift_registry_uid": "4", "location": "xyz789", - "name": "abc123", - "type": "abc123" + "name": "xyz789", + "type": "xyz789" }
    @@ -51213,8 +52394,8 @@
    Example
    "dynamic_attributes_metadata": [ GiftRegistryDynamicAttributeMetadataInterface ], - "label": "xyz789", - "uid": "4" + "label": "abc123", + "uid": 4 }
    @@ -51271,7 +52452,7 @@
    Fields
    Example
    {
    -  "design": "xyz789",
    +  "design": "abc123",
       "image": GiftWrappingImage,
       "price": Money,
       "uid": "4"
    @@ -51321,7 +52502,7 @@ 
    Fields
    Example
    {
    -  "label": "xyz789",
    +  "label": "abc123",
       "url": "abc123"
     }
     
    @@ -51371,7 +52552,7 @@
    Fields
    Example
    {
       "color": "abc123",
    -  "height": 987,
    +  "height": 123,
       "type": "abc123"
     }
     
    @@ -51451,14 +52632,14 @@
    Fields
    Example
    {
       "button_styles": GooglePayButtonStyles,
    -  "code": "xyz789",
    -  "is_visible": true,
    +  "code": "abc123",
    +  "is_visible": false,
       "payment_intent": "xyz789",
       "payment_source": "abc123",
       "sdk_params": [SDKParams],
       "sort_order": "xyz789",
       "three_ds_mode": "OFF",
    -  "title": "abc123"
    +  "title": "xyz789"
     }
     
    @@ -51770,29 +52951,29 @@
    filters
    Example
    {
    -  "canonical_url": "xyz789",
    +  "canonical_url": "abc123",
       "categories": [CategoryInterface],
       "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    -  "gift_message_available": false,
    +  "gift_message_available": true,
       "gift_wrapping_available": true,
       "gift_wrapping_price": Money,
       "image": ProductImage,
    -  "is_returnable": "abc123",
    +  "is_returnable": "xyz789",
       "items": [GroupedProductItem],
       "manufacturer": 123,
       "max_sale_qty": 987.65,
       "media_gallery": [MediaGalleryInterface],
       "meta_description": "abc123",
    -  "meta_keyword": "abc123",
    -  "meta_title": "abc123",
    +  "meta_keyword": "xyz789",
    +  "meta_title": "xyz789",
       "min_sale_qty": 987.65,
    -  "name": "xyz789",
    +  "name": "abc123",
       "new_from_date": "xyz789",
       "new_to_date": "abc123",
    -  "only_x_left_in_stock": 987.65,
    +  "only_x_left_in_stock": 123.45,
       "options_container": "xyz789",
       "price_range": PriceRange,
       "price_tiers": [TierPrice],
    @@ -51802,15 +52983,15 @@ 
    Example
    "short_description": ComplexTextValue, "sku": "abc123", "small_image": ProductImage, - "special_price": 123.45, - "special_to_date": "abc123", + "special_price": 987.65, + "special_to_date": "xyz789", "stock_status": "IN_STOCK", - "swatch_image": "xyz789", + "swatch_image": "abc123", "thumbnail": ProductImage, - "uid": 4, + "uid": "4", "upsell_products": [ProductInterface], "url_key": "xyz789", - "weight": 987.65 + "weight": 123.45 }
    @@ -51863,7 +53044,7 @@
    Fields
    Example
    {
    -  "position": 987,
    +  "position": 123,
       "product": ProductInterface,
       "qty": 987.65
     }
    @@ -51933,10 +53114,10 @@ 
    Fields
    Example
    {
    -  "added_at": "xyz789",
    +  "added_at": "abc123",
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "abc123",
    -  "id": 4,
    +  "description": "xyz789",
    +  "id": "4",
       "product": ProductInterface,
       "quantity": 123.45
     }
    @@ -51988,7 +53169,7 @@ 
    Fields
    Example
    {
       "reason": "abc123",
    -  "token": "xyz789"
    +  "token": "abc123"
     }
     
    @@ -52043,8 +53224,8 @@
    Fields
    Example
    {
    -  "email": "xyz789",
    -  "lastname": "abc123",
    +  "email": "abc123",
    +  "lastname": "xyz789",
       "number": "xyz789"
     }
     
    @@ -52097,7 +53278,7 @@
    Fields
    Example
    {
    -  "attribute": "xyz789",
    +  "attribute": "abc123",
       "matched_words": ["xyz789"],
       "value": "abc123"
     }
    @@ -52166,11 +53347,11 @@ 
    Fields
    Example
    {
    -  "created_at": "xyz789",
    -  "creator_name": "xyz789",
    -  "creator_type": "xyz789",
    +  "created_at": "abc123",
    +  "creator_name": "abc123",
    +  "creator_type": "abc123",
       "item_id": 987,
    -  "note": "xyz789",
    +  "note": "abc123",
       "product_name": "abc123"
     }
     
    @@ -52260,16 +53441,16 @@
    Fields
    Example
    {
       "cc_vault_code": "abc123",
    -  "code": "abc123",
    +  "code": "xyz789",
       "is_vault_enabled": false,
       "is_visible": true,
    -  "payment_intent": "abc123",
    +  "payment_intent": "xyz789",
       "payment_source": "xyz789",
       "requires_card_details": true,
       "sdk_params": [SDKParams],
    -  "sort_order": "abc123",
    +  "sort_order": "xyz789",
       "three_ds_mode": "OFF",
    -  "title": "xyz789"
    +  "title": "abc123"
     }
     
    @@ -52365,10 +53546,10 @@
    Example
    "cardExpiryYear": "abc123", "cardLast4": "abc123", "holderName": "xyz789", - "is_active_payment_token_enabler": true, - "payment_source": "xyz789", - "payments_order_id": "xyz789", - "paypal_order_id": "xyz789" + "is_active_payment_token_enabler": false, + "payment_source": "abc123", + "payments_order_id": "abc123", + "paypal_order_id": "abc123" }
    @@ -52433,9 +53614,57 @@
    Fields
    Example
    {
    -  "thumbnail": "xyz789",
    +  "thumbnail": "abc123",
       "value": "abc123"
     }
    +
    +
    +
    + back to top +
    +
    +
    +
    + Types +
    +

    ImportSharedRequisitionListOutput

    +
    +
    +
    +
    Description
    +

    Result of importing a shared requisition list.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + + + + + +
    Field NameDescription
    requisition_list - RequisitionList + The imported requisition list for the current customer.
    user_errors - [ShareRequisitionListUserError]! + Validation or import issues.
    +
    +
    +
    +
    +
    Example
    +
    {
    +  "requisition_list": RequisitionList,
    +  "user_errors": [ShareRequisitionListUserError]
    +}
     
    @@ -52548,7 +53777,7 @@
    Fields
    Example
    {
       "code": "PRODUCT_NOT_FOUND",
    -  "message": "xyz789",
    +  "message": "abc123",
       "quantity": 987.65
     }
     
    @@ -52572,7 +53801,7 @@
    Description
    Example
    -
    123
    +                  
    987
     
    @@ -52680,7 +53909,7 @@
    Example
    {
       "comments": [SalesCommentItem],
       "custom_attributes": [CustomAttribute],
    -  "id": "4",
    +  "id": 4,
       "items": [InvoiceItemInterface],
       "number": "abc123",
       "total": InvoiceTotal
    @@ -52733,7 +53962,7 @@ 
    Fields
    Example
    {
       "custom_attributes": [CustomAttributeInput],
    -  "invoice_id": "xyz789"
    +  "invoice_id": "abc123"
     }
     
    @@ -52808,11 +54037,11 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "id": 4,
    +  "id": "4",
       "order_item": OrderItemInterface,
       "product_name": "xyz789",
       "product_sale_price": Money,
    -  "product_sku": "abc123",
    +  "product_sku": "xyz789",
       "quantity_invoiced": 123.45
     }
     
    @@ -52985,8 +54214,8 @@
    Example
    "order_item": OrderItemInterface, "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "abc123", - "quantity_invoiced": 987.65 + "product_sku": "xyz789", + "quantity_invoiced": 123.45 }
    @@ -53151,7 +54380,7 @@
    Fields
    Example
    -
    {"is_email_available": false}
    +                  
    {"is_email_available": true}
     
    @@ -53311,7 +54540,7 @@
    Fields
    Example
    -
    {"is_email_available": true}
    +                  
    {"is_email_available": false}
     
    @@ -53444,7 +54673,7 @@
    Fields
    Example
    -
    {"isSubscribed": true, "message": "abc123"}
    +                  
    {"isSubscribed": false, "message": "xyz789"}
     
    @@ -53515,13 +54744,13 @@
    Fields
    Example
    {
    -  "created_at": "abc123",
    -  "creator_id": 123,
    +  "created_at": "xyz789",
    +  "creator_id": 987,
       "creator_name": "abc123",
    -  "creator_type": 123,
    +  "creator_type": 987,
       "negotiable_quote_item_uid": 4,
    -  "note": "abc123",
    -  "note_uid": 4
    +  "note": "xyz789",
    +  "note_uid": "4"
     }
     
    @@ -53573,7 +54802,7 @@
    Fields
    Example
    {
    -  "label": "abc123",
    +  "label": "xyz789",
       "uid": 4,
       "values": [ItemSelectedBundleOptionValue]
     }
    @@ -53640,8 +54869,8 @@ 
    Example
    "price": Money, "product_name": "xyz789", "product_sku": "xyz789", - "quantity": 123.45, - "uid": 4 + "quantity": 987.65, + "uid": "4" }
    @@ -53710,7 +54939,7 @@
    Fields
    Example
    {
    -  "name": "abc123",
    +  "name": "xyz789",
       "value": "abc123"
     }
     
    @@ -53767,7 +54996,7 @@
    Fields
    Example
    {
       "note": "abc123",
    -  "quote_item_uid": "4",
    +  "quote_item_uid": 4,
       "quote_uid": 4
     }
     
    @@ -53858,9 +55087,9 @@
    Possible Types
    Example
    {
       "disabled": false,
    -  "label": "xyz789",
    +  "label": "abc123",
       "position": 123,
    -  "url": "abc123"
    +  "url": "xyz789"
     }
     
    @@ -54004,7 +55233,7 @@
    Fields
    Example
    {
    -  "layout": "xyz789",
    +  "layout": "abc123",
       "logo": MessageStyleLogo
     }
     
    @@ -54051,7 +55280,7 @@
    Fields
    Example
    -
    {"currency": "AFN", "value": 123.45}
    +                  
    {"currency": "AFN", "value": 987.65}
     
    @@ -54103,7 +55332,7 @@
    Fields
    Example
    {
       "gift_registry": GiftRegistry,
    -  "status": true,
    +  "status": false,
       "user_errors": [GiftRegistryItemsUserError]
     }
     
    @@ -54146,7 +55375,7 @@
    Fields
    Example
    -
    {"requisitionListItemUids": ["4"]}
    +                  
    {"requisitionListItemUids": [4]}
     
    @@ -54250,7 +55479,7 @@
    Example
    {
       "quote_item_uid": "4",
       "quote_uid": 4,
    -  "requisition_list_uid": "4"
    +  "requisition_list_uid": 4
     }
     
    @@ -54505,7 +55734,7 @@
    Example
    "email": "abc123", "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], - "is_virtual": false, + "is_virtual": true, "items": [CartItemInterface], "name": "xyz789", "order": CustomerOrder, @@ -54514,9 +55743,9 @@
    Example
    "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [NegotiableQuoteShippingAddress], "status": "SUBMITTED", - "template_id": "4", - "template_name": "abc123", - "total_quantity": 987.65, + "template_id": 4, + "template_name": "xyz789", + "total_quantity": 123.45, "uid": 4, "updated_at": "xyz789" } @@ -54705,15 +55934,15 @@
    Fields
    Example
    {
    -  "city": "abc123",
    -  "company": "abc123",
    +  "city": "xyz789",
    +  "company": "xyz789",
       "country_code": "xyz789",
       "custom_attributes": [AttributeValueInput],
       "fax": "abc123",
    -  "firstname": "xyz789",
    -  "lastname": "abc123",
    +  "firstname": "abc123",
    +  "lastname": "xyz789",
       "middlename": "abc123",
    -  "postcode": "xyz789",
    +  "postcode": "abc123",
       "prefix": "xyz789",
       "region": "xyz789",
       "region_id": 987,
    @@ -54721,7 +55950,7 @@ 
    Example
    "street": ["xyz789"], "suffix": "xyz789", "telephone": "xyz789", - "vat_id": "xyz789" + "vat_id": "abc123" }
    @@ -54861,23 +56090,23 @@
    Possible Types
    Example
    {
    -  "city": "abc123",
    -  "company": "abc123",
    +  "city": "xyz789",
    +  "company": "xyz789",
       "country": NegotiableQuoteAddressCountry,
       "custom_attributes": [AttributeValueInterface],
    -  "customer_address_uid": 4,
    -  "fax": "xyz789",
    -  "firstname": "xyz789",
    -  "lastname": "xyz789",
    -  "middlename": "xyz789",
    -  "postcode": "xyz789",
    -  "prefix": "abc123",
    +  "customer_address_uid": "4",
    +  "fax": "abc123",
    +  "firstname": "abc123",
    +  "lastname": "abc123",
    +  "middlename": "abc123",
    +  "postcode": "abc123",
    +  "prefix": "xyz789",
       "region": NegotiableQuoteAddressRegion,
    -  "street": ["xyz789"],
    +  "street": ["abc123"],
       "suffix": "abc123",
    -  "telephone": "abc123",
    +  "telephone": "xyz789",
       "uid": 4,
    -  "vat_id": "xyz789"
    +  "vat_id": "abc123"
     }
     
    @@ -55055,17 +56284,17 @@
    Example
    "custom_attributes": [AttributeValueInterface], "customer_address_uid": "4", "fax": "abc123", - "firstname": "xyz789", - "lastname": "xyz789", + "firstname": "abc123", + "lastname": "abc123", "middlename": "abc123", - "postcode": "xyz789", + "postcode": "abc123", "prefix": "xyz789", "region": NegotiableQuoteAddressRegion, - "street": ["xyz789"], + "street": ["abc123"], "suffix": "abc123", - "telephone": "xyz789", - "uid": 4, - "vat_id": "abc123" + "telephone": "abc123", + "uid": "4", + "vat_id": "xyz789" }
    @@ -55127,9 +56356,9 @@
    Fields
    Example
    {
       "address": NegotiableQuoteAddressInput,
    -  "customer_address_uid": 4,
    +  "customer_address_uid": "4",
       "same_as_shipping": true,
    -  "use_for_shipping": true
    +  "use_for_shipping": false
     }
     
    @@ -55198,7 +56427,7 @@
    Example
    {
       "attachments": [NegotiableQuoteCommentAttachment],
       "author": NegotiableQuoteUser,
    -  "created_at": "xyz789",
    +  "created_at": "abc123",
       "creator_type": "BUYER",
       "text": "xyz789",
       "uid": "4"
    @@ -55249,7 +56478,7 @@ 
    Fields
    Example
    {
       "name": "abc123",
    -  "url": "xyz789"
    +  "url": "abc123"
     }
     
    @@ -55437,9 +56666,9 @@
    Fields
    Example
    {
    -  "new_value": "xyz789",
    +  "new_value": "abc123",
       "old_value": "xyz789",
    -  "title": "abc123"
    +  "title": "xyz789"
     }
     
    @@ -55671,9 +56900,9 @@
    Example
    "author": NegotiableQuoteUser, "change_type": "CREATED", "changes": NegotiableQuoteHistoryChanges, - "created_at": "abc123", + "created_at": "xyz789", "item_note": HistoryItemNoteData, - "uid": "4" + "uid": 4 }
    @@ -55779,8 +57008,8 @@
    Fields
    Example
    {
    -  "new_expiration": "abc123",
    -  "old_expiration": "xyz789"
    +  "new_expiration": "xyz789",
    +  "old_expiration": "abc123"
     }
     
    @@ -56050,7 +57279,7 @@
    Fields
    Example
    -
    {"quantity": 987.65, "quote_item_uid": 4}
    +                  
    {"quantity": 123.45, "quote_item_uid": "4"}
     
    @@ -56098,8 +57327,8 @@
    Fields
    Example
    {
    -  "code": "abc123",
    -  "purchase_order_number": "xyz789"
    +  "code": "xyz789",
    +  "purchase_order_number": "abc123"
     }
     
    @@ -56156,9 +57385,9 @@
    Fields
    Example
    {
    -  "document_identifier": "abc123",
    -  "document_name": "abc123",
    -  "link_id": "4",
    +  "document_identifier": "xyz789",
    +  "document_name": "xyz789",
    +  "link_id": 4,
       "reference_document_url": "xyz789"
     }
     
    @@ -56288,23 +57517,23 @@
    Fields
    Example
    {
       "available_shipping_methods": [AvailableShippingMethod],
    -  "city": "abc123",
    +  "city": "xyz789",
       "company": "abc123",
       "country": NegotiableQuoteAddressCountry,
       "custom_attributes": [AttributeValueInterface],
    -  "customer_address_uid": 4,
    -  "fax": "xyz789",
    +  "customer_address_uid": "4",
    +  "fax": "abc123",
       "firstname": "xyz789",
       "lastname": "abc123",
    -  "middlename": "abc123",
    -  "postcode": "abc123",
    +  "middlename": "xyz789",
    +  "postcode": "xyz789",
       "prefix": "xyz789",
       "region": NegotiableQuoteAddressRegion,
       "selected_shipping_method": SelectedShippingMethod,
    -  "street": ["abc123"],
    -  "suffix": "abc123",
    +  "street": ["xyz789"],
    +  "suffix": "xyz789",
       "telephone": "abc123",
    -  "uid": 4,
    +  "uid": "4",
       "vat_id": "abc123"
     }
     
    @@ -56702,16 +57931,16 @@
    Example
    {
       "buyer": NegotiableQuoteUser,
       "comments": [NegotiableQuoteComment],
    -  "created_at": "xyz789",
    +  "created_at": "abc123",
       "expiration_date": "xyz789",
       "history": [NegotiableQuoteHistoryEntry],
       "historyV2": [NegotiableQuoteTemplateHistoryEntry],
    -  "is_min_max_qty_used": true,
    -  "is_virtual": true,
    +  "is_min_max_qty_used": false,
    +  "is_virtual": false,
       "items": [CartItemInterface],
       "max_order_commitment": 987,
       "min_order_commitment": 123,
    -  "name": "xyz789",
    +  "name": "abc123",
       "notifications": [QuoteTemplateNotificationMessage],
       "prices": CartPrices,
       "reference_document_links": [
    @@ -56719,11 +57948,11 @@ 
    Example
    ], "sales_rep_name": "abc123", "shipping_addresses": [NegotiableQuoteShippingAddress], - "status": "xyz789", + "status": "abc123", "template_id": "4", "total_quantity": 123.45, - "uid": 4, - "updated_at": "xyz789" + "uid": "4", + "updated_at": "abc123" }
    @@ -56910,24 +58139,24 @@
    Fields
    Example
    {
    -  "activated_at": "abc123",
    +  "activated_at": "xyz789",
       "company_name": "xyz789",
       "created_at": "abc123",
       "expiration_date": "xyz789",
    -  "is_min_max_qty_used": true,
    +  "is_min_max_qty_used": false,
       "last_ordered_at": "abc123",
       "last_shared_at": "xyz789",
       "max_order_commitment": 123,
       "min_negotiated_grand_total": 123.45,
       "min_order_commitment": 123,
    -  "name": "abc123",
    -  "orders_placed": 123,
    +  "name": "xyz789",
    +  "orders_placed": 987,
       "prices": CartPrices,
    -  "sales_rep_name": "abc123",
    +  "sales_rep_name": "xyz789",
       "state": "abc123",
    -  "status": "xyz789",
    -  "submitted_by": "xyz789",
    -  "template_id": "4",
    +  "status": "abc123",
    +  "submitted_by": "abc123",
    +  "template_id": 4,
       "uid": "4",
       "updated_at": "xyz789"
     }
    @@ -57067,7 +58296,7 @@ 
    Example
    "change_type": "CREATED", "changes": NegotiableQuoteTemplateHistoryChanges, "created_at": "abc123", - "uid": "4" + "uid": 4 }
    @@ -57114,8 +58343,8 @@
    Fields
    Example
    {
    -  "new_status": "xyz789",
    -  "old_status": "abc123"
    +  "new_status": "abc123",
    +  "old_status": "xyz789"
     }
     
    @@ -57215,7 +58444,12 @@
    Fields
    Example
    -
    {"item_id": 4, "max_qty": 987.65, "min_qty": 123.45, "quantity": 987.65}
    +                  
    {
    +  "item_id": "4",
    +  "max_qty": 987.65,
    +  "min_qty": 123.45,
    +  "quantity": 987.65
    +}
     
    @@ -57275,8 +58509,8 @@
    Fields
    Example
    {
    -  "document_identifier": "xyz789",
    -  "document_name": "xyz789",
    +  "document_identifier": "abc123",
    +  "document_name": "abc123",
       "link_id": 4,
       "reference_document_url": "abc123"
     }
    @@ -57334,8 +58568,8 @@ 
    Fields
    Example
    {
       "address": NegotiableQuoteAddressInput,
    -  "customer_address_uid": 4,
    -  "customer_notes": "xyz789"
    +  "customer_address_uid": "4",
    +  "customer_notes": "abc123"
     }
     
    @@ -57485,7 +58719,7 @@
    Example
    "items": [NegotiableQuoteTemplateGridItem], "page_info": SearchResultPageInfo, "sort_fields": SortFields, - "total_count": 987 + "total_count": 123 }
    @@ -57579,7 +58813,7 @@
    Fields
    Example
    -
    {"quote_uid": 4}
    +                  
    {"quote_uid": "4"}
     
    @@ -57625,8 +58859,8 @@
    Fields
    Example
    {
    -  "firstname": "abc123",
    -  "lastname": "abc123"
    +  "firstname": "xyz789",
    +  "lastname": "xyz789"
     }
     
    @@ -57732,7 +58966,10 @@
    Fields
    Example
    -
    {"message": "xyz789", "uid": 4}
    +                  
    {
    +  "message": "abc123",
    +  "uid": "4"
    +}
     
    @@ -57864,7 +59101,7 @@
    Fields
    Example
    {
    -  "backend_integration_url": "abc123",
    +  "backend_integration_url": "xyz789",
       "custom_config": [CustomConfigKeyValue]
     }
     
    @@ -58019,7 +59256,7 @@
    Fields
    Example
    -
    {"order_number": "xyz789"}
    +                  
    {"order_number": "abc123"}
     
    @@ -58205,21 +59442,21 @@
    attributeCodes
    Example
    {
       "city": "abc123",
    -  "company": "abc123",
    +  "company": "xyz789",
       "country_code": "AF",
       "custom_attributesV2": [AttributeValueInterface],
    -  "fax": "abc123",
    +  "fax": "xyz789",
       "firstname": "abc123",
       "lastname": "abc123",
    -  "middlename": "xyz789",
    +  "middlename": "abc123",
       "postcode": "xyz789",
    -  "prefix": "abc123",
    -  "region": "abc123",
    +  "prefix": "xyz789",
    +  "region": "xyz789",
       "region_id": "4",
       "street": ["abc123"],
    -  "suffix": "abc123",
    +  "suffix": "xyz789",
       "telephone": "xyz789",
    -  "vat_id": "abc123"
    +  "vat_id": "xyz789"
     }
     
    @@ -58277,9 +59514,9 @@
    Fields
    Example
    {
    -  "firstname": "xyz789",
    -  "lastname": "xyz789",
    -  "middlename": "abc123",
    +  "firstname": "abc123",
    +  "lastname": "abc123",
    +  "middlename": "xyz789",
       "prefix": "abc123",
       "suffix": "xyz789"
     }
    @@ -58436,23 +59673,23 @@ 
    Example
    "entered_options": [OrderItemOption], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "id": "4", + "id": 4, "prices": OrderItemPrices, "product": ProductInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, "product_sku": "xyz789", - "product_type": "xyz789", - "product_url_key": "abc123", + "product_type": "abc123", + "product_url_key": "xyz789", "quantity_canceled": 123.45, - "quantity_invoiced": 987.65, + "quantity_invoiced": 123.45, "quantity_ordered": 123.45, "quantity_refunded": 987.65, "quantity_return_requested": 123.45, "quantity_returned": 987.65, - "quantity_shipped": 987.65, + "quantity_shipped": 123.45, "selected_options": [OrderItemOption], - "status": "xyz789" + "status": "abc123" }
    @@ -58648,23 +59885,23 @@
    Example
    "entered_options": [OrderItemOption], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "id": "4", + "id": 4, "prices": OrderItemPrices, "product": ProductInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, "product_sku": "xyz789", - "product_type": "xyz789", - "product_url_key": "xyz789", - "quantity_canceled": 123.45, + "product_type": "abc123", + "product_url_key": "abc123", + "quantity_canceled": 987.65, "quantity_invoiced": 123.45, - "quantity_ordered": 987.65, - "quantity_refunded": 123.45, - "quantity_return_requested": 987.65, + "quantity_ordered": 123.45, + "quantity_refunded": 987.65, + "quantity_return_requested": 123.45, "quantity_returned": 123.45, - "quantity_shipped": 123.45, + "quantity_shipped": 987.65, "selected_options": [OrderItemOption], - "status": "abc123" + "status": "xyz789" }
    @@ -58711,8 +59948,8 @@
    Fields
    Example
    {
    -  "label": "xyz789",
    -  "value": "abc123"
    +  "label": "abc123",
    +  "value": "xyz789"
     }
     
    @@ -58864,7 +60101,7 @@
    Fields
    Example
    {
       "additional_data": [KeyValue],
    -  "name": "xyz789",
    +  "name": "abc123",
       "type": "abc123"
     }
     
    @@ -58928,9 +60165,9 @@
    Fields
    Example
    {
       "comments": [SalesCommentItem],
    -  "id": 4,
    +  "id": "4",
       "items": [ShipmentItemInterface],
    -  "number": "abc123",
    +  "number": "xyz789",
       "tracking": [ShipmentTracking]
     }
     
    @@ -58973,7 +60210,7 @@
    Fields
    Example
    -
    {"token": "abc123"}
    +                  
    {"token": "xyz789"}
     
    @@ -59144,7 +60381,7 @@
    Fields
    Example
    -
    {"currentPage": 123, "pageSize": 987, "totalPages": 987}
    +                  
    {"currentPage": 123, "pageSize": 123, "totalPages": 123}
     
    @@ -59223,6 +60460,338 @@
    Values
    Example
    "CMS"
    +
    +
    + + back to top + +
    +
    +
    + Types +
    +

    PayByLinkInput

    +
    +
    +
    +
    Description
    +

    Defines optional inputs for the Pay By Link payment method.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + +
    Input FieldDescription
    + recipient_email - String + Email address of the person who should receive the payment link. When omitted, the link is sent to the order customer's email.
    +
    +
    +
    +
    +
    Example
    +
    {"recipient_email": "abc123"}
    +
    +
    +
    + back to top +
    +
    +
    +
    + Types +
    +

    PayByLinkOrder

    +
    +
    +
    +
    Description
    +

    Read-only projection of the pending order behind a Pay By Link token. Returned by payByLinkOrder so the EDS payment page can render the order summary before collecting payment.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Field NameDescription
    billing_address - PayByLinkOrderAddress + The order's billing address. Read-only on the payment page.
    customer_email - String! + Email address the payment link was sent to.
    expires_at - String! + UTC Y-m-d H:i:s timestamp after which the token is no longer redeemable.
    items - [PayByLinkOrderItem]! + Top-level line items on the order. Resolve product detail (image, description, variant) from the Catalog Service using sku.
    shipping_address - PayByLinkOrderAddress + The order's shipping address. Read-only on the payment page.
    totals - PayByLinkOrderTotals! + Money totals for the order.
    +
    +
    +
    +
    +
    Example
    +
    {
    +  "billing_address": PayByLinkOrderAddress,
    +  "customer_email": "xyz789",
    +  "expires_at": "abc123",
    +  "items": [PayByLinkOrderItem],
    +  "shipping_address": PayByLinkOrderAddress,
    +  "totals": PayByLinkOrderTotals
    +}
    +
    +
    +
    + back to top +
    +
    +
    +
    + Types +
    +

    PayByLinkOrderAddress

    +
    +
    +
    +
    Description
    +

    Read-only address attached to a Pay By Link order.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Field NameDescription
    city - String! + +
    country_code - String! + +
    firstname - String! + +
    lastname - String! + +
    postcode - String + +
    region - String + +
    region_code - String + +
    street - [String]! + +
    telephone - String + +
    +
    +
    +
    +
    +
    Example
    +
    {
    +  "city": "xyz789",
    +  "country_code": "abc123",
    +  "firstname": "abc123",
    +  "lastname": "abc123",
    +  "postcode": "xyz789",
    +  "region": "xyz789",
    +  "region_code": "abc123",
    +  "street": ["abc123"],
    +  "telephone": "abc123"
    +}
    +
    +
    +
    + back to top +
    +
    +
    +
    + Types +
    +

    PayByLinkOrderItem

    +
    +
    +
    +
    Description
    +

    A single line item on a Pay By Link order.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Field NameDescription
    name - String! + Product name captured on the order at placement time.
    price - Money! + Unit price for the item, including currency.
    quantity - Float! + Quantity ordered.
    sku - String! + SKU captured on the order line. Use this to resolve product detail from the Catalog Service.
    +
    +
    +
    +
    +
    Example
    +
    {
    +  "name": "xyz789",
    +  "price": Money,
    +  "quantity": 987.65,
    +  "sku": "abc123"
    +}
    +
    +
    +
    + back to top +
    +
    +
    +
    + Types +
    +

    PayByLinkOrderTotals

    +
    +
    +
    +
    Description
    +

    Order-level money totals.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Field NameDescription
    grand_total - Money! + Amount the customer will be charged.
    shipping - Money! + Shipping amount.
    subtotal - Money! + Sum of line item prices before shipping/tax/discount.
    tax - Money! + Tax amount.
    +
    +
    +
    +
    +
    Example
    +
    {
    +  "grand_total": Money,
    +  "shipping": Money,
    +  "subtotal": Money,
    +  "tax": Money
    +}
     
    @@ -59375,11 +60944,11 @@
    Possible Types
    Example
    {
    -  "code": "xyz789",
    +  "code": "abc123",
       "is_visible": false,
       "payment_intent": "abc123",
       "sdk_params": [SDKParams],
    -  "sort_order": "abc123",
    +  "sort_order": "xyz789",
       "title": "abc123"
     }
     
    @@ -59557,6 +61126,12 @@
    Fields
    The internal name for the payment method. + + + paybylink - PayByLinkInput + + Pay By Link payment method options. + payment_services_paypal_apple_pay - ApplePayMethodInput @@ -59609,13 +61184,14 @@
    Example
    {
       "additional_data": [PaymentAttributeInput],
       "code": "abc123",
    +  "paybylink": PayByLinkInput,
       "payment_services_paypal_apple_pay": ApplePayMethodInput,
       "payment_services_paypal_fastlane": FastlaneMethodInput,
       "payment_services_paypal_google_pay": GooglePayMethodInput,
       "payment_services_paypal_hosted_fields": HostedFieldsInput,
       "payment_services_paypal_smart_buttons": SmartButtonMethodInput,
       "payment_services_paypal_vault": VaultMethodInput,
    -  "purchase_order_number": "abc123"
    +  "purchase_order_number": "xyz789"
     }
     
    @@ -59893,9 +61469,9 @@
    Fields
    Example
    {
    -  "details": "abc123",
    +  "details": "xyz789",
       "payment_method_code": "abc123",
    -  "public_hash": "xyz789",
    +  "public_hash": "abc123",
       "type": "card"
     }
     
    @@ -60021,7 +61597,7 @@
    Possible Types
    Example
    -
    {"weight": 123.45}
    +                  
    {"weight": 987.65}
     
    @@ -60147,20 +61723,20 @@
    Fields
    Example
    {
    -  "city": "xyz789",
    -  "contact_name": "abc123",
    -  "country_id": "abc123",
    +  "city": "abc123",
    +  "contact_name": "xyz789",
    +  "country_id": "xyz789",
       "description": "xyz789",
    -  "email": "xyz789",
    -  "fax": "xyz789",
    -  "latitude": 987.65,
    +  "email": "abc123",
    +  "fax": "abc123",
    +  "latitude": 123.45,
       "longitude": 123.45,
    -  "name": "xyz789",
    -  "phone": "xyz789",
    +  "name": "abc123",
    +  "phone": "abc123",
       "pickup_location_code": "abc123",
       "postcode": "abc123",
    -  "region": "abc123",
    -  "region_id": 123,
    +  "region": "xyz789",
    +  "region_id": 987,
       "street": "xyz789"
     }
     
    @@ -60632,7 +62208,7 @@
    Fields
    Example
    {
       "code": "CART_NOT_FOUND",
    -  "message": "abc123"
    +  "message": "xyz789"
     }
     
    @@ -60740,7 +62316,7 @@
    Fields
    Example
    -
    {"purchase_order_uid": 4}
    +                  
    {"purchase_order_uid": "4"}
     
    @@ -60821,7 +62397,7 @@
    Fields
    Example
    -
    {"cart_id": "xyz789"}
    +                  
    {"cart_id": "abc123"}
     
    @@ -61043,7 +62619,7 @@
    Fields
    Example
    -
    {"amount": 123.45, "code": "xyz789"}
    +                  
    {"amount": 123.45, "code": "abc123"}
     
    @@ -61094,8 +62670,8 @@
    Fields
    Example
    {
    -  "discount_percentage": 987.65,
    -  "main_final_price": 123.45,
    +  "discount_percentage": 123.45,
    +  "main_final_price": 987.65,
       "main_price": 987.65
     }
     
    @@ -61326,7 +62902,7 @@
    Fields
    Example
    -
    {"sku": "abc123"}
    +                  
    {"sku": "xyz789"}
     
    @@ -61369,7 +62945,7 @@
    Fields
    Example
    -
    {"message": "abc123", "success": true}
    +                  
    {"message": "xyz789", "success": false}
     
    @@ -61416,7 +62992,7 @@
    Fields
    Example
    {
       "code": "abc123",
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -61469,10 +63045,10 @@
    Fields
    Example
    {
    -  "attribute_type": "abc123",
    -  "code": "4",
    +  "attribute_type": "xyz789",
    +  "code": 4,
       "url": "xyz789",
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -61566,7 +63142,7 @@
    Fields
    Example
    -
    {"amount_off": 123.45, "percent_off": 123.45}
    +                  
    {"amount_off": 987.65, "percent_off": 123.45}
     
    @@ -61622,10 +63198,10 @@
    Fields
    Example
    {
    -  "disabled": false,
    +  "disabled": true,
       "label": "abc123",
       "position": 123,
    -  "url": "abc123"
    +  "url": "xyz789"
     }
     
    @@ -62003,27 +63579,27 @@
    Example
    {
       "canonical_url": "abc123",
       "categories": [CategoryInterface],
    -  "country_of_manufacture": "xyz789",
    +  "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    -  "gift_message_available": true,
    +  "gift_message_available": false,
       "gift_wrapping_available": false,
       "gift_wrapping_price": Money,
       "image": ProductImage,
       "is_returnable": "xyz789",
    -  "manufacturer": 123,
    +  "manufacturer": 987,
       "max_sale_qty": 987.65,
       "media_gallery": [MediaGalleryInterface],
    -  "meta_description": "abc123",
    -  "meta_keyword": "xyz789",
    +  "meta_description": "xyz789",
    +  "meta_keyword": "abc123",
       "meta_title": "abc123",
    -  "min_sale_qty": 987.65,
    +  "min_sale_qty": 123.45,
       "name": "abc123",
    -  "new_from_date": "xyz789",
    +  "new_from_date": "abc123",
       "new_to_date": "xyz789",
       "only_x_left_in_stock": 123.45,
    -  "options_container": "abc123",
    +  "options_container": "xyz789",
       "price_range": PriceRange,
       "price_tiers": [TierPrice],
       "product_links": [ProductLinksInterface],
    @@ -62032,12 +63608,12 @@ 
    Example
    "short_description": ComplexTextValue, "sku": "abc123", "small_image": ProductImage, - "special_price": 123.45, - "special_to_date": "xyz789", + "special_price": 987.65, + "special_to_date": "abc123", "stock_status": "IN_STOCK", "swatch_image": "xyz789", "thumbnail": ProductImage, - "uid": 4, + "uid": "4", "upsell_products": [ProductInterface], "url_key": "xyz789" } @@ -62101,11 +63677,11 @@
    Fields
    Example
    {
    -  "link_type": "xyz789",
    +  "link_type": "abc123",
       "linked_product_sku": "abc123",
    -  "linked_product_type": "abc123",
    +  "linked_product_type": "xyz789",
       "position": 123,
    -  "sku": "xyz789"
    +  "sku": "abc123"
     }
     
    @@ -62184,10 +63760,10 @@
    Possible Types
    Example
    {
    -  "link_type": "abc123",
    -  "linked_product_sku": "xyz789",
    +  "link_type": "xyz789",
    +  "linked_product_sku": "abc123",
       "linked_product_type": "abc123",
    -  "position": 123,
    +  "position": 987,
       "sku": "xyz789"
     }
     
    @@ -62240,9 +63816,9 @@
    Fields
    Example
    {
    -  "asset_id": "xyz789",
    -  "media_type": "xyz789",
    -  "media_url": "xyz789"
    +  "asset_id": "abc123",
    +  "media_type": "abc123",
    +  "media_url": "abc123"
     }
     
    @@ -62294,9 +63870,9 @@
    Fields
    Example
    {
    -  "media_type": "xyz789",
    -  "video_asset_id": "abc123",
    -  "video_media_url": "abc123"
    +  "media_type": "abc123",
    +  "video_asset_id": "xyz789",
    +  "video_media_url": "xyz789"
     }
     
    @@ -62363,12 +63939,12 @@
    Fields
    Example
    {
    -  "media_type": "abc123",
    -  "video_description": "abc123",
    +  "media_type": "xyz789",
    +  "video_description": "xyz789",
       "video_metadata": "xyz789",
       "video_provider": "abc123",
       "video_title": "abc123",
    -  "video_url": "abc123"
    +  "video_url": "xyz789"
     }
     
    @@ -62557,8 +64133,8 @@
    Example
    "facets": [Aggregation], "items": [ProductSearchItem], "page_info": SearchResultPageInfo, - "related_terms": ["abc123"], - "suggestions": ["abc123"], + "related_terms": ["xyz789"], + "suggestions": ["xyz789"], "total_count": 987, "warnings": [ProductSearchWarning] } @@ -62608,7 +64184,7 @@
    Fields
    Example
    -
    {"attribute": "abc123", "direction": "ASC"}
    +                  
    {"attribute": "xyz789", "direction": "ASC"}
     
    @@ -62766,10 +64342,10 @@
    Fields
    Example
    {
    -  "disabled": true,
    +  "disabled": false,
       "label": "abc123",
       "position": 123,
    -  "url": "xyz789",
    +  "url": "abc123",
       "video_content": ProductMediaGalleryEntriesVideoContent
     }
     
    @@ -63008,29 +64584,29 @@
    Possible Types
    Example
    {
    -  "addToCartAllowed": false,
    -  "inStock": true,
    +  "addToCartAllowed": true,
    +  "inStock": false,
       "lowStock": true,
       "attributes": [ProductViewAttribute],
    -  "description": "xyz789",
    -  "id": "4",
    +  "description": "abc123",
    +  "id": 4,
       "images": [ProductViewImage],
       "videos": [ProductViewVideo],
       "lastModifiedAt": "2007-12-03T10:15:30Z",
       "metaDescription": "xyz789",
    -  "metaKeyword": "xyz789",
    +  "metaKeyword": "abc123",
       "metaTitle": "abc123",
    -  "name": "abc123",
    +  "name": "xyz789",
       "shortDescription": "xyz789",
       "inputOptions": [ProductViewInputOption],
       "sku": "abc123",
    -  "externalId": "abc123",
    +  "externalId": "xyz789",
       "url": "xyz789",
       "urlKey": "xyz789",
       "links": [ProductViewLink],
       "categories": [CategoryProductView],
       "queryType": "abc123",
    -  "visibility": "xyz789"
    +  "visibility": "abc123"
     }
     
    @@ -63087,7 +64663,7 @@
    Fields
    Example
    {
    -  "label": "abc123",
    +  "label": "xyz789",
       "name": "abc123",
       "roles": ["xyz789"],
       "value": {}
    @@ -64367,7 +65943,7 @@ 
    Fields
    Example
    {
    -  "label": "abc123",
    +  "label": "xyz789",
       "roles": ["abc123"],
       "url": "xyz789"
     }
    @@ -64458,14 +66034,14 @@ 
    Example
    {
       "id": 4,
       "title": "abc123",
    -  "required": true,
    -  "type": "abc123",
    +  "required": false,
    +  "type": "xyz789",
       "markupAmount": 987.65,
    -  "suffix": "abc123",
    +  "suffix": "xyz789",
       "sortOrder": 123,
       "range": ProductViewInputOptionRange,
       "imageSize": ProductViewInputOptionImageSize,
    -  "fileExtensions": "xyz789"
    +  "fileExtensions": "abc123"
     }
     
    @@ -64511,7 +66087,7 @@
    Fields
    Example
    -
    {"width": 987, "height": 987}
    +                  
    {"width": 987, "height": 123}
     
    @@ -64710,9 +66286,9 @@
    Fields
    Example
    {
    -  "id": 4,
    +  "id": "4",
       "multi": true,
    -  "required": false,
    +  "required": true,
       "title": "xyz789",
       "values": [ProductViewOptionValue]
     }
    @@ -64848,8 +66424,8 @@ 
    Fields
    Example
    {
       "id": 4,
    -  "title": "abc123",
    -  "inStock": true
    +  "title": "xyz789",
    +  "inStock": false
     }
     
    @@ -64916,11 +66492,11 @@
    Fields
    Example
    {
    -  "id": 4,
    +  "id": "4",
       "isDefault": true,
       "product": SimpleProductView,
       "quantity": 123.45,
    -  "title": "xyz789",
    +  "title": "abc123",
       "inStock": true
     }
     
    @@ -64983,11 +66559,11 @@
    Fields
    Example
    {
    -  "id": "4",
    -  "title": "xyz789",
    +  "id": 4,
    +  "title": "abc123",
       "type": "TEXT",
       "value": "abc123",
    -  "inStock": false
    +  "inStock": true
     }
     
    @@ -65176,7 +66752,7 @@
    Fields
    Example
    -
    {"in": [123.45]}
    +                  
    {"in": [987.65]}
     
    @@ -65269,7 +66845,7 @@
    Fields
    Example
    -
    {"gte": 123.45, "lt": 987.65}
    +                  
    {"gte": 987.65, "lt": 123.45}
     
    @@ -65315,7 +66891,7 @@
    Fields
    Example
    {
    -  "selections": ["xyz789"],
    +  "selections": ["abc123"],
       "product": ProductView
     }
     
    @@ -65364,7 +66940,7 @@
    Fields
    Example
    {
       "variants": [ProductViewVariant],
    -  "cursor": "abc123"
    +  "cursor": "xyz789"
     }
     
    @@ -65576,10 +67152,10 @@
    Example
    "approval_flow": [PurchaseOrderRuleApprovalFlow], "available_actions": ["REJECT"], "comments": [PurchaseOrderComment], - "created_at": "xyz789", + "created_at": "abc123", "created_by": Customer, "history_log": [PurchaseOrderHistoryItem], - "number": "abc123", + "number": "xyz789", "order": CustomerOrder, "quote": Cart, "status": "PENDING", @@ -65906,7 +67482,7 @@
    Example
    "created_at": "abc123", "created_by": "abc123", "description": "abc123", - "name": "xyz789", + "name": "abc123", "status": "ENABLED", "uid": "4", "updated_at": "abc123" @@ -66213,10 +67789,10 @@
    Fields
    Example
    {
       "applies_to": [4],
    -  "approvers": [4],
    +  "approvers": ["4"],
       "condition": CreatePurchaseOrderApprovalRuleConditionInput,
    -  "description": "xyz789",
    -  "name": "xyz789",
    +  "description": "abc123",
    +  "name": "abc123",
       "status": "ENABLED"
     }
     
    @@ -66481,8 +68057,8 @@
    Example
    {
       "author": Customer,
       "created_at": "abc123",
    -  "text": "xyz789",
    -  "uid": "4"
    +  "text": "abc123",
    +  "uid": 4
     }
     
    @@ -66606,7 +68182,7 @@
    Fields
    Example
    {
       "activity": "abc123",
    -  "created_at": "abc123",
    +  "created_at": "xyz789",
       "message": "xyz789",
       "uid": 4
     }
    @@ -66962,7 +68538,7 @@ 
    Example
    {
       "company_purchase_orders": false,
       "created_date": FilterRangeTypeInput,
    -  "my_approvals": true,
    +  "my_approvals": false,
       "require_my_approval": false,
       "status": "PENDING"
     }
    @@ -67106,7 +68682,7 @@ 
    Fields
    Example
    {
    -  "expiration_date": "xyz789",
    +  "expiration_date": "abc123",
       "template_id": "4"
     }
     
    @@ -67168,10 +68744,10 @@
    Fields
    Example
    {
    -  "item_id": "4",
    +  "item_id": 4,
       "item_uid": 4,
    -  "note": "abc123",
    -  "templateId": "4"
    +  "note": "xyz789",
    +  "templateId": 4
     }
     
    @@ -67218,8 +68794,8 @@
    Fields
    Example
    {
    -  "message": "xyz789",
    -  "type": "xyz789"
    +  "message": "abc123",
    +  "type": "abc123"
     }
     
    @@ -67276,10 +68852,10 @@
    Fields
    Example
    {
    -  "count": 987,
    +  "count": 123,
       "from": 123.45,
       "title": "xyz789",
    -  "to": 987.65
    +  "to": 123.45
     }
     
    @@ -67429,7 +69005,7 @@
    Fields
    Example
    -
    {"from": 987.65, "to": 123.45}
    +                  
    {"from": 123.45, "to": 123.45}
     
    @@ -67472,7 +69048,7 @@
    Fields
    Example
    {
       "configurations": ReCaptchaConfiguration,
    -  "is_enabled": true
    +  "is_enabled": false
     }
     
    @@ -67550,14 +69126,14 @@
    Fields
    Example
    {
    -  "badge_position": "xyz789",
    -  "language_code": "abc123",
    -  "minimum_score": 987.65,
    +  "badge_position": "abc123",
    +  "language_code": "xyz789",
    +  "minimum_score": 123.45,
       "re_captcha_type": "INVISIBLE",
    -  "technical_failure_message": "abc123",
    -  "theme": "abc123",
    -  "validation_failure_message": "abc123",
    -  "website_key": "abc123"
    +  "technical_failure_message": "xyz789",
    +  "theme": "xyz789",
    +  "validation_failure_message": "xyz789",
    +  "website_key": "xyz789"
     }
     
    @@ -67635,12 +69211,12 @@
    Fields
    Example
    {
       "badge_position": "xyz789",
    -  "failure_message": "abc123",
    +  "failure_message": "xyz789",
       "forms": ["PLACE_ORDER"],
       "is_enabled": false,
    -  "language_code": "abc123",
    -  "minimum_score": 123.45,
    -  "theme": "abc123",
    +  "language_code": "xyz789",
    +  "minimum_score": 987.65,
    +  "theme": "xyz789",
       "website_key": "xyz789"
     }
     
    @@ -67931,6 +69507,11 @@
    Fields
    Name of the preconfigured unit + + userError - String + + User error message if the unit could not be fully resolved (e.g. required currentSku was not provided) +
    @@ -67939,14 +69520,15 @@
    Fields
    Example
    {
    -  "displayOrder": 123,
    -  "pageType": "xyz789",
    +  "displayOrder": 987,
    +  "pageType": "abc123",
       "productsView": [ProductView],
    -  "storefrontLabel": "abc123",
    -  "totalProducts": 123,
    +  "storefrontLabel": "xyz789",
    +  "totalProducts": 987,
       "typeId": "abc123",
       "unitId": "xyz789",
    -  "unitName": "xyz789"
    +  "unitName": "xyz789",
    +  "userError": "abc123"
     }
     
    @@ -67992,7 +69574,7 @@
    Fields
    Example
    -
    {"results": [RecommendationUnit], "totalResults": 123}
    +                  
    {"results": [RecommendationUnit], "totalResults": 987}
     
    @@ -68039,9 +69621,9 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    +  "code": "abc123",
       "id": 987,
    -  "name": "xyz789"
    +  "name": "abc123"
     }
     
    @@ -68083,7 +69665,7 @@
    Fields
    Example
    -
    {"cart_id": "abc123"}
    +                  
    {"cart_id": "xyz789"}
     
    @@ -68171,7 +69753,7 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    +  "cart_id": "abc123",
       "coupon_codes": ["abc123"]
     }
     
    @@ -68221,8 +69803,8 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    -  "gift_card_code": "xyz789"
    +  "cart_id": "xyz789",
    +  "gift_card_code": "abc123"
     }
     
    @@ -68343,7 +69925,7 @@
    Fields
    Example
    -
    {"success": false}
    +                  
    {"success": true}
     
    @@ -68430,7 +70012,7 @@
    Fields
    Example
    -
    {"cart_id": "xyz789", "cart_item_uid": 4}
    +                  
    {"cart_id": "abc123", "cart_item_uid": 4}
     
    @@ -68517,7 +70099,7 @@
    Fields
    Example
    -
    {"quote_item_uids": [4], "quote_uid": 4}
    +                  
    {"quote_item_uids": [4], "quote_uid": "4"}
     
    @@ -68604,7 +70186,7 @@
    Fields
    Example
    -
    {"item_uids": [4], "template_id": "4"}
    +                  
    {"item_uids": ["4"], "template_id": 4}
     
    @@ -68651,7 +70233,10 @@
    Fields
    Example
    -
    {"products": [4], "uid": "4"}
    +                  
    {
    +  "products": ["4"],
    +  "uid": "4"
    +}
     
    @@ -68861,7 +70446,7 @@
    Fields
    Example
    -
    {"cart_id": "abc123"}
    +                  
    {"cart_id": "xyz789"}
     
    @@ -68956,8 +70541,8 @@
    Fields
    Example
    {
       "quote_comment": "xyz789",
    -  "quote_name": "xyz789",
    -  "quote_uid": "4"
    +  "quote_name": "abc123",
    +  "quote_uid": 4
     }
     
    @@ -69107,9 +70692,9 @@
    Fields
    Example
    {
       "comment_text": "xyz789",
    -  "contact_email": "xyz789",
    +  "contact_email": "abc123",
       "items": [RequestReturnItemInput],
    -  "token": "xyz789"
    +  "token": "abc123"
     }
     
    @@ -69170,10 +70755,10 @@
    Fields
    Example
    {
    -  "cart_id": 4,
    +  "cart_id": "4",
       "comment": NegotiableQuoteCommentInput,
    -  "is_draft": true,
    -  "quote_name": "abc123"
    +  "is_draft": false,
    +  "quote_name": "xyz789"
     }
     
    @@ -69255,7 +70840,7 @@
    Fields
    Example
    -
    {"cart_id": "4"}
    +                  
    {"cart_id": 4}
     
    @@ -69316,9 +70901,9 @@
    Fields
    Example
    {
       "comment_text": "abc123",
    -  "contact_email": "xyz789",
    +  "contact_email": "abc123",
       "items": [RequestReturnItemInput],
    -  "order_uid": 4
    +  "order_uid": "4"
     }
     
    @@ -69539,7 +71124,7 @@
    pageSize
    Example
    {
    -  "description": "abc123",
    +  "description": "xyz789",
       "items": RequistionListItems,
       "items_count": 987,
       "name": "xyz789",
    @@ -69771,10 +71356,10 @@ 
    Fields
    Example
    {
       "entered_options": [EnteredOptionInput],
    -  "parent_sku": "abc123",
    +  "parent_sku": "xyz789",
       "quantity": 987.65,
    -  "selected_options": ["xyz789"],
    -  "sku": "abc123"
    +  "selected_options": ["abc123"],
    +  "sku": "xyz789"
     }
     
    @@ -69978,7 +71563,7 @@
    Example
    {
       "items": [RequisitionListItemInterface],
       "page_info": SearchResultPageInfo,
    -  "total_pages": 987
    +  "total_pages": 123
     }
     
    @@ -70067,7 +71652,7 @@
    Example
    {
       "available_shipping_carriers": [ReturnShippingCarrier],
       "comments": [ReturnComment],
    -  "created_at": "abc123",
    +  "created_at": "xyz789",
       "customer": ReturnCustomer,
       "items": [ReturnItem],
       "number": "abc123",
    @@ -70134,7 +71719,7 @@ 
    Example
    "author_name": "abc123", "created_at": "xyz789", "text": "xyz789", - "uid": "4" + "uid": 4 }
    @@ -70186,8 +71771,8 @@
    Fields
    Example
    {
    -  "email": "abc123",
    -  "firstname": "xyz789",
    +  "email": "xyz789",
    +  "firstname": "abc123",
       "lastname": "xyz789"
     }
     
    @@ -70257,8 +71842,8 @@
    Example
    {
       "custom_attributesV2": [AttributeValueInterface],
       "order_item": OrderItemInterface,
    -  "quantity": 987.65,
    -  "request_quantity": 123.45,
    +  "quantity": 123.45,
    +  "request_quantity": 987.65,
       "status": "PENDING",
       "uid": "4"
     }
    @@ -70362,18 +71947,18 @@ 
    Fields
    Example
    {
    -  "code": 4,
    +  "code": "4",
       "default_value": "xyz789",
       "entity_type": "CATALOG_PRODUCT",
       "frontend_class": "abc123",
       "frontend_input": "BOOLEAN",
       "input_filter": "NONE",
       "is_required": false,
    -  "is_unique": true,
    -  "label": "abc123",
    +  "is_unique": false,
    +  "label": "xyz789",
       "multiline_count": 987,
       "options": [CustomAttributeOptionInterface],
    -  "sort_order": 987,
    +  "sort_order": 123,
       "validate_rules": [ValidationRule]
     }
     
    @@ -70580,13 +72165,13 @@
    Fields
    Example
    {
    -  "city": "abc123",
    -  "contact_name": "abc123",
    +  "city": "xyz789",
    +  "contact_name": "xyz789",
       "country": Country,
    -  "postcode": "xyz789",
    +  "postcode": "abc123",
       "region": Region,
       "street": ["xyz789"],
    -  "telephone": "xyz789"
    +  "telephone": "abc123"
     }
     
    @@ -70632,7 +72217,10 @@
    Fields
    Example
    -
    {"label": "abc123", "uid": 4}
    +                  
    {
    +  "label": "xyz789",
    +  "uid": "4"
    +}
     
    @@ -70690,8 +72278,8 @@
    Example
    {
       "carrier": ReturnShippingCarrier,
       "status": ReturnShippingTrackingStatus,
    -  "tracking_number": "xyz789",
    -  "uid": 4
    +  "tracking_number": "abc123",
    +  "uid": "4"
     }
     
    @@ -70737,7 +72325,7 @@
    Fields
    Example
    -
    {"text": "abc123", "type": "INFORMATION"}
    +                  
    {"text": "xyz789", "type": "INFORMATION"}
     
    @@ -70957,7 +72545,7 @@
    Example
    {
       "items": [Return],
       "page_info": SearchResultPageInfo,
    -  "total_count": 123
    +  "total_count": 987
     }
     
    @@ -71099,7 +72687,7 @@
    Fields
    Example
    -
    {"money": Money, "points": 987.65}
    +                  
    {"money": Money, "points": 123.45}
     
    @@ -71156,9 +72744,9 @@
    Fields
    Example
    {
       "balance": RewardPointsAmount,
    -  "change_reason": "abc123",
    -  "date": "abc123",
    -  "points_change": 123.45
    +  "change_reason": "xyz789",
    +  "date": "xyz789",
    +  "points_change": 987.65
     }
     
    @@ -71252,7 +72840,7 @@
    Fields
    Example
    -
    {"currency_amount": 123.45, "points": 987.65}
    +                  
    {"currency_amount": 987.65, "points": 123.45}
     
    @@ -71391,7 +72979,7 @@
    Fields
    Example
    {
    -  "name": "abc123",
    +  "name": "xyz789",
       "value": "xyz789"
     }
     
    @@ -71439,7 +73027,7 @@
    Fields
    Example
    {
    -  "message": "xyz789",
    +  "message": "abc123",
       "timestamp": "abc123"
     }
     
    @@ -71491,7 +73079,7 @@
    Fields
    Example
    -
    {"count": 123, "id": 4, "title": "xyz789"}
    +                  
    {"count": 987, "id": 4, "title": "xyz789"}
     
    @@ -71599,7 +73187,7 @@
    Fields
    Example
    {
       "items": [CategoryTreeView],
    -  "totalCount": 123,
    +  "totalCount": 987,
       "pageInfo": PageInfo
     }
     
    @@ -71675,8 +73263,8 @@
    Example
    {
       "attribute": "abc123",
       "contains": "xyz789",
    -  "eq": "xyz789",
    -  "in": ["abc123"],
    +  "eq": "abc123",
    +  "in": ["xyz789"],
       "range": SearchRangeInput,
       "startsWith": "xyz789"
     }
    @@ -71776,7 +73364,7 @@ 
    Fields
    Example
    -
    {"current_page": 987, "page_size": 123, "total_pages": 123}
    +                  
    {"current_page": 123, "page_size": 987, "total_pages": 123}
     
    @@ -71900,8 +73488,8 @@
    Example
    "label": "xyz789", "original_price": Money, "priceV2": Money, - "quantity": 987.65, - "uid": "4" + "quantity": 123.45, + "uid": 4 }
    @@ -71960,7 +73548,7 @@
    Example
    {
       "configurable_product_option_uid": 4,
       "configurable_product_option_value_uid": 4,
    -  "option_label": "abc123",
    +  "option_label": "xyz789",
       "value_label": "abc123"
     }
     
    @@ -72010,7 +73598,7 @@
    Fields
    Example
    {
    -  "attribute_code": "abc123",
    +  "attribute_code": "xyz789",
       "value": "abc123"
     }
     
    @@ -72078,9 +73666,9 @@
    Fields
    Example
    {
    -  "customizable_option_uid": 4,
    +  "customizable_option_uid": "4",
       "is_required": true,
    -  "label": "abc123",
    +  "label": "xyz789",
       "sort_order": 987,
       "type": "xyz789",
       "values": [SelectedCustomizableOptionValue]
    @@ -72140,7 +73728,7 @@ 
    Fields
    Example
    {
    -  "customizable_option_value_uid": 4,
    +  "customizable_option_value_uid": "4",
       "label": "abc123",
       "price": CartItemSelectedOptionValuePrice,
       "value": "abc123"
    @@ -72202,7 +73790,7 @@ 
    Example
    {
       "code": "xyz789",
       "oope_payment_method_config": OopePaymentMethodConfig,
    -  "purchase_order_number": "xyz789",
    +  "purchase_order_number": "abc123",
       "title": "abc123"
     }
     
    @@ -72283,9 +73871,9 @@
    Example
    "additional_data": [ShippingAdditionalData], "amount": Money, "carrier_code": "xyz789", - "carrier_title": "xyz789", + "carrier_title": "abc123", "method_code": "abc123", - "method_title": "xyz789", + "method_title": "abc123", "price_excl_tax": Money, "price_incl_tax": Money } @@ -72335,7 +73923,10 @@
    Fields
    Example
    -
    {"comment": NegotiableQuoteCommentInput, "quote_uid": 4}
    +                  
    {
    +  "comment": NegotiableQuoteCommentInput,
    +  "quote_uid": "4"
    +}
     
    @@ -72424,7 +74015,7 @@
    Fields
    Example
    {
       "billing_address": BillingAddressInput,
    -  "cart_id": "abc123"
    +  "cart_id": "xyz789"
     }
     
    @@ -72557,10 +74148,7 @@
    Fields
    Example
    -
    {
    -  "custom_attributes": [CustomAttributeInput],
    -  "id": "4"
    -}
    +                  
    {"custom_attributes": [CustomAttributeInput], "id": 4}
     
    @@ -72649,7 +74237,7 @@
    Fields
    Example
    {
       "custom_attributes": [CustomAttributeInput],
    -  "quote_uid": "4"
    +  "quote_uid": 4
     }
     
    @@ -72756,7 +74344,7 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    +  "cart_id": "xyz789",
       "gift_message": GiftMessageInput,
       "gift_receipt_included": true,
       "gift_wrapping_id": 4,
    @@ -73070,7 +74658,7 @@ 
    Fields
    Example
    {
       "payment_method": NegotiableQuotePaymentMethodInput,
    -  "quote_uid": 4
    +  "quote_uid": "4"
     }
     
    @@ -73251,7 +74839,7 @@
    Fields
    Example
    {
    -  "quote_uid": "4",
    +  "quote_uid": 4,
       "shipping_methods": [ShippingMethodInput]
     }
     
    @@ -73391,7 +74979,7 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    +  "cart_id": "xyz789",
       "payment_method": PaymentMethodInput
     }
     
    @@ -73481,7 +75069,7 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    +  "cart_id": "abc123",
       "shipping_addresses": [ShippingAddressInput]
     }
     
    @@ -73571,7 +75159,7 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    +  "cart_id": "abc123",
       "shipping_methods": [ShippingMethodInput]
     }
     
    @@ -73662,7 +75250,7 @@
    Fields
    Example
    {
       "email": "xyz789",
    -  "name": "abc123"
    +  "name": "xyz789"
     }
     
    @@ -73752,7 +75340,304 @@
    Fields
    Example
    {
       "message": "xyz789",
    -  "name": "xyz789"
    +  "name": "abc123"
    +}
    +
    +
    +
    + back to top +
    +
    +
    +
    + Types +
    +

    ShareRequisitionListByEmailInput

    +
    +
    +
    +
    Description
    +

    An input object that defines which requisition list shared with company users through email.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + + + + + +
    Input FieldDescription
    + customerUids - [ID]! + An array of IDs representing company users with whom the sender wants to share the requisition list.
    + requisitionListUid - ID! + The unique ID of the requisition list.
    +
    +
    +
    +
    +
    Example
    +
    {
    +  "customerUids": ["4"],
    +  "requisitionListUid": 4
    +}
    +
    +
    +
    + back to top +
    +
    +
    +
    + Types +
    +

    ShareRequisitionListByEmailOutput

    +
    +
    +
    +
    Description
    +

    Result of sharing a requisition list by email.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + + + + + +
    Field NameDescription
    sent_count - Int! + Number of notification emails successfully sent.
    user_errors - [ShareRequisitionListUserError]! + Per-email validation or delivery issues.
    +
    +
    +
    +
    +
    Example
    +
    {
    +  "sent_count": 123,
    +  "user_errors": [ShareRequisitionListUserError]
    +}
    +
    +
    +
    + back to top +
    +
    +
    +
    + Types +
    +

    ShareRequisitionListByTokenOutput

    +
    +
    +
    +
    Description
    +

    The result of sharing a requisition list by token.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + +
    Field NameDescription
    token - String! + Token used to generate a shareable link for the requisition list.
    +
    +
    +
    +
    +
    Example
    +
    {"token": "xyz789"}
    +
    +
    +
    + back to top +
    +
    +
    +
    + Types +
    +

    ShareRequisitionListUserError

    +
    +
    +
    +
    Description
    +

    An error related to a specific recipient or constraint.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + + + + + +
    Field NameDescription
    code - ShareRequisitionListUserErrorCode! + Machine-readable error code.
    message - String! + Human-readable error message.
    +
    +
    +
    +
    +
    Example
    +
    {
    +  "code": "MAX_RECIPIENTS_EXCEEDED",
    +  "message": "abc123"
    +}
    +
    +
    +
    + back to top +
    +
    +
    +
    + Types +
    +

    ShareRequisitionListUserErrorCode

    +
    +
    +
    +
    Description
    +

    Machine-readable error codes for requisition list share-by-email and import operations.

    +
    +
    +
    Values
    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Enum ValueDescription
    +

    MAX_RECIPIENTS_EXCEEDED

    +
    +
    +

    INVALID_EMAIL

    +
    +
    +

    NOT_COMPANY_USER

    +
    +
    +

    IMPORT_FAILED

    +
    +
    +
    +
    +
    +
    +
    Example
    +
    "MAX_RECIPIENTS_EXCEEDED"
    +
    +
    +
    + back to top +
    +
    +
    +
    + Types +
    +

    SharedRequisitionListOutput

    +
    +
    +
    +
    Description
    +

    Shared requisition list view for a recipient.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + + + + + +
    Field NameDescription
    requisition_list - RequisitionList! + The sender's requisition list (read-only for the recipient).
    sender_name - String! + Display name of the requisition list sender.
    +
    +
    +
    +
    +
    Example
    +
    {
    +  "requisition_list": RequisitionList,
    +  "sender_name": "abc123"
     }
     
    @@ -73864,12 +75749,12 @@
    Fields
    Example
    {
    -  "id": "4",
    +  "id": 4,
       "order_item": OrderItemInterface,
    -  "product_name": "abc123",
    +  "product_name": "xyz789",
       "product_sale_price": Money,
    -  "product_sku": "xyz789",
    -  "quantity_shipped": 987.65
    +  "product_sku": "abc123",
    +  "quantity_shipped": 123.45
     }
     
    @@ -73965,10 +75850,10 @@
    Example
    {
       "id": "4",
       "order_item": OrderItemInterface,
    -  "product_name": "xyz789",
    +  "product_name": "abc123",
       "product_sale_price": Money,
       "product_sku": "xyz789",
    -  "quantity_shipped": 123.45
    +  "quantity_shipped": 987.65
     }
     
    @@ -74012,6 +75897,11 @@
    Fields
    The shipment tracking title. + + tracking_url - String + + The tracking URL for the shipment. Available for both built-in and custom shipping carriers when a URL template is configured. +
    @@ -74021,8 +75911,9 @@
    Fields
    Example
    {
       "carrier": "xyz789",
    -  "number": "xyz789",
    -  "title": "xyz789"
    +  "number": "abc123",
    +  "title": "xyz789",
    +  "tracking_url": "abc123"
     }
     
    @@ -74071,7 +75962,7 @@
    Fields
    Example
    {
    -  "key": "abc123",
    +  "key": "xyz789",
       "value": "abc123"
     }
     
    @@ -74142,7 +76033,7 @@
    Example
    "address": CartAddressInput, "customer_address_id": 987, "customer_address_uid": 4, - "customer_notes": "abc123", + "customer_notes": "xyz789", "pickup_location_code": "abc123" }
    @@ -74305,26 +76196,26 @@
    Example
    "available_shipping_methods": [AvailableShippingMethod], "cart_items_v2": [CartItemInterface], "city": "abc123", - "company": "abc123", + "company": "xyz789", "country": CartAddressCountry, "custom_attributes": [AttributeValueInterface], - "customer_address_uid": "4", + "customer_address_uid": 4, "customer_notes": "xyz789", - "fax": "abc123", + "fax": "xyz789", "firstname": "xyz789", "id": 987, "lastname": "abc123", - "middlename": "xyz789", + "middlename": "abc123", "pickup_location_code": "xyz789", - "postcode": "xyz789", - "prefix": "xyz789", + "postcode": "abc123", + "prefix": "abc123", "region": CartAddressRegion, - "same_as_billing": false, + "same_as_billing": true, "selected_shipping_method": SelectedShippingMethod, "street": ["abc123"], - "suffix": "xyz789", + "suffix": "abc123", "telephone": "abc123", - "uid": 4, + "uid": "4", "vat_id": "xyz789" }
    @@ -74480,7 +76371,7 @@
    Fields
    Example
    {
    -  "carrier_code": "abc123",
    +  "carrier_code": "xyz789",
       "method_code": "abc123"
     }
     
    @@ -74515,6 +76406,11 @@
    Fields
    The list of available gift wrapping options for the cart item. + + backorder_message - String + + Customer-facing hint when the line is salable on notify backorders with insufficient physical quantity; null otherwise. + custom_attributes - [CustomAttribute] @@ -74546,9 +76442,15 @@
    Fields
    The selected gift wrapping for the cart item. - is_available - Boolean! + is_available - Boolean! + + True if requested quantity is less than available stock, false otherwise. Use is_salable instead. It indicates whether the line can be purchased, including backorder configuration. + + + + is_salable - Boolean! - True if requested quantity is less than available stock, false otherwise. + True when the item can be purchased and should not block checkout: stock status is in stock and either physical quantity covers the requested quantity or backorders are allowed. max_qty - Float @@ -74563,7 +76465,7 @@
    Fields
    not_available_message - String - Message to display when the product is not available with this selected option. + Shortage or unavailability message for the line; null when the item is salable. note_from_buyer - [ItemNote] @@ -74605,6 +76507,7 @@
    Fields
    Example
    {
       "available_gift_wrapping": [GiftWrapping],
    +  "backorder_message": "abc123",
       "custom_attributes": [CustomAttribute],
       "customizable_options": [SelectedCustomizableOption],
       "discount": [Discount],
    @@ -74612,7 +76515,8 @@ 
    Example
    "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, "is_available": true, - "max_qty": 987.65, + "is_salable": false, + "max_qty": 123.45, "min_qty": 987.65, "not_available_message": "abc123", "note_from_buyer": [ItemNote], @@ -74620,7 +76524,7 @@
    Example
    "prices": CartItemPrices, "product": ProductInterface, "quantity": 987.65, - "uid": 4 + "uid": "4" }
    @@ -74875,26 +76779,26 @@
    filters
    Example
    {
    -  "canonical_url": "xyz789",
    +  "canonical_url": "abc123",
       "categories": [CategoryInterface],
       "country_of_manufacture": "xyz789",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
       "gift_message_available": true,
    -  "gift_wrapping_available": false,
    +  "gift_wrapping_available": true,
       "gift_wrapping_price": Money,
       "image": ProductImage,
    -  "is_returnable": "xyz789",
    -  "manufacturer": 987,
    -  "max_sale_qty": 987.65,
    +  "is_returnable": "abc123",
    +  "manufacturer": 123,
    +  "max_sale_qty": 123.45,
       "media_gallery": [MediaGalleryInterface],
    -  "meta_description": "abc123",
    -  "meta_keyword": "abc123",
    +  "meta_description": "xyz789",
    +  "meta_keyword": "xyz789",
       "meta_title": "xyz789",
    -  "min_sale_qty": 123.45,
    -  "name": "xyz789",
    -  "new_from_date": "abc123",
    +  "min_sale_qty": 987.65,
    +  "name": "abc123",
    +  "new_from_date": "xyz789",
       "new_to_date": "abc123",
       "only_x_left_in_stock": 987.65,
       "options": [CustomizableOptionInterface],
    @@ -74908,14 +76812,14 @@ 
    Example
    "sku": "xyz789", "small_image": ProductImage, "special_price": 123.45, - "special_to_date": "xyz789", + "special_to_date": "abc123", "stock_status": "IN_STOCK", "swatch_image": "xyz789", "thumbnail": ProductImage, - "uid": 4, + "uid": "4", "upsell_products": [ProductInterface], - "url_key": "abc123", - "weight": 123.45 + "url_key": "xyz789", + "weight": 987.65 }
    @@ -75138,7 +77042,7 @@
    family<
    Example
    {
    -  "addToCartAllowed": false,
    +  "addToCartAllowed": true,
       "inStock": false,
       "lowStock": true,
       "attributes": [ProductViewAttribute],
    @@ -75150,18 +77054,18 @@ 
    Example
    "lastModifiedAt": "2007-12-03T10:15:30Z", "metaDescription": "abc123", "metaKeyword": "abc123", - "metaTitle": "xyz789", - "name": "xyz789", + "metaTitle": "abc123", + "name": "abc123", "price": ProductViewPrice, - "shortDescription": "xyz789", - "sku": "xyz789", + "shortDescription": "abc123", + "sku": "abc123", "externalId": "abc123", "url": "abc123", "urlKey": "abc123", "links": [ProductViewLink], "categories": [CategoryProductView], "queryType": "abc123", - "visibility": "xyz789" + "visibility": "abc123" }
    @@ -75228,7 +77132,7 @@
    Example
    "product": ProductInterface, "quantity": 987.65, "sku": "abc123", - "uid": "4" + "uid": 4 }
    @@ -75296,10 +77200,10 @@
    Fields
    Example
    {
    -  "added_at": "xyz789",
    +  "added_at": "abc123",
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "xyz789",
    -  "id": 4,
    +  "description": "abc123",
    +  "id": "4",
       "product": ProductInterface,
       "quantity": 123.45
     }
    @@ -75356,7 +77260,7 @@ 
    Fields
    Example
    {
    -  "payment_source": "xyz789",
    +  "payment_source": "abc123",
       "payments_order_id": "abc123",
       "paypal_order_id": "abc123"
     }
    @@ -75446,17 +77350,17 @@ 
    Fields
    Example
    {
    -  "app_switch_when_available": false,
    +  "app_switch_when_available": true,
       "button_styles": ButtonStyles,
       "code": "abc123",
       "display_message": true,
    -  "display_venmo": false,
    +  "display_venmo": true,
       "is_visible": true,
       "message_styles": MessageStyles,
    -  "payment_intent": "abc123",
    +  "payment_intent": "xyz789",
       "sdk_params": [SDKParams],
       "sort_order": "xyz789",
    -  "title": "abc123"
    +  "title": "xyz789"
     }
     
    @@ -75553,7 +77457,7 @@
    Fields
    Example
    {
       "label": "abc123",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -75925,9 +77829,9 @@
    Fields
    Example
    {
       "attribute": "abc123",
    -  "frontendInput": "abc123",
    +  "frontendInput": "xyz789",
       "label": "xyz789",
    -  "numeric": false
    +  "numeric": true
     }
     
    @@ -75981,7 +77885,7 @@
    Example
    {
       "max": 987.65,
       "min": 123.45,
    -  "title": "abc123"
    +  "title": "xyz789"
     }
     
    @@ -76525,6 +78429,26 @@
    Fields
    The number of different character classes (lowercase, uppercase, digits, special characters) required in a password. + + requisition_list_share_link_validity_days - Int! + + Configuration data from btob/requisition_list_sharing/link_validity_days + + + requisition_list_share_max_recipients - Int! + + Configuration data from btob/requisition_list_sharing/max_recipients + + + requisition_list_share_storefront_path - String! + + Configuration data from btob/requisition_list_sharing/storefront_share_path (route path for share links, no leading or trailing slashes) + + + requisition_list_sharing_enabled - Boolean! + + Configuration data from btob/requisition_list_sharing/enabled + returns_enabled - String! @@ -76580,6 +78504,21 @@
    Fields
    Configuration data from promo/graphql/share_applied_cart_rule + + shopping_assistance_checkbox_title - String + + Configuration data from login_as_customer/general/shopping_assistance_checkbox_title + + + shopping_assistance_checkbox_tooltip - String + + Configuration data from login_as_customer/general/shopping_assistance_checkbox_tooltip + + + shopping_assistance_enabled - Boolean! + + Configuration data from login_as_customer/general/enabled + shopping_cart_display_full_summary - Boolean @@ -76713,33 +78652,33 @@
    Fields
    Example
    {
    -  "allow_company_registration": false,
    -  "allow_gift_receipt": "abc123",
    -  "allow_gift_wrapping_on_order": "xyz789",
    -  "allow_gift_wrapping_on_order_items": "xyz789",
    +  "allow_company_registration": true,
    +  "allow_gift_receipt": "xyz789",
    +  "allow_gift_wrapping_on_order": "abc123",
    +  "allow_gift_wrapping_on_order_items": "abc123",
       "allow_items": "abc123",
    -  "allow_order": "abc123",
    +  "allow_order": "xyz789",
       "allow_printed_card": "xyz789",
    -  "autocomplete_on_storefront": true,
    -  "base_currency_code": "abc123",
    +  "autocomplete_on_storefront": false,
    +  "base_currency_code": "xyz789",
       "base_link_url": "abc123",
    -  "base_media_url": "abc123",
    -  "base_static_url": "xyz789",
    -  "base_url": "xyz789",
    -  "cart_expires_in_days": 987,
    -  "cart_gift_wrapping": "abc123",
    +  "base_media_url": "xyz789",
    +  "base_static_url": "abc123",
    +  "base_url": "abc123",
    +  "cart_expires_in_days": 123,
    +  "cart_gift_wrapping": "xyz789",
       "cart_merge_preference": "abc123",
       "cart_printed_card": "abc123",
    -  "cart_summary_display_quantity": 123,
    +  "cart_summary_display_quantity": 987,
       "catalog_default_sort_by": "abc123",
       "category_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS",
    -  "category_url_suffix": "xyz789",
    -  "check_money_order_enable_for_specific_countries": true,
    +  "category_url_suffix": "abc123",
    +  "check_money_order_enable_for_specific_countries": false,
       "check_money_order_enabled": true,
    -  "check_money_order_make_check_payable_to": "xyz789",
    +  "check_money_order_make_check_payable_to": "abc123",
       "check_money_order_max_order_total": "xyz789",
       "check_money_order_min_order_total": "xyz789",
    -  "check_money_order_new_order_status": "abc123",
    +  "check_money_order_new_order_status": "xyz789",
       "check_money_order_payment_from_specific_countries": "xyz789",
       "check_money_order_send_check_to": "abc123",
       "check_money_order_sort_order": 987,
    @@ -76747,36 +78686,36 @@ 
    Example
    "company_credit_enabled": true, "company_enabled": true, "configurable_product_image": "ITSELF", - "configurable_thumbnail_source": "xyz789", - "contact_enabled": false, - "countries_with_required_region": "abc123", + "configurable_thumbnail_source": "abc123", + "contact_enabled": true, + "countries_with_required_region": "xyz789", "create_account_confirmation": false, "customer_access_token_lifetime": 123.45, - "default_country": "abc123", - "default_display_currency_code": "xyz789", + "default_country": "xyz789", + "default_display_currency_code": "abc123", "display_product_prices_in_catalog": 123, "display_shipping_prices": 987, - "display_state_if_optional": true, - "enable_multiple_wishlists": "abc123", - "fixed_product_taxes_apply_tax_to_fpt": false, + "display_state_if_optional": false, + "enable_multiple_wishlists": "xyz789", + "fixed_product_taxes_apply_tax_to_fpt": true, "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": 123, - "fixed_product_taxes_display_prices_on_product_view_page": 987, + "fixed_product_taxes_display_prices_on_product_view_page": 123, "fixed_product_taxes_enable": true, - "fixed_product_taxes_include_fpt_in_subtotal": false, + "fixed_product_taxes_include_fpt_in_subtotal": true, "graphql_share_customer_group": false, "grid_per_page": 987, "grid_per_page_values": "xyz789", "grouped_product_image": "ITSELF", "is_checkout_agreements_enabled": false, - "is_default_store": true, - "is_default_store_group": true, - "is_guest_checkout_enabled": true, + "is_default_store": false, + "is_default_store_group": false, + "is_guest_checkout_enabled": false, "is_negotiable_quote_active": false, - "is_one_page_checkout_enabled": true, + "is_one_page_checkout_enabled": false, "is_requisition_list_active": "abc123", - "list_mode": "xyz789", + "list_mode": "abc123", "list_per_page": 123, "list_per_page_values": "xyz789", "locale": "abc123", @@ -76784,74 +78723,81 @@
    Example
    "magento_reward_general_is_enabled_on_front": "abc123", "magento_reward_general_min_points_balance": "abc123", "magento_reward_general_publish_history": "xyz789", - "magento_reward_points_invitation_customer": "xyz789", + "magento_reward_points_invitation_customer": "abc123", "magento_reward_points_invitation_customer_limit": "abc123", "magento_reward_points_invitation_order": "xyz789", "magento_reward_points_invitation_order_limit": "xyz789", - "magento_reward_points_newsletter": "abc123", + "magento_reward_points_newsletter": "xyz789", "magento_reward_points_order": "xyz789", "magento_reward_points_register": "abc123", - "magento_reward_points_review": "abc123", + "magento_reward_points_review": "xyz789", "magento_reward_points_review_limit": "xyz789", "magento_wishlist_general_is_enabled": "xyz789", "max_items_in_order_summary": 123, - "maximum_number_of_wishlists": "xyz789", - "minicart_display": true, - "minicart_max_items": 123, + "maximum_number_of_wishlists": "abc123", + "minicart_display": false, + "minicart_max_items": 987, "minimum_password_length": "abc123", - "newsletter_enabled": true, - "optional_zip_countries": "xyz789", - "order_cancellation_enabled": true, + "newsletter_enabled": false, + "optional_zip_countries": "abc123", + "order_cancellation_enabled": false, "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": 987, - "orders_invoices_credit_memos_display_shipping_amount": 987, - "orders_invoices_credit_memos_display_subtotal": 987, + "orders_invoices_credit_memos_display_full_summary": false, + "orders_invoices_credit_memos_display_grandtotal": false, + "orders_invoices_credit_memos_display_price": 123, + "orders_invoices_credit_memos_display_shipping_amount": 123, + "orders_invoices_credit_memos_display_subtotal": 123, "orders_invoices_credit_memos_display_zero_tax": true, "printed_card_priceV2": Money, "product_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", "product_url_suffix": "abc123", - "quickorder_active": true, - "quote_minimum_amount": 987.65, - "quote_minimum_amount_message": "abc123", - "required_character_classes_number": "xyz789", - "returns_enabled": "abc123", + "quickorder_active": false, + "quote_minimum_amount": 123.45, + "quote_minimum_amount_message": "xyz789", + "required_character_classes_number": "abc123", + "requisition_list_share_link_validity_days": 123, + "requisition_list_share_max_recipients": 123, + "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": "xyz789", - "sales_printed_card": "xyz789", + "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": "abc123", + "secure_base_url": "xyz789", "share_active_segments": false, - "share_applied_cart_rule": false, - "shopping_cart_display_full_summary": false, - "shopping_cart_display_grand_total": false, - "shopping_cart_display_price": 123, + "share_applied_cart_rule": true, + "shopping_assistance_checkbox_title": "xyz789", + "shopping_assistance_checkbox_tooltip": "xyz789", + "shopping_assistance_enabled": false, + "shopping_cart_display_full_summary": true, + "shopping_cart_display_grand_total": true, + "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_code": "4", "store_group_name": "abc123", "store_name": "xyz789", - "store_sort_order": 987, - "timezone": "abc123", - "title_separator": "xyz789", + "store_sort_order": 123, + "timezone": "xyz789", + "title_separator": "abc123", "use_store_in_url": false, - "website_code": 4, + "website_code": "4", "website_name": "xyz789", - "weight_unit": "abc123", - "zero_subtotal_enable_for_specific_countries": false, + "weight_unit": "xyz789", + "zero_subtotal_enable_for_specific_countries": true, "zero_subtotal_enabled": false, - "zero_subtotal_new_order_status": "xyz789", + "zero_subtotal_new_order_status": "abc123", "zero_subtotal_payment_action": "xyz789", "zero_subtotal_payment_from_specific_countries": "abc123", - "zero_subtotal_sort_order": 987, - "zero_subtotal_title": "abc123" + "zero_subtotal_sort_order": 123, + "zero_subtotal_title": "xyz789" }
    @@ -76874,7 +78820,7 @@
    Description
    Example
    -
    "xyz789"
    +                  
    "abc123"
     
    @@ -77043,9 +78989,9 @@
    Fields
    Example
    {
       "attachments": [NegotiableQuoteCommentAttachmentInput],
    -  "comment": "abc123",
    +  "comment": "xyz789",
       "max_order_commitment": 987,
    -  "min_order_commitment": 987,
    +  "min_order_commitment": 123,
       "name": "abc123",
       "reference_document_links": [
         NegotiableQuoteTemplateReferenceDocumentLinkInput
    @@ -77201,7 +79147,7 @@ 
    Fields
    Example
    -
    {"depth": 123, "startLevel": 987}
    +                  
    {"depth": 987, "startLevel": 987}
     
    @@ -77536,8 +79482,8 @@
    Fields
    Example
    {
    -  "cartId": "xyz789",
    -  "id": "xyz789"
    +  "cartId": "abc123",
    +  "id": "abc123"
     }
     
    @@ -77791,6 +79737,87 @@
    Example
    "final_price": Money, "quantity": 987.65 } +
    + + + back to top + +
    +
    +
    + Types +
    +

    UnassignChildCompanyInput

    +
    +
    +
    +
    Description
    +

    Defines the input schema for unassigning a child company from its parent company.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + +
    Input FieldDescription
    + child_company_id - ID! + The unique ID of the child company.
    +
    +
    +
    +
    +
    Example
    +
    {"child_company_id": 4}
    +
    +
    +
    + back to top +
    +
    +
    +
    + Types +
    +

    UnassignChildCompanyOutput

    +
    +
    +
    +
    Description
    +

    Contains the response to the request to unassign a child company.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + +
    Field NameDescription
    company_hierarchy - CompanyHierarchy! + The updated company relation hierarchy for the current company.
    +
    +
    +
    +
    +
    Example
    +
    {"company_hierarchy": CompanyHierarchy}
     
    @@ -77878,13 +79905,13 @@
    Fields
    Example
    {
    -  "unitName": "xyz789",
    +  "unitName": "abc123",
       "storefrontLabel": "xyz789",
       "pagePlacement": "abc123",
       "displayNumber": 987,
       "pageType": "xyz789",
    -  "unitStatus": "xyz789",
    -  "typeId": "xyz789",
    +  "unitStatus": "abc123",
    +  "typeId": "abc123",
       "filterRules": [FilterRuleInput]
     }
     
    @@ -78260,7 +80287,7 @@
    Example
    GiftRegistryDynamicAttributeInput ], "event_name": "abc123", - "message": "abc123", + "message": "xyz789", "privacy_settings": "PRIVATE", "shipping_address": GiftRegistryShippingAddressInput, "status": "ACTIVE" @@ -78319,7 +80346,7 @@
    Fields
    Example
    {
       "gift_registry_item_uid": "4",
    -  "note": "abc123",
    +  "note": "xyz789",
       "quantity": 123.45
     }
     
    @@ -78470,8 +80497,8 @@
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "email": "abc123", - "firstname": "abc123", + "email": "xyz789", + "firstname": "xyz789", "gift_registry_registrant_uid": 4, "lastname": "abc123" } @@ -78603,7 +80630,7 @@
    Fields
    Example
    {
       "items": [NegotiableQuoteItemQuantityInput],
    -  "quote_uid": "4"
    +  "quote_uid": 4
     }
     
    @@ -78820,13 +80847,13 @@
    Fields
    Example
    {
    -  "applies_to": [4],
    -  "approvers": [4],
    +  "applies_to": ["4"],
    +  "approvers": ["4"],
       "condition": CreatePurchaseOrderApprovalRuleConditionInput,
    -  "description": "xyz789",
    -  "name": "abc123",
    +  "description": "abc123",
    +  "name": "xyz789",
       "status": "ENABLED",
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -78938,7 +80965,7 @@
    Fields
    Example
    {
       "entered_options": [EnteredOptionInput],
    -  "item_id": 4,
    +  "item_id": "4",
       "quantity": 987.65,
       "selected_options": ["xyz789"]
     }
    @@ -79073,7 +81100,7 @@ 
    Fields
    Example
    {
       "name": "abc123",
    -  "uid": "4",
    +  "uid": 4,
       "visibility": "PUBLIC"
     }
     
    @@ -79130,7 +81157,7 @@
    Fields
    Example
    {
       "currentPage": 123,
    -  "pageSize": 987,
    +  "pageSize": 123,
       "sort": [CompaniesSortInput]
     }
     
    @@ -79225,7 +81252,7 @@
    Fields
    Example
    -
    {"message": "abc123", "type": "NOT_FOUND"}
    +                  
    {"message": "xyz789", "type": "NOT_FOUND"}
     
    @@ -79427,7 +81454,7 @@
    Fields
    Example
    {
       "name": "DATE_RANGE_MAX",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -79676,10 +81703,10 @@
    Fields
    Example
    {
    -  "payment_source": "abc123",
    -  "payments_order_id": "xyz789",
    +  "payment_source": "xyz789",
    +  "payments_order_id": "abc123",
       "paypal_order_id": "xyz789",
    -  "public_hash": "xyz789"
    +  "public_hash": "abc123"
     }
     
    @@ -79772,7 +81799,7 @@
    Fields
    Example
    {
       "date": "2007-12-03T10:15:30Z",
    -  "sku": "xyz789"
    +  "sku": "abc123"
     }
     
    @@ -79853,6 +81880,11 @@
    Fields
    + + backorder_message - String + + Customer-facing hint when the line is salable on notify backorders with insufficient physical quantity; null otherwise. + custom_attributes - [CustomAttribute] @@ -79874,9 +81906,15 @@
    Fields
    An array of errors encountered while loading the cart item - is_available - Boolean! + is_available - Boolean! + + True if requested quantity is less than available stock, false otherwise. Use is_salable instead. It indicates whether the line can be purchased, including backorder configuration. + + + + is_salable - Boolean! - True if requested quantity is less than available stock, false otherwise. + True when the item can be purchased and should not block checkout: stock status is in stock and either physical quantity covers the requested quantity or backorders are allowed. max_qty - Float @@ -79891,7 +81929,7 @@
    Fields
    not_available_message - String - Message to display when the product is not available with this selected option. + Shortage or unavailability message for the line; null when the item is salable. note_from_buyer - [ItemNote] @@ -79932,19 +81970,21 @@
    Fields
    Example
    {
    +  "backorder_message": "xyz789",
       "custom_attributes": [CustomAttribute],
       "customizable_options": [SelectedCustomizableOption],
       "discount": [Discount],
       "errors": [CartItemError],
       "is_available": true,
    -  "max_qty": 987.65,
    -  "min_qty": 987.65,
    -  "not_available_message": "abc123",
    +  "is_salable": false,
    +  "max_qty": 123.45,
    +  "min_qty": 123.45,
    +  "not_available_message": "xyz789",
       "note_from_buyer": [ItemNote],
       "note_from_seller": [ItemNote],
       "prices": CartItemPrices,
       "product": ProductInterface,
    -  "quantity": 987.65,
    +  "quantity": 123.45,
       "uid": 4
     }
     
    @@ -80195,46 +82235,46 @@
    filters
    Example
    {
    -  "canonical_url": "xyz789",
    +  "canonical_url": "abc123",
       "categories": [CategoryInterface],
       "country_of_manufacture": "xyz789",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    -  "gift_message_available": true,
    +  "gift_message_available": false,
       "gift_wrapping_available": false,
       "gift_wrapping_price": Money,
       "image": ProductImage,
       "is_returnable": "abc123",
       "manufacturer": 987,
    -  "max_sale_qty": 987.65,
    +  "max_sale_qty": 123.45,
       "media_gallery": [MediaGalleryInterface],
       "meta_description": "abc123",
       "meta_keyword": "xyz789",
       "meta_title": "abc123",
    -  "min_sale_qty": 123.45,
    -  "name": "xyz789",
    -  "new_from_date": "abc123",
    -  "new_to_date": "abc123",
    -  "only_x_left_in_stock": 123.45,
    +  "min_sale_qty": 987.65,
    +  "name": "abc123",
    +  "new_from_date": "xyz789",
    +  "new_to_date": "xyz789",
    +  "only_x_left_in_stock": 987.65,
       "options": [CustomizableOptionInterface],
    -  "options_container": "abc123",
    +  "options_container": "xyz789",
       "price_range": PriceRange,
       "price_tiers": [TierPrice],
       "product_links": [ProductLinksInterface],
    -  "quantity": 987.65,
    +  "quantity": 123.45,
       "related_products": [ProductInterface],
       "short_description": ComplexTextValue,
       "sku": "abc123",
       "small_image": ProductImage,
       "special_price": 123.45,
    -  "special_to_date": "abc123",
    +  "special_to_date": "xyz789",
       "stock_status": "IN_STOCK",
       "swatch_image": "abc123",
       "thumbnail": ProductImage,
       "uid": 4,
       "upsell_products": [ProductInterface],
    -  "url_key": "abc123"
    +  "url_key": "xyz789"
     }
     
    @@ -80299,9 +82339,9 @@
    Example
    {
       "customizable_options": [SelectedCustomizableOption],
       "product": ProductInterface,
    -  "quantity": 123.45,
    -  "sku": "abc123",
    -  "uid": "4"
    +  "quantity": 987.65,
    +  "sku": "xyz789",
    +  "uid": 4
     }
     
    @@ -80369,12 +82409,12 @@
    Fields
    Example
    {
    -  "added_at": "abc123",
    +  "added_at": "xyz789",
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "xyz789",
    -  "id": 4,
    +  "description": "abc123",
    +  "id": "4",
       "product": ProductInterface,
    -  "quantity": 987.65
    +  "quantity": 123.45
     }
     
    @@ -80422,7 +82462,7 @@
    Fields
    Example
    {
       "code": "PRODUCT_NOT_FOUND",
    -  "message": "xyz789"
    +  "message": "abc123"
     }
     
    @@ -80561,9 +82601,9 @@
    pageSizeExample
    {
       "id": "4",
    -  "items_count": 123,
    +  "items_count": 987,
       "items_v2": WishlistItems,
    -  "name": "abc123",
    +  "name": "xyz789",
       "sharing_code": "xyz789",
       "updated_at": "abc123",
       "visibility": "PUBLIC"
    @@ -80625,7 +82665,7 @@ 
    Example
    {
       "code": "PRODUCT_NOT_FOUND",
       "message": "xyz789",
    -  "wishlistId": "4",
    +  "wishlistId": 4,
       "wishlistItemId": "4"
     }
     
    @@ -80744,10 +82784,7 @@
    Fields
    Example
    -
    {
    -  "quantity": 987.65,
    -  "wishlist_item_id": "4"
    -}
    +                  
    {"quantity": 123.45, "wishlist_item_id": 4}
     
    @@ -80814,8 +82851,8 @@
    Fields
    Example
    {
       "entered_options": [EnteredOptionInput],
    -  "parent_sku": "xyz789",
    -  "quantity": 987.65,
    +  "parent_sku": "abc123",
    +  "quantity": 123.45,
       "selected_options": [4],
       "sku": "abc123"
     }
    @@ -80937,7 +82974,7 @@ 
    Example
    "description": "abc123", "id": "4", "product": ProductInterface, - "quantity": 123.45 + "quantity": 987.65 }
    @@ -81058,7 +83095,7 @@
    Example
    "entered_options": [EnteredOptionInput], "quantity": 123.45, "selected_options": [4], - "wishlist_item_id": 4 + "wishlist_item_id": "4" }
    @@ -81250,7 +83287,7 @@
    Fields
    Example
    {
       "key": "xyz789",
    -  "message": "xyz789",
    +  "message": "abc123",
       "success": true
     }
     
    @@ -81296,7 +83333,7 @@
    Fields
    Example
    {
    -  "key": "xyz789",
    +  "key": "abc123",
       "media_resource_type": "NEGOTIABLE_QUOTE_ATTACHMENT"
     }
     
    @@ -81347,7 +83384,7 @@
    Example
    {
       "expires_at": "xyz789",
       "key": "abc123",
    -  "upload_url": "abc123"
    +  "upload_url": "xyz789"
     }
     
    From 90254afe033207af5bf501d55ed87208a92914d1 Mon Sep 17 00:00:00 2001 From: Jared Hoover Date: Fri, 29 May 2026 15:04:14 -0500 Subject: [PATCH 2/9] add filtering --- spectaql/config_saas.yml | 13 +- spectaql/metadata-saas.json | 33 + static/graphql-api/saas/index.html | 3844 +++++++++++++--------------- 3 files changed, 1759 insertions(+), 2131 deletions(-) create mode 100644 spectaql/metadata-saas.json diff --git a/spectaql/config_saas.yml b/spectaql/config_saas.yml index 54d02925d..881137d92 100644 --- a/spectaql/config_saas.yml +++ b/spectaql/config_saas.yml @@ -202,14 +202,17 @@ introspection: # # File that contains your metadata data in JS module export, or JSON format - # metadataFile: path/to/metadata.js[on] + # Items marked with `documentation: { undocumented: true }` will be hidden + # from the rendered output (combined with hide*WithUndocumentedReturnType and + # hideUnusedTypes options below). + metadataFile: spectaql/metadata-saas.json # The path to a key from which to read the documentation-related metadata at each level of your metadata file. # Defaults to 'documentation', but in case you use a different name, or have a complex/nested metadata structure, you can # specify it here. # # Default: documentation - # metadatasReadPath: documentation + metadatasReadPath: documentation # The metadata that was just read from the above key path will be woven into your Introspection Query results. # This option specifies the key path where that data will be written at each level. @@ -223,7 +226,7 @@ introspection: # specify it here. # # Default: documentation - # metadatasWritePath: documentation + metadatasWritePath: documentation # # @@ -240,13 +243,13 @@ introspection: # specify it here. # # Default: documentation - # metadatasPath: documentation + metadatasPath: documentation # Whether or not to look for and use metadata in your data. If turned off, metadata will be ignored # even if it's there # # Default: true - # metadatas: true + metadatas: true # # diff --git a/spectaql/metadata-saas.json b/spectaql/metadata-saas.json new file mode 100644 index 000000000..4e45491c2 --- /dev/null +++ b/spectaql/metadata-saas.json @@ -0,0 +1,33 @@ +{ + "OBJECT": { + "Query": { + "fields": { + "payByLinkOrder": { + "documentation": { + "undocumented": true + } + } + } + }, + "PayByLinkOrder": { + "documentation": { + "undocumented": true + } + }, + "PayByLinkOrderAddress": { + "documentation": { + "undocumented": true + } + }, + "PayByLinkOrderItem": { + "documentation": { + "undocumented": true + } + }, + "PayByLinkOrderTotals": { + "documentation": { + "undocumented": true + } + } + } +} diff --git a/static/graphql-api/saas/index.html b/static/graphql-api/saas/index.html index e22881232..3d4e2d752 100644 --- a/static/graphql-api/saas/index.html +++ b/static/graphql-api/saas/index.html @@ -82,7 +82,6 @@
  • PageInfo
  • PageType
  • PayByLinkInput
  • -
  • PayByLinkOrder
  • -
  • PayByLinkOrderAddress
  • -
  • PayByLinkOrderItem
  • -
  • PayByLinkOrderTotals
  • PaymentAttributeInput
  • PaymentConfigItem
  • PaymentConfigOutput
  • @@ -1629,153 +1624,153 @@
    Response
    "availableStores": [ { "allow_company_registration": false, - "allow_gift_receipt": "xyz789", + "allow_gift_receipt": "abc123", "allow_gift_wrapping_on_order": "abc123", "allow_gift_wrapping_on_order_items": "abc123", "allow_items": "xyz789", - "allow_order": "xyz789", - "allow_printed_card": "abc123", - "autocomplete_on_storefront": true, + "allow_order": "abc123", + "allow_printed_card": "xyz789", + "autocomplete_on_storefront": false, "base_currency_code": "xyz789", - "base_link_url": "abc123", + "base_link_url": "xyz789", "base_media_url": "xyz789", - "base_static_url": "xyz789", + "base_static_url": "abc123", "base_url": "abc123", - "cart_expires_in_days": 123, + "cart_expires_in_days": 987, "cart_gift_wrapping": "abc123", - "cart_merge_preference": "xyz789", + "cart_merge_preference": "abc123", "cart_printed_card": "abc123", - "cart_summary_display_quantity": 123, - "catalog_default_sort_by": "xyz789", + "cart_summary_display_quantity": 987, + "catalog_default_sort_by": "abc123", "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": true, - "check_money_order_make_check_payable_to": "abc123", + "check_money_order_enable_for_specific_countries": true, + "check_money_order_enabled": false, + "check_money_order_make_check_payable_to": "xyz789", "check_money_order_max_order_total": "xyz789", - "check_money_order_min_order_total": "abc123", + "check_money_order_min_order_total": "xyz789", "check_money_order_new_order_status": "abc123", - "check_money_order_payment_from_specific_countries": "xyz789", + "check_money_order_payment_from_specific_countries": "abc123", "check_money_order_send_check_to": "abc123", "check_money_order_sort_order": 987, "check_money_order_title": "xyz789", - "company_credit_enabled": false, + "company_credit_enabled": true, "company_enabled": false, "configurable_product_image": "ITSELF", - "configurable_thumbnail_source": "abc123", + "configurable_thumbnail_source": "xyz789", "contact_enabled": true, - "countries_with_required_region": "xyz789", + "countries_with_required_region": "abc123", "create_account_confirmation": false, "customer_access_token_lifetime": 123.45, "default_country": "abc123", - "default_display_currency_code": "abc123", - "display_product_prices_in_catalog": 987, + "default_display_currency_code": "xyz789", + "display_product_prices_in_catalog": 123, "display_shipping_prices": 123, - "display_state_if_optional": false, + "display_state_if_optional": true, "enable_multiple_wishlists": "xyz789", - "fixed_product_taxes_apply_tax_to_fpt": false, + "fixed_product_taxes_apply_tax_to_fpt": true, "fixed_product_taxes_display_prices_in_emails": 123, - "fixed_product_taxes_display_prices_in_product_lists": 123, + "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_display_prices_on_product_view_page": 987, "fixed_product_taxes_enable": true, - "fixed_product_taxes_include_fpt_in_subtotal": false, + "fixed_product_taxes_include_fpt_in_subtotal": true, "graphql_share_customer_group": false, "grid_per_page": 987, "grid_per_page_values": "xyz789", "grouped_product_image": "ITSELF", - "is_checkout_agreements_enabled": true, - "is_default_store": false, - "is_default_store_group": true, - "is_guest_checkout_enabled": true, - "is_negotiable_quote_active": true, + "is_checkout_agreements_enabled": false, + "is_default_store": true, + "is_default_store_group": false, + "is_guest_checkout_enabled": false, + "is_negotiable_quote_active": false, "is_one_page_checkout_enabled": true, - "is_requisition_list_active": "xyz789", - "list_mode": "xyz789", + "is_requisition_list_active": "abc123", + "list_mode": "abc123", "list_per_page": 123, - "list_per_page_values": "xyz789", - "locale": "xyz789", + "list_per_page_values": "abc123", + "locale": "abc123", "magento_reward_general_is_enabled": "abc123", - "magento_reward_general_is_enabled_on_front": "xyz789", - "magento_reward_general_min_points_balance": "xyz789", + "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": "abc123", "magento_reward_points_invitation_customer_limit": "abc123", "magento_reward_points_invitation_order": "abc123", - "magento_reward_points_invitation_order_limit": "abc123", - "magento_reward_points_newsletter": "abc123", - "magento_reward_points_order": "xyz789", + "magento_reward_points_invitation_order_limit": "xyz789", + "magento_reward_points_newsletter": "xyz789", + "magento_reward_points_order": "abc123", "magento_reward_points_register": "xyz789", "magento_reward_points_review": "xyz789", "magento_reward_points_review_limit": "xyz789", - "magento_wishlist_general_is_enabled": "abc123", + "magento_wishlist_general_is_enabled": "xyz789", "max_items_in_order_summary": 987, "maximum_number_of_wishlists": "abc123", - "minicart_display": true, - "minicart_max_items": 123, - "minimum_password_length": "abc123", + "minicart_display": false, + "minicart_max_items": 987, + "minimum_password_length": "xyz789", "newsletter_enabled": false, - "optional_zip_countries": "abc123", - "order_cancellation_enabled": true, + "optional_zip_countries": "xyz789", + "order_cancellation_enabled": false, "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": 987, - "orders_invoices_credit_memos_display_shipping_amount": 123, + "orders_invoices_credit_memos_display_grandtotal": false, + "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, + "orders_invoices_credit_memos_display_zero_tax": true, "printed_card_priceV2": Money, "product_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", - "product_url_suffix": "xyz789", - "quickorder_active": true, + "product_url_suffix": "abc123", + "quickorder_active": false, "quote_minimum_amount": 123.45, - "quote_minimum_amount_message": "abc123", + "quote_minimum_amount_message": "xyz789", "required_character_classes_number": "abc123", "requisition_list_share_link_validity_days": 987, - "requisition_list_share_max_recipients": 123, - "requisition_list_share_storefront_path": "abc123", - "requisition_list_sharing_enabled": true, + "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": "xyz789", - "secure_base_link_url": "abc123", - "secure_base_media_url": "abc123", - "secure_base_static_url": "xyz789", - "secure_base_url": "xyz789", + "sales_gift_wrapping": "xyz789", + "sales_printed_card": "abc123", + "secure_base_link_url": "xyz789", + "secure_base_media_url": "xyz789", + "secure_base_static_url": "abc123", + "secure_base_url": "abc123", "share_active_segments": false, - "share_applied_cart_rule": false, - "shopping_assistance_checkbox_title": "abc123", + "share_applied_cart_rule": true, + "shopping_assistance_checkbox_title": "xyz789", "shopping_assistance_checkbox_tooltip": "xyz789", - "shopping_assistance_enabled": false, + "shopping_assistance_enabled": true, "shopping_cart_display_full_summary": true, "shopping_cart_display_grand_total": false, "shopping_cart_display_price": 987, "shopping_cart_display_shipping": 123, - "shopping_cart_display_subtotal": 123, + "shopping_cart_display_subtotal": 987, "shopping_cart_display_tax_gift_wrapping": "DISPLAY_EXCLUDING_TAX", "shopping_cart_display_zero_tax": true, "store_code": 4, - "store_group_code": "4", + "store_group_code": 4, "store_group_name": "xyz789", - "store_name": "xyz789", - "store_sort_order": 123, + "store_name": "abc123", + "store_sort_order": 987, "timezone": "xyz789", - "title_separator": "xyz789", + "title_separator": "abc123", "use_store_in_url": false, - "website_code": "4", - "website_name": "xyz789", + "website_code": 4, + "website_name": "abc123", "weight_unit": "xyz789", "zero_subtotal_enable_for_specific_countries": true, "zero_subtotal_enabled": false, "zero_subtotal_new_order_status": "abc123", "zero_subtotal_payment_action": "xyz789", - "zero_subtotal_payment_from_specific_countries": "abc123", + "zero_subtotal_payment_from_specific_countries": "xyz789", "zero_subtotal_sort_order": 987, - "zero_subtotal_title": "xyz789" + "zero_subtotal_title": "abc123" } ] } @@ -1891,7 +1886,7 @@
    Query
    Variables
    -
    {"cart_id": "abc123"}
    +                  
    {"cart_id": "xyz789"}
     
    @@ -2027,7 +2022,7 @@
    Query
    Variables
    {
    -  "ids": ["xyz789"],
    +  "ids": ["abc123"],
       "roles": ["abc123"],
       "subtree": Subtree
     }
    @@ -2042,17 +2037,17 @@ 
    Response
    "availableSortBy": ["abc123"], "children": ["abc123"], "defaultSortBy": "abc123", - "id": "4", - "level": 123, + "id": 4, + "level": 987, "name": "abc123", - "parentId": "abc123", - "position": 987, + "parentId": "xyz789", + "position": 123, "path": "xyz789", "roles": ["abc123"], "urlKey": "xyz789", "urlPath": "xyz789", - "count": 123, - "title": "abc123" + "count": 987, + "title": "xyz789" } ] } @@ -2162,14 +2157,14 @@
    Response
    "data": { "categoryTree": [ { - "slug": "abc123", + "slug": "xyz789", "name": "xyz789", "description": "xyz789", "metaTags": CategoryMetaTags, "images": [CategoryImage], "level": 987, - "parentSlug": "abc123", - "childrenSlugs": ["abc123"] + "parentSlug": "xyz789", + "childrenSlugs": ["xyz789"] } ] } @@ -2226,7 +2221,7 @@
    Response
    "data": { "checkoutAgreements": [ { - "agreement_id": 123, + "agreement_id": 987, "checkbox_text": "xyz789", "content": "xyz789", "content_height": "xyz789", @@ -2394,11 +2389,11 @@
    Response
    "credit": CompanyCredit, "credit_history": CompanyCreditHistory, "custom_attributes": [CustomAttribute], - "email": "xyz789", + "email": "abc123", "id": 4, "legal_address": CompanyLegalAddress, "legal_name": "xyz789", - "name": "xyz789", + "name": "abc123", "payment_methods": ["abc123"], "reseller_id": "xyz789", "role": CompanyRole, @@ -2409,7 +2404,7 @@
    Response
    "team": CompanyTeam, "user": Customer, "users": CompanyUsers, - "vat_tax_id": "abc123" + "vat_tax_id": "xyz789" } } } @@ -2492,7 +2487,7 @@
    Response
    "attributes": [ComparableAttribute], "item_count": 987, "items": [ComparableItem], - "uid": "4" + "uid": 4 } } } @@ -2551,10 +2546,10 @@
    Response
    { "available_regions": [Region], "full_name_english": "xyz789", - "full_name_locale": "xyz789", + "full_name_locale": "abc123", "id": "xyz789", - "three_letter_abbreviation": "abc123", - "two_letter_abbreviation": "abc123" + "three_letter_abbreviation": "xyz789", + "two_letter_abbreviation": "xyz789" } ] } @@ -2628,7 +2623,7 @@
    Query
    Variables
    -
    {"id": "abc123"}
    +                  
    {"id": "xyz789"}
     
    @@ -2637,11 +2632,11 @@
    Response
    "data": { "country": { "available_regions": [Region], - "full_name_english": "abc123", + "full_name_english": "xyz789", "full_name_locale": "abc123", "id": "abc123", "three_letter_abbreviation": "abc123", - "two_letter_abbreviation": "xyz789" + "two_letter_abbreviation": "abc123" } } } @@ -2698,12 +2693,12 @@
    Response
    "data": { "currency": { "available_currency_codes": [ - "xyz789" + "abc123" ], - "base_currency_code": "xyz789", - "base_currency_symbol": "abc123", + "base_currency_code": "abc123", + "base_currency_symbol": "xyz789", "default_display_currency_code": "xyz789", - "default_display_currency_symbol": "xyz789", + "default_display_currency_symbol": "abc123", "exchange_rates": [ExchangeRate] } } @@ -2942,29 +2937,29 @@
    Response
    "confirmation_status": "ACCOUNT_CONFIRMED", "created_at": "abc123", "custom_attributes": [AttributeValueInterface], - "date_of_birth": "xyz789", - "default_billing": "abc123", + "date_of_birth": "abc123", + "default_billing": "xyz789", "default_shipping": "xyz789", "email": "abc123", "firstname": "xyz789", - "gender": 123, + "gender": 987, "gift_registries": [GiftRegistry], "gift_registry": GiftRegistry, "group": CustomerGroupStorefront, "id": "4", - "is_subscribed": false, + "is_subscribed": true, "job_title": "xyz789", "lastname": "xyz789", - "middlename": "xyz789", + "middlename": "abc123", "orders": CustomerOrders, - "prefix": "xyz789", + "prefix": "abc123", "purchase_order": PurchaseOrder, "purchase_order_approval_rule": PurchaseOrderApprovalRule, "purchase_order_approval_rule_metadata": PurchaseOrderApprovalRuleMetadata, "purchase_order_approval_rules": PurchaseOrderApprovalRules, "purchase_orders": PurchaseOrders, "purchase_orders_enabled": true, - "quote_enabled": true, + "quote_enabled": false, "requisition_lists": RequisitionLists, "return": Return, "returns": Returns, @@ -2973,11 +2968,11 @@
    Response
    "segments": [CustomerSegmentStorefront], "status": "ACTIVE", "store_credit": CustomerStoreCredit, - "structure_id": 4, + "structure_id": "4", "suffix": "xyz789", "taxvat": "abc123", "team": CompanyTeam, - "telephone": "xyz789", + "telephone": "abc123", "wishlist_v2": Wishlist, "wishlists": [Wishlist] } @@ -3088,15 +3083,15 @@
    Response
    ], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "abc123", + "email": "xyz789", "gift_message": GiftMessage, "gift_receipt_included": true, "gift_wrapping": GiftWrapping, "id": 4, - "is_virtual": true, + "is_virtual": false, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": true, + "printed_card_included": false, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], @@ -3197,7 +3192,7 @@
    Query
    Response
    -
    {"data": {"customerGroup": {"uid": 4}}}
    +                  
    {"data": {"customerGroup": {"uid": "4"}}}
     
    @@ -3308,16 +3303,12 @@
    Query
    Variables
    -
    {"cartId": "abc123"}
    +                  
    {"cartId": "xyz789"}
     
    Response
    -
    {
    -  "data": {
    -    "customerSegments": [{"uid": "4"}]
    -  }
    -}
    +                  
    {"data": {"customerSegments": [{"uid": 4}]}}
     
    @@ -3489,7 +3480,7 @@
    Query
    Variables
    {
       "cartId": "abc123",
    -  "id": "abc123"
    +  "id": "xyz789"
     }
     
    @@ -3501,7 +3492,7 @@
    Response
    "id": "abc123", "mp_order_id": "abc123", "payment_source_details": PaymentSourceDetails, - "status": "abc123" + "status": "xyz789" } } } @@ -3798,11 +3789,11 @@
    Response
    {
       "data": {
         "giftRegistry": {
    -      "created_at": "xyz789",
    +      "created_at": "abc123",
           "dynamic_attributes": [
             GiftRegistryDynamicAttribute
           ],
    -      "event_name": "xyz789",
    +      "event_name": "abc123",
           "items": [GiftRegistryItemInterface],
           "message": "abc123",
           "owner_name": "abc123",
    @@ -3890,10 +3881,10 @@ 
    Response
    "data": { "giftRegistryEmailSearch": [ { - "event_date": "xyz789", + "event_date": "abc123", "event_title": "xyz789", - "gift_registry_uid": "4", - "location": "xyz789", + "gift_registry_uid": 4, + "location": "abc123", "name": "abc123", "type": "abc123" } @@ -3976,7 +3967,7 @@
    Response
    "giftRegistryIdSearch": [ { "event_date": "abc123", - "event_title": "abc123", + "event_title": "xyz789", "gift_registry_uid": "4", "location": "xyz789", "name": "xyz789", @@ -4072,9 +4063,9 @@
    Query
    Variables
    {
    -  "firstName": "xyz789",
    -  "lastName": "abc123",
    -  "giftRegistryTypeUid": "4"
    +  "firstName": "abc123",
    +  "lastName": "xyz789",
    +  "giftRegistryTypeUid": 4
     }
     
    @@ -4085,11 +4076,11 @@
    Response
    "giftRegistryTypeSearch": [ { "event_date": "xyz789", - "event_title": "abc123", + "event_title": "xyz789", "gift_registry_uid": 4, "location": "abc123", - "name": "abc123", - "type": "abc123" + "name": "xyz789", + "type": "xyz789" } ] } @@ -4147,8 +4138,8 @@
    Response
    "dynamic_attributes_metadata": [ GiftRegistryDynamicAttributeMetadataInterface ], - "label": "abc123", - "uid": "4" + "label": "xyz789", + "uid": 4 } ] } @@ -4295,7 +4286,7 @@
    Response
    "applied_gift_cards": [ApplyGiftCardToOrder], "available_actions": ["REORDER"], "billing_address": OrderAddress, - "carrier": "abc123", + "carrier": "xyz789", "comments": [SalesCommentItem], "credit_memos": [CreditMemo], "custom_attributes": [CustomAttribute], @@ -4304,23 +4295,23 @@
    Response
    "gift_message": GiftMessage, "gift_receipt_included": false, "gift_wrapping": GiftWrapping, - "id": 4, + "id": "4", "invoices": [Invoice], "is_virtual": false, "items": [OrderItemInterface], "items_eligible_for_return": [OrderItemInterface], "negotiable_quote": NegotiableQuote, - "number": "xyz789", - "order_date": "abc123", + "number": "abc123", + "order_date": "xyz789", "order_status_change_date": "xyz789", "payment_methods": [OrderPaymentMethod], - "printed_card_included": false, + "printed_card_included": true, "returns": Returns, "shipments": [OrderShipment], "shipping_address": OrderAddress, "shipping_method": "xyz789", "status": "abc123", - "token": "abc123", + "token": "xyz789", "total": OrderTotal } } @@ -4467,31 +4458,31 @@
    Response
    "applied_gift_cards": [ApplyGiftCardToOrder], "available_actions": ["REORDER"], "billing_address": OrderAddress, - "carrier": "xyz789", + "carrier": "abc123", "comments": [SalesCommentItem], "credit_memos": [CreditMemo], "custom_attributes": [CustomAttribute], "customer_info": OrderCustomerInfo, "email": "abc123", "gift_message": GiftMessage, - "gift_receipt_included": false, + "gift_receipt_included": true, "gift_wrapping": GiftWrapping, - "id": "4", + "id": 4, "invoices": [Invoice], - "is_virtual": false, + "is_virtual": true, "items": [OrderItemInterface], "items_eligible_for_return": [OrderItemInterface], "negotiable_quote": NegotiableQuote, - "number": "abc123", + "number": "xyz789", "order_date": "xyz789", - "order_status_change_date": "xyz789", + "order_status_change_date": "abc123", "payment_methods": [OrderPaymentMethod], - "printed_card_included": true, + "printed_card_included": false, "returns": Returns, "shipments": [OrderShipment], "shipping_address": OrderAddress, - "shipping_method": "xyz789", - "status": "abc123", + "shipping_method": "abc123", + "status": "xyz789", "token": "xyz789", "total": OrderTotal } @@ -4627,12 +4618,12 @@
    Query
    Variables
    -
    {"email": "abc123"}
    +                  
    {"email": "xyz789"}
     
    Response
    -
    {"data": {"isCompanyEmailAvailable": {"is_email_available": true}}}
    +                  
    {"data": {"isCompanyEmailAvailable": {"is_email_available": false}}}
     
    @@ -4763,7 +4754,7 @@
    Query
    Variables
    -
    {"email": "abc123"}
    +                  
    {"email": "xyz789"}
     
    @@ -4983,8 +4974,8 @@
    Response
    {
       "data": {
         "isSubscribedProductAlertStock": {
    -      "isSubscribed": false,
    -      "message": "abc123"
    +      "isSubscribed": true,
    +      "message": "xyz789"
         }
       }
     }
    @@ -5175,7 +5166,7 @@ 
    Query
    Variables
    -
    {"uid": "4"}
    +                  
    {"uid": 4}
     
    @@ -5191,12 +5182,12 @@
    Response
    "comments": [NegotiableQuoteComment], "created_at": "xyz789", "custom_attributes": [CustomAttribute], - "email": "xyz789", - "expiration_date": "xyz789", + "email": "abc123", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "is_virtual": true, "items": [CartItemInterface], - "name": "abc123", + "name": "xyz789", "order": CustomerOrder, "prices": CartPrices, "sales_rep_name": "xyz789", @@ -5207,9 +5198,9 @@
    Response
    "status": "SUBMITTED", "template_id": "4", "template_name": "xyz789", - "total_quantity": 123.45, + "total_quantity": 987.65, "uid": "4", - "updated_at": "abc123" + "updated_at": "xyz789" } } } @@ -5314,7 +5305,7 @@
    Query
    Variables
    -
    {"templateId": "4"}
    +                  
    {"templateId": 4}
     
    @@ -5324,29 +5315,29 @@
    Response
    "negotiableQuoteTemplate": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "xyz789", - "expiration_date": "abc123", + "created_at": "abc123", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": true, - "is_virtual": false, + "is_min_max_qty_used": false, + "is_virtual": true, "items": [CartItemInterface], - "max_order_commitment": 987, + "max_order_commitment": 123, "min_order_commitment": 987, - "name": "abc123", + "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "shipping_addresses": [ NegotiableQuoteShippingAddress ], "status": "xyz789", "template_id": "4", - "total_quantity": 987.65, - "uid": "4", + "total_quantity": 123.45, + "uid": 4, "updated_at": "xyz789" } } @@ -5587,97 +5578,6 @@
    Response
    } } } -
    - - - back to top - -
    -
    -
    - Queries -
    -

    - payByLinkOrder -

    -
    -
    -
    -
    Description
    -

    Resolves a Pay By Link token to the pending order's summary so the EDS payment page can render it before collecting payment.

    -
    -
    -
    -
    -
    -
    -
    Response
    -

    Returns a PayByLinkOrder -

    -
    -
    -
    Arguments
    - - - - - - - - - - - - - -
    NameDescription
    - token - String! - The token issued for the Pay By Link payment.
    -
    -
    -
    -

    Example

    -
    -
    Query
    -
    query payByLinkOrder($token: String!) {
    -  payByLinkOrder(token: $token) {
    -    billing_address {
    -      ...PayByLinkOrderAddressFragment
    -    }
    -    customer_email
    -    expires_at
    -    items {
    -      ...PayByLinkOrderItemFragment
    -    }
    -    shipping_address {
    -      ...PayByLinkOrderAddressFragment
    -    }
    -    totals {
    -      ...PayByLinkOrderTotalsFragment
    -    }
    -  }
    -}
    -
    -
    -
    -
    Variables
    -
    {"token": "abc123"}
    -
    -
    -
    -
    Response
    -
    {
    -  "data": {
    -    "payByLinkOrder": {
    -      "billing_address": PayByLinkOrderAddress,
    -      "customer_email": "abc123",
    -      "expires_at": "abc123",
    -      "items": [PayByLinkOrderItem],
    -      "shipping_address": PayByLinkOrderAddress,
    -      "totals": PayByLinkOrderTotals
    -    }
    -  }
    -}
     
    @@ -5934,7 +5834,7 @@
    Variables
    "current_page": 1, "filter": [SearchClauseInput], "page_size": 20, - "phrase": "xyz789", + "phrase": "abc123", "sort": [ProductSearchSortInput] }
    @@ -5948,7 +5848,7 @@
    Response
    "items": [ProductSearchItem], "page_info": SearchResultPageInfo, "related_terms": ["abc123"], - "suggestions": ["abc123"], + "suggestions": ["xyz789"], "total_count": 123, "warnings": [ProductSearchWarning] } @@ -6049,7 +5949,7 @@
    Query
    Variables
    -
    {"skus": ["abc123"]}
    +                  
    {"skus": ["xyz789"]}
     
    @@ -6058,29 +5958,29 @@
    Response
    "data": { "products": [ { - "addToCartAllowed": false, - "inStock": false, + "addToCartAllowed": true, + "inStock": true, "lowStock": false, "attributes": [ProductViewAttribute], - "description": "xyz789", - "id": "4", + "description": "abc123", + "id": 4, "images": [ProductViewImage], "videos": [ProductViewVideo], "lastModifiedAt": "2007-12-03T10:15:30Z", - "metaDescription": "xyz789", - "metaKeyword": "xyz789", - "metaTitle": "xyz789", - "name": "abc123", + "metaDescription": "abc123", + "metaKeyword": "abc123", + "metaTitle": "abc123", + "name": "xyz789", "shortDescription": "xyz789", "inputOptions": [ProductViewInputOption], "sku": "xyz789", "externalId": "abc123", - "url": "xyz789", + "url": "abc123", "urlKey": "xyz789", "links": [ProductViewLink], "categories": [CategoryProductView], "queryType": "xyz789", - "visibility": "abc123" + "visibility": "xyz789" } ] } @@ -6292,11 +6192,11 @@
    Response
    "badge_position": "xyz789", "failure_message": "abc123", "forms": ["PLACE_ORDER"], - "is_enabled": true, - "language_code": "xyz789", + "is_enabled": false, + "language_code": "abc123", "minimum_score": 987.65, - "theme": "xyz789", - "website_key": "abc123" + "theme": "abc123", + "website_key": "xyz789" } } } @@ -6425,7 +6325,7 @@
    Query
    Variables
    {
    -  "cartSkus": ["abc123"],
    +  "cartSkus": ["xyz789"],
       "category": "xyz789",
       "currentSku": "abc123",
       "currentProduct": CurrentProductInput,
    @@ -6548,11 +6448,11 @@ 
    Query
    Variables
    {
       "unitIds": ["xyz789"],
    -  "currentSku": "xyz789",
    +  "currentSku": "abc123",
       "currentProduct": CurrentProductInput,
       "userPurchaseHistory": [PurchaseHistory],
       "userViewHistory": [ViewHistory],
    -  "cartSkus": ["abc123"]
    +  "cartSkus": ["xyz789"]
     }
     
    @@ -6562,7 +6462,7 @@
    Response
    "data": { "recommendationsByUnitIds": { "results": [RecommendationUnit], - "totalResults": 987 + "totalResults": 123 } } } @@ -6684,28 +6584,28 @@
    Response
    {
       "data": {
         "refineProduct": {
    -      "addToCartAllowed": true,
    -      "inStock": false,
    +      "addToCartAllowed": false,
    +      "inStock": true,
           "lowStock": true,
           "attributes": [ProductViewAttribute],
    -      "description": "xyz789",
    -      "id": 4,
    +      "description": "abc123",
    +      "id": "4",
           "images": [ProductViewImage],
           "videos": [ProductViewVideo],
           "lastModifiedAt": "2007-12-03T10:15:30Z",
    -      "metaDescription": "abc123",
    +      "metaDescription": "xyz789",
           "metaKeyword": "abc123",
           "metaTitle": "xyz789",
           "name": "xyz789",
    -      "shortDescription": "xyz789",
    +      "shortDescription": "abc123",
           "inputOptions": [ProductViewInputOption],
    -      "sku": "abc123",
    -      "externalId": "abc123",
    -      "url": "xyz789",
    +      "sku": "xyz789",
    +      "externalId": "xyz789",
    +      "url": "abc123",
           "urlKey": "xyz789",
           "links": [ProductViewLink],
           "categories": [CategoryProductView],
    -      "queryType": "abc123",
    +      "queryType": "xyz789",
           "visibility": "abc123"
         }
       }
    @@ -6807,7 +6707,7 @@ 
    Query
    Variables
    {
       "searchTerm": "abc123",
    -  "family": "xyz789",
    +  "family": "abc123",
       "pageSize": 20,
       "currentPage": 1
     }
    @@ -6819,7 +6719,7 @@ 
    Response
    "data": { "searchCategory": { "items": [CategoryTreeView], - "totalCount": 987, + "totalCount": 123, "pageInfo": PageInfo } } @@ -6897,7 +6797,7 @@
    Response
    "data": { "sharedRequisitionList": { "requisition_list": RequisitionList, - "sender_name": "xyz789" + "sender_name": "abc123" } } } @@ -7095,152 +6995,152 @@
    Response
    {
       "data": {
         "storeConfig": {
    -      "allow_company_registration": true,
    +      "allow_company_registration": false,
           "allow_gift_receipt": "xyz789",
    -      "allow_gift_wrapping_on_order": "abc123",
    -      "allow_gift_wrapping_on_order_items": "abc123",
    +      "allow_gift_wrapping_on_order": "xyz789",
    +      "allow_gift_wrapping_on_order_items": "xyz789",
           "allow_items": "abc123",
           "allow_order": "abc123",
    -      "allow_printed_card": "xyz789",
    +      "allow_printed_card": "abc123",
           "autocomplete_on_storefront": false,
           "base_currency_code": "abc123",
    -      "base_link_url": "abc123",
    +      "base_link_url": "xyz789",
           "base_media_url": "xyz789",
           "base_static_url": "abc123",
    -      "base_url": "abc123",
    -      "cart_expires_in_days": 987,
    -      "cart_gift_wrapping": "abc123",
    -      "cart_merge_preference": "abc123",
    -      "cart_printed_card": "abc123",
    +      "base_url": "xyz789",
    +      "cart_expires_in_days": 123,
    +      "cart_gift_wrapping": "xyz789",
    +      "cart_merge_preference": "xyz789",
    +      "cart_printed_card": "xyz789",
           "cart_summary_display_quantity": 123,
           "catalog_default_sort_by": "abc123",
           "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_enable_for_specific_countries": true,
           "check_money_order_enabled": true,
           "check_money_order_make_check_payable_to": "abc123",
           "check_money_order_max_order_total": "xyz789",
    -      "check_money_order_min_order_total": "xyz789",
    +      "check_money_order_min_order_total": "abc123",
           "check_money_order_new_order_status": "xyz789",
           "check_money_order_payment_from_specific_countries": "xyz789",
    -      "check_money_order_send_check_to": "abc123",
    +      "check_money_order_send_check_to": "xyz789",
           "check_money_order_sort_order": 987,
    -      "check_money_order_title": "abc123",
    +      "check_money_order_title": "xyz789",
           "company_credit_enabled": false,
    -      "company_enabled": true,
    +      "company_enabled": false,
           "configurable_product_image": "ITSELF",
           "configurable_thumbnail_source": "xyz789",
    -      "contact_enabled": true,
    +      "contact_enabled": false,
           "countries_with_required_region": "abc123",
    -      "create_account_confirmation": false,
    -      "customer_access_token_lifetime": 987.65,
    +      "create_account_confirmation": true,
    +      "customer_access_token_lifetime": 123.45,
           "default_country": "abc123",
           "default_display_currency_code": "abc123",
           "display_product_prices_in_catalog": 987,
    -      "display_shipping_prices": 987,
    +      "display_shipping_prices": 123,
           "display_state_if_optional": false,
    -      "enable_multiple_wishlists": "abc123",
    +      "enable_multiple_wishlists": "xyz789",
           "fixed_product_taxes_apply_tax_to_fpt": true,
    -      "fixed_product_taxes_display_prices_in_emails": 987,
    -      "fixed_product_taxes_display_prices_in_product_lists": 123,
    +      "fixed_product_taxes_display_prices_in_emails": 123,
    +      "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": true,
    -      "fixed_product_taxes_include_fpt_in_subtotal": false,
    +      "fixed_product_taxes_display_prices_on_product_view_page": 987,
    +      "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": "xyz789",
    +      "grid_per_page": 123,
    +      "grid_per_page_values": "abc123",
           "grouped_product_image": "ITSELF",
           "is_checkout_agreements_enabled": true,
    -      "is_default_store": false,
    -      "is_default_store_group": false,
    -      "is_guest_checkout_enabled": false,
    +      "is_default_store": true,
    +      "is_default_store_group": true,
    +      "is_guest_checkout_enabled": true,
           "is_negotiable_quote_active": true,
    -      "is_one_page_checkout_enabled": false,
    +      "is_one_page_checkout_enabled": true,
           "is_requisition_list_active": "xyz789",
    -      "list_mode": "abc123",
    +      "list_mode": "xyz789",
           "list_per_page": 123,
           "list_per_page_values": "abc123",
           "locale": "abc123",
           "magento_reward_general_is_enabled": "xyz789",
    -      "magento_reward_general_is_enabled_on_front": "xyz789",
    +      "magento_reward_general_is_enabled_on_front": "abc123",
           "magento_reward_general_min_points_balance": "abc123",
    -      "magento_reward_general_publish_history": "abc123",
    +      "magento_reward_general_publish_history": "xyz789",
           "magento_reward_points_invitation_customer": "xyz789",
           "magento_reward_points_invitation_customer_limit": "abc123",
           "magento_reward_points_invitation_order": "xyz789",
    -      "magento_reward_points_invitation_order_limit": "xyz789",
    -      "magento_reward_points_newsletter": "xyz789",
    -      "magento_reward_points_order": "abc123",
    -      "magento_reward_points_register": "abc123",
    +      "magento_reward_points_invitation_order_limit": "abc123",
    +      "magento_reward_points_newsletter": "abc123",
    +      "magento_reward_points_order": "xyz789",
    +      "magento_reward_points_register": "xyz789",
           "magento_reward_points_review": "xyz789",
    -      "magento_reward_points_review_limit": "xyz789",
    +      "magento_reward_points_review_limit": "abc123",
           "magento_wishlist_general_is_enabled": "abc123",
           "max_items_in_order_summary": 123,
           "maximum_number_of_wishlists": "xyz789",
    -      "minicart_display": true,
    +      "minicart_display": false,
           "minicart_max_items": 123,
    -      "minimum_password_length": "xyz789",
    -      "newsletter_enabled": true,
    -      "optional_zip_countries": "xyz789",
    -      "order_cancellation_enabled": false,
    +      "minimum_password_length": "abc123",
    +      "newsletter_enabled": false,
    +      "optional_zip_countries": "abc123",
    +      "order_cancellation_enabled": true,
           "order_cancellation_reasons": [CancellationReason],
           "orders_invoices_credit_memos_display_full_summary": false,
           "orders_invoices_credit_memos_display_grandtotal": false,
           "orders_invoices_credit_memos_display_price": 123,
    -      "orders_invoices_credit_memos_display_shipping_amount": 123,
    +      "orders_invoices_credit_memos_display_shipping_amount": 987,
           "orders_invoices_credit_memos_display_subtotal": 987,
    -      "orders_invoices_credit_memos_display_zero_tax": true,
    +      "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": true,
    +      "quickorder_active": false,
           "quote_minimum_amount": 123.45,
    -      "quote_minimum_amount_message": "xyz789",
    +      "quote_minimum_amount_message": "abc123",
           "required_character_classes_number": "abc123",
    -      "requisition_list_share_link_validity_days": 123,
    +      "requisition_list_share_link_validity_days": 987,
           "requisition_list_share_max_recipients": 123,
    -      "requisition_list_share_storefront_path": "abc123",
    +      "requisition_list_share_storefront_path": "xyz789",
           "requisition_list_sharing_enabled": true,
           "returns_enabled": "abc123",
           "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": "xyz789",
    +      "sales_printed_card": "xyz789",
    +      "secure_base_link_url": "abc123",
           "secure_base_media_url": "abc123",
           "secure_base_static_url": "abc123",
    -      "secure_base_url": "abc123",
    -      "share_active_segments": true,
    +      "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": true,
           "shopping_cart_display_full_summary": false,
    -      "shopping_cart_display_grand_total": false,
    +      "shopping_cart_display_grand_total": true,
           "shopping_cart_display_price": 123,
           "shopping_cart_display_shipping": 987,
           "shopping_cart_display_subtotal": 987,
           "shopping_cart_display_tax_gift_wrapping": "DISPLAY_EXCLUDING_TAX",
    -      "shopping_cart_display_zero_tax": true,
    -      "store_code": 4,
    +      "shopping_cart_display_zero_tax": false,
    +      "store_code": "4",
           "store_group_code": "4",
    -      "store_group_name": "xyz789",
    -      "store_name": "abc123",
    -      "store_sort_order": 123,
    -      "timezone": "abc123",
    -      "title_separator": "xyz789",
    +      "store_group_name": "abc123",
    +      "store_name": "xyz789",
    +      "store_sort_order": 987,
    +      "timezone": "xyz789",
    +      "title_separator": "abc123",
           "use_store_in_url": false,
           "website_code": 4,
    -      "website_name": "xyz789",
    -      "weight_unit": "xyz789",
    +      "website_name": "abc123",
    +      "weight_unit": "abc123",
           "zero_subtotal_enable_for_specific_countries": true,
           "zero_subtotal_enabled": true,
           "zero_subtotal_new_order_status": "abc123",
    -      "zero_subtotal_payment_action": "xyz789",
    +      "zero_subtotal_payment_action": "abc123",
           "zero_subtotal_payment_from_specific_countries": "xyz789",
           "zero_subtotal_sort_order": 987,
    -      "zero_subtotal_title": "xyz789"
    +      "zero_subtotal_title": "abc123"
         }
       }
     }
    @@ -7329,8 +7229,8 @@ 
    Query
    Variables
    {
    -  "sku": "xyz789",
    -  "optionIds": ["abc123"],
    +  "sku": "abc123",
    +  "optionIds": ["xyz789"],
       "pageSize": 987,
       "cursor": "abc123"
     }
    @@ -7411,7 +7311,7 @@ 
    Variables
    Response
    -
    {"data": {"acceptCompanyInvitation": {"success": true}}}
    +                  
    {"data": {"acceptCompanyInvitation": {"success": false}}}
     
    @@ -7522,15 +7422,15 @@
    Response
    "acceptNegotiableQuoteTemplate": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "xyz789", - "expiration_date": "xyz789", + "created_at": "abc123", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": false, "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 123, - "min_order_commitment": 123, + "min_order_commitment": 987, "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, @@ -7541,11 +7441,11 @@
    Response
    "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", + "status": "xyz789", "template_id": "4", - "total_quantity": 123.45, - "uid": "4", - "updated_at": "xyz789" + "total_quantity": 987.65, + "uid": 4, + "updated_at": "abc123" } } } @@ -7698,7 +7598,7 @@
    Query
    Variables
    {
    -  "giftRegistryUid": 4,
    +  "giftRegistryUid": "4",
       "registrants": [AddGiftRegistryRegistrantInput]
     }
     
    @@ -7791,7 +7691,7 @@
    Query
    Variables
    {
    -  "cartId": "abc123",
    +  "cartId": "xyz789",
       "cartItems": [CartItemInput]
     }
     
    @@ -7885,7 +7785,7 @@
    Response
    "attributes": [ComparableAttribute], "item_count": 123, "items": [ComparableItem], - "uid": 4 + "uid": "4" } } } @@ -8044,7 +7944,7 @@
    Query
    Variables
    {
    -  "requisitionListUid": 4,
    +  "requisitionListUid": "4",
       "requisitionListItems": [RequisitionListItemsInput]
     }
     
    @@ -8136,10 +8036,7 @@
    Query
    Variables
    -
    {
    -  "wishlistId": "4",
    -  "wishlistItems": [WishlistItemInput]
    -}
    +                  
    {"wishlistId": 4, "wishlistItems": [WishlistItemInput]}
     
    @@ -8389,7 +8286,7 @@
    Query
    Variables
    {
       "requisitionListUid": "4",
    -  "requisitionListItemUids": ["4"]
    +  "requisitionListItemUids": [4]
     }
     
    @@ -8402,7 +8299,7 @@
    Response
    AddRequisitionListItemToCartUserError ], "cart": Cart, - "status": false + "status": true } } } @@ -8633,7 +8530,7 @@
    Query
    Variables
    -
    {"wishlistId": 4, "wishlistItemIds": [4]}
    +                  
    {"wishlistId": 4, "wishlistItemIds": ["4"]}
     
    @@ -8644,7 +8541,7 @@
    Response
    "add_wishlist_items_to_cart_user_errors": [ WishlistCartUserInputError ], - "status": false, + "status": true, "wishlist": Wishlist } } @@ -9223,7 +9120,7 @@
    Response
    "data": { "assignCompareListToCustomer": { "compare_list": CompareList, - "result": true + "result": false } } } @@ -9357,15 +9254,15 @@
    Response
    ], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "abc123", + "email": "xyz789", "gift_message": GiftMessage, "gift_receipt_included": false, "gift_wrapping": GiftWrapping, - "id": "4", - "is_virtual": true, + "id": 4, + "is_virtual": false, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": false, + "printed_card_included": true, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], @@ -9483,7 +9380,7 @@
    Response
    "cancelNegotiableQuoteTemplate": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", + "created_at": "xyz789", "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], @@ -9498,15 +9395,15 @@
    Response
    "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "abc123", + "sales_rep_name": "xyz789", "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "xyz789", - "template_id": 4, + "status": "abc123", + "template_id": "4", "total_quantity": 987.65, - "uid": 4, - "updated_at": "abc123" + "uid": "4", + "updated_at": "xyz789" } } } @@ -9845,8 +9742,8 @@
    Query
    Variables
    {
    -  "currentPassword": "xyz789",
    -  "newPassword": "xyz789"
    +  "currentPassword": "abc123",
    +  "newPassword": "abc123"
     }
     
    @@ -9858,12 +9755,12 @@
    Response
    "addresses": [CustomerAddress], "addressesV2": CustomerAddresses, "admin_assistance_actions": AdminAssistanceActions, - "allow_remote_shopping_assistance": true, + "allow_remote_shopping_assistance": false, "companies": UserCompaniesOutput, "company_hierarchy": [CompanyHierarchy], "compare_list": CompareList, "confirmation_status": "ACCOUNT_CONFIRMED", - "created_at": "abc123", + "created_at": "xyz789", "custom_attributes": [AttributeValueInterface], "date_of_birth": "abc123", "default_billing": "abc123", @@ -9875,19 +9772,19 @@
    Response
    "gift_registry": GiftRegistry, "group": CustomerGroupStorefront, "id": 4, - "is_subscribed": true, - "job_title": "xyz789", + "is_subscribed": false, + "job_title": "abc123", "lastname": "xyz789", "middlename": "xyz789", "orders": CustomerOrders, - "prefix": "xyz789", + "prefix": "abc123", "purchase_order": PurchaseOrder, "purchase_order_approval_rule": PurchaseOrderApprovalRule, "purchase_order_approval_rule_metadata": PurchaseOrderApprovalRuleMetadata, "purchase_order_approval_rules": PurchaseOrderApprovalRules, "purchase_orders": PurchaseOrders, "purchase_orders_enabled": false, - "quote_enabled": true, + "quote_enabled": false, "requisition_lists": RequisitionLists, "return": Return, "returns": Returns, @@ -9977,7 +9874,7 @@
    Variables
    Response
    {
       "data": {
    -    "clearCustomerCart": {"cart": Cart, "status": true}
    +    "clearCustomerCart": {"cart": Cart, "status": false}
       }
     }
     
    @@ -10300,7 +10197,7 @@
    Query
    Variables
    {
    -  "token": "abc123",
    +  "token": "xyz789",
       "payment_method": PaymentMethodInput
     }
     
    @@ -10310,7 +10207,7 @@
    Response
    {
       "data": {
         "completePayByLinkPayment": {
    -      "order_number": "xyz789"
    +      "order_number": "abc123"
         }
       }
     }
    @@ -10390,7 +10287,7 @@ 
    Response
    {
       "data": {
         "confirmCancelOrder": {
    -      "error": "xyz789",
    +      "error": "abc123",
           "errorV2": CancelOrderError,
           "order": CustomerOrder
         }
    @@ -10611,7 +10508,7 @@ 
    Variables
    Response
    -
    {"data": {"contactUs": {"status": false}}}
    +                  
    {"data": {"contactUs": {"status": true}}}
     
    @@ -10696,7 +10593,7 @@
    Query
    Variables
    {
    -  "sourceRequisitionListUid": 4,
    +  "sourceRequisitionListUid": "4",
       "destinationRequisitionListUid": "4",
       "requisitionListItem": CopyItemsBetweenRequisitionListsInput
     }
    @@ -10801,8 +10698,8 @@ 
    Query
    Variables
    {
    -  "sourceWishlistUid": "4",
    -  "destinationWishlistUid": "4",
    +  "sourceWishlistUid": 4,
    +  "destinationWishlistUid": 4,
       "wishlistItems": [WishlistItemCopyInput]
     }
     
    @@ -11176,7 +11073,7 @@
    Response
    "data": { "createCompareList": { "attributes": [ComparableAttribute], - "item_count": 987, + "item_count": 123, "items": [ComparableItem], "uid": "4" } @@ -11278,7 +11175,7 @@
    Response
    {
       "data": {
         "createCustomerAddress": {
    -      "city": "xyz789",
    +      "city": "abc123",
           "company": "abc123",
           "country_code": "AF",
           "custom_attributesV2": [AttributeValueInterface],
    @@ -11286,19 +11183,19 @@ 
    Response
    "default_shipping": true, "extension_attributes": [CustomerAddressAttribute], "fax": "xyz789", - "firstname": "abc123", + "firstname": "xyz789", "id": 123, - "lastname": "xyz789", + "lastname": "abc123", "middlename": "xyz789", "postcode": "xyz789", - "prefix": "xyz789", + "prefix": "abc123", "region": CustomerAddressRegion, - "region_id": 987, + "region_id": 123, "street": ["abc123"], "suffix": "xyz789", "telephone": "xyz789", "uid": 4, - "vat_id": "abc123" + "vat_id": "xyz789" } } } @@ -11587,11 +11484,11 @@
    Response
    {
       "data": {
         "createPaymentOrder": {
    -      "amount": 123.45,
    +      "amount": 987.65,
           "currency_code": "xyz789",
           "id": "abc123",
    -      "mp_order_id": "abc123",
    -      "status": "xyz789"
    +      "mp_order_id": "xyz789",
    +      "status": "abc123"
         }
       }
     }
    @@ -11684,12 +11581,12 @@ 
    Response
    "approver_roles": [CompanyRole], "condition": PurchaseOrderApprovalRuleConditionInterface, "created_at": "abc123", - "created_by": "xyz789", - "description": "xyz789", + "created_by": "abc123", + "description": "abc123", "name": "abc123", "status": "ENABLED", "uid": "4", - "updated_at": "abc123" + "updated_at": "xyz789" } } } @@ -11915,7 +11812,7 @@
    Response
    {
       "data": {
         "createVaultCardSetupToken": {
    -      "setup_token": "abc123"
    +      "setup_token": "xyz789"
         }
       }
     }
    @@ -12055,7 +11952,7 @@ 
    Variables
    Response
    -
    {"data": {"deleteCompanyRole": {"success": true}}}
    +                  
    {"data": {"deleteCompanyRole": {"success": false}}}
     
    @@ -12118,12 +12015,12 @@
    Query
    Variables
    -
    {"id": "4"}
    +                  
    {"id": 4}
     
    Response
    -
    {"data": {"deleteCompanyTeam": {"success": true}}}
    +                  
    {"data": {"deleteCompanyTeam": {"success": false}}}
     
    @@ -12371,7 +12268,7 @@
    Variables
    Response
    -
    {"data": {"deleteCustomerAddress": true}}
    +                  
    {"data": {"deleteCustomerAddress": false}}
     
    @@ -12807,7 +12704,7 @@
    Query
    Variables
    -
    {"requisitionListUid": 4}
    +                  
    {"requisitionListUid": "4"}
     
    @@ -12974,7 +12871,7 @@
    Query
    Variables
    -
    {"wishlistId": "4"}
    +                  
    {"wishlistId": 4}
     
    @@ -13150,11 +13047,11 @@
    Response
    "additional_data": [ShippingAdditionalData], "amount": Money, "available": false, - "carrier_code": "xyz789", + "carrier_code": "abc123", "carrier_title": "xyz789", "error_message": "xyz789", "method_code": "abc123", - "method_title": "xyz789", + "method_title": "abc123", "price_excl_tax": Money, "price_incl_tax": Money } @@ -13303,7 +13200,7 @@
    Response
    "data": { "exchangeExternalCustomerToken": { "customer": Customer, - "token": "abc123" + "token": "xyz789" } } } @@ -13381,8 +13278,8 @@
    Query
    Variables
    {
    -  "email": "xyz789",
    -  "otp": "xyz789"
    +  "email": "abc123",
    +  "otp": "abc123"
     }
     
    @@ -13459,9 +13356,9 @@
    Response
    {
       "data": {
         "finishUpload": {
    -      "key": "xyz789",
    +      "key": "abc123",
           "message": "xyz789",
    -      "success": false
    +      "success": true
         }
       }
     }
    @@ -13539,7 +13436,7 @@ 
    Query
    Variables
    {
    -  "email": "xyz789",
    +  "email": "abc123",
       "password": "abc123"
     }
     
    @@ -13549,7 +13446,7 @@
    Response
    {
       "data": {
         "generateCustomerToken": {
    -      "token": "xyz789"
    +      "token": "abc123"
         }
       }
     }
    @@ -13692,7 +13589,13 @@ 
    Variables
    Response
    -
    {"data": {"generateNegotiableQuoteFromTemplate": {"negotiable_quote_uid": 4}}}
    +                  
    {
    +  "data": {
    +    "generateNegotiableQuoteFromTemplate": {
    +      "negotiable_quote_uid": "4"
    +    }
    +  }
    +}
     
    @@ -13759,7 +13662,7 @@
    Query
    Variables
    -
    {"token": "abc123"}
    +                  
    {"token": "xyz789"}
     
    @@ -13837,8 +13740,8 @@
    Response
    "data": { "initiateUpload": { "expires_at": "xyz789", - "key": "abc123", - "upload_url": "abc123" + "key": "xyz789", + "upload_url": "xyz789" } } } @@ -13967,7 +13870,7 @@
    Query
    Variables
    {
       "source_cart_id": "xyz789",
    -  "destination_cart_id": "xyz789"
    +  "destination_cart_id": "abc123"
     }
     
    @@ -13990,15 +13893,15 @@
    Response
    "gift_message": GiftMessage, "gift_receipt_included": true, "gift_wrapping": GiftWrapping, - "id": "4", + "id": 4, "is_virtual": true, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": false, + "printed_card_included": true, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], - "total_quantity": 123.45 + "total_quantity": 987.65 } } } @@ -14081,7 +13984,7 @@
    Query
    Variables
    -
    {"cartUid": "4", "giftRegistryUid": 4}
    +                  
    {"cartUid": 4, "giftRegistryUid": 4}
     
    @@ -14183,7 +14086,7 @@
    Query
    Variables
    {
       "sourceRequisitionListUid": 4,
    -  "destinationRequisitionListUid": 4,
    +  "destinationRequisitionListUid": "4",
       "requisitionListItem": MoveItemsBetweenRequisitionListsInput
     }
     
    @@ -14363,7 +14266,7 @@
    Query
    Variables
    {
    -  "sourceWishlistUid": 4,
    +  "sourceWishlistUid": "4",
       "destinationWishlistUid": 4,
       "wishlistItems": [WishlistItemMoveInput]
     }
    @@ -14490,26 +14393,26 @@ 
    Response
    "openNegotiableQuoteTemplate": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "xyz789", - "expiration_date": "xyz789", + "created_at": "abc123", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": true, "is_virtual": false, "items": [CartItemInterface], "max_order_commitment": 123, - "min_order_commitment": 123, + "min_order_commitment": 987, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", + "status": "xyz789", "template_id": 4, "total_quantity": 123.45, "uid": 4, @@ -14976,7 +14879,7 @@
    Response
    "redeemGiftCardBalanceAsStoreCredit": { "balance": Money, "code": "abc123", - "expiration_date": "xyz789" + "expiration_date": "abc123" } } } @@ -15333,7 +15236,7 @@
    Variables
    Response
    -
    {"data": {"removeGiftRegistry": {"success": true}}}
    +                  
    {"data": {"removeGiftRegistry": {"success": false}}}
     
    @@ -15409,7 +15312,7 @@
    Query
    Variables
    -
    {"giftRegistryUid": "4", "itemsUid": [4]}
    +                  
    {"giftRegistryUid": 4, "itemsUid": ["4"]}
     
    @@ -15497,8 +15400,8 @@
    Query
    Variables
    {
    -  "giftRegistryUid": "4",
    -  "registrantsUid": [4]
    +  "giftRegistryUid": 4,
    +  "registrantsUid": ["4"]
     }
     
    @@ -15766,11 +15669,11 @@
    Response
    "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], "created_at": "xyz789", - "expiration_date": "abc123", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": true, - "is_virtual": false, + "is_min_max_qty_used": false, + "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 987, "min_order_commitment": 123, @@ -15784,11 +15687,11 @@
    Response
    "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "xyz789", + "status": "abc123", "template_id": 4, "total_quantity": 987.65, - "uid": "4", - "updated_at": "abc123" + "uid": 4, + "updated_at": "xyz789" } } } @@ -15871,7 +15774,7 @@
    Response
    "attributes": [ComparableAttribute], "item_count": 123, "items": [ComparableItem], - "uid": "4" + "uid": 4 } } } @@ -15953,7 +15856,10 @@
    Query
    Variables
    -
    {"wishlistId": "4", "wishlistItemsIds": [4]}
    +                  
    {
    +  "wishlistId": "4",
    +  "wishlistItemsIds": ["4"]
    +}
     
    @@ -16314,7 +16220,7 @@
    Query
    Variables
    -
    {"orderNumber": "abc123"}
    +                  
    {"orderNumber": "xyz789"}
     
    @@ -16663,15 +16569,15 @@
    Response
    "requestNegotiableQuoteTemplateFromQuote": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "xyz789", - "expiration_date": "abc123", + "created_at": "abc123", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": false, - "is_virtual": false, + "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 987, - "min_order_commitment": 987, + "min_order_commitment": 123, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, @@ -16682,7 +16588,7 @@
    Response
    "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "xyz789", + "status": "abc123", "template_id": "4", "total_quantity": 987.65, "uid": 4, @@ -16754,7 +16660,7 @@
    Variables
    Response
    -
    {"data": {"requestPasswordResetEmail": true}}
    +                  
    {"data": {"requestPasswordResetEmail": false}}
     
    @@ -16893,12 +16799,12 @@
    Query
    Variables
    -
    {"email": "xyz789"}
    +                  
    {"email": "abc123"}
     
    Response
    -
    {"data": {"resendConfirmationEmail": false}}
    +                  
    {"data": {"resendConfirmationEmail": true}}
     
    @@ -16979,15 +16885,15 @@
    Query
    Variables
    {
    -  "email": "xyz789",
    -  "resetPasswordToken": "xyz789",
    -  "newPassword": "abc123"
    +  "email": "abc123",
    +  "resetPasswordToken": "abc123",
    +  "newPassword": "xyz789"
     }
     
    Response
    -
    {"data": {"resetPassword": false}}
    +                  
    {"data": {"resetPassword": true}}
     
    @@ -17030,7 +16936,7 @@
    Query
    Response
    -
    {"data": {"revokeCustomerToken": {"result": true}}}
    +                  
    {"data": {"revokeCustomerToken": {"result": false}}}
     
    @@ -17237,7 +17143,7 @@
    Query
    Variables
    -
    {"cartId": "xyz789"}
    +                  
    {"cartId": "abc123"}
     
    @@ -17245,7 +17151,7 @@
    Response
    {
       "data": {
         "setCartAsInactive": {
    -      "error": "xyz789",
    +      "error": "abc123",
           "success": false
         }
       }
    @@ -18461,15 +18367,15 @@ 
    Response
    "setNegotiableQuoteTemplateShippingAddress": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", + "created_at": "xyz789", "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": true, - "is_virtual": false, + "is_min_max_qty_used": false, + "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 123, - "min_order_commitment": 987, + "min_order_commitment": 123, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, @@ -18482,7 +18388,7 @@
    Response
    ], "status": "abc123", "template_id": 4, - "total_quantity": 987.65, + "total_quantity": 123.45, "uid": 4, "updated_at": "abc123" } @@ -18667,11 +18573,11 @@
    Response
    "setQuoteTemplateExpirationDate": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", - "expiration_date": "xyz789", + "created_at": "xyz789", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": true, + "is_min_max_qty_used": false, "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 123, @@ -18682,14 +18588,14 @@
    Response
    "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "abc123", + "sales_rep_name": "xyz789", "shipping_addresses": [ NegotiableQuoteShippingAddress ], "status": "xyz789", - "template_id": 4, - "total_quantity": 987.65, - "uid": "4", + "template_id": "4", + "total_quantity": 123.45, + "uid": 4, "updated_at": "abc123" } } @@ -18804,28 +18710,28 @@
    Response
    "setQuoteTemplateLineItemNote": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "xyz789", + "created_at": "abc123", "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": false, + "is_min_max_qty_used": true, "is_virtual": false, "items": [CartItemInterface], - "max_order_commitment": 987, - "min_order_commitment": 123, - "name": "xyz789", + "max_order_commitment": 123, + "min_order_commitment": 987, + "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "abc123", + "sales_rep_name": "xyz789", "shipping_addresses": [ NegotiableQuoteShippingAddress ], "status": "abc123", "template_id": 4, - "total_quantity": 123.45, + "total_quantity": 987.65, "uid": 4, "updated_at": "xyz789" } @@ -19051,7 +18957,7 @@
    Query
    Variables
    {
    -  "giftRegistryUid": 4,
    +  "giftRegistryUid": "4",
       "sender": ShareGiftRegistrySenderInput,
       "invitees": [ShareGiftRegistryInviteeInput]
     }
    @@ -19059,7 +18965,7 @@ 
    Variables
    Response
    -
    {"data": {"shareGiftRegistry": {"is_shared": false}}}
    +                  
    {"data": {"shareGiftRegistry": {"is_shared": true}}}
     
    @@ -19207,7 +19113,7 @@
    Response
    {
       "data": {
         "shareRequisitionListByToken": {
    -      "token": "abc123"
    +      "token": "xyz789"
         }
       }
     }
    @@ -19321,12 +19227,12 @@ 
    Response
    "submitNegotiableQuoteTemplateForReview": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "xyz789", - "expiration_date": "xyz789", + "created_at": "abc123", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": false, - "is_virtual": false, + "is_min_max_qty_used": true, + "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 987, "min_order_commitment": 987, @@ -19340,11 +19246,11 @@
    Response
    "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "xyz789", + "status": "abc123", "template_id": 4, - "total_quantity": 123.45, - "uid": "4", - "updated_at": "abc123" + "total_quantity": 987.65, + "uid": 4, + "updated_at": "xyz789" } } } @@ -19486,8 +19392,8 @@
    Response
    {
       "data": {
         "subscribeProductAlertPrice": {
    -      "message": "xyz789",
    -      "success": false
    +      "message": "abc123",
    +      "success": true
         }
       }
     }
    @@ -19563,7 +19469,7 @@ 
    Response
    "data": { "subscribeProductAlertStock": { "message": "xyz789", - "success": false + "success": true } } } @@ -19631,7 +19537,7 @@
    Variables
    Response
    -
    {"data": {"syncPaymentOrder": true}}
    +                  
    {"data": {"syncPaymentOrder": false}}
     
    @@ -19778,8 +19684,8 @@
    Response
    {
       "data": {
         "unsubscribeProductAlertPrice": {
    -      "message": "xyz789",
    -      "success": false
    +      "message": "abc123",
    +      "success": true
         }
       }
     }
    @@ -19829,7 +19735,7 @@ 
    Response
    {
       "data": {
         "unsubscribeProductAlertPriceAll": {
    -      "message": "xyz789",
    +      "message": "abc123",
           "success": false
         }
       }
    @@ -20496,7 +20402,7 @@ 
    Query
    Variables
    -
    {"id": 987, "input": CustomerAddressInput}
    +                  
    {"id": 123, "input": CustomerAddressInput}
     
    @@ -20505,25 +20411,25 @@
    Response
    "data": { "updateCustomerAddress": { "city": "abc123", - "company": "xyz789", + "company": "abc123", "country_code": "AF", "custom_attributesV2": [AttributeValueInterface], "default_billing": true, "default_shipping": false, "extension_attributes": [CustomerAddressAttribute], "fax": "xyz789", - "firstname": "abc123", - "id": 123, - "lastname": "xyz789", + "firstname": "xyz789", + "id": 987, + "lastname": "abc123", "middlename": "xyz789", "postcode": "abc123", - "prefix": "abc123", + "prefix": "xyz789", "region": CustomerAddressRegion, - "region_id": 123, - "street": ["xyz789"], + "region_id": 987, + "street": ["abc123"], "suffix": "xyz789", - "telephone": "abc123", - "uid": 4, + "telephone": "xyz789", + "uid": "4", "vat_id": "abc123" } } @@ -20636,24 +20542,24 @@
    Response
    "data": { "updateCustomerAddressV2": { "city": "abc123", - "company": "xyz789", + "company": "abc123", "country_code": "AF", "custom_attributesV2": [AttributeValueInterface], - "default_billing": true, + "default_billing": false, "default_shipping": true, "extension_attributes": [CustomerAddressAttribute], - "fax": "abc123", + "fax": "xyz789", "firstname": "abc123", "id": 123, - "lastname": "xyz789", + "lastname": "abc123", "middlename": "xyz789", "postcode": "abc123", - "prefix": "xyz789", + "prefix": "abc123", "region": CustomerAddressRegion, - "region_id": 123, + "region_id": 987, "street": ["abc123"], - "suffix": "xyz789", - "telephone": "abc123", + "suffix": "abc123", + "telephone": "xyz789", "uid": "4", "vat_id": "abc123" } @@ -20735,8 +20641,8 @@
    Query
    Variables
    {
    -  "email": "abc123",
    -  "password": "xyz789"
    +  "email": "xyz789",
    +  "password": "abc123"
     }
     
    @@ -21412,13 +21318,13 @@
    Response
    "applies_to_roles": [CompanyRole], "approver_roles": [CompanyRole], "condition": PurchaseOrderApprovalRuleConditionInterface, - "created_at": "xyz789", + "created_at": "abc123", "created_by": "xyz789", - "description": "abc123", - "name": "abc123", + "description": "xyz789", + "name": "xyz789", "status": "ENABLED", - "uid": "4", - "updated_at": "xyz789" + "uid": 4, + "updated_at": "abc123" } } } @@ -21589,7 +21495,7 @@
    Query
    Variables
    {
    -  "requisitionListUid": "4",
    +  "requisitionListUid": 4,
       "requisitionListItems": [
         UpdateRequisitionListItemsInput
       ]
    @@ -21689,8 +21595,8 @@ 
    Query
    Variables
    {
    -  "wishlistId": "4",
    -  "name": "abc123",
    +  "wishlistId": 4,
    +  "name": "xyz789",
       "visibility": "PUBLIC"
     }
     
    @@ -22013,9 +21919,9 @@
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "email": "xyz789", + "email": "abc123", "firstname": "abc123", - "lastname": "abc123" + "lastname": "xyz789" }
    @@ -22151,7 +22057,7 @@
    Fields
    Example
    -
    {"products": ["4"], "uid": 4}
    +                  
    {"products": [4], "uid": 4}
     
    @@ -22335,7 +22241,7 @@
    Fields
    Example
    {
    -  "comment": "xyz789",
    +  "comment": "abc123",
       "purchase_order_uid": "4"
     }
     
    @@ -22431,9 +22337,9 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    +  "cart_id": "xyz789",
       "purchase_order_uid": 4,
    -  "replace_existing_cart_items": false
    +  "replace_existing_cart_items": true
     }
     
    @@ -22480,7 +22386,7 @@
    Fields
    Example
    {
    -  "message": "xyz789",
    +  "message": "abc123",
       "type": "OUT_OF_STOCK"
     }
     
    @@ -22644,10 +22550,7 @@
    Fields
    Example
    -
    {
    -  "comment_text": "abc123",
    -  "return_uid": "4"
    -}
    +                  
    {"comment_text": "abc123", "return_uid": 4}
     
    @@ -22743,7 +22646,7 @@
    Example
    {
       "carrier_uid": 4,
       "return_uid": "4",
    -  "tracking_number": "abc123"
    +  "tracking_number": "xyz789"
     }
     
    @@ -23146,11 +23049,11 @@
    Example
    {
       "button_styles": ButtonStyles,
       "code": "xyz789",
    -  "is_visible": false,
    +  "is_visible": true,
       "payment_intent": "xyz789",
    -  "payment_source": "abc123",
    +  "payment_source": "xyz789",
       "sdk_params": [SDKParams],
    -  "sort_order": "abc123",
    +  "sort_order": "xyz789",
       "title": "xyz789"
     }
     
    @@ -23206,7 +23109,7 @@
    Fields
    Example
    {
    -  "payment_source": "xyz789",
    +  "payment_source": "abc123",
       "payments_order_id": "abc123",
       "paypal_order_id": "xyz789"
     }
    @@ -23249,7 +23152,7 @@ 
    Fields
    Example
    -
    {"code": "xyz789"}
    +                  
    {"code": "abc123"}
     
    @@ -23472,7 +23375,7 @@
    Example
    {
       "applied_balance": Money,
       "current_balance": Money,
    -  "enabled": true
    +  "enabled": false
     }
     
    @@ -23667,7 +23570,7 @@
    Fields
    Example
    {
       "cart_id": "xyz789",
    -  "coupon_codes": ["abc123"],
    +  "coupon_codes": ["xyz789"],
       "type": "APPEND"
     }
     
    @@ -23717,8 +23620,8 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    -  "gift_card_code": "xyz789"
    +  "cart_id": "xyz789",
    +  "gift_card_code": "abc123"
     }
     
    @@ -23806,7 +23709,7 @@
    Fields
    Example
    {
       "applied_balance": Money,
    -  "code": "abc123"
    +  "code": "xyz789"
     }
     
    @@ -23888,7 +23791,7 @@
    Fields
    Example
    -
    {"cart_id": "abc123"}
    +                  
    {"cart_id": "xyz789"}
     
    @@ -23975,7 +23878,7 @@
    Fields
    Example
    -
    {"radius": 987, "search_term": "xyz789"}
    +                  
    {"radius": 123, "search_term": "xyz789"}
     
    @@ -24037,10 +23940,10 @@
    Fields
    Example
    {
       "asset_image": ProductMediaGalleryEntriesAssetImage,
    -  "disabled": false,
    +  "disabled": true,
       "label": "xyz789",
    -  "position": 123,
    -  "url": "abc123"
    +  "position": 987,
    +  "url": "xyz789"
     }
     
    @@ -24103,10 +24006,10 @@
    Fields
    Example
    {
       "asset_video": ProductMediaGalleryEntriesAssetVideo,
    -  "disabled": false,
    -  "label": "abc123",
    -  "position": 123,
    -  "url": "abc123"
    +  "disabled": true,
    +  "label": "xyz789",
    +  "position": 987,
    +  "url": "xyz789"
     }
     
    @@ -24154,10 +24057,7 @@
    Fields
    Example
    -
    {
    -  "child_company_id": "4",
    -  "parent_company_id": "4"
    -}
    +                  
    {"child_company_id": 4, "parent_company_id": 4}
     
    @@ -24242,7 +24142,7 @@
    Fields
    Example
    -
    {"compare_list": CompareList, "result": true}
    +                  
    {"compare_list": CompareList, "result": false}
     
    @@ -24365,9 +24265,9 @@
    Fields
    Example
    {
       "attribute_type": "abc123",
    -  "code": "4",
    -  "url": "abc123",
    -  "value": "abc123"
    +  "code": 4,
    +  "url": "xyz789",
    +  "value": "xyz789"
     }
     
    @@ -24476,15 +24376,15 @@
    Fields
    Example
    {
    -  "is_comparable": true,
    -  "is_filterable": false,
    +  "is_comparable": false,
    +  "is_filterable": true,
       "is_filterable_in_search": false,
       "is_html_allowed_on_front": true,
    -  "is_searchable": true,
    -  "is_used_for_customer_segment": true,
    +  "is_searchable": false,
    +  "is_used_for_customer_segment": false,
       "is_used_for_price_rules": true,
       "is_used_for_promo_rules": false,
    -  "is_visible_in_advanced_search": true,
    +  "is_visible_in_advanced_search": false,
       "is_visible_on_front": true,
       "is_wysiwyg_enabled": true,
       "used_in_product_listing": true
    @@ -24687,8 +24587,8 @@ 
    Fields
    Example
    {
    -  "attribute_type": "xyz789",
    -  "code": 4,
    +  "attribute_type": "abc123",
    +  "code": "4",
       "url": "xyz789",
       "value": "abc123"
     }
    @@ -24863,13 +24763,13 @@ 
    Fields
    Example
    {
    -  "code": "4",
    +  "code": 4,
       "default_value": "xyz789",
       "entity_type": "CATALOG_PRODUCT",
       "frontend_class": "abc123",
       "frontend_input": "BOOLEAN",
       "is_required": true,
    -  "is_unique": false,
    +  "is_unique": true,
       "label": "abc123",
       "options": [CustomAttributeOptionInterface]
     }
    @@ -24918,7 +24818,7 @@ 
    Fields
    Example
    {
    -  "message": "abc123",
    +  "message": "xyz789",
       "type": "ENTITY_NOT_FOUND"
     }
     
    @@ -25078,9 +24978,9 @@
    Fields
    Example
    {
    -  "is_default": false,
    -  "label": "xyz789",
    -  "value": "xyz789"
    +  "is_default": true,
    +  "label": "abc123",
    +  "value": "abc123"
     }
     
    @@ -25123,7 +25023,7 @@
    Fields
    Example
    {
    -  "label": "xyz789",
    +  "label": "abc123",
       "value": "abc123"
     }
     
    @@ -25184,8 +25084,8 @@
    Possible Types
    Example
    {
    -  "label": "xyz789",
    -  "value": "abc123"
    +  "label": "abc123",
    +  "value": "xyz789"
     }
     
    @@ -25284,7 +25184,7 @@
    Fields
    Example
    {
    -  "attribute_type": "xyz789",
    +  "attribute_type": "abc123",
       "code": 4,
       "value": "abc123"
     }
    @@ -25341,7 +25241,7 @@ 
    Fields
    Example
    {
    -  "attribute_code": "abc123",
    +  "attribute_code": "xyz789",
       "selected_options": [AttributeInputSelectedOption],
       "value": "abc123"
     }
    @@ -25422,7 +25322,10 @@ 
    Possible Types
    Example
    -
    {"attribute_type": "xyz789", "code": 4}
    +                  
    {
    +  "attribute_type": "abc123",
    +  "code": "4"
    +}
     
    @@ -25563,7 +25466,7 @@
    Fields
    Example
    -
    {"code": "AFN", "symbol": "abc123"}
    +                  
    {"code": "AFN", "symbol": "xyz789"}
     
    @@ -25619,7 +25522,7 @@
    Fields
    Example
    {
    -  "code": "abc123",
    +  "code": "xyz789",
       "is_deferred": false,
       "oope_payment_method_config": OopePaymentMethodConfig,
       "title": "xyz789"
    @@ -25712,11 +25615,11 @@ 
    Example
    "additional_data": [ShippingAdditionalData], "amount": Money, "available": false, - "carrier_code": "abc123", - "carrier_title": "abc123", + "carrier_code": "xyz789", + "carrier_title": "xyz789", "error_message": "xyz789", "method_code": "abc123", - "method_title": "xyz789", + "method_title": "abc123", "price_excl_tax": Money, "price_incl_tax": Money } @@ -25838,10 +25741,10 @@
    Fields
    Example
    {
       "address": CartAddressInput,
    -  "customer_address_id": 123,
    +  "customer_address_id": 987,
       "customer_address_uid": "4",
    -  "same_as_shipping": false,
    -  "use_for_shipping": false
    +  "same_as_shipping": true,
    +  "use_for_shipping": true
     }
     
    @@ -25914,11 +25817,11 @@
    Fields
    Example
    {
    -  "address_line_1": "xyz789",
    -  "address_line_2": "xyz789",
    +  "address_line_1": "abc123",
    +  "address_line_2": "abc123",
       "city": "xyz789",
    -  "country_code": "xyz789",
    -  "postal_code": "abc123",
    +  "country_code": "abc123",
    +  "postal_code": "xyz789",
       "region": "abc123"
     }
     
    @@ -26048,22 +25951,22 @@
    Fields
    Example
    {
       "city": "abc123",
    -  "company": "abc123",
    +  "company": "xyz789",
       "country": CartAddressCountry,
       "custom_attributes": [AttributeValueInterface],
    -  "customer_address_uid": 4,
    -  "fax": "abc123",
    -  "firstname": "abc123",
    -  "id": 987,
    +  "customer_address_uid": "4",
    +  "fax": "xyz789",
    +  "firstname": "xyz789",
    +  "id": 123,
       "lastname": "abc123",
    -  "middlename": "abc123",
    +  "middlename": "xyz789",
       "postcode": "xyz789",
    -  "prefix": "xyz789",
    +  "prefix": "abc123",
       "region": CartAddressRegion,
    -  "street": ["abc123"],
    -  "suffix": "abc123",
    -  "telephone": "abc123",
    -  "uid": 4,
    +  "street": ["xyz789"],
    +  "suffix": "xyz789",
    +  "telephone": "xyz789",
    +  "uid": "4",
       "vat_id": "xyz789"
     }
     
    @@ -26085,11 +25988,6 @@
    Description
    -
    -
    Example
    -
    true
    -
    -
    back to top
    @@ -26148,11 +26046,11 @@
    Fields
    Example
    {
    -  "category_level": 987,
    +  "category_level": 123,
       "category_name": "abc123",
       "category_uid": 4,
    -  "category_url_key": "xyz789",
    -  "category_url_path": "xyz789"
    +  "category_url_key": "abc123",
    +  "category_url_path": "abc123"
     }
     
    @@ -26377,17 +26275,17 @@
    Example
    "errors": [CartItemError], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "is_available": true, - "is_salable": true, + "is_available": false, + "is_salable": false, "max_qty": 123.45, - "min_qty": 987.65, + "min_qty": 123.45, "not_available_message": "abc123", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, "quantity": 123.45, - "uid": "4" + "uid": 4 }
    @@ -26474,10 +26372,10 @@
    Example
    "discounts": [Discount], "id": "4", "order_item": OrderItemInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, - "product_sku": "abc123", - "quantity_refunded": 123.45 + "product_sku": "xyz789", + "quantity_refunded": 987.65 }
    @@ -26566,8 +26464,8 @@
    Example
    "order_item": OrderItemInterface, "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "abc123", - "quantity_invoiced": 123.45 + "product_sku": "xyz789", + "quantity_invoiced": 987.65 }
    @@ -26645,12 +26543,12 @@
    Fields
    Example
    {
       "options": [BundleItemOption],
    -  "position": 987,
    +  "position": 123,
       "price_range": PriceRange,
       "required": true,
       "sku": "xyz789",
    -  "title": "xyz789",
    -  "type": "abc123",
    +  "title": "abc123",
    +  "type": "xyz789",
       "uid": 4
     }
     
    @@ -26733,7 +26631,7 @@
    Fields
    Example
    {
    -  "can_change_quantity": true,
    +  "can_change_quantity": false,
       "is_default": false,
       "label": "abc123",
       "position": 987,
    @@ -26741,7 +26639,7 @@ 
    Example
    "price_type": "FIXED", "product": ProductInterface, "quantity": 123.45, - "uid": "4" + "uid": 4 }
    @@ -26911,22 +26809,22 @@
    Example
    "entered_options": [OrderItemOption], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "id": 4, - "parent_sku": "abc123", + "id": "4", + "parent_sku": "xyz789", "prices": OrderItemPrices, "product": ProductInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "abc123", - "product_type": "xyz789", + "product_sku": "xyz789", + "product_type": "abc123", "product_url_key": "abc123", - "quantity_canceled": 123.45, - "quantity_invoiced": 987.65, + "quantity_canceled": 987.65, + "quantity_invoiced": 123.45, "quantity_ordered": 123.45, - "quantity_refunded": 987.65, + "quantity_refunded": 123.45, "quantity_return_requested": 987.65, - "quantity_returned": 123.45, - "quantity_shipped": 123.45, + "quantity_returned": 987.65, + "quantity_shipped": 987.65, "selected_options": [OrderItemOption], "status": "abc123" } @@ -27226,26 +27124,26 @@
    Example
    "description": ComplexTextValue, "dynamic_price": true, "dynamic_sku": false, - "dynamic_weight": true, - "gift_message_available": true, + "dynamic_weight": false, + "gift_message_available": false, "gift_wrapping_available": true, "gift_wrapping_price": Money, "image": ProductImage, "is_returnable": "abc123", "items": [BundleItem], "manufacturer": 987, - "max_sale_qty": 123.45, + "max_sale_qty": 987.65, "media_gallery": [MediaGalleryInterface], - "meta_description": "abc123", - "meta_keyword": "xyz789", + "meta_description": "xyz789", + "meta_keyword": "abc123", "meta_title": "abc123", - "min_sale_qty": 123.45, - "name": "xyz789", - "new_from_date": "abc123", - "new_to_date": "xyz789", - "only_x_left_in_stock": 987.65, + "min_sale_qty": 987.65, + "name": "abc123", + "new_from_date": "xyz789", + "new_to_date": "abc123", + "only_x_left_in_stock": 123.45, "options": [CustomizableOptionInterface], - "options_container": "xyz789", + "options_container": "abc123", "price_details": PriceDetails, "price_range": PriceRange, "price_tiers": [TierPrice], @@ -27255,16 +27153,16 @@
    Example
    "related_products": [ProductInterface], "ship_bundle_items": "TOGETHER", "short_description": ComplexTextValue, - "sku": "abc123", + "sku": "xyz789", "small_image": ProductImage, - "special_price": 987.65, + "special_price": 123.45, "special_to_date": "xyz789", "stock_status": "IN_STOCK", "swatch_image": "xyz789", "thumbnail": ProductImage, "uid": 4, "upsell_products": [ProductInterface], - "url_key": "xyz789", + "url_key": "abc123", "weight": 987.65 }
    @@ -27335,7 +27233,7 @@
    Example
    "bundle_options": [SelectedBundleOption], "customizable_options": [SelectedCustomizableOption], "product": ProductInterface, - "quantity": 123.45, + "quantity": 987.65, "sku": "abc123", "uid": 4 } @@ -27412,10 +27310,10 @@
    Example
    "bundle_options": [ItemSelectedBundleOption], "id": "4", "order_item": OrderItemInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, - "product_sku": "abc123", - "quantity_shipped": 987.65 + "product_sku": "xyz789", + "quantity_shipped": 123.45 }
    @@ -27488,10 +27386,10 @@
    Fields
    Example
    {
    -  "added_at": "abc123",
    +  "added_at": "xyz789",
       "bundle_options": [SelectedBundleOption],
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "xyz789",
    +  "description": "abc123",
       "id": 4,
       "product": ProductInterface,
       "quantity": 987.65
    @@ -27563,12 +27461,12 @@ 
    Fields
    Example
    {
       "color": "xyz789",
    -  "height": 123,
    +  "height": 987,
       "label": "xyz789",
    -  "layout": "abc123",
    +  "layout": "xyz789",
       "shape": "xyz789",
       "tagline": false,
    -  "use_default_height": false
    +  "use_default_height": true
     }
     
    @@ -27783,10 +27681,7 @@
    Fields
    Example
    -
    {
    -  "order_id": "4",
    -  "reason": "xyz789"
    -}
    +                  
    {"order_id": 4, "reason": "abc123"}
     
    @@ -27878,7 +27773,7 @@
    Fields
    Example
    -
    {"description": "xyz789"}
    +                  
    {"description": "abc123"}
     
    @@ -27936,9 +27831,9 @@
    Fields
    Example
    {
       "bin_details": CardBin,
    -  "card_expiry_month": "abc123",
    -  "card_expiry_year": "xyz789",
    -  "last_digits": "abc123",
    +  "card_expiry_month": "xyz789",
    +  "card_expiry_year": "abc123",
    +  "last_digits": "xyz789",
       "name": "abc123"
     }
     
    @@ -27976,7 +27871,7 @@
    Fields
    Example
    -
    {"bin": "abc123"}
    +                  
    {"bin": "xyz789"}
     
    @@ -28025,7 +27920,7 @@
    Fields
    Example
    {
       "billing_address": BillingAddressPaymentSourceInput,
    -  "name": "abc123"
    +  "name": "xyz789"
     }
     
    @@ -28251,19 +28146,19 @@
    Example
    "available_payment_methods": [AvailablePaymentMethod], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "xyz789", + "email": "abc123", "gift_message": GiftMessage, "gift_receipt_included": false, "gift_wrapping": GiftWrapping, "id": "4", - "is_virtual": false, + "is_virtual": true, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": false, + "printed_card_included": true, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], - "total_quantity": 123.45 + "total_quantity": 987.65 }
    @@ -28310,7 +28205,7 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    +  "code": "abc123",
       "label": "abc123"
     }
     
    @@ -28455,18 +28350,18 @@
    Example
    "country_code": "abc123", "custom_attributes": [AttributeValueInput], "fax": "xyz789", - "firstname": "abc123", + "firstname": "xyz789", "lastname": "abc123", "middlename": "abc123", "postcode": "abc123", - "prefix": "abc123", - "region": "xyz789", - "region_id": 123, + "prefix": "xyz789", + "region": "abc123", + "region_id": 987, "save_in_address_book": false, "street": ["xyz789"], - "suffix": "xyz789", - "telephone": "abc123", - "vat_id": "xyz789" + "suffix": "abc123", + "telephone": "xyz789", + "vat_id": "abc123" }
    @@ -28613,23 +28508,23 @@
    Possible Types
    Example
    {
       "city": "abc123",
    -  "company": "xyz789",
    +  "company": "abc123",
       "country": CartAddressCountry,
       "custom_attributes": [AttributeValueInterface],
       "customer_address_uid": "4",
    -  "fax": "xyz789",
    +  "fax": "abc123",
       "firstname": "xyz789",
       "id": 987,
    -  "lastname": "xyz789",
    +  "lastname": "abc123",
       "middlename": "xyz789",
    -  "postcode": "abc123",
    +  "postcode": "xyz789",
       "prefix": "abc123",
       "region": CartAddressRegion,
       "street": ["xyz789"],
       "suffix": "xyz789",
       "telephone": "abc123",
    -  "uid": 4,
    -  "vat_id": "xyz789"
    +  "uid": "4",
    +  "vat_id": "abc123"
     }
     
    @@ -28682,7 +28577,7 @@
    Fields
    Example
    {
       "code": "xyz789",
    -  "label": "abc123",
    +  "label": "xyz789",
       "region_id": 987
     }
     
    @@ -28833,8 +28728,8 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    -  "cart_item_id": "xyz789",
    +  "cart_id": "abc123",
    +  "cart_item_id": "abc123",
       "custom_attributes": [CustomAttributeInput]
     }
     
    @@ -28877,7 +28772,7 @@
    Fields
    Example
    -
    {"code": "UNDEFINED", "message": "xyz789"}
    +                  
    {"code": "UNDEFINED", "message": "abc123"}
     
    @@ -28997,9 +28892,9 @@
    Example
    {
       "entered_options": [EnteredOptionInput],
       "parent_sku": "abc123",
    -  "quantity": 987.65,
    +  "quantity": 123.45,
       "selected_options": ["4"],
    -  "sku": "xyz789"
    +  "sku": "abc123"
     }
     
    @@ -29163,12 +29058,12 @@
    Example
    "is_salable": false, "max_qty": 987.65, "min_qty": 987.65, - "not_available_message": "abc123", + "not_available_message": "xyz789", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 123.45, + "quantity": 987.65, "uid": 4 }
    @@ -29324,7 +29219,7 @@
    Fields
    Example
    {
       "type": "FIXED",
    -  "units": "abc123",
    +  "units": "xyz789",
       "value": 987.65
     }
     
    @@ -29392,11 +29287,11 @@
    Fields
    Example
    {
    -  "cart_item_uid": 4,
    +  "cart_item_uid": "4",
       "customizable_options": [CustomizableOptionInput],
       "gift_message": GiftMessageInput,
       "gift_wrapping_id": 4,
    -  "quantity": 987.65
    +  "quantity": 123.45
     }
     
    @@ -29567,7 +29462,7 @@
    Fields
    Example
    -
    {"uid": 4}
    +                  
    {"uid": "4"}
     
    @@ -29658,7 +29553,7 @@
    Fields
    Example
    {
       "code": "PRODUCT_NOT_FOUND",
    -  "message": "xyz789"
    +  "message": "abc123"
     }
     
    @@ -29983,29 +29878,29 @@
    Fields
    Example
    {
       "apply_to": ["SIMPLE"],
    -  "code": "4",
    +  "code": 4,
       "default_value": "xyz789",
       "entity_type": "CATALOG_PRODUCT",
    -  "frontend_class": "abc123",
    +  "frontend_class": "xyz789",
       "frontend_input": "BOOLEAN",
    -  "is_comparable": false,
    +  "is_comparable": true,
       "is_filterable": true,
    -  "is_filterable_in_search": false,
    -  "is_html_allowed_on_front": false,
    +  "is_filterable_in_search": true,
    +  "is_html_allowed_on_front": true,
       "is_required": false,
    -  "is_searchable": false,
    +  "is_searchable": true,
       "is_unique": true,
       "is_used_for_price_rules": true,
    -  "is_used_for_promo_rules": true,
    +  "is_used_for_promo_rules": false,
       "is_visible_in_advanced_search": true,
       "is_visible_on_front": true,
    -  "is_wysiwyg_enabled": false,
    -  "label": "abc123",
    +  "is_wysiwyg_enabled": true,
    +  "label": "xyz789",
       "options": [CustomAttributeOptionInterface],
       "swatch_input_type": "BOOLEAN",
    -  "update_product_preview_image": true,
    +  "update_product_preview_image": false,
       "use_product_image_for_swatch": true,
    -  "used_in_product_listing": false
    +  "used_in_product_listing": true
     }
     
    @@ -30067,9 +29962,9 @@
    Fields
    Example
    {
       "count": 123,
    -  "id": 4,
    -  "path": "xyz789",
    -  "title": "abc123"
    +  "id": "4",
    +  "path": "abc123",
    +  "title": "xyz789"
     }
     
    @@ -30181,7 +30076,7 @@
    Fields
    Example
    {
       "url": "abc123",
    -  "label": "xyz789",
    +  "label": "abc123",
       "roles": ["abc123"],
       "customRoles": ["xyz789"]
     }
    @@ -30374,29 +30269,29 @@ 
    Possible Types
    Example
    {
    -  "available_sort_by": ["xyz789"],
    +  "available_sort_by": ["abc123"],
       "breadcrumbs": [Breadcrumb],
    -  "canonical_url": "xyz789",
    +  "canonical_url": "abc123",
       "children_count": "abc123",
    -  "custom_layout_update_file": "abc123",
    -  "default_sort_by": "xyz789",
    -  "description": "abc123",
    -  "display_mode": "abc123",
    -  "filter_price_range": 123.45,
    -  "image": "abc123",
    -  "include_in_menu": 987,
    +  "custom_layout_update_file": "xyz789",
    +  "default_sort_by": "abc123",
    +  "description": "xyz789",
    +  "display_mode": "xyz789",
    +  "filter_price_range": 987.65,
    +  "image": "xyz789",
    +  "include_in_menu": 123,
       "is_anchor": 123,
    -  "landing_page": 123,
    -  "level": 123,
    +  "landing_page": 987,
    +  "level": 987,
       "meta_description": "abc123",
       "meta_keywords": "xyz789",
    -  "meta_title": "xyz789",
    +  "meta_title": "abc123",
       "name": "abc123",
    -  "path": "abc123",
    +  "path": "xyz789",
       "path_in_store": "xyz789",
       "position": 987,
       "product_count": 987,
    -  "uid": 4,
    +  "uid": "4",
       "url_key": "abc123",
       "url_path": "xyz789"
     }
    @@ -30452,7 +30347,7 @@ 
    Example
    {
       "title": "xyz789",
       "description": "xyz789",
    -  "keywords": ["xyz789"]
    +  "keywords": ["abc123"]
     }
     
    @@ -30564,8 +30459,8 @@
    Fields
    Example
    {
       "name": "xyz789",
    -  "slug": "xyz789",
    -  "level": 987,
    +  "slug": "abc123",
    +  "level": 123,
       "parents": [CategoryProductView]
     }
     
    @@ -30740,31 +30635,31 @@
    Fields
    Example
    {
    -  "available_sort_by": ["xyz789"],
    +  "available_sort_by": ["abc123"],
       "breadcrumbs": [Breadcrumb],
       "canonical_url": "xyz789",
       "children_count": "abc123",
       "custom_layout_update_file": "abc123",
    -  "default_sort_by": "abc123",
    +  "default_sort_by": "xyz789",
       "description": "xyz789",
    -  "display_mode": "xyz789",
    +  "display_mode": "abc123",
       "filter_price_range": 987.65,
    -  "image": "abc123",
    +  "image": "xyz789",
       "include_in_menu": 123,
    -  "is_anchor": 987,
    -  "landing_page": 987,
    +  "is_anchor": 123,
    +  "landing_page": 123,
       "level": 123,
    -  "meta_description": "xyz789",
    +  "meta_description": "abc123",
       "meta_keywords": "xyz789",
    -  "meta_title": "abc123",
    +  "meta_title": "xyz789",
       "name": "xyz789",
       "path": "abc123",
       "path_in_store": "abc123",
    -  "position": 987,
    +  "position": 123,
       "product_count": 123,
       "uid": "4",
    -  "url_key": "abc123",
    -  "url_path": "abc123"
    +  "url_key": "xyz789",
    +  "url_path": "xyz789"
     }
     
    @@ -30963,15 +30858,15 @@
    Example
    {
       "availableSortBy": ["xyz789"],
       "children": ["abc123"],
    -  "defaultSortBy": "xyz789",
    +  "defaultSortBy": "abc123",
       "id": 4,
       "level": 987,
    -  "name": "abc123",
    -  "parentId": "xyz789",
    -  "position": 123,
    +  "name": "xyz789",
    +  "parentId": "abc123",
    +  "position": 987,
       "path": "abc123",
    -  "roles": ["xyz789"],
    -  "urlKey": "abc123",
    +  "roles": ["abc123"],
    +  "urlKey": "xyz789",
       "urlPath": "xyz789",
       "count": 123,
       "title": "abc123"
    @@ -31074,15 +30969,15 @@ 
    Possible Types
    Example
    {
    -  "availableSortBy": ["xyz789"],
    +  "availableSortBy": ["abc123"],
       "defaultSortBy": "xyz789",
    -  "id": 4,
    +  "id": "4",
       "level": 987,
       "name": "abc123",
    -  "path": "xyz789",
    +  "path": "abc123",
       "roles": ["xyz789"],
       "urlKey": "abc123",
    -  "urlPath": "xyz789"
    +  "urlPath": "abc123"
     }
     
    @@ -31156,8 +31051,8 @@
    Possible Types
    Example
    {
    -  "slug": "abc123",
    -  "name": "abc123"
    +  "slug": "xyz789",
    +  "name": "xyz789"
     }
     
    @@ -31229,13 +31124,13 @@
    Fields
    Example
    {
    -  "agreement_id": 123,
    +  "agreement_id": 987,
       "checkbox_text": "xyz789",
    -  "content": "abc123",
    +  "content": "xyz789",
       "content_height": "xyz789",
       "is_html": false,
       "mode": "AUTO",
    -  "name": "xyz789"
    +  "name": "abc123"
     }
     
    @@ -31335,8 +31230,8 @@
    Fields
    Example
    {
       "code": "REORDER_NOT_AVAILABLE",
    -  "message": "abc123",
    -  "path": ["xyz789"]
    +  "message": "xyz789",
    +  "path": ["abc123"]
     }
     
    @@ -31448,7 +31343,7 @@
    Fields
    Example
    -
    {"cart": Cart, "status": false}
    +                  
    {"cart": Cart, "status": true}
     
    @@ -31743,7 +31638,7 @@
    Fields
    Example
    -
    {"value": "xyz789"}
    +                  
    {"value": "abc123"}
     
    @@ -31783,7 +31678,7 @@
    Fields
    Example
    -
    {"priceBookId": "4"}
    +                  
    {"priceBookId": 4}
     
    @@ -32158,8 +32053,8 @@
    Example
    "legal_address": CompanyLegalAddress, "legal_name": "abc123", "name": "abc123", - "payment_methods": ["xyz789"], - "reseller_id": "abc123", + "payment_methods": ["abc123"], + "reseller_id": "xyz789", "role": CompanyRole, "roles": CompanyRoles, "sales_representative": CompanySalesRepresentative, @@ -32226,8 +32121,8 @@
    Fields
    Example
    {
       "children": [CompanyAclResource],
    -  "id": 4,
    -  "sort_order": 987,
    +  "id": "4",
    +  "sort_order": 123,
       "text": "xyz789"
     }
     
    @@ -32309,9 +32204,9 @@
    Example
    {
       "custom_attributes": [AttributeValueInput],
       "email": "xyz789",
    -  "firstname": "xyz789",
    -  "gender": 987,
    -  "job_title": "abc123",
    +  "firstname": "abc123",
    +  "gender": 123,
    +  "job_title": "xyz789",
       "lastname": "abc123",
       "telephone": "abc123"
     }
    @@ -32510,11 +32405,11 @@ 
    Example
    {
       "company_admin": CompanyAdminInput,
       "company_email": "abc123",
    -  "company_name": "abc123",
    +  "company_name": "xyz789",
       "legal_address": CompanyLegalAddressCreateInput,
    -  "legal_name": "abc123",
    -  "reseller_id": "abc123",
    -  "vat_tax_id": "xyz789"
    +  "legal_name": "xyz789",
    +  "reseller_id": "xyz789",
    +  "vat_tax_id": "abc123"
     }
     
    @@ -32573,7 +32468,7 @@
    Example
    {
       "available_credit": Money,
       "credit_limit": Money,
    -  "exceed_limit": false,
    +  "exceed_limit": true,
       "outstanding_balance": Money
     }
     
    @@ -32628,7 +32523,7 @@
    Example
    {
       "items": [CompanyCreditOperation],
       "page_info": SearchResultPageInfo,
    -  "total_count": 123
    +  "total_count": 987
     }
     
    @@ -32685,7 +32580,7 @@
    Example
    {
       "custom_reference_number": "xyz789",
       "operation_type": "ALLOCATION",
    -  "updated_by": "xyz789"
    +  "updated_by": "abc123"
     }
     
    @@ -32754,7 +32649,7 @@
    Example
    {
       "amount": Money,
       "balance": CompanyCredit,
    -  "custom_reference_number": "abc123",
    +  "custom_reference_number": "xyz789",
       "date": "xyz789",
       "type": "ALLOCATION",
       "updated_by": CompanyCreditOperationUser
    @@ -32876,7 +32771,7 @@ 
    Fields
    Example
    -
    {"name": "abc123", "type": "CUSTOMER"}
    +                  
    {"name": "xyz789", "type": "CUSTOMER"}
     
    @@ -33134,7 +33029,7 @@
    Example
    {
       "company_id": 4,
       "customer_id": "4",
    -  "job_title": "xyz789",
    +  "job_title": "abc123",
       "status": "ACTIVE",
       "telephone": "abc123"
     }
    @@ -33283,10 +33178,10 @@ 
    Example
    {
       "city": "xyz789",
       "country_id": "AF",
    -  "postcode": "abc123",
    +  "postcode": "xyz789",
       "region": CustomerAddressRegionInput,
    -  "street": ["abc123"],
    -  "telephone": "xyz789"
    +  "street": ["xyz789"],
    +  "telephone": "abc123"
     }
     
    @@ -33422,7 +33317,7 @@
    Fields
    Example
    {
       "id": 4,
    -  "name": "xyz789",
    +  "name": "abc123",
       "permissions": [CompanyAclResource],
       "users_count": 123
     }
    @@ -33473,8 +33368,8 @@ 
    Fields
    Example
    {
    -  "name": "xyz789",
    -  "permissions": ["xyz789"]
    +  "name": "abc123",
    +  "permissions": ["abc123"]
     }
     
    @@ -33530,7 +33425,7 @@
    Fields
    Example
    {
       "id": 4,
    -  "name": "xyz789",
    +  "name": "abc123",
       "permissions": ["xyz789"]
     }
     
    @@ -33639,7 +33534,7 @@
    Example
    {
       "email": "abc123",
       "firstname": "abc123",
    -  "lastname": "xyz789"
    +  "lastname": "abc123"
     }
     
    @@ -33829,11 +33724,7 @@
    Fields
    Example
    -
    {
    -  "entity": CompanyTeam,
    -  "id": "4",
    -  "parent_id": "4"
    -}
    +                  
    {"entity": CompanyTeam, "id": 4, "parent_id": 4}
     
    @@ -33936,10 +33827,10 @@
    Fields
    Example
    {
    -  "description": "xyz789",
    +  "description": "abc123",
       "id": "4",
    -  "name": "xyz789",
    -  "structure_id": 4
    +  "name": "abc123",
    +  "structure_id": "4"
     }
     
    @@ -33995,7 +33886,7 @@
    Fields
    Example
    {
       "description": "xyz789",
    -  "name": "abc123",
    +  "name": "xyz789",
       "target_id": 4
     }
     
    @@ -34129,7 +34020,7 @@
    Example
    "company_email": "xyz789", "company_name": "abc123", "legal_address": CompanyLegalAddressUpdateInput, - "legal_name": "abc123", + "legal_name": "xyz789", "reseller_id": "abc123", "vat_tax_id": "xyz789" } @@ -34217,12 +34108,12 @@
    Fields
    Example
    {
       "email": "abc123",
    -  "firstname": "xyz789",
    -  "job_title": "xyz789",
    +  "firstname": "abc123",
    +  "job_title": "abc123",
       "lastname": "xyz789",
    -  "role_id": 4,
    +  "role_id": "4",
       "status": "ACTIVE",
    -  "target_id": 4,
    +  "target_id": "4",
       "telephone": "xyz789"
     }
     
    @@ -34357,7 +34248,7 @@
    Example
    {
       "email": "xyz789",
       "firstname": "xyz789",
    -  "id": "4",
    +  "id": 4,
       "job_title": "abc123",
       "lastname": "xyz789",
       "role_id": 4,
    @@ -34416,7 +34307,7 @@ 
    Example
    {
       "items": [Customer],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -34560,7 +34451,7 @@
    Example
    {
       "attributes": [ProductAttribute],
       "product": ProductInterface,
    -  "uid": "4"
    +  "uid": 4
     }
     
    @@ -34618,9 +34509,9 @@
    Fields
    Example
    {
       "attributes": [ComparableAttribute],
    -  "item_count": 123,
    +  "item_count": 987,
       "items": [ComparableItem],
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -34669,7 +34560,7 @@
    Fields
    Example
    {
    -  "cartId": "abc123",
    +  "cartId": "xyz789",
       "id": "abc123"
     }
     
    @@ -34711,7 +34602,7 @@
    Fields
    Example
    -
    {"order_number": "abc123"}
    +                  
    {"order_number": "xyz789"}
     
    @@ -34951,19 +34842,19 @@
    Example
    "metaDescription": "xyz789", "metaKeyword": "xyz789", "metaTitle": "abc123", - "name": "xyz789", + "name": "abc123", "inputOptions": [ProductViewInputOption], "options": [ProductViewOption], "priceRange": ProductViewPriceRange, - "shortDescription": "abc123", - "sku": "xyz789", + "shortDescription": "xyz789", + "sku": "abc123", "externalId": "abc123", "url": "abc123", - "urlKey": "xyz789", + "urlKey": "abc123", "links": [ProductViewLink], "categories": [CategoryProductView], - "queryType": "abc123", - "visibility": "xyz789" + "queryType": "xyz789", + "visibility": "abc123" }
    @@ -35112,7 +35003,7 @@
    Fields
    Example
    {
    -  "code": "abc123",
    +  "code": "xyz789",
       "label": "xyz789",
       "uid": "4",
       "value_index": 987
    @@ -35270,8 +35161,8 @@ 
    Example
    "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, "is_available": true, - "is_salable": false, - "max_qty": 987.65, + "is_salable": true, + "max_qty": 123.45, "min_qty": 987.65, "not_available_message": "abc123", "note_from_buyer": [ItemNote], @@ -35279,7 +35170,7 @@
    Example
    "prices": CartItemPrices, "product": ProductInterface, "quantity": 123.45, - "uid": "4" + "uid": 4 }
    @@ -35483,23 +35374,23 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "eligible_for_return": false,
    +  "eligible_for_return": true,
       "entered_options": [OrderItemOption],
       "gift_message": GiftMessage,
       "gift_wrapping": GiftWrapping,
    -  "id": "4",
    -  "parent_sku": "xyz789",
    +  "id": 4,
    +  "parent_sku": "abc123",
       "prices": OrderItemPrices,
       "product": ProductInterface,
    -  "product_name": "abc123",
    +  "product_name": "xyz789",
       "product_sale_price": Money,
       "product_sku": "abc123",
    -  "product_type": "abc123",
    -  "product_url_key": "xyz789",
    +  "product_type": "xyz789",
    +  "product_url_key": "abc123",
       "quantity_canceled": 123.45,
       "quantity_invoiced": 987.65,
       "quantity_ordered": 123.45,
    -  "quantity_refunded": 987.65,
    +  "quantity_refunded": 123.45,
       "quantity_return_requested": 987.65,
       "quantity_returned": 123.45,
       "quantity_shipped": 987.65,
    @@ -35787,11 +35678,11 @@ 
    filters
    Example
    {
    -  "canonical_url": "abc123",
    +  "canonical_url": "xyz789",
       "categories": [CategoryInterface],
       "configurable_options": [ConfigurableProductOptions],
       "configurable_product_options_selection": ConfigurableProductOptionsSelection,
    -  "country_of_manufacture": "abc123",
    +  "country_of_manufacture": "xyz789",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    @@ -35801,27 +35692,27 @@ 
    Example
    "image": ProductImage, "is_returnable": "xyz789", "manufacturer": 987, - "max_sale_qty": 987.65, + "max_sale_qty": 123.45, "media_gallery": [MediaGalleryInterface], "meta_description": "abc123", - "meta_keyword": "xyz789", - "meta_title": "xyz789", - "min_sale_qty": 123.45, + "meta_keyword": "abc123", + "meta_title": "abc123", + "min_sale_qty": 987.65, "name": "xyz789", - "new_from_date": "xyz789", + "new_from_date": "abc123", "new_to_date": "abc123", - "only_x_left_in_stock": 987.65, + "only_x_left_in_stock": 123.45, "options": [CustomizableOptionInterface], - "options_container": "abc123", + "options_container": "xyz789", "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], "quantity": 123.45, "related_products": [ProductInterface], "short_description": ComplexTextValue, - "sku": "abc123", + "sku": "xyz789", "small_image": ProductImage, - "special_price": 123.45, + "special_price": 987.65, "special_to_date": "xyz789", "stock_status": "IN_STOCK", "swatch_image": "xyz789", @@ -35830,7 +35721,7 @@
    Example
    "upsell_products": [ProductInterface], "url_key": "abc123", "variants": [ConfigurableVariant], - "weight": 987.65 + "weight": 123.45 }
    @@ -35887,8 +35778,8 @@
    Fields
    Example
    {
    -  "attribute_code": "xyz789",
    -  "label": "xyz789",
    +  "attribute_code": "abc123",
    +  "label": "abc123",
       "uid": 4,
       "values": [ConfigurableProductOptionValue]
     }
    @@ -35953,7 +35844,7 @@ 
    Fields
    Example
    {
       "is_available": true,
    -  "is_use_default": false,
    +  "is_use_default": true,
       "label": "abc123",
       "swatch": SwatchDataInterface,
       "uid": "4"
    @@ -36028,11 +35919,11 @@ 
    Fields
    Example
    {
    -  "attribute_code": "abc123",
    +  "attribute_code": "xyz789",
       "attribute_uid": 4,
       "label": "xyz789",
       "position": 123,
    -  "uid": "4",
    +  "uid": 4,
       "use_default": true,
       "values": [ConfigurableProductOptionsValues]
     }
    @@ -36163,12 +36054,12 @@ 
    Fields
    Example
    {
    -  "default_label": "xyz789",
    -  "label": "xyz789",
    +  "default_label": "abc123",
    +  "label": "abc123",
       "store_label": "xyz789",
       "swatch_data": SwatchDataInterface,
    -  "uid": "4",
    -  "use_default_value": true
    +  "uid": 4,
    +  "use_default_value": false
     }
     
    @@ -36239,8 +36130,8 @@
    Example
    "customizable_options": [SelectedCustomizableOption], "product": ProductInterface, "quantity": 123.45, - "sku": "xyz789", - "uid": "4" + "sku": "abc123", + "uid": 4 }
    @@ -36366,14 +36257,14 @@
    Fields
    Example
    {
    -  "added_at": "xyz789",
    +  "added_at": "abc123",
       "configurable_options": [SelectedConfigurableOption],
       "configured_variant": ProductInterface,
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "abc123",
    +  "description": "xyz789",
       "id": 4,
       "product": ProductInterface,
    -  "quantity": 987.65
    +  "quantity": 123.45
     }
     
    @@ -36419,7 +36310,7 @@
    Fields
    Example
    {
       "confirmation_key": "xyz789",
    -  "order_id": 4
    +  "order_id": "4"
     }
     
    @@ -36468,8 +36359,8 @@
    Fields
    Example
    {
    -  "confirmation_key": "abc123",
    -  "email": "abc123"
    +  "confirmation_key": "xyz789",
    +  "email": "xyz789"
     }
     
    @@ -36619,7 +36510,7 @@
    Fields
    Example
    {
    -  "comment": "xyz789",
    +  "comment": "abc123",
       "email": "xyz789",
       "name": "xyz789",
       "telephone": "xyz789"
    @@ -36663,7 +36554,7 @@ 
    Fields
    Example
    -
    {"status": true}
    +                  
    {"status": false}
     
    @@ -36704,7 +36595,7 @@
    Fields
    Example
    -
    {"requisitionListItemUids": ["4"]}
    +                  
    {"requisitionListItemUids": [4]}
     
    @@ -36861,11 +36752,11 @@
    Fields
    Example
    {
       "available_regions": [Region],
    -  "full_name_english": "abc123",
    +  "full_name_english": "xyz789",
       "full_name_locale": "xyz789",
    -  "id": "xyz789",
    -  "three_letter_abbreviation": "abc123",
    -  "two_letter_abbreviation": "xyz789"
    +  "id": "abc123",
    +  "three_letter_abbreviation": "xyz789",
    +  "two_letter_abbreviation": "abc123"
     }
     
    @@ -38572,7 +38463,7 @@
    Fields
    Example
    -
    {"products": [4]}
    +                  
    {"products": ["4"]}
     
    @@ -38659,7 +38550,7 @@
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "event_name": "abc123", + "event_name": "xyz789", "gift_registry_type_uid": "4", "message": "xyz789", "privacy_settings": "PRIVATE", @@ -38845,11 +38736,11 @@
    Fields
    Example
    {
    -  "cartId": "xyz789",
    +  "cartId": "abc123",
       "location": "PRODUCT_DETAIL",
    -  "methodCode": "abc123",
    +  "methodCode": "xyz789",
       "paymentSource": "abc123",
    -  "vaultIntent": true
    +  "vaultIntent": false
     }
     
    @@ -38912,10 +38803,10 @@
    Fields
    Example
    {
       "amount": 987.65,
    -  "currency_code": "abc123",
    -  "id": "abc123",
    +  "currency_code": "xyz789",
    +  "id": "xyz789",
       "mp_order_id": "abc123",
    -  "status": "abc123"
    +  "status": "xyz789"
     }
     
    @@ -39075,8 +38966,8 @@
    Fields
    Example
    {
    -  "description": "xyz789",
    -  "name": "xyz789"
    +  "description": "abc123",
    +  "name": "abc123"
     }
     
    @@ -39165,7 +39056,7 @@
    Fields
    Example
    {
    -  "card_description": "abc123",
    +  "card_description": "xyz789",
       "setup_token_id": "abc123"
     }
     
    @@ -39305,7 +39196,7 @@
    Fields
    Example
    -
    {"setup_token": "xyz789"}
    +                  
    {"setup_token": "abc123"}
     
    @@ -39588,12 +39479,12 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "id": "4",
    +  "id": 4,
       "order_item": OrderItemInterface,
    -  "product_name": "xyz789",
    +  "product_name": "abc123",
       "product_sale_price": Money,
       "product_sku": "abc123",
    -  "quantity_refunded": 123.45
    +  "quantity_refunded": 987.65
     }
     
    @@ -39648,8 +39539,8 @@
    Fields
    Example
    {
    -  "credit_memo_id": "abc123",
    -  "credit_memo_item_id": "abc123",
    +  "credit_memo_id": "xyz789",
    +  "credit_memo_item_id": "xyz789",
       "custom_attributes": [CustomAttributeInput]
     }
     
    @@ -39763,9 +39654,9 @@
    Example
    "discounts": [Discount], "id": "4", "order_item": OrderItemInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, - "product_sku": "xyz789", + "product_sku": "abc123", "quantity_refunded": 123.45 }
    @@ -39959,11 +39850,11 @@
    Fields
    Example
    {
    -  "available_currency_codes": ["abc123"],
    -  "base_currency_code": "xyz789",
    +  "available_currency_codes": ["xyz789"],
    +  "base_currency_code": "abc123",
       "base_currency_symbol": "xyz789",
    -  "default_display_currency_code": "abc123",
    -  "default_display_currency_symbol": "xyz789",
    +  "default_display_currency_code": "xyz789",
    +  "default_display_currency_symbol": "abc123",
       "exchange_rates": [ExchangeRate]
     }
     
    @@ -41230,7 +41121,7 @@
    Fields
    Example
    -
    {"sku": "xyz789", "price": 987.65}
    +                  
    {"sku": "abc123", "price": 987.65}
     
    @@ -41276,8 +41167,8 @@
    Fields
    Example
    {
    -  "attribute_code": "xyz789",
    -  "value": "xyz789"
    +  "attribute_code": "abc123",
    +  "value": "abc123"
     }
     
    @@ -41326,7 +41217,7 @@
    Fields
    Example
    {
    -  "attribute_code": "xyz789",
    +  "attribute_code": "abc123",
       "value": "abc123"
     }
     
    @@ -41442,13 +41333,13 @@
    Possible Types
    Example
    {
       "code": 4,
    -  "default_value": "xyz789",
    +  "default_value": "abc123",
       "entity_type": "CATALOG_PRODUCT",
       "frontend_class": "xyz789",
       "frontend_input": "BOOLEAN",
    -  "is_required": true,
    +  "is_required": false,
       "is_unique": false,
    -  "label": "abc123",
    +  "label": "xyz789",
       "options": [CustomAttributeOptionInterface]
     }
     
    @@ -41515,8 +41406,8 @@
    Possible Types
    Example
    {
       "is_default": true,
    -  "label": "abc123",
    -  "value": "xyz789"
    +  "label": "xyz789",
    +  "value": "abc123"
     }
     
    @@ -42225,13 +42116,13 @@
    Example
    "gift_registries": [GiftRegistry], "gift_registry": GiftRegistry, "group": CustomerGroupStorefront, - "id": 4, + "id": "4", "is_subscribed": true, - "job_title": "xyz789", - "lastname": "xyz789", + "job_title": "abc123", + "lastname": "abc123", "middlename": "xyz789", "orders": CustomerOrders, - "prefix": "xyz789", + "prefix": "abc123", "purchase_order": PurchaseOrder, "purchase_order_approval_rule": PurchaseOrderApprovalRule, "purchase_order_approval_rule_metadata": PurchaseOrderApprovalRuleMetadata, @@ -42248,8 +42139,8 @@
    Example
    "status": "ACTIVE", "store_credit": CustomerStoreCredit, "structure_id": 4, - "suffix": "abc123", - "taxvat": "xyz789", + "suffix": "xyz789", + "taxvat": "abc123", "team": CompanyTeam, "telephone": "xyz789", "wishlist_v2": Wishlist, @@ -42409,27 +42300,27 @@
    attributeCodes
    Example
    {
    -  "city": "abc123",
    -  "company": "abc123",
    +  "city": "xyz789",
    +  "company": "xyz789",
       "country_code": "AF",
       "custom_attributesV2": [AttributeValueInterface],
       "default_billing": false,
       "default_shipping": true,
       "extension_attributes": [CustomerAddressAttribute],
       "fax": "abc123",
    -  "firstname": "abc123",
    +  "firstname": "xyz789",
       "id": 123,
       "lastname": "abc123",
    -  "middlename": "abc123",
    +  "middlename": "xyz789",
       "postcode": "abc123",
       "prefix": "abc123",
       "region": CustomerAddressRegion,
       "region_id": 123,
       "street": ["xyz789"],
    -  "suffix": "xyz789",
    +  "suffix": "abc123",
       "telephone": "xyz789",
    -  "uid": "4",
    -  "vat_id": "abc123"
    +  "uid": 4,
    +  "vat_id": "xyz789"
     }
     
    @@ -42617,22 +42508,22 @@
    Fields
    Example
    {
       "city": "xyz789",
    -  "company": "abc123",
    +  "company": "xyz789",
       "country_code": "AF",
       "custom_attributesV2": [AttributeValueInput],
       "default_billing": false,
       "default_shipping": false,
    -  "fax": "xyz789",
    +  "fax": "abc123",
       "firstname": "xyz789",
    -  "lastname": "abc123",
    +  "lastname": "xyz789",
       "middlename": "xyz789",
       "postcode": "abc123",
    -  "prefix": "abc123",
    +  "prefix": "xyz789",
       "region": CustomerAddressRegionInput,
       "street": ["xyz789"],
    -  "suffix": "xyz789",
    +  "suffix": "abc123",
       "telephone": "abc123",
    -  "vat_id": "xyz789"
    +  "vat_id": "abc123"
     }
     
    @@ -42743,7 +42634,7 @@
    Example
    {
       "region": "xyz789",
       "region_code": "abc123",
    -  "region_id": 987
    +  "region_id": 123
     }
     
    @@ -42793,7 +42684,7 @@
    Example
    {
       "items": [CustomerAddress],
       "page_info": SearchResultPageInfo,
    -  "total_count": 123
    +  "total_count": 987
     }
     
    @@ -42896,17 +42787,17 @@
    Fields
    Example
    {
       "code": 4,
    -  "default_value": "abc123",
    +  "default_value": "xyz789",
       "entity_type": "CATALOG_PRODUCT",
    -  "frontend_class": "xyz789",
    +  "frontend_class": "abc123",
       "frontend_input": "BOOLEAN",
       "input_filter": "NONE",
       "is_required": true,
    -  "is_unique": true,
    +  "is_unique": false,
       "label": "abc123",
    -  "multiline_count": 987,
    +  "multiline_count": 123,
       "options": [CustomAttributeOptionInterface],
    -  "sort_order": 123,
    +  "sort_order": 987,
       "validate_rules": [ValidationRule]
     }
     
    @@ -43024,16 +42915,16 @@
    Example
    {
       "allow_remote_shopping_assistance": false,
       "custom_attributes": [AttributeValueInput],
    -  "date_of_birth": "abc123",
    -  "email": "xyz789",
    -  "firstname": "abc123",
    -  "gender": 123,
    +  "date_of_birth": "xyz789",
    +  "email": "abc123",
    +  "firstname": "xyz789",
    +  "gender": 987,
       "is_subscribed": false,
    -  "lastname": "xyz789",
    -  "middlename": "xyz789",
    -  "password": "abc123",
    -  "prefix": "abc123",
    -  "suffix": "abc123",
    +  "lastname": "abc123",
    +  "middlename": "abc123",
    +  "password": "xyz789",
    +  "prefix": "xyz789",
    +  "suffix": "xyz789",
       "taxvat": "abc123"
     }
     
    @@ -43097,9 +42988,9 @@
    Fields
    Example
    {
       "date": "abc123",
    -  "download_url": "xyz789",
    -  "order_increment_id": "abc123",
    -  "remaining_downloads": "xyz789",
    +  "download_url": "abc123",
    +  "order_increment_id": "xyz789",
    +  "remaining_downloads": "abc123",
       "status": "xyz789"
     }
     
    @@ -43181,7 +43072,7 @@
    Fields
    Example
    -
    {"uid": "4"}
    +                  
    {"uid": 4}
     
    @@ -43403,31 +43294,31 @@
    Example
    "applied_gift_cards": [ApplyGiftCardToOrder], "available_actions": ["REORDER"], "billing_address": OrderAddress, - "carrier": "abc123", + "carrier": "xyz789", "comments": [SalesCommentItem], "credit_memos": [CreditMemo], "custom_attributes": [CustomAttribute], "customer_info": OrderCustomerInfo, - "email": "abc123", + "email": "xyz789", "gift_message": GiftMessage, "gift_receipt_included": false, "gift_wrapping": GiftWrapping, - "id": 4, + "id": "4", "invoices": [Invoice], "is_virtual": false, "items": [OrderItemInterface], "items_eligible_for_return": [OrderItemInterface], "negotiable_quote": NegotiableQuote, "number": "abc123", - "order_date": "abc123", - "order_status_change_date": "abc123", + "order_date": "xyz789", + "order_status_change_date": "xyz789", "payment_methods": [OrderPaymentMethod], - "printed_card_included": false, + "printed_card_included": true, "returns": Returns, "shipments": [OrderShipment], "shipping_address": OrderAddress, - "shipping_method": "xyz789", - "status": "xyz789", + "shipping_method": "abc123", + "status": "abc123", "token": "xyz789", "total": OrderTotal } @@ -43580,7 +43471,7 @@
    Fields
    Example
    {
    -  "date_of_first_order": "xyz789",
    +  "date_of_first_order": "abc123",
       "items": [CustomerOrder],
       "page_info": SearchResultPageInfo,
       "total_count": 123
    @@ -43768,7 +43659,7 @@ 
    Fields
    Example
    -
    {"uid": "4"}
    +                  
    {"uid": 4}
     
    @@ -43840,7 +43731,7 @@
    Example
    {
       "balance_history": CustomerStoreCreditHistory,
       "current_balance": Money,
    -  "enabled": false
    +  "enabled": true
     }
     
    @@ -43894,7 +43785,7 @@
    Example
    {
       "items": [CustomerStoreCreditHistoryItem],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -43951,7 +43842,7 @@
    Fields
    Example
    {
    -  "action": "xyz789",
    +  "action": "abc123",
       "actual_balance": Money,
       "balance_change": Money,
       "date_time_changed": "abc123"
    @@ -44097,16 +43988,16 @@ 
    Fields
    Example
    {
    -  "allow_remote_shopping_assistance": false,
    +  "allow_remote_shopping_assistance": true,
       "custom_attributes": [AttributeValueInput],
       "date_of_birth": "xyz789",
       "firstname": "abc123",
    -  "gender": 987,
    -  "is_subscribed": false,
    -  "lastname": "abc123",
    +  "gender": 123,
    +  "is_subscribed": true,
    +  "lastname": "xyz789",
       "middlename": "xyz789",
       "prefix": "xyz789",
    -  "suffix": "abc123",
    +  "suffix": "xyz789",
       "taxvat": "abc123"
     }
     
    @@ -44241,10 +44132,10 @@
    Fields
    Example
    {
    -  "max_characters": 123,
    +  "max_characters": 987,
       "price": 987.65,
       "price_type": "FIXED",
    -  "sku": "abc123",
    +  "sku": "xyz789",
       "uid": "4"
     }
     
    @@ -44308,8 +44199,8 @@
    Fields
    Example
    {
       "required": true,
    -  "sort_order": 987,
    -  "title": "abc123",
    +  "sort_order": 123,
    +  "title": "xyz789",
       "uid": "4",
       "value": [CustomizableCheckboxValue]
     }
    @@ -44387,8 +44278,8 @@ 
    Example
    "price": 987.65, "price_type": "FIXED", "sku": "abc123", - "sort_order": 987, - "title": "xyz789", + "sort_order": 123, + "title": "abc123", "uid": "4" }
    @@ -44456,11 +44347,11 @@
    Fields
    Example
    {
    -  "product_sku": "abc123",
    -  "required": true,
    +  "product_sku": "xyz789",
    +  "required": false,
       "sort_order": 987,
       "title": "abc123",
    -  "uid": 4,
    +  "uid": "4",
       "value": CustomizableDateValue
     }
     
    @@ -44646,8 +44537,8 @@
    Fields
    Example
    {
       "required": false,
    -  "sort_order": 123,
    -  "title": "abc123",
    +  "sort_order": 987,
    +  "title": "xyz789",
       "uid": "4",
       "value": [CustomizableDropDownValue]
     }
    @@ -44722,10 +44613,10 @@ 
    Fields
    Example
    {
       "option_type_id": 987,
    -  "price": 123.45,
    +  "price": 987.65,
       "price_type": "FIXED",
    -  "sku": "abc123",
    -  "sort_order": 987,
    +  "sku": "xyz789",
    +  "sort_order": 123,
       "title": "xyz789",
       "uid": "4"
     }
    @@ -44794,11 +44685,11 @@ 
    Fields
    Example
    {
    -  "product_sku": "abc123",
    -  "required": false,
    -  "sort_order": 123,
    -  "title": "xyz789",
    -  "uid": "4",
    +  "product_sku": "xyz789",
    +  "required": true,
    +  "sort_order": 987,
    +  "title": "abc123",
    +  "uid": 4,
       "value": CustomizableFieldValue
     }
     
    @@ -44861,11 +44752,11 @@
    Fields
    Example
    {
    -  "max_characters": 123,
    +  "max_characters": 987,
       "price": 987.65,
       "price_type": "FIXED",
    -  "sku": "abc123",
    -  "uid": 4
    +  "sku": "xyz789",
    +  "uid": "4"
     }
     
    @@ -44934,9 +44825,9 @@
    Example
    {
       "product_sku": "xyz789",
       "required": true,
    -  "sort_order": 987,
    +  "sort_order": 123,
       "title": "abc123",
    -  "uid": 4,
    +  "uid": "4",
       "value": CustomizableFileValue
     }
     
    @@ -45010,8 +44901,8 @@
    Fields
    Example
    {
       "file_extension": "abc123",
    -  "image_size_x": 987,
    -  "image_size_y": 987,
    +  "image_size_x": 123,
    +  "image_size_y": 123,
       "price": 987.65,
       "price_type": "FIXED",
       "sku": "abc123",
    @@ -45077,10 +44968,10 @@ 
    Fields
    Example
    {
    -  "required": true,
    -  "sort_order": 987,
    +  "required": false,
    +  "sort_order": 123,
       "title": "abc123",
    -  "uid": "4",
    +  "uid": 4,
       "value": [CustomizableMultipleValue]
     }
     
    @@ -45153,12 +45044,12 @@
    Fields
    Example
    {
    -  "option_type_id": 123,
    -  "price": 987.65,
    +  "option_type_id": 987,
    +  "price": 123.45,
       "price_type": "FIXED",
    -  "sku": "xyz789",
    -  "sort_order": 987,
    -  "title": "abc123",
    +  "sku": "abc123",
    +  "sort_order": 123,
    +  "title": "xyz789",
       "uid": "4"
     }
     
    @@ -45315,9 +45206,9 @@
    Possible Types
    Example
    {
    -  "required": true,
    +  "required": false,
       "sort_order": 123,
    -  "title": "xyz789",
    +  "title": "abc123",
       "uid": 4
     }
     
    @@ -45464,8 +45355,8 @@
    Example
    {
       "required": true,
       "sort_order": 987,
    -  "title": "xyz789",
    -  "uid": 4,
    +  "title": "abc123",
    +  "uid": "4",
       "value": [CustomizableRadioValue]
     }
     
    @@ -45541,10 +45432,10 @@
    Example
    "option_type_id": 987, "price": 987.65, "price_type": "FIXED", - "sku": "abc123", + "sku": "xyz789", "sort_order": 123, "title": "xyz789", - "uid": 4 + "uid": "4" }
    @@ -45607,7 +45498,7 @@
    Fields
    Example
    -
    {"success": true}
    +                  
    {"success": false}
     
    @@ -45687,7 +45578,7 @@
    Fields
    Example
    -
    {"success": false}
    +                  
    {"success": true}
     
    @@ -45727,7 +45618,7 @@
    Fields
    Example
    -
    {"result": false}
    +                  
    {"result": true}
     
    @@ -45902,7 +45793,7 @@
    Fields
    Example
    -
    {"template_id": "4"}
    +                  
    {"template_id": 4}
     
    @@ -46203,7 +46094,7 @@
    Fields
    Example
    -
    {"approval_rule_uids": ["4"]}
    +                  
    {"approval_rule_uids": [4]}
     
    @@ -46447,9 +46338,9 @@
    Example
    "amount": Money, "applied_to": "ITEM", "coupon": AppliedCoupon, - "is_discounting_locked": false, + "is_discounting_locked": true, "label": "abc123", - "type": "abc123", + "type": "xyz789", "value": 123.45 }
    @@ -46585,16 +46476,16 @@
    Example
    "discount": [Discount], "errors": [CartItemError], "is_available": true, - "is_salable": true, + "is_salable": false, "links": [DownloadableProductLinks], - "max_qty": 123.45, + "max_qty": 987.65, "min_qty": 123.45, "not_available_message": "abc123", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 123.45, + "quantity": 987.65, "samples": [DownloadableProductSamples], "uid": "4" } @@ -46681,12 +46572,12 @@
    Example
    "custom_attributes": [CustomAttribute], "discounts": [Discount], "downloadable_links": [DownloadableItemsLinks], - "id": "4", + "id": 4, "order_item": OrderItemInterface, "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "abc123", - "quantity_refunded": 987.65 + "product_sku": "xyz789", + "quantity_refunded": 123.45 }
    @@ -46776,7 +46667,7 @@
    Example
    "product_name": "abc123", "product_sale_price": Money, "product_sku": "abc123", - "quantity_invoiced": 987.65 + "quantity_invoiced": 123.45 }
    @@ -46828,9 +46719,9 @@
    Fields
    Example
    {
    -  "sort_order": 987,
    -  "title": "xyz789",
    -  "uid": "4"
    +  "sort_order": 123,
    +  "title": "abc123",
    +  "uid": 4
     }
     
    @@ -47002,16 +46893,16 @@
    Example
    "product_sale_price": Money, "product_sku": "abc123", "product_type": "xyz789", - "product_url_key": "abc123", - "quantity_canceled": 123.45, - "quantity_invoiced": 987.65, - "quantity_ordered": 987.65, + "product_url_key": "xyz789", + "quantity_canceled": 987.65, + "quantity_invoiced": 123.45, + "quantity_ordered": 123.45, "quantity_refunded": 123.45, - "quantity_return_requested": 987.65, + "quantity_return_requested": 123.45, "quantity_returned": 987.65, - "quantity_shipped": 987.65, + "quantity_shipped": 123.45, "selected_options": [OrderItemOption], - "status": "xyz789" + "status": "abc123" }
    @@ -47297,18 +47188,18 @@
    Example
    "gift_wrapping_available": false, "gift_wrapping_price": Money, "image": ProductImage, - "is_returnable": "abc123", - "links_purchased_separately": 987, + "is_returnable": "xyz789", + "links_purchased_separately": 123, "links_title": "abc123", "manufacturer": 987, "max_sale_qty": 123.45, "media_gallery": [MediaGalleryInterface], - "meta_description": "abc123", + "meta_description": "xyz789", "meta_keyword": "abc123", - "meta_title": "xyz789", - "min_sale_qty": 123.45, - "name": "xyz789", - "new_from_date": "abc123", + "meta_title": "abc123", + "min_sale_qty": 987.65, + "name": "abc123", + "new_from_date": "xyz789", "new_to_date": "abc123", "only_x_left_in_stock": 123.45, "options": [CustomizableOptionInterface], @@ -47319,16 +47210,16 @@
    Example
    "quantity": 987.65, "related_products": [ProductInterface], "short_description": ComplexTextValue, - "sku": "abc123", + "sku": "xyz789", "small_image": ProductImage, - "special_price": 123.45, + "special_price": 987.65, "special_to_date": "xyz789", "stock_status": "IN_STOCK", "swatch_image": "xyz789", "thumbnail": ProductImage, "uid": "4", "upsell_products": [ProductInterface], - "url_key": "xyz789" + "url_key": "abc123" }
    @@ -47451,9 +47342,9 @@
    Example
    {
       "price": 123.45,
       "sample_url": "xyz789",
    -  "sort_order": 123,
    -  "title": "abc123",
    -  "uid": 4
    +  "sort_order": 987,
    +  "title": "xyz789",
    +  "uid": "4"
     }
     
    @@ -47495,7 +47386,7 @@
    Fields
    Example
    -
    {"link_id": 123}
    +                  
    {"link_id": 987}
     
    @@ -47546,9 +47437,9 @@
    Fields
    Example
    {
    -  "sample_url": "abc123",
    +  "sample_url": "xyz789",
       "sort_order": 987,
    -  "title": "xyz789"
    +  "title": "abc123"
     }
     
    @@ -47625,8 +47516,8 @@
    Example
    "product": ProductInterface, "quantity": 123.45, "samples": [DownloadableProductSamples], - "sku": "abc123", - "uid": "4" + "sku": "xyz789", + "uid": 4 }
    @@ -47704,9 +47595,9 @@
    Fields
    Example
    {
    -  "added_at": "abc123",
    +  "added_at": "xyz789",
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "xyz789",
    +  "description": "abc123",
       "id": "4",
       "links_v2": [DownloadableProductLinks],
       "product": ProductInterface,
    @@ -47759,10 +47650,7 @@ 
    Fields
    Example
    -
    {
    -  "duplicated_quote_uid": "4",
    -  "quote_uid": "4"
    -}
    +                  
    {"duplicated_quote_uid": 4, "quote_uid": 4}
     
    @@ -47851,7 +47739,7 @@
    Fields
    Example
    {
       "attribute_code": "abc123",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -48140,7 +48028,7 @@
    Fields
    Example
    {
       "address": EstimateAddressInput,
    -  "cart_id": "abc123",
    +  "cart_id": "xyz789",
       "shipping_method": ShippingMethodInput
     }
     
    @@ -48270,7 +48158,7 @@
    Fields
    Example
    {
       "customer": Customer,
    -  "token": "xyz789"
    +  "token": "abc123"
     }
     
    @@ -48391,7 +48279,7 @@
    Example
    "code": "abc123", "is_visible": true, "payment_intent": "abc123", - "payment_source": "abc123", + "payment_source": "xyz789", "sdk_params": [SDKParams], "sort_order": "xyz789", "three_ds_mode": "OFF", @@ -48444,7 +48332,7 @@
    Fields
    Example
    {
    -  "payment_source": "xyz789",
    +  "payment_source": "abc123",
       "paypal_fastlane_token": "abc123"
     }
     
    @@ -48675,7 +48563,7 @@
    Fields
    Example
    -
    {"match": "xyz789", "match_type": "FULL"}
    +                  
    {"match": "abc123", "match_type": "FULL"}
     
    @@ -48723,7 +48611,7 @@
    Fields
    Example
    {
    -  "from": "xyz789",
    +  "from": "abc123",
       "to": "xyz789"
     }
     
    @@ -48887,9 +48775,9 @@
    Fields
    Example
    {
    -  "eq": "xyz789",
    -  "in": ["abc123"],
    -  "match": "xyz789"
    +  "eq": "abc123",
    +  "in": ["xyz789"],
    +  "match": "abc123"
     }
     
    @@ -49011,14 +48899,14 @@
    Fields
    Example
    {
       "eq": "xyz789",
    -  "from": "xyz789",
    +  "from": "abc123",
       "gt": "abc123",
       "gteq": "abc123",
    -  "in": ["abc123"],
    +  "in": ["xyz789"],
       "like": "xyz789",
       "lt": "abc123",
    -  "lteq": "abc123",
    -  "moreq": "abc123",
    +  "lteq": "xyz789",
    +  "moreq": "xyz789",
       "neq": "xyz789",
       "nin": ["abc123"],
       "notnull": "abc123",
    @@ -49080,9 +48968,9 @@ 
    Fields
    Example
    {
    -  "attribute": "xyz789",
    -  "frontendInput": "abc123",
    -  "label": "xyz789",
    +  "attribute": "abc123",
    +  "frontendInput": "xyz789",
    +  "label": "abc123",
       "numeric": true
     }
     
    @@ -49131,7 +49019,7 @@
    Fields
    Example
    {
       "amount": Money,
    -  "label": "abc123"
    +  "label": "xyz789"
     }
     
    @@ -49219,7 +49107,7 @@
    Description
    Example
    -
    123.45
    +                  
    987.65
     
    @@ -49260,7 +49148,7 @@
    Fields
    Example
    -
    {"customer_email": "abc123"}
    +                  
    {"customer_email": "xyz789"}
     
    @@ -49473,7 +49361,7 @@
    Fields
    Example
    {
       "balance": Money,
    -  "code": "xyz789",
    +  "code": "abc123",
       "expiration_date": "xyz789"
     }
     
    @@ -49516,7 +49404,7 @@
    Fields
    Example
    -
    {"gift_card_code": "abc123"}
    +                  
    {"gift_card_code": "xyz789"}
     
    @@ -49577,11 +49465,11 @@
    Fields
    Example
    {
    -  "attribute_id": 123,
    +  "attribute_id": 987,
       "uid": 4,
    -  "value": 123.45,
    -  "website_id": 987,
    -  "website_value": 123.45
    +  "value": 987.65,
    +  "website_id": 123,
    +  "website_value": 987.65
     }
     
    @@ -49755,20 +49643,20 @@
    Example
    "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, "is_available": true, - "is_salable": false, - "max_qty": 987.65, - "message": "abc123", - "min_qty": 987.65, + "is_salable": true, + "max_qty": 123.45, + "message": "xyz789", + "min_qty": 123.45, "not_available_message": "abc123", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, "quantity": 987.65, - "recipient_email": "xyz789", + "recipient_email": "abc123", "recipient_name": "abc123", - "sender_email": "xyz789", - "sender_name": "xyz789", + "sender_email": "abc123", + "sender_name": "abc123", "uid": 4 }
    @@ -49854,8 +49742,8 @@
    Example
    "order_item": OrderItemInterface, "product_name": "abc123", "product_sale_price": Money, - "product_sku": "xyz789", - "quantity_refunded": 123.45 + "product_sku": "abc123", + "quantity_refunded": 987.65 }
    @@ -49936,12 +49824,12 @@
    Example
    "custom_attributes": [CustomAttribute], "discounts": [Discount], "gift_card": GiftCardItem, - "id": "4", + "id": 4, "order_item": OrderItemInterface, "product_name": "xyz789", "product_sale_price": Money, "product_sku": "abc123", - "quantity_invoiced": 123.45 + "quantity_invoiced": 987.65 }
    @@ -50006,8 +49894,8 @@
    Example
    "message": "xyz789", "recipient_email": "xyz789", "recipient_name": "xyz789", - "sender_email": "abc123", - "sender_name": "abc123" + "sender_email": "xyz789", + "sender_name": "xyz789" }
    @@ -50083,8 +49971,8 @@
    Example
    "custom_giftcard_amount": Money, "message": "xyz789", "recipient_email": "abc123", - "recipient_name": "xyz789", - "sender_email": "xyz789", + "recipient_name": "abc123", + "sender_email": "abc123", "sender_name": "xyz789" }
    @@ -50241,19 +50129,19 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "eligible_for_return": true,
    +  "eligible_for_return": false,
       "entered_options": [OrderItemOption],
       "gift_card": GiftCardItem,
       "gift_message": GiftMessage,
       "gift_wrapping": GiftWrapping,
    -  "id": 4,
    +  "id": "4",
       "prices": OrderItemPrices,
       "product": ProductInterface,
       "product_name": "abc123",
       "product_sale_price": Money,
       "product_sku": "xyz789",
    -  "product_type": "abc123",
    -  "product_url_key": "abc123",
    +  "product_type": "xyz789",
    +  "product_url_key": "xyz789",
       "quantity_canceled": 987.65,
       "quantity_invoiced": 123.45,
       "quantity_ordered": 123.45,
    @@ -50262,7 +50150,7 @@ 
    Example
    "quantity_returned": 987.65, "quantity_shipped": 123.45, "selected_options": [OrderItemOption], - "status": "xyz789" + "status": "abc123" }
    @@ -50569,47 +50457,47 @@
    Example
    {
       "allow_message": true,
       "allow_open_amount": true,
    -  "canonical_url": "abc123",
    +  "canonical_url": "xyz789",
       "categories": [CategoryInterface],
    -  "country_of_manufacture": "xyz789",
    +  "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
       "gift_card_options": [CustomizableOptionInterface],
       "gift_message_available": false,
    -  "gift_wrapping_available": false,
    +  "gift_wrapping_available": true,
       "gift_wrapping_price": Money,
       "giftcard_amounts": [GiftCardAmounts],
       "giftcard_type": "VIRTUAL",
       "image": ProductImage,
    -  "is_redeemable": false,
    +  "is_redeemable": true,
       "is_returnable": "xyz789",
       "lifetime": 123,
       "manufacturer": 123,
    -  "max_sale_qty": 123.45,
    +  "max_sale_qty": 987.65,
       "media_gallery": [MediaGalleryInterface],
    -  "message_max_length": 123,
    +  "message_max_length": 987,
       "meta_description": "abc123",
    -  "meta_keyword": "xyz789",
    +  "meta_keyword": "abc123",
       "meta_title": "abc123",
       "min_sale_qty": 987.65,
    -  "name": "abc123",
    -  "new_from_date": "abc123",
    +  "name": "xyz789",
    +  "new_from_date": "xyz789",
       "new_to_date": "abc123",
    -  "only_x_left_in_stock": 987.65,
    +  "only_x_left_in_stock": 123.45,
       "open_amount_max": 987.65,
    -  "open_amount_min": 987.65,
    +  "open_amount_min": 123.45,
       "options": [CustomizableOptionInterface],
    -  "options_container": "xyz789",
    +  "options_container": "abc123",
       "price_range": PriceRange,
       "price_tiers": [TierPrice],
       "product_links": [ProductLinksInterface],
    -  "quantity": 123.45,
    +  "quantity": 987.65,
       "related_products": [ProductInterface],
       "short_description": ComplexTextValue,
    -  "sku": "abc123",
    +  "sku": "xyz789",
       "small_image": ProductImage,
    -  "special_price": 123.45,
    +  "special_price": 987.65,
       "special_to_date": "abc123",
       "stock_status": "IN_STOCK",
       "swatch_image": "abc123",
    @@ -50690,7 +50578,7 @@ 
    Example
    "product": ProductInterface, "quantity": 123.45, "sku": "xyz789", - "uid": 4 + "uid": "4" }
    @@ -50759,12 +50647,12 @@
    Fields
    Example
    {
       "gift_card": GiftCardItem,
    -  "id": "4",
    +  "id": 4,
       "order_item": OrderItemInterface,
    -  "product_name": "abc123",
    +  "product_name": "xyz789",
       "product_sale_price": Money,
       "product_sku": "xyz789",
    -  "quantity_shipped": 987.65
    +  "quantity_shipped": 123.45
     }
     
    @@ -50893,11 +50781,11 @@
    Fields
    Example
    {
    -  "added_at": "abc123",
    +  "added_at": "xyz789",
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "abc123",
    +  "description": "xyz789",
       "gift_card_options": GiftCardOptions,
    -  "id": 4,
    +  "id": "4",
       "product": ProductInterface,
       "quantity": 123.45
     }
    @@ -50951,9 +50839,9 @@ 
    Fields
    Example
    {
    -  "from": "abc123",
    +  "from": "xyz789",
       "message": "xyz789",
    -  "to": "xyz789"
    +  "to": "abc123"
     }
     
    @@ -51009,7 +50897,7 @@
    Fields
    Example
    {
       "from": "abc123",
    -  "message": "abc123",
    +  "message": "xyz789",
       "to": "abc123"
     }
     
    @@ -51179,18 +51067,18 @@
    Fields
    Example
    {
    -  "created_at": "xyz789",
    +  "created_at": "abc123",
       "dynamic_attributes": [GiftRegistryDynamicAttribute],
       "event_name": "xyz789",
       "items": [GiftRegistryItemInterface],
    -  "message": "xyz789",
    +  "message": "abc123",
       "owner_name": "abc123",
       "privacy_settings": "PRIVATE",
       "registrants": [GiftRegistryRegistrant],
       "shipping_address": CustomerAddress,
       "status": "ACTIVE",
       "type": GiftRegistryType,
    -  "uid": "4"
    +  "uid": 4
     }
     
    @@ -51243,9 +51131,9 @@
    Fields
    Example
    {
    -  "code": "4",
    +  "code": 4,
       "group": "EVENT_INFORMATION",
    -  "label": "abc123",
    +  "label": "xyz789",
       "value": "abc123"
     }
     
    @@ -51371,10 +51259,7 @@
    Fields
    Example
    -
    {
    -  "code": "4",
    -  "value": "abc123"
    -}
    +                  
    {"code": 4, "value": "abc123"}
     
    @@ -51444,8 +51329,8 @@
    Possible Types
    Example
    {
       "code": 4,
    -  "label": "abc123",
    -  "value": "xyz789"
    +  "label": "xyz789",
    +  "value": "abc123"
     }
     
    @@ -51508,12 +51393,12 @@
    Fields
    Example
    {
    -  "attribute_group": "xyz789",
    -  "code": "4",
    -  "input_type": "xyz789",
    +  "attribute_group": "abc123",
    +  "code": 4,
    +  "input_type": "abc123",
       "is_required": false,
       "label": "xyz789",
    -  "sort_order": 987
    +  "sort_order": 123
     }
     
    @@ -51595,9 +51480,9 @@
    Example
    {
       "attribute_group": "xyz789",
       "code": "4",
    -  "input_type": "xyz789",
    -  "is_required": true,
    -  "label": "xyz789",
    +  "input_type": "abc123",
    +  "is_required": false,
    +  "label": "abc123",
       "sort_order": 987
     }
     
    @@ -51663,10 +51548,10 @@
    Fields
    Example
    {
       "created_at": "abc123",
    -  "note": "xyz789",
    +  "note": "abc123",
       "product": ProductInterface,
    -  "quantity": 987.65,
    -  "quantity_fulfilled": 123.45,
    +  "quantity": 123.45,
    +  "quantity_fulfilled": 987.65,
       "uid": 4
     }
     
    @@ -51749,11 +51634,11 @@
    Possible Types
    Example
    {
       "created_at": "abc123",
    -  "note": "xyz789",
    +  "note": "abc123",
       "product": ProductInterface,
    -  "quantity": 123.45,
    -  "quantity_fulfilled": 987.65,
    -  "uid": 4
    +  "quantity": 987.65,
    +  "quantity_fulfilled": 123.45,
    +  "uid": "4"
     }
     
    @@ -51882,9 +51767,9 @@
    Example
    {
       "code": "OUT_OF_STOCK",
       "gift_registry_item_uid": "4",
    -  "gift_registry_uid": "4",
    -  "message": "abc123",
    -  "product_uid": 4
    +  "gift_registry_uid": 4,
    +  "message": "xyz789",
    +  "product_uid": "4"
     }
     
    @@ -52110,8 +51995,8 @@
    Example
    ], "email": "xyz789", "firstname": "abc123", - "lastname": "xyz789", - "uid": 4 + "lastname": "abc123", + "uid": "4" }
    @@ -52159,7 +52044,7 @@
    Fields
    Example
    {
    -  "code": "4",
    +  "code": 4,
       "label": "xyz789",
       "value": "abc123"
     }
    @@ -52228,11 +52113,11 @@ 
    Fields
    Example
    {
    -  "event_date": "abc123",
    -  "event_title": "abc123",
    +  "event_date": "xyz789",
    +  "event_title": "xyz789",
       "gift_registry_uid": "4",
    -  "location": "xyz789",
    -  "name": "xyz789",
    +  "location": "abc123",
    +  "name": "abc123",
       "type": "xyz789"
     }
     
    @@ -52289,8 +52174,8 @@
    Fields
    Example
    {
       "address_data": CustomerAddressInput,
    -  "address_id": "4",
    -  "customer_address_uid": "4"
    +  "address_id": 4,
    +  "customer_address_uid": 4
     }
     
    @@ -52452,10 +52337,10 @@
    Fields
    Example
    {
    -  "design": "abc123",
    +  "design": "xyz789",
       "image": GiftWrappingImage,
       "price": Money,
    -  "uid": "4"
    +  "uid": 4
     }
     
    @@ -52503,7 +52388,7 @@
    Fields
    Example
    {
       "label": "abc123",
    -  "url": "abc123"
    +  "url": "xyz789"
     }
     
    @@ -52551,7 +52436,7 @@
    Fields
    Example
    {
    -  "color": "abc123",
    +  "color": "xyz789",
       "height": 123,
       "type": "abc123"
     }
    @@ -52634,12 +52519,12 @@ 
    Example
    "button_styles": GooglePayButtonStyles, "code": "abc123", "is_visible": false, - "payment_intent": "xyz789", + "payment_intent": "abc123", "payment_source": "abc123", "sdk_params": [SDKParams], - "sort_order": "xyz789", + "sort_order": "abc123", "three_ds_mode": "OFF", - "title": "xyz789" + "title": "abc123" }
    @@ -52695,7 +52580,7 @@
    Fields
    Example
    {
       "payment_source": "abc123",
    -  "payments_order_id": "xyz789",
    +  "payments_order_id": "abc123",
       "paypal_order_id": "xyz789"
     }
     
    @@ -52951,42 +52836,42 @@
    filters
    Example
    {
    -  "canonical_url": "abc123",
    +  "canonical_url": "xyz789",
       "categories": [CategoryInterface],
       "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
       "gift_message_available": true,
    -  "gift_wrapping_available": true,
    +  "gift_wrapping_available": false,
       "gift_wrapping_price": Money,
       "image": ProductImage,
    -  "is_returnable": "xyz789",
    +  "is_returnable": "abc123",
       "items": [GroupedProductItem],
       "manufacturer": 123,
    -  "max_sale_qty": 987.65,
    +  "max_sale_qty": 123.45,
       "media_gallery": [MediaGalleryInterface],
       "meta_description": "abc123",
       "meta_keyword": "xyz789",
       "meta_title": "xyz789",
       "min_sale_qty": 987.65,
       "name": "abc123",
    -  "new_from_date": "xyz789",
    +  "new_from_date": "abc123",
       "new_to_date": "abc123",
    -  "only_x_left_in_stock": 123.45,
    +  "only_x_left_in_stock": 987.65,
       "options_container": "xyz789",
       "price_range": PriceRange,
       "price_tiers": [TierPrice],
       "product_links": [ProductLinksInterface],
    -  "quantity": 987.65,
    +  "quantity": 123.45,
       "related_products": [ProductInterface],
       "short_description": ComplexTextValue,
    -  "sku": "abc123",
    +  "sku": "xyz789",
       "small_image": ProductImage,
    -  "special_price": 987.65,
    -  "special_to_date": "xyz789",
    +  "special_price": 123.45,
    +  "special_to_date": "abc123",
       "stock_status": "IN_STOCK",
    -  "swatch_image": "abc123",
    +  "swatch_image": "xyz789",
       "thumbnail": ProductImage,
       "uid": "4",
       "upsell_products": [ProductInterface],
    @@ -53114,7 +52999,7 @@ 
    Fields
    Example
    {
    -  "added_at": "abc123",
    +  "added_at": "xyz789",
       "customizable_options": [SelectedCustomizableOption],
       "description": "xyz789",
       "id": "4",
    @@ -53168,8 +53053,8 @@ 
    Fields
    Example
    {
    -  "reason": "abc123",
    -  "token": "abc123"
    +  "reason": "xyz789",
    +  "token": "xyz789"
     }
     
    @@ -53278,9 +53163,9 @@
    Fields
    Example
    {
    -  "attribute": "abc123",
    +  "attribute": "xyz789",
       "matched_words": ["xyz789"],
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -53348,11 +53233,11 @@
    Fields
    Example
    {
       "created_at": "abc123",
    -  "creator_name": "abc123",
    -  "creator_type": "abc123",
    -  "item_id": 987,
    +  "creator_name": "xyz789",
    +  "creator_type": "xyz789",
    +  "item_id": 123,
       "note": "abc123",
    -  "product_name": "abc123"
    +  "product_name": "xyz789"
     }
     
    @@ -53441,16 +53326,16 @@
    Fields
    Example
    {
       "cc_vault_code": "abc123",
    -  "code": "xyz789",
    +  "code": "abc123",
       "is_vault_enabled": false,
    -  "is_visible": true,
    +  "is_visible": false,
       "payment_intent": "xyz789",
    -  "payment_source": "xyz789",
    -  "requires_card_details": true,
    +  "payment_source": "abc123",
    +  "requires_card_details": false,
       "sdk_params": [SDKParams],
       "sort_order": "xyz789",
       "three_ds_mode": "OFF",
    -  "title": "abc123"
    +  "title": "xyz789"
     }
     
    @@ -53546,10 +53431,10 @@
    Example
    "cardExpiryYear": "abc123", "cardLast4": "abc123", "holderName": "xyz789", - "is_active_payment_token_enabler": false, + "is_active_payment_token_enabler": true, "payment_source": "abc123", "payments_order_id": "abc123", - "paypal_order_id": "abc123" + "paypal_order_id": "xyz789" }
    @@ -53614,7 +53499,7 @@
    Fields
    Example
    {
    -  "thumbnail": "abc123",
    +  "thumbnail": "xyz789",
       "value": "abc123"
     }
     
    @@ -53801,7 +53686,7 @@
    Description
    Example
    -
    987
    +                  
    123
     
    @@ -53841,7 +53726,7 @@
    Fields
    Example
    -
    {"message": "abc123"}
    +                  
    {"message": "xyz789"}
     
    @@ -53909,7 +53794,7 @@
    Example
    {
       "comments": [SalesCommentItem],
       "custom_attributes": [CustomAttribute],
    -  "id": 4,
    +  "id": "4",
       "items": [InvoiceItemInterface],
       "number": "abc123",
       "total": InvoiceTotal
    @@ -54037,7 +53922,7 @@ 
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "id": "4",
    +  "id": 4,
       "order_item": OrderItemInterface,
       "product_name": "xyz789",
       "product_sale_price": Money,
    @@ -54098,8 +53983,8 @@ 
    Fields
    Example
    {
       "custom_attributes": [CustomAttributeInput],
    -  "invoice_id": "abc123",
    -  "invoice_item_id": "xyz789"
    +  "invoice_id": "xyz789",
    +  "invoice_item_id": "abc123"
     }
     
    @@ -54215,7 +54100,7 @@
    Example
    "product_name": "xyz789", "product_sale_price": Money, "product_sku": "xyz789", - "quantity_invoiced": 123.45 + "quantity_invoiced": 987.65 }
    @@ -54380,7 +54265,7 @@
    Fields
    Example
    -
    {"is_email_available": true}
    +                  
    {"is_email_available": false}
     
    @@ -54673,7 +54558,7 @@
    Fields
    Example
    -
    {"isSubscribed": false, "message": "xyz789"}
    +                  
    {"isSubscribed": false, "message": "abc123"}
     
    @@ -54746,11 +54631,11 @@
    Example
    {
       "created_at": "xyz789",
       "creator_id": 987,
    -  "creator_name": "abc123",
    +  "creator_name": "xyz789",
       "creator_type": 987,
    -  "negotiable_quote_item_uid": 4,
    -  "note": "xyz789",
    -  "note_uid": "4"
    +  "negotiable_quote_item_uid": "4",
    +  "note": "abc123",
    +  "note_uid": 4
     }
     
    @@ -54802,8 +54687,8 @@
    Fields
    Example
    {
    -  "label": "xyz789",
    -  "uid": 4,
    +  "label": "abc123",
    +  "uid": "4",
       "values": [ItemSelectedBundleOptionValue]
     }
     
    @@ -54869,7 +54754,7 @@
    Example
    "price": Money, "product_name": "xyz789", "product_sku": "xyz789", - "quantity": 987.65, + "quantity": 123.45, "uid": "4" }
    @@ -54939,7 +54824,7 @@
    Fields
    Example
    {
    -  "name": "xyz789",
    +  "name": "abc123",
       "value": "abc123"
     }
     
    @@ -54997,7 +54882,7 @@
    Example
    {
       "note": "abc123",
       "quote_item_uid": 4,
    -  "quote_uid": 4
    +  "quote_uid": "4"
     }
     
    @@ -55089,7 +54974,7 @@
    Example
    "disabled": false, "label": "abc123", "position": 123, - "url": "xyz789" + "url": "abc123" }
    @@ -55191,7 +55076,7 @@
    Fields
    Example
    -
    {"type": "abc123"}
    +                  
    {"type": "xyz789"}
     
    @@ -55233,7 +55118,7 @@
    Fields
    Example
    {
    -  "layout": "abc123",
    +  "layout": "xyz789",
       "logo": MessageStyleLogo
     }
     
    @@ -55280,7 +55165,7 @@
    Fields
    Example
    -
    {"currency": "AFN", "value": 987.65}
    +                  
    {"currency": "AFN", "value": 123.45}
     
    @@ -55332,7 +55217,7 @@
    Fields
    Example
    {
       "gift_registry": GiftRegistry,
    -  "status": false,
    +  "status": true,
       "user_errors": [GiftRegistryItemsUserError]
     }
     
    @@ -55375,7 +55260,7 @@
    Fields
    Example
    -
    {"requisitionListItemUids": [4]}
    +                  
    {"requisitionListItemUids": ["4"]}
     
    @@ -55479,7 +55364,7 @@
    Example
    {
       "quote_item_uid": "4",
       "quote_uid": 4,
    -  "requisition_list_uid": 4
    +  "requisition_list_uid": "4"
     }
     
    @@ -55729,24 +55614,24 @@
    Example
    "billing_address": NegotiableQuoteBillingAddress, "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", + "created_at": "xyz789", "custom_attributes": [CustomAttribute], "email": "abc123", "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], - "is_virtual": true, + "is_virtual": false, "items": [CartItemInterface], - "name": "xyz789", + "name": "abc123", "order": CustomerOrder, "prices": CartPrices, - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [NegotiableQuoteShippingAddress], "status": "SUBMITTED", - "template_id": 4, - "template_name": "xyz789", - "total_quantity": 123.45, - "uid": 4, + "template_id": "4", + "template_name": "abc123", + "total_quantity": 987.65, + "uid": "4", "updated_at": "xyz789" }
    @@ -55795,7 +55680,7 @@
    Fields
    Example
    {
       "code": "xyz789",
    -  "label": "xyz789"
    +  "label": "abc123"
     }
     
    @@ -55934,23 +55819,23 @@
    Fields
    Example
    {
    -  "city": "xyz789",
    -  "company": "xyz789",
    -  "country_code": "xyz789",
    +  "city": "abc123",
    +  "company": "abc123",
    +  "country_code": "abc123",
       "custom_attributes": [AttributeValueInput],
       "fax": "abc123",
    -  "firstname": "abc123",
    +  "firstname": "xyz789",
       "lastname": "xyz789",
    -  "middlename": "abc123",
    -  "postcode": "abc123",
    -  "prefix": "xyz789",
    -  "region": "xyz789",
    -  "region_id": 987,
    +  "middlename": "xyz789",
    +  "postcode": "xyz789",
    +  "prefix": "abc123",
    +  "region": "abc123",
    +  "region_id": 123,
       "save_in_address_book": true,
       "street": ["xyz789"],
    -  "suffix": "xyz789",
    +  "suffix": "abc123",
       "telephone": "xyz789",
    -  "vat_id": "abc123"
    +  "vat_id": "xyz789"
     }
     
    @@ -56091,20 +55976,20 @@
    Possible Types
    Example
    {
       "city": "xyz789",
    -  "company": "xyz789",
    +  "company": "abc123",
       "country": NegotiableQuoteAddressCountry,
       "custom_attributes": [AttributeValueInterface],
       "customer_address_uid": "4",
       "fax": "abc123",
    -  "firstname": "abc123",
    -  "lastname": "abc123",
    -  "middlename": "abc123",
    +  "firstname": "xyz789",
    +  "lastname": "xyz789",
    +  "middlename": "xyz789",
       "postcode": "abc123",
       "prefix": "xyz789",
       "region": NegotiableQuoteAddressRegion,
       "street": ["abc123"],
       "suffix": "abc123",
    -  "telephone": "xyz789",
    +  "telephone": "abc123",
       "uid": 4,
       "vat_id": "abc123"
     }
    @@ -56159,7 +56044,7 @@ 
    Fields
    Example
    {
       "code": "xyz789",
    -  "label": "xyz789",
    +  "label": "abc123",
       "region_id": 987
     }
     
    @@ -56282,7 +56167,7 @@
    Example
    "company": "abc123", "country": NegotiableQuoteAddressCountry, "custom_attributes": [AttributeValueInterface], - "customer_address_uid": "4", + "customer_address_uid": 4, "fax": "abc123", "firstname": "abc123", "lastname": "abc123", @@ -56294,7 +56179,7 @@
    Example
    "suffix": "abc123", "telephone": "abc123", "uid": "4", - "vat_id": "xyz789" + "vat_id": "abc123" }
    @@ -56356,7 +56241,7 @@
    Fields
    Example
    {
       "address": NegotiableQuoteAddressInput,
    -  "customer_address_uid": "4",
    +  "customer_address_uid": 4,
       "same_as_shipping": true,
       "use_for_shipping": false
     }
    @@ -56430,7 +56315,7 @@ 
    Example
    "created_at": "abc123", "creator_type": "BUYER", "text": "xyz789", - "uid": "4" + "uid": 4 }
    @@ -56478,7 +56363,7 @@
    Fields
    Example
    {
       "name": "abc123",
    -  "url": "abc123"
    +  "url": "xyz789"
     }
     
    @@ -56520,7 +56405,7 @@
    Fields
    Example
    -
    {"key": "abc123"}
    +                  
    {"key": "xyz789"}
     
    @@ -56668,7 +56553,7 @@
    Example
    {
       "new_value": "abc123",
       "old_value": "xyz789",
    -  "title": "xyz789"
    +  "title": "abc123"
     }
     
    @@ -56900,7 +56785,7 @@
    Example
    "author": NegotiableQuoteUser, "change_type": "CREATED", "changes": NegotiableQuoteHistoryChanges, - "created_at": "xyz789", + "created_at": "abc123", "item_note": HistoryItemNoteData, "uid": 4 } @@ -57057,7 +56942,7 @@
    Fields
    Example
    {
    -  "products_removed_from_catalog": [4],
    +  "products_removed_from_catalog": ["4"],
       "products_removed_from_quote": [ProductInterface]
     }
     
    @@ -57279,7 +57164,7 @@
    Fields
    Example
    -
    {"quantity": 123.45, "quote_item_uid": "4"}
    +                  
    {"quantity": 123.45, "quote_item_uid": 4}
     
    @@ -57328,7 +57213,7 @@
    Fields
    Example
    {
       "code": "xyz789",
    -  "purchase_order_number": "abc123"
    +  "purchase_order_number": "xyz789"
     }
     
    @@ -57386,9 +57271,9 @@
    Fields
    Example
    {
       "document_identifier": "xyz789",
    -  "document_name": "xyz789",
    +  "document_name": "abc123",
       "link_id": 4,
    -  "reference_document_url": "xyz789"
    +  "reference_document_url": "abc123"
     }
     
    @@ -57517,24 +57402,24 @@
    Fields
    Example
    {
       "available_shipping_methods": [AvailableShippingMethod],
    -  "city": "xyz789",
    +  "city": "abc123",
       "company": "abc123",
       "country": NegotiableQuoteAddressCountry,
       "custom_attributes": [AttributeValueInterface],
       "customer_address_uid": "4",
    -  "fax": "abc123",
    -  "firstname": "xyz789",
    +  "fax": "xyz789",
    +  "firstname": "abc123",
       "lastname": "abc123",
    -  "middlename": "xyz789",
    -  "postcode": "xyz789",
    +  "middlename": "abc123",
    +  "postcode": "abc123",
       "prefix": "xyz789",
       "region": NegotiableQuoteAddressRegion,
       "selected_shipping_method": SelectedShippingMethod,
    -  "street": ["xyz789"],
    +  "street": ["abc123"],
       "suffix": "xyz789",
       "telephone": "abc123",
       "uid": "4",
    -  "vat_id": "abc123"
    +  "vat_id": "xyz789"
     }
     
    @@ -57931,16 +57816,16 @@
    Example
    {
       "buyer": NegotiableQuoteUser,
       "comments": [NegotiableQuoteComment],
    -  "created_at": "abc123",
    -  "expiration_date": "xyz789",
    +  "created_at": "xyz789",
    +  "expiration_date": "abc123",
       "history": [NegotiableQuoteHistoryEntry],
       "historyV2": [NegotiableQuoteTemplateHistoryEntry],
       "is_min_max_qty_used": false,
       "is_virtual": false,
       "items": [CartItemInterface],
    -  "max_order_commitment": 987,
    +  "max_order_commitment": 123,
       "min_order_commitment": 123,
    -  "name": "abc123",
    +  "name": "xyz789",
       "notifications": [QuoteTemplateNotificationMessage],
       "prices": CartPrices,
       "reference_document_links": [
    @@ -57948,11 +57833,11 @@ 
    Example
    ], "sales_rep_name": "abc123", "shipping_addresses": [NegotiableQuoteShippingAddress], - "status": "abc123", + "status": "xyz789", "template_id": "4", - "total_quantity": 123.45, - "uid": "4", - "updated_at": "abc123" + "total_quantity": 987.65, + "uid": 4, + "updated_at": "xyz789" }
    @@ -58144,20 +58029,20 @@
    Example
    "created_at": "abc123", "expiration_date": "xyz789", "is_min_max_qty_used": false, - "last_ordered_at": "abc123", + "last_ordered_at": "xyz789", "last_shared_at": "xyz789", "max_order_commitment": 123, "min_negotiated_grand_total": 123.45, - "min_order_commitment": 123, + "min_order_commitment": 987, "name": "xyz789", - "orders_placed": 987, + "orders_placed": 123, "prices": CartPrices, "sales_rep_name": "xyz789", - "state": "abc123", + "state": "xyz789", "status": "abc123", - "submitted_by": "abc123", - "template_id": 4, - "uid": "4", + "submitted_by": "xyz789", + "template_id": "4", + "uid": 4, "updated_at": "xyz789" }
    @@ -58343,8 +58228,8 @@
    Fields
    Example
    {
    -  "new_status": "abc123",
    -  "old_status": "xyz789"
    +  "new_status": "xyz789",
    +  "old_status": "abc123"
     }
     
    @@ -58444,12 +58329,7 @@
    Fields
    Example
    -
    {
    -  "item_id": "4",
    -  "max_qty": 987.65,
    -  "min_qty": 123.45,
    -  "quantity": 987.65
    -}
    +                  
    {"item_id": 4, "max_qty": 987.65, "min_qty": 987.65, "quantity": 123.45}
     
    @@ -58509,9 +58389,9 @@
    Fields
    Example
    {
    -  "document_identifier": "abc123",
    -  "document_name": "abc123",
    -  "link_id": 4,
    +  "document_identifier": "xyz789",
    +  "document_name": "xyz789",
    +  "link_id": "4",
       "reference_document_url": "abc123"
     }
     
    @@ -58568,8 +58448,8 @@
    Fields
    Example
    {
       "address": NegotiableQuoteAddressInput,
    -  "customer_address_uid": "4",
    -  "customer_notes": "abc123"
    +  "customer_address_uid": 4,
    +  "customer_notes": "xyz789"
     }
     
    @@ -58719,7 +58599,7 @@
    Example
    "items": [NegotiableQuoteTemplateGridItem], "page_info": SearchResultPageInfo, "sort_fields": SortFields, - "total_count": 123 + "total_count": 987 }
    @@ -58920,7 +58800,7 @@
    Example
    "items": [NegotiableQuote], "page_info": SearchResultPageInfo, "sort_fields": SortFields, - "total_count": 987 + "total_count": 123 }
    @@ -59144,7 +59024,7 @@
    Fields
    Example
    -
    {"template_id": "4"}
    +                  
    {"template_id": 4}
     
    @@ -59441,20 +59321,20 @@
    attributeCodes
    Example
    {
    -  "city": "abc123",
    +  "city": "xyz789",
       "company": "xyz789",
       "country_code": "AF",
       "custom_attributesV2": [AttributeValueInterface],
       "fax": "xyz789",
       "firstname": "abc123",
    -  "lastname": "abc123",
    +  "lastname": "xyz789",
       "middlename": "abc123",
       "postcode": "xyz789",
       "prefix": "xyz789",
    -  "region": "xyz789",
    -  "region_id": "4",
    -  "street": ["abc123"],
    -  "suffix": "xyz789",
    +  "region": "abc123",
    +  "region_id": 4,
    +  "street": ["xyz789"],
    +  "suffix": "abc123",
       "telephone": "xyz789",
       "vat_id": "xyz789"
     }
    @@ -59516,7 +59396,7 @@ 
    Example
    {
       "firstname": "abc123",
       "lastname": "abc123",
    -  "middlename": "xyz789",
    +  "middlename": "abc123",
       "prefix": "abc123",
       "suffix": "xyz789"
     }
    @@ -59678,15 +59558,15 @@ 
    Example
    "product": ProductInterface, "product_name": "abc123", "product_sale_price": Money, - "product_sku": "xyz789", + "product_sku": "abc123", "product_type": "abc123", - "product_url_key": "xyz789", + "product_url_key": "abc123", "quantity_canceled": 123.45, - "quantity_invoiced": 123.45, - "quantity_ordered": 123.45, - "quantity_refunded": 987.65, - "quantity_return_requested": 123.45, - "quantity_returned": 987.65, + "quantity_invoiced": 987.65, + "quantity_ordered": 987.65, + "quantity_refunded": 123.45, + "quantity_return_requested": 987.65, + "quantity_returned": 123.45, "quantity_shipped": 123.45, "selected_options": [OrderItemOption], "status": "abc123" @@ -59885,23 +59765,23 @@
    Example
    "entered_options": [OrderItemOption], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "id": 4, + "id": "4", "prices": OrderItemPrices, "product": ProductInterface, "product_name": "abc123", "product_sale_price": Money, - "product_sku": "xyz789", - "product_type": "abc123", + "product_sku": "abc123", + "product_type": "xyz789", "product_url_key": "abc123", - "quantity_canceled": 987.65, + "quantity_canceled": 123.45, "quantity_invoiced": 123.45, "quantity_ordered": 123.45, - "quantity_refunded": 987.65, - "quantity_return_requested": 123.45, + "quantity_refunded": 123.45, + "quantity_return_requested": 987.65, "quantity_returned": 123.45, "quantity_shipped": 987.65, "selected_options": [OrderItemOption], - "status": "xyz789" + "status": "abc123" }
    @@ -59948,7 +59828,7 @@
    Fields
    Example
    {
    -  "label": "abc123",
    +  "label": "xyz789",
       "value": "xyz789"
     }
     
    @@ -60102,7 +59982,7 @@
    Example
    {
       "additional_data": [KeyValue],
       "name": "abc123",
    -  "type": "abc123"
    +  "type": "xyz789"
     }
     
    @@ -60165,9 +60045,9 @@
    Fields
    Example
    {
       "comments": [SalesCommentItem],
    -  "id": "4",
    +  "id": 4,
       "items": [ShipmentItemInterface],
    -  "number": "xyz789",
    +  "number": "abc123",
       "tracking": [ShipmentTracking]
     }
     
    @@ -60381,7 +60261,7 @@
    Fields
    Example
    -
    {"currentPage": 123, "pageSize": 123, "totalPages": 123}
    +                  
    {"currentPage": 987, "pageSize": 987, "totalPages": 987}
     
    @@ -60500,298 +60380,7 @@
    Fields
    Example
    -
    {"recipient_email": "abc123"}
    -
    -
    -
    - back to top - -
    -
    -
    - Types -
    -

    PayByLinkOrder

    -
    -
    -
    -
    Description
    -

    Read-only projection of the pending order behind a Pay By Link token. Returned by payByLinkOrder so the EDS payment page can render the order summary before collecting payment.

    -
    -
    -
    Fields
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Field NameDescription
    billing_address - PayByLinkOrderAddress - The order's billing address. Read-only on the payment page.
    customer_email - String! - Email address the payment link was sent to.
    expires_at - String! - UTC Y-m-d H:i:s timestamp after which the token is no longer redeemable.
    items - [PayByLinkOrderItem]! - Top-level line items on the order. Resolve product detail (image, description, variant) from the Catalog Service using sku.
    shipping_address - PayByLinkOrderAddress - The order's shipping address. Read-only on the payment page.
    totals - PayByLinkOrderTotals! - Money totals for the order.
    -
    -
    -
    -
    -
    Example
    -
    {
    -  "billing_address": PayByLinkOrderAddress,
    -  "customer_email": "xyz789",
    -  "expires_at": "abc123",
    -  "items": [PayByLinkOrderItem],
    -  "shipping_address": PayByLinkOrderAddress,
    -  "totals": PayByLinkOrderTotals
    -}
    -
    -
    -
    - back to top -
    -
    -
    -
    - Types -
    -

    PayByLinkOrderAddress

    -
    -
    -
    -
    Description
    -

    Read-only address attached to a Pay By Link order.

    -
    -
    -
    Fields
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Field NameDescription
    city - String! - -
    country_code - String! - -
    firstname - String! - -
    lastname - String! - -
    postcode - String - -
    region - String - -
    region_code - String - -
    street - [String]! - -
    telephone - String - -
    -
    -
    -
    -
    -
    Example
    -
    {
    -  "city": "xyz789",
    -  "country_code": "abc123",
    -  "firstname": "abc123",
    -  "lastname": "abc123",
    -  "postcode": "xyz789",
    -  "region": "xyz789",
    -  "region_code": "abc123",
    -  "street": ["abc123"],
    -  "telephone": "abc123"
    -}
    -
    -
    -
    - back to top -
    -
    -
    -
    - Types -
    -

    PayByLinkOrderItem

    -
    -
    -
    -
    Description
    -

    A single line item on a Pay By Link order.

    -
    -
    -
    Fields
    - - - - - - - - - - - - - - - - - - - - - - - - - -
    Field NameDescription
    name - String! - Product name captured on the order at placement time.
    price - Money! - Unit price for the item, including currency.
    quantity - Float! - Quantity ordered.
    sku - String! - SKU captured on the order line. Use this to resolve product detail from the Catalog Service.
    -
    -
    -
    -
    -
    Example
    -
    {
    -  "name": "xyz789",
    -  "price": Money,
    -  "quantity": 987.65,
    -  "sku": "abc123"
    -}
    -
    -
    -
    - back to top -
    -
    -
    -
    - Types -
    -

    PayByLinkOrderTotals

    -
    -
    -
    -
    Description
    -

    Order-level money totals.

    -
    -
    -
    Fields
    - - - - - - - - - - - - - - - - - - - - - - - - - -
    Field NameDescription
    grand_total - Money! - Amount the customer will be charged.
    shipping - Money! - Shipping amount.
    subtotal - Money! - Sum of line item prices before shipping/tax/discount.
    tax - Money! - Tax amount.
    -
    -
    -
    -
    -
    Example
    -
    {
    -  "grand_total": Money,
    -  "shipping": Money,
    -  "subtotal": Money,
    -  "tax": Money
    -}
    +                  
    {"recipient_email": "xyz789"}
     
    @@ -60839,8 +60428,8 @@
    Fields
    Example
    {
    -  "key": "xyz789",
    -  "value": "abc123"
    +  "key": "abc123",
    +  "value": "xyz789"
     }
     
    @@ -61191,7 +60780,7 @@
    Example
    "payment_services_paypal_hosted_fields": HostedFieldsInput, "payment_services_paypal_smart_buttons": SmartButtonMethodInput, "payment_services_paypal_vault": VaultMethodInput, - "purchase_order_number": "xyz789" + "purchase_order_number": "abc123" }
    @@ -61248,8 +60837,8 @@
    Fields
    Example
    {
    -  "id": "xyz789",
    -  "mp_order_id": "xyz789",
    +  "id": "abc123",
    +  "mp_order_id": "abc123",
       "payment_source_details": PaymentSourceDetails,
       "status": "abc123"
     }
    @@ -61723,21 +61312,21 @@ 
    Fields
    Example
    {
    -  "city": "abc123",
    -  "contact_name": "xyz789",
    +  "city": "xyz789",
    +  "contact_name": "abc123",
       "country_id": "xyz789",
    -  "description": "xyz789",
    -  "email": "abc123",
    +  "description": "abc123",
    +  "email": "xyz789",
       "fax": "abc123",
    -  "latitude": 123.45,
    +  "latitude": 987.65,
       "longitude": 123.45,
    -  "name": "abc123",
    -  "phone": "abc123",
    +  "name": "xyz789",
    +  "phone": "xyz789",
       "pickup_location_code": "abc123",
    -  "postcode": "abc123",
    -  "region": "xyz789",
    +  "postcode": "xyz789",
    +  "region": "abc123",
       "region_id": 987,
    -  "street": "xyz789"
    +  "street": "abc123"
     }
     
    @@ -62208,7 +61797,7 @@
    Fields
    Example
    {
       "code": "CART_NOT_FOUND",
    -  "message": "xyz789"
    +  "message": "abc123"
     }
     
    @@ -62394,99 +61983,99 @@
    Fields
    +
    +
    +
    Example
    +
    {"cart_id": "xyz789"}
    +
    +
    +
    + back to top + +
    +
    +
    + Types +
    +

    PlaceOrderOutput

    +
    +
    +
    +
    Description
    +

    Contains the results of the request to place an order.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + + + + + +
    Field NameDescription
    errors - [PlaceOrderError]! + An array of place order errors.
    orderV2 - CustomerOrder + Full order information.
    +
    +
    +
    +
    +
    Example
    +
    {
    +  "errors": [PlaceOrderError],
    +  "orderV2": CustomerOrder
    +}
    +
    +
    +
    + back to top +
    +
    +
    +
    + Types +
    +

    PlacePurchaseOrderInput

    +
    +
    +
    +
    Description
    +

    Specifies the quote to be converted to a purchase order.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + +
    Input FieldDescription
    + cart_id - String! + The unique ID of a Cart object.
    +
    +
    Example
    {"cart_id": "abc123"}
    -
    -
    -
    - back to top -
    -
    -
    -
    - Types -
    -

    PlaceOrderOutput

    -
    -
    -
    -
    Description
    -

    Contains the results of the request to place an order.

    -
    -
    -
    Fields
    - - - - - - - - - - - - - - - - - -
    Field NameDescription
    errors - [PlaceOrderError]! - An array of place order errors.
    orderV2 - CustomerOrder - Full order information.
    -
    -
    -
    -
    -
    Example
    -
    {
    -  "errors": [PlaceOrderError],
    -  "orderV2": CustomerOrder
    -}
    -
    -
    -
    - back to top -
    -
    -
    -
    - Types -
    -

    PlacePurchaseOrderInput

    -
    -
    -
    -
    Description
    -

    Specifies the quote to be converted to a purchase order.

    -
    -
    -
    Fields
    - - - - - - - - - - - - - -
    Input FieldDescription
    - cart_id - String! - The unique ID of a Cart object.
    -
    -
    -
    -
    -
    Example
    -
    {"cart_id": "xyz789"}
     
    @@ -62619,7 +62208,7 @@
    Fields
    Example
    -
    {"amount": 123.45, "code": "abc123"}
    +                  
    {"amount": 987.65, "code": "abc123"}
     
    @@ -62670,7 +62259,7 @@
    Fields
    Example
    {
    -  "discount_percentage": 123.45,
    +  "discount_percentage": 987.65,
       "main_final_price": 987.65,
       "main_price": 987.65
     }
    @@ -62902,7 +62491,7 @@ 
    Fields
    Example
    -
    {"sku": "xyz789"}
    +                  
    {"sku": "abc123"}
     
    @@ -62945,7 +62534,7 @@
    Fields
    Example
    -
    {"message": "xyz789", "success": false}
    +                  
    {"message": "xyz789", "success": true}
     
    @@ -62991,7 +62580,7 @@
    Fields
    Example
    {
    -  "code": "abc123",
    +  "code": "xyz789",
       "value": "abc123"
     }
     
    @@ -63046,7 +62635,7 @@
    Fields
    Example
    {
       "attribute_type": "xyz789",
    -  "code": 4,
    +  "code": "4",
       "url": "xyz789",
       "value": "abc123"
     }
    @@ -63142,7 +62731,7 @@ 
    Fields
    Example
    -
    {"amount_off": 987.65, "percent_off": 123.45}
    +                  
    {"amount_off": 987.65, "percent_off": 987.65}
     
    @@ -63199,9 +62788,9 @@
    Fields
    Example
    {
       "disabled": true,
    -  "label": "abc123",
    +  "label": "xyz789",
       "position": 123,
    -  "url": "xyz789"
    +  "url": "abc123"
     }
     
    @@ -63577,45 +63166,45 @@
    Possible Types
    Example
    {
    -  "canonical_url": "abc123",
    +  "canonical_url": "xyz789",
       "categories": [CategoryInterface],
       "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    -  "gift_message_available": false,
    -  "gift_wrapping_available": false,
    +  "gift_message_available": true,
    +  "gift_wrapping_available": true,
       "gift_wrapping_price": Money,
       "image": ProductImage,
    -  "is_returnable": "xyz789",
    -  "manufacturer": 987,
    -  "max_sale_qty": 987.65,
    +  "is_returnable": "abc123",
    +  "manufacturer": 123,
    +  "max_sale_qty": 123.45,
       "media_gallery": [MediaGalleryInterface],
    -  "meta_description": "xyz789",
    -  "meta_keyword": "abc123",
    +  "meta_description": "abc123",
    +  "meta_keyword": "xyz789",
       "meta_title": "abc123",
       "min_sale_qty": 123.45,
    -  "name": "abc123",
    -  "new_from_date": "abc123",
    -  "new_to_date": "xyz789",
    -  "only_x_left_in_stock": 123.45,
    +  "name": "xyz789",
    +  "new_from_date": "xyz789",
    +  "new_to_date": "abc123",
    +  "only_x_left_in_stock": 987.65,
       "options_container": "xyz789",
       "price_range": PriceRange,
       "price_tiers": [TierPrice],
       "product_links": [ProductLinksInterface],
    -  "quantity": 987.65,
    +  "quantity": 123.45,
       "related_products": [ProductInterface],
       "short_description": ComplexTextValue,
    -  "sku": "abc123",
    +  "sku": "xyz789",
       "small_image": ProductImage,
    -  "special_price": 987.65,
    +  "special_price": 123.45,
       "special_to_date": "abc123",
       "stock_status": "IN_STOCK",
    -  "swatch_image": "xyz789",
    +  "swatch_image": "abc123",
       "thumbnail": ProductImage,
       "uid": "4",
       "upsell_products": [ProductInterface],
    -  "url_key": "xyz789"
    +  "url_key": "abc123"
     }
     
    @@ -63679,9 +63268,9 @@
    Example
    {
       "link_type": "abc123",
       "linked_product_sku": "abc123",
    -  "linked_product_type": "xyz789",
    -  "position": 123,
    -  "sku": "abc123"
    +  "linked_product_type": "abc123",
    +  "position": 987,
    +  "sku": "xyz789"
     }
     
    @@ -63760,11 +63349,11 @@
    Possible Types
    Example
    {
    -  "link_type": "xyz789",
    -  "linked_product_sku": "abc123",
    -  "linked_product_type": "abc123",
    +  "link_type": "abc123",
    +  "linked_product_sku": "xyz789",
    +  "linked_product_type": "xyz789",
       "position": 987,
    -  "sku": "xyz789"
    +  "sku": "abc123"
     }
     
    @@ -63816,9 +63405,9 @@
    Fields
    Example
    {
    -  "asset_id": "abc123",
    +  "asset_id": "xyz789",
       "media_type": "abc123",
    -  "media_url": "abc123"
    +  "media_url": "xyz789"
     }
     
    @@ -63870,8 +63459,8 @@
    Fields
    Example
    {
    -  "media_type": "abc123",
    -  "video_asset_id": "xyz789",
    +  "media_type": "xyz789",
    +  "video_asset_id": "abc123",
       "video_media_url": "xyz789"
     }
     
    @@ -63939,12 +63528,12 @@
    Fields
    Example
    {
    -  "media_type": "xyz789",
    -  "video_description": "xyz789",
    -  "video_metadata": "xyz789",
    -  "video_provider": "abc123",
    +  "media_type": "abc123",
    +  "video_description": "abc123",
    +  "video_metadata": "abc123",
    +  "video_provider": "xyz789",
       "video_title": "abc123",
    -  "video_url": "xyz789"
    +  "video_url": "abc123"
     }
     
    @@ -64133,9 +63722,9 @@
    Example
    "facets": [Aggregation], "items": [ProductSearchItem], "page_info": SearchResultPageInfo, - "related_terms": ["xyz789"], - "suggestions": ["xyz789"], - "total_count": 987, + "related_terms": ["abc123"], + "suggestions": ["abc123"], + "total_count": 123, "warnings": [ProductSearchWarning] }
    @@ -64343,7 +63932,7 @@
    Fields
    Example
    {
       "disabled": false,
    -  "label": "abc123",
    +  "label": "xyz789",
       "position": 123,
       "url": "abc123",
       "video_content": ProductMediaGalleryEntriesVideoContent
    @@ -64585,28 +64174,28 @@ 
    Possible Types
    Example
    {
       "addToCartAllowed": true,
    -  "inStock": false,
    -  "lowStock": true,
    +  "inStock": true,
    +  "lowStock": false,
       "attributes": [ProductViewAttribute],
    -  "description": "abc123",
    +  "description": "xyz789",
       "id": 4,
       "images": [ProductViewImage],
       "videos": [ProductViewVideo],
       "lastModifiedAt": "2007-12-03T10:15:30Z",
       "metaDescription": "xyz789",
    -  "metaKeyword": "abc123",
    +  "metaKeyword": "xyz789",
       "metaTitle": "abc123",
    -  "name": "xyz789",
    -  "shortDescription": "xyz789",
    +  "name": "abc123",
    +  "shortDescription": "abc123",
       "inputOptions": [ProductViewInputOption],
       "sku": "abc123",
       "externalId": "xyz789",
    -  "url": "xyz789",
    +  "url": "abc123",
       "urlKey": "xyz789",
       "links": [ProductViewLink],
       "categories": [CategoryProductView],
       "queryType": "abc123",
    -  "visibility": "abc123"
    +  "visibility": "xyz789"
     }
     
    @@ -64663,7 +64252,7 @@
    Fields
    Example
    {
    -  "label": "xyz789",
    +  "label": "abc123",
       "name": "abc123",
       "roles": ["xyz789"],
       "value": {}
    @@ -65943,8 +65532,8 @@ 
    Fields
    Example
    {
    -  "label": "xyz789",
    -  "roles": ["abc123"],
    +  "label": "abc123",
    +  "roles": ["xyz789"],
       "url": "xyz789"
     }
     
    @@ -66033,15 +65622,15 @@
    Fields
    Example
    {
       "id": 4,
    -  "title": "abc123",
    +  "title": "xyz789",
       "required": false,
    -  "type": "xyz789",
    -  "markupAmount": 987.65,
    -  "suffix": "xyz789",
    -  "sortOrder": 123,
    +  "type": "abc123",
    +  "markupAmount": 123.45,
    +  "suffix": "abc123",
    +  "sortOrder": 987,
       "range": ProductViewInputOptionRange,
       "imageSize": ProductViewInputOptionImageSize,
    -  "fileExtensions": "abc123"
    +  "fileExtensions": "xyz789"
     }
     
    @@ -66087,7 +65676,7 @@
    Fields
    Example
    -
    {"width": 987, "height": 123}
    +                  
    {"width": 123, "height": 987}
     
    @@ -66132,7 +65721,7 @@
    Fields
    Example
    -
    {"from": 123.45, "to": 123.45}
    +                  
    {"from": 987.65, "to": 987.65}
     
    @@ -66179,7 +65768,7 @@
    Fields
    Example
    {
       "product": ProductView,
    -  "linkTypes": ["abc123"]
    +  "linkTypes": ["xyz789"]
     }
     
    @@ -66286,10 +65875,10 @@
    Fields
    Example
    {
    -  "id": "4",
    -  "multi": true,
    +  "id": 4,
    +  "multi": false,
       "required": true,
    -  "title": "xyz789",
    +  "title": "abc123",
       "values": [ProductViewOptionValue]
     }
     
    @@ -66369,8 +65958,8 @@
    Possible Types
    Example
    {
    -  "id": 4,
    -  "title": "abc123",
    +  "id": "4",
    +  "title": "xyz789",
       "inStock": true
     }
     
    @@ -66424,8 +66013,8 @@
    Fields
    Example
    {
       "id": 4,
    -  "title": "xyz789",
    -  "inStock": false
    +  "title": "abc123",
    +  "inStock": true
     }
     
    @@ -66492,12 +66081,12 @@
    Fields
    Example
    {
    -  "id": "4",
    -  "isDefault": true,
    +  "id": 4,
    +  "isDefault": false,
       "product": SimpleProductView,
       "quantity": 123.45,
    -  "title": "abc123",
    -  "inStock": true
    +  "title": "xyz789",
    +  "inStock": false
     }
     
    @@ -66559,7 +66148,7 @@
    Fields
    Example
    {
    -  "id": 4,
    +  "id": "4",
       "title": "abc123",
       "type": "TEXT",
       "value": "abc123",
    @@ -66845,7 +66434,7 @@ 
    Fields
    Example
    -
    {"gte": 987.65, "lt": 123.45}
    +                  
    {"gte": 123.45, "lt": 987.65}
     
    @@ -67000,7 +66589,7 @@
    Example
    "preview": ProductViewImage, "url": "xyz789", "description": "abc123", - "title": "xyz789" + "title": "abc123" }
    @@ -67159,7 +66748,7 @@
    Example
    "order": CustomerOrder, "quote": Cart, "status": "PENDING", - "uid": "4", + "uid": 4, "updated_at": "xyz789" }
    @@ -67335,7 +66924,7 @@
    Example
    {
       "message": "xyz789",
       "name": "xyz789",
    -  "role": "abc123",
    +  "role": "xyz789",
       "status": "PENDING",
       "updated_at": "xyz789"
     }
    @@ -67484,7 +67073,7 @@ 
    Example
    "description": "abc123", "name": "abc123", "status": "ENABLED", - "uid": "4", + "uid": 4, "updated_at": "abc123" }
    @@ -67716,7 +67305,7 @@
    Fields
    Example
    -
    {"attribute": "GRAND_TOTAL", "operator": "MORE_THAN", "quantity": 987}
    +                  
    {"attribute": "GRAND_TOTAL", "operator": "MORE_THAN", "quantity": 123}
     
    @@ -67788,8 +67377,8 @@
    Fields
    Example
    {
    -  "applies_to": [4],
    -  "approvers": ["4"],
    +  "applies_to": ["4"],
    +  "approvers": [4],
       "condition": CreatePurchaseOrderApprovalRuleConditionInput,
       "description": "abc123",
       "name": "abc123",
    @@ -67998,7 +67587,7 @@ 
    Example
    {
       "items": [PurchaseOrderApprovalRule],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -68181,9 +67770,9 @@
    Fields
    Example
    {
    -  "activity": "abc123",
    +  "activity": "xyz789",
       "created_at": "xyz789",
    -  "message": "xyz789",
    +  "message": "abc123",
       "uid": 4
     }
     
    @@ -68232,7 +67821,7 @@
    Fields
    Example
    {
       "events": [PurchaseOrderApprovalFlowEvent],
    -  "rule_name": "xyz789"
    +  "rule_name": "abc123"
     }
     
    @@ -68380,7 +67969,7 @@
    Example
    {
       "items": [PurchaseOrder],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -68536,10 +68125,10 @@
    Fields
    Example
    {
    -  "company_purchase_orders": false,
    +  "company_purchase_orders": true,
       "created_date": FilterRangeTypeInput,
    -  "my_approvals": false,
    -  "require_my_approval": false,
    +  "my_approvals": true,
    +  "require_my_approval": true,
       "status": "PENDING"
     }
     
    @@ -68585,7 +68174,7 @@
    Fields
    Example
    {
    -  "customerGroup": "xyz789",
    +  "customerGroup": "abc123",
       "userViewHistory": [ViewHistoryInput]
     }
     
    @@ -68744,8 +68333,8 @@
    Fields
    Example
    {
    -  "item_id": 4,
    -  "item_uid": 4,
    +  "item_id": "4",
    +  "item_uid": "4",
       "note": "xyz789",
       "templateId": 4
     }
    @@ -68794,8 +68383,8 @@ 
    Fields
    Example
    {
    -  "message": "abc123",
    -  "type": "abc123"
    +  "message": "xyz789",
    +  "type": "xyz789"
     }
     
    @@ -68852,10 +68441,10 @@
    Fields
    Example
    {
    -  "count": 123,
    +  "count": 987,
       "from": 123.45,
       "title": "xyz789",
    -  "to": 123.45
    +  "to": 987.65
     }
     
    @@ -69005,7 +68594,7 @@
    Fields
    Example
    -
    {"from": 123.45, "to": 123.45}
    +                  
    {"from": 123.45, "to": 987.65}
     
    @@ -69048,7 +68637,7 @@
    Fields
    Example
    {
       "configurations": ReCaptchaConfiguration,
    -  "is_enabled": false
    +  "is_enabled": true
     }
     
    @@ -69126,8 +68715,8 @@
    Fields
    Example
    {
    -  "badge_position": "abc123",
    -  "language_code": "xyz789",
    +  "badge_position": "xyz789",
    +  "language_code": "abc123",
       "minimum_score": 123.45,
       "re_captcha_type": "INVISIBLE",
       "technical_failure_message": "xyz789",
    @@ -69210,14 +68799,14 @@ 
    Fields
    Example
    {
    -  "badge_position": "xyz789",
    +  "badge_position": "abc123",
       "failure_message": "xyz789",
       "forms": ["PLACE_ORDER"],
       "is_enabled": false,
       "language_code": "xyz789",
       "minimum_score": 987.65,
    -  "theme": "xyz789",
    -  "website_key": "xyz789"
    +  "theme": "abc123",
    +  "website_key": "abc123"
     }
     
    @@ -69271,7 +68860,7 @@
    Example
    {
       "configurations": ReCaptchaConfiguration,
       "form_type": "PLACE_ORDER",
    -  "is_enabled": true
    +  "is_enabled": false
     }
     
    @@ -69523,12 +69112,12 @@
    Example
    "displayOrder": 987, "pageType": "abc123", "productsView": [ProductView], - "storefrontLabel": "xyz789", - "totalProducts": 987, - "typeId": "abc123", + "storefrontLabel": "abc123", + "totalProducts": 123, + "typeId": "xyz789", "unitId": "xyz789", "unitName": "xyz789", - "userError": "abc123" + "userError": "xyz789" }
    @@ -69574,7 +69163,7 @@
    Fields
    Example
    -
    {"results": [RecommendationUnit], "totalResults": 987}
    +                  
    {"results": [RecommendationUnit], "totalResults": 123}
     
    @@ -69621,9 +69210,9 @@
    Fields
    Example
    {
    -  "code": "abc123",
    -  "id": 987,
    -  "name": "abc123"
    +  "code": "xyz789",
    +  "id": 123,
    +  "name": "xyz789"
     }
     
    @@ -69803,7 +69392,7 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    +  "cart_id": "abc123",
       "gift_card_code": "abc123"
     }
     
    @@ -70012,7 +69601,10 @@
    Fields
    Example
    -
    {"cart_id": "abc123", "cart_item_uid": 4}
    +                  
    {
    +  "cart_id": "abc123",
    +  "cart_item_uid": "4"
    +}
     
    @@ -70099,7 +69691,7 @@
    Fields
    Example
    -
    {"quote_item_uids": [4], "quote_uid": "4"}
    +                  
    {"quote_item_uids": [4], "quote_uid": 4}
     
    @@ -70186,7 +69778,10 @@
    Fields
    Example
    -
    {"item_uids": ["4"], "template_id": 4}
    +                  
    {
    +  "item_uids": ["4"],
    +  "template_id": "4"
    +}
     
    @@ -70233,10 +69828,7 @@
    Fields
    Example
    -
    {
    -  "products": ["4"],
    -  "uid": "4"
    -}
    +                  
    {"products": ["4"], "uid": 4}
     
    @@ -70692,7 +70284,7 @@
    Fields
    Example
    {
       "comment_text": "xyz789",
    -  "contact_email": "abc123",
    +  "contact_email": "xyz789",
       "items": [RequestReturnItemInput],
       "token": "abc123"
     }
    @@ -70755,10 +70347,10 @@ 
    Fields
    Example
    {
    -  "cart_id": "4",
    +  "cart_id": 4,
       "comment": NegotiableQuoteCommentInput,
       "is_draft": false,
    -  "quote_name": "xyz789"
    +  "quote_name": "abc123"
     }
     
    @@ -70840,7 +70432,7 @@
    Fields
    Example
    -
    {"cart_id": 4}
    +                  
    {"cart_id": "4"}
     
    @@ -70900,10 +70492,10 @@
    Fields
    Example
    {
    -  "comment_text": "abc123",
    -  "contact_email": "abc123",
    +  "comment_text": "xyz789",
    +  "contact_email": "xyz789",
       "items": [RequestReturnItemInput],
    -  "order_uid": "4"
    +  "order_uid": 4
     }
     
    @@ -70968,7 +70560,7 @@
    Example
    EnteredCustomAttributeInput ], "order_item_uid": "4", - "quantity_to_return": 987.65, + "quantity_to_return": 123.45, "selected_custom_attributes": [ SelectedCustomAttributeInput ] @@ -71124,12 +70716,12 @@
    pageSize
    Example
    {
    -  "description": "xyz789",
    +  "description": "abc123",
       "items": RequistionListItems,
    -  "items_count": 987,
    +  "items_count": 123,
       "name": "xyz789",
       "uid": "4",
    -  "updated_at": "abc123"
    +  "updated_at": "xyz789"
     }
     
    @@ -71357,7 +70949,7 @@
    Example
    {
       "entered_options": [EnteredOptionInput],
       "parent_sku": "xyz789",
    -  "quantity": 987.65,
    +  "quantity": 123.45,
       "selected_options": ["abc123"],
       "sku": "xyz789"
     }
    @@ -71563,7 +71155,7 @@ 
    Example
    {
       "items": [RequisitionListItemInterface],
       "page_info": SearchResultPageInfo,
    -  "total_pages": 123
    +  "total_pages": 987
     }
     
    @@ -71659,7 +71251,7 @@
    Example
    "order": CustomerOrder, "shipping": ReturnShipping, "status": "PENDING", - "uid": 4 + "uid": "4" }
    @@ -71842,8 +71434,8 @@
    Example
    {
       "custom_attributesV2": [AttributeValueInterface],
       "order_item": OrderItemInterface,
    -  "quantity": 123.45,
    -  "request_quantity": 987.65,
    +  "quantity": 987.65,
    +  "request_quantity": 123.45,
       "status": "PENDING",
       "uid": "4"
     }
    @@ -71950,15 +71542,15 @@ 
    Example
    "code": "4", "default_value": "xyz789", "entity_type": "CATALOG_PRODUCT", - "frontend_class": "abc123", + "frontend_class": "xyz789", "frontend_input": "BOOLEAN", "input_filter": "NONE", "is_required": false, - "is_unique": false, - "label": "xyz789", + "is_unique": true, + "label": "abc123", "multiline_count": 987, "options": [CustomAttributeOptionInterface], - "sort_order": 123, + "sort_order": 987, "validate_rules": [ValidationRule] }
    @@ -72165,13 +71757,13 @@
    Fields
    Example
    {
    -  "city": "xyz789",
    +  "city": "abc123",
       "contact_name": "xyz789",
       "country": Country,
       "postcode": "abc123",
       "region": Region,
    -  "street": ["xyz789"],
    -  "telephone": "abc123"
    +  "street": ["abc123"],
    +  "telephone": "xyz789"
     }
     
    @@ -72279,7 +71871,7 @@
    Example
    "carrier": ReturnShippingCarrier, "status": ReturnShippingTrackingStatus, "tracking_number": "abc123", - "uid": "4" + "uid": 4 }
    @@ -72325,7 +71917,7 @@
    Fields
    Example
    -
    {"text": "xyz789", "type": "INFORMATION"}
    +                  
    {"text": "abc123", "type": "INFORMATION"}
     
    @@ -72744,9 +72336,9 @@
    Fields
    Example
    {
       "balance": RewardPointsAmount,
    -  "change_reason": "xyz789",
    +  "change_reason": "abc123",
       "date": "xyz789",
    -  "points_change": 987.65
    +  "points_change": 123.45
     }
     
    @@ -72979,8 +72571,8 @@
    Fields
    Example
    {
    -  "name": "xyz789",
    -  "value": "xyz789"
    +  "name": "abc123",
    +  "value": "abc123"
     }
     
    @@ -73079,7 +72671,7 @@
    Fields
    Example
    -
    {"count": 987, "id": 4, "title": "xyz789"}
    +                  
    {"count": 123, "id": 4, "title": "xyz789"}
     
    @@ -73187,7 +72779,7 @@
    Fields
    Example
    {
       "items": [CategoryTreeView],
    -  "totalCount": 987,
    +  "totalCount": 123,
       "pageInfo": PageInfo
     }
     
    @@ -73261,9 +72853,9 @@
    Fields
    Example
    {
    -  "attribute": "abc123",
    -  "contains": "xyz789",
    -  "eq": "abc123",
    +  "attribute": "xyz789",
    +  "contains": "abc123",
    +  "eq": "xyz789",
       "in": ["xyz789"],
       "range": SearchRangeInput,
       "startsWith": "xyz789"
    @@ -73364,7 +72956,7 @@ 
    Fields
    Example
    -
    {"current_page": 123, "page_size": 987, "total_pages": 123}
    +                  
    {"current_page": 987, "page_size": 987, "total_pages": 123}
     
    @@ -73485,11 +73077,11 @@
    Fields
    Example
    {
    -  "label": "xyz789",
    +  "label": "abc123",
       "original_price": Money,
       "priceV2": Money,
    -  "quantity": 123.45,
    -  "uid": 4
    +  "quantity": 987.65,
    +  "uid": "4"
     }
     
    @@ -73546,7 +73138,7 @@
    Fields
    Example
    {
    -  "configurable_product_option_uid": 4,
    +  "configurable_product_option_uid": "4",
       "configurable_product_option_value_uid": 4,
       "option_label": "xyz789",
       "value_label": "abc123"
    @@ -73666,11 +73258,11 @@ 
    Fields
    Example
    {
    -  "customizable_option_uid": "4",
    +  "customizable_option_uid": 4,
       "is_required": true,
       "label": "xyz789",
       "sort_order": 987,
    -  "type": "xyz789",
    +  "type": "abc123",
       "values": [SelectedCustomizableOptionValue]
     }
     
    @@ -73728,10 +73320,10 @@
    Fields
    Example
    {
    -  "customizable_option_value_uid": "4",
    -  "label": "abc123",
    +  "customizable_option_value_uid": 4,
    +  "label": "xyz789",
       "price": CartItemSelectedOptionValuePrice,
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -73788,10 +73380,10 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    +  "code": "abc123",
       "oope_payment_method_config": OopePaymentMethodConfig,
    -  "purchase_order_number": "abc123",
    -  "title": "abc123"
    +  "purchase_order_number": "xyz789",
    +  "title": "xyz789"
     }
     
    @@ -73871,8 +73463,8 @@
    Example
    "additional_data": [ShippingAdditionalData], "amount": Money, "carrier_code": "xyz789", - "carrier_title": "abc123", - "method_code": "abc123", + "carrier_title": "xyz789", + "method_code": "xyz789", "method_title": "abc123", "price_excl_tax": Money, "price_incl_tax": Money @@ -73923,10 +73515,7 @@
    Fields
    Example
    -
    {
    -  "comment": NegotiableQuoteCommentInput,
    -  "quote_uid": "4"
    -}
    +                  
    {"comment": NegotiableQuoteCommentInput, "quote_uid": 4}
     
    @@ -74101,7 +73690,7 @@
    Fields
    Example
    -
    {"error": "abc123", "success": true}
    +                  
    {"error": "xyz789", "success": false}
     
    @@ -74148,7 +73737,10 @@
    Fields
    Example
    -
    {"custom_attributes": [CustomAttributeInput], "id": 4}
    +                  
    {
    +  "custom_attributes": [CustomAttributeInput],
    +  "id": "4"
    +}
     
    @@ -74237,7 +73829,7 @@
    Fields
    Example
    {
       "custom_attributes": [CustomAttributeInput],
    -  "quote_uid": 4
    +  "quote_uid": "4"
     }
     
    @@ -74346,7 +73938,7 @@
    Example
    {
       "cart_id": "xyz789",
       "gift_message": GiftMessageInput,
    -  "gift_receipt_included": true,
    +  "gift_receipt_included": false,
       "gift_wrapping_id": 4,
       "printed_card_included": false
     }
    @@ -74437,8 +74029,8 @@ 
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    -  "email": "xyz789"
    +  "cart_id": "abc123",
    +  "email": "abc123"
     }
     
    @@ -74658,7 +74250,7 @@
    Fields
    Example
    {
       "payment_method": NegotiableQuotePaymentMethodInput,
    -  "quote_uid": "4"
    +  "quote_uid": 4
     }
     
    @@ -74747,7 +74339,7 @@
    Fields
    Example
    {
    -  "quote_uid": "4",
    +  "quote_uid": 4,
       "shipping_addresses": [
         NegotiableQuoteShippingAddressInput
       ]
    @@ -74839,7 +74431,7 @@ 
    Fields
    Example
    {
    -  "quote_uid": 4,
    +  "quote_uid": "4",
       "shipping_methods": [ShippingMethodInput]
     }
     
    @@ -74930,7 +74522,7 @@
    Fields
    Example
    {
       "shipping_address": NegotiableQuoteTemplateShippingAddressInput,
    -  "template_id": 4
    +  "template_id": "4"
     }
     
    @@ -74979,7 +74571,7 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    +  "cart_id": "abc123",
       "payment_method": PaymentMethodInput
     }
     
    @@ -75159,7 +74751,7 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    +  "cart_id": "xyz789",
       "shipping_methods": [ShippingMethodInput]
     }
     
    @@ -75250,7 +74842,7 @@
    Fields
    Example
    {
       "email": "xyz789",
    -  "name": "xyz789"
    +  "name": "abc123"
     }
     
    @@ -75340,7 +74932,7 @@
    Fields
    Example
    {
       "message": "xyz789",
    -  "name": "abc123"
    +  "name": "xyz789"
     }
     
    @@ -75389,8 +74981,8 @@
    Fields
    Example
    {
    -  "customerUids": ["4"],
    -  "requisitionListUid": 4
    +  "customerUids": [4],
    +  "requisitionListUid": "4"
     }
     
    @@ -75437,7 +75029,7 @@
    Fields
    Example
    {
    -  "sent_count": 123,
    +  "sent_count": 987,
       "user_errors": [ShareRequisitionListUserError]
     }
     
    @@ -75479,7 +75071,7 @@
    Fields
    Example
    -
    {"token": "xyz789"}
    +                  
    {"token": "abc123"}
     
    @@ -75526,7 +75118,7 @@
    Fields
    Example
    {
       "code": "MAX_RECIPIENTS_EXCEEDED",
    -  "message": "abc123"
    +  "message": "xyz789"
     }
     
    @@ -75749,12 +75341,12 @@
    Fields
    Example
    {
    -  "id": 4,
    +  "id": "4",
       "order_item": OrderItemInterface,
       "product_name": "xyz789",
       "product_sale_price": Money,
    -  "product_sku": "abc123",
    -  "quantity_shipped": 123.45
    +  "product_sku": "xyz789",
    +  "quantity_shipped": 987.65
     }
     
    @@ -75850,9 +75442,9 @@
    Example
    {
       "id": "4",
       "order_item": OrderItemInterface,
    -  "product_name": "abc123",
    +  "product_name": "xyz789",
       "product_sale_price": Money,
    -  "product_sku": "xyz789",
    +  "product_sku": "abc123",
       "quantity_shipped": 987.65
     }
     
    @@ -75913,7 +75505,7 @@
    Example
    "carrier": "xyz789", "number": "abc123", "title": "xyz789", - "tracking_url": "abc123" + "tracking_url": "xyz789" }
    @@ -76033,8 +75625,8 @@
    Example
    "address": CartAddressInput, "customer_address_id": 987, "customer_address_uid": 4, - "customer_notes": "xyz789", - "pickup_location_code": "abc123" + "customer_notes": "abc123", + "pickup_location_code": "xyz789" }
    @@ -76199,24 +75791,24 @@
    Example
    "company": "xyz789", "country": CartAddressCountry, "custom_attributes": [AttributeValueInterface], - "customer_address_uid": 4, + "customer_address_uid": "4", "customer_notes": "xyz789", "fax": "xyz789", "firstname": "xyz789", - "id": 987, + "id": 123, "lastname": "abc123", - "middlename": "abc123", - "pickup_location_code": "xyz789", - "postcode": "abc123", + "middlename": "xyz789", + "pickup_location_code": "abc123", + "postcode": "xyz789", "prefix": "abc123", "region": CartAddressRegion, "same_as_billing": true, "selected_shipping_method": SelectedShippingMethod, "street": ["abc123"], - "suffix": "abc123", + "suffix": "xyz789", "telephone": "abc123", "uid": "4", - "vat_id": "xyz789" + "vat_id": "abc123" }
    @@ -76372,7 +75964,7 @@
    Fields
    Example
    {
       "carrier_code": "xyz789",
    -  "method_code": "abc123"
    +  "method_code": "xyz789"
     }
     
    @@ -76516,7 +76108,7 @@
    Example
    "gift_wrapping": GiftWrapping, "is_available": true, "is_salable": false, - "max_qty": 123.45, + "max_qty": 987.65, "min_qty": 987.65, "not_available_message": "abc123", "note_from_buyer": [ItemNote], @@ -76781,26 +76373,26 @@
    Example
    {
       "canonical_url": "abc123",
       "categories": [CategoryInterface],
    -  "country_of_manufacture": "xyz789",
    +  "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    -  "gift_message_available": true,
    +  "gift_message_available": false,
       "gift_wrapping_available": true,
       "gift_wrapping_price": Money,
       "image": ProductImage,
    -  "is_returnable": "abc123",
    +  "is_returnable": "xyz789",
       "manufacturer": 123,
       "max_sale_qty": 123.45,
       "media_gallery": [MediaGalleryInterface],
       "meta_description": "xyz789",
    -  "meta_keyword": "xyz789",
    -  "meta_title": "xyz789",
    +  "meta_keyword": "abc123",
    +  "meta_title": "abc123",
       "min_sale_qty": 987.65,
       "name": "abc123",
    -  "new_from_date": "xyz789",
    +  "new_from_date": "abc123",
       "new_to_date": "abc123",
    -  "only_x_left_in_stock": 987.65,
    +  "only_x_left_in_stock": 123.45,
       "options": [CustomizableOptionInterface],
       "options_container": "abc123",
       "price_range": PriceRange,
    @@ -76809,17 +76401,17 @@ 
    Example
    "quantity": 987.65, "related_products": [ProductInterface], "short_description": ComplexTextValue, - "sku": "xyz789", + "sku": "abc123", "small_image": ProductImage, - "special_price": 123.45, - "special_to_date": "abc123", + "special_price": 987.65, + "special_to_date": "xyz789", "stock_status": "IN_STOCK", - "swatch_image": "xyz789", + "swatch_image": "abc123", "thumbnail": ProductImage, - "uid": "4", + "uid": 4, "upsell_products": [ProductInterface], - "url_key": "xyz789", - "weight": 987.65 + "url_key": "abc123", + "weight": 123.45 }
    @@ -77042,30 +76634,30 @@
    family<
    Example
    {
    -  "addToCartAllowed": true,
    -  "inStock": false,
    -  "lowStock": true,
    +  "addToCartAllowed": false,
    +  "inStock": true,
    +  "lowStock": false,
       "attributes": [ProductViewAttribute],
    -  "description": "abc123",
    +  "description": "xyz789",
       "id": 4,
       "images": [ProductViewImage],
       "videos": [ProductViewVideo],
       "inputOptions": [ProductViewInputOption],
       "lastModifiedAt": "2007-12-03T10:15:30Z",
    -  "metaDescription": "abc123",
    -  "metaKeyword": "abc123",
    -  "metaTitle": "abc123",
    +  "metaDescription": "xyz789",
    +  "metaKeyword": "xyz789",
    +  "metaTitle": "xyz789",
       "name": "abc123",
       "price": ProductViewPrice,
       "shortDescription": "abc123",
    -  "sku": "abc123",
    -  "externalId": "abc123",
    -  "url": "abc123",
    +  "sku": "xyz789",
    +  "externalId": "xyz789",
    +  "url": "xyz789",
       "urlKey": "abc123",
       "links": [ProductViewLink],
       "categories": [CategoryProductView],
       "queryType": "abc123",
    -  "visibility": "abc123"
    +  "visibility": "xyz789"
     }
     
    @@ -77131,8 +76723,8 @@
    Example
    "customizable_options": [SelectedCustomizableOption], "product": ProductInterface, "quantity": 987.65, - "sku": "abc123", - "uid": 4 + "sku": "xyz789", + "uid": "4" }
    @@ -77200,12 +76792,12 @@
    Fields
    Example
    {
    -  "added_at": "abc123",
    +  "added_at": "xyz789",
       "customizable_options": [SelectedCustomizableOption],
       "description": "abc123",
       "id": "4",
       "product": ProductInterface,
    -  "quantity": 123.45
    +  "quantity": 987.65
     }
     
    @@ -77260,9 +76852,9 @@
    Fields
    Example
    {
    -  "payment_source": "abc123",
    +  "payment_source": "xyz789",
       "payments_order_id": "abc123",
    -  "paypal_order_id": "abc123"
    +  "paypal_order_id": "xyz789"
     }
     
    @@ -77350,16 +76942,16 @@
    Fields
    Example
    {
    -  "app_switch_when_available": true,
    +  "app_switch_when_available": false,
       "button_styles": ButtonStyles,
    -  "code": "abc123",
    +  "code": "xyz789",
       "display_message": true,
       "display_venmo": true,
    -  "is_visible": true,
    +  "is_visible": false,
       "message_styles": MessageStyles,
       "payment_intent": "xyz789",
       "sdk_params": [SDKParams],
    -  "sort_order": "xyz789",
    +  "sort_order": "abc123",
       "title": "xyz789"
     }
     
    @@ -77456,8 +77048,8 @@
    Fields
    Example
    {
    -  "label": "abc123",
    -  "value": "xyz789"
    +  "label": "xyz789",
    +  "value": "abc123"
     }
     
    @@ -77829,9 +77421,9 @@
    Fields
    Example
    {
       "attribute": "abc123",
    -  "frontendInput": "xyz789",
    +  "frontendInput": "abc123",
       "label": "xyz789",
    -  "numeric": true
    +  "numeric": false
     }
     
    @@ -77883,8 +77475,8 @@
    Fields
    Example
    {
    -  "max": 987.65,
    -  "min": 123.45,
    +  "max": 123.45,
    +  "min": 987.65,
       "title": "xyz789"
     }
     
    @@ -78652,56 +78244,56 @@
    Fields
    Example
    {
    -  "allow_company_registration": true,
    +  "allow_company_registration": false,
       "allow_gift_receipt": "xyz789",
    -  "allow_gift_wrapping_on_order": "abc123",
    -  "allow_gift_wrapping_on_order_items": "abc123",
    -  "allow_items": "abc123",
    +  "allow_gift_wrapping_on_order": "xyz789",
    +  "allow_gift_wrapping_on_order_items": "xyz789",
    +  "allow_items": "xyz789",
       "allow_order": "xyz789",
    -  "allow_printed_card": "xyz789",
    -  "autocomplete_on_storefront": false,
    -  "base_currency_code": "xyz789",
    -  "base_link_url": "abc123",
    +  "allow_printed_card": "abc123",
    +  "autocomplete_on_storefront": true,
    +  "base_currency_code": "abc123",
    +  "base_link_url": "xyz789",
       "base_media_url": "xyz789",
       "base_static_url": "abc123",
       "base_url": "abc123",
       "cart_expires_in_days": 123,
       "cart_gift_wrapping": "xyz789",
    -  "cart_merge_preference": "abc123",
    +  "cart_merge_preference": "xyz789",
       "cart_printed_card": "abc123",
       "cart_summary_display_quantity": 987,
       "catalog_default_sort_by": "abc123",
       "category_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS",
       "category_url_suffix": "abc123",
    -  "check_money_order_enable_for_specific_countries": false,
    +  "check_money_order_enable_for_specific_countries": true,
       "check_money_order_enabled": true,
    -  "check_money_order_make_check_payable_to": "abc123",
    +  "check_money_order_make_check_payable_to": "xyz789",
       "check_money_order_max_order_total": "xyz789",
    -  "check_money_order_min_order_total": "xyz789",
    +  "check_money_order_min_order_total": "abc123",
       "check_money_order_new_order_status": "xyz789",
       "check_money_order_payment_from_specific_countries": "xyz789",
    -  "check_money_order_send_check_to": "abc123",
    +  "check_money_order_send_check_to": "xyz789",
       "check_money_order_sort_order": 987,
    -  "check_money_order_title": "abc123",
    +  "check_money_order_title": "xyz789",
       "company_credit_enabled": true,
       "company_enabled": true,
       "configurable_product_image": "ITSELF",
    -  "configurable_thumbnail_source": "abc123",
    -  "contact_enabled": true,
    +  "configurable_thumbnail_source": "xyz789",
    +  "contact_enabled": false,
       "countries_with_required_region": "xyz789",
       "create_account_confirmation": false,
       "customer_access_token_lifetime": 123.45,
       "default_country": "xyz789",
    -  "default_display_currency_code": "abc123",
    -  "display_product_prices_in_catalog": 123,
    +  "default_display_currency_code": "xyz789",
    +  "display_product_prices_in_catalog": 987,
       "display_shipping_prices": 987,
       "display_state_if_optional": false,
       "enable_multiple_wishlists": "xyz789",
    -  "fixed_product_taxes_apply_tax_to_fpt": true,
    -  "fixed_product_taxes_display_prices_in_emails": 987,
    +  "fixed_product_taxes_apply_tax_to_fpt": false,
    +  "fixed_product_taxes_display_prices_in_emails": 123,
       "fixed_product_taxes_display_prices_in_product_lists": 987,
       "fixed_product_taxes_display_prices_in_sales_modules": 123,
    -  "fixed_product_taxes_display_prices_on_product_view_page": 123,
    +  "fixed_product_taxes_display_prices_on_product_view_page": 987,
       "fixed_product_taxes_enable": true,
       "fixed_product_taxes_include_fpt_in_subtotal": true,
       "graphql_share_customer_group": false,
    @@ -78712,92 +78304,92 @@ 
    Example
    "is_default_store": false, "is_default_store_group": false, "is_guest_checkout_enabled": false, - "is_negotiable_quote_active": false, + "is_negotiable_quote_active": true, "is_one_page_checkout_enabled": false, - "is_requisition_list_active": "abc123", - "list_mode": "abc123", + "is_requisition_list_active": "xyz789", + "list_mode": "xyz789", "list_per_page": 123, - "list_per_page_values": "xyz789", - "locale": "abc123", - "magento_reward_general_is_enabled": "abc123", - "magento_reward_general_is_enabled_on_front": "abc123", + "list_per_page_values": "abc123", + "locale": "xyz789", + "magento_reward_general_is_enabled": "xyz789", + "magento_reward_general_is_enabled_on_front": "xyz789", "magento_reward_general_min_points_balance": "abc123", - "magento_reward_general_publish_history": "xyz789", - "magento_reward_points_invitation_customer": "abc123", - "magento_reward_points_invitation_customer_limit": "abc123", - "magento_reward_points_invitation_order": "xyz789", - "magento_reward_points_invitation_order_limit": "xyz789", + "magento_reward_general_publish_history": "abc123", + "magento_reward_points_invitation_customer": "xyz789", + "magento_reward_points_invitation_customer_limit": "xyz789", + "magento_reward_points_invitation_order": "abc123", + "magento_reward_points_invitation_order_limit": "abc123", "magento_reward_points_newsletter": "xyz789", - "magento_reward_points_order": "xyz789", + "magento_reward_points_order": "abc123", "magento_reward_points_register": "abc123", - "magento_reward_points_review": "xyz789", + "magento_reward_points_review": "abc123", "magento_reward_points_review_limit": "xyz789", - "magento_wishlist_general_is_enabled": "xyz789", - "max_items_in_order_summary": 123, - "maximum_number_of_wishlists": "abc123", - "minicart_display": false, + "magento_wishlist_general_is_enabled": "abc123", + "max_items_in_order_summary": 987, + "maximum_number_of_wishlists": "xyz789", + "minicart_display": true, "minicart_max_items": 987, "minimum_password_length": "abc123", - "newsletter_enabled": false, - "optional_zip_countries": "abc123", + "newsletter_enabled": true, + "optional_zip_countries": "xyz789", "order_cancellation_enabled": false, "order_cancellation_reasons": [CancellationReason], "orders_invoices_credit_memos_display_full_summary": false, "orders_invoices_credit_memos_display_grandtotal": false, "orders_invoices_credit_memos_display_price": 123, - "orders_invoices_credit_memos_display_shipping_amount": 123, - "orders_invoices_credit_memos_display_subtotal": 123, + "orders_invoices_credit_memos_display_shipping_amount": 987, + "orders_invoices_credit_memos_display_subtotal": 987, "orders_invoices_credit_memos_display_zero_tax": true, "printed_card_priceV2": Money, "product_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", "product_url_suffix": "abc123", "quickorder_active": false, - "quote_minimum_amount": 123.45, - "quote_minimum_amount_message": "xyz789", - "required_character_classes_number": "abc123", + "quote_minimum_amount": 987.65, + "quote_minimum_amount_message": "abc123", + "required_character_classes_number": "xyz789", "requisition_list_share_link_validity_days": 123, "requisition_list_share_max_recipients": 123, - "requisition_list_share_storefront_path": "xyz789", - "requisition_list_sharing_enabled": false, + "requisition_list_share_storefront_path": "abc123", + "requisition_list_sharing_enabled": true, "returns_enabled": "xyz789", "root_category_uid": 4, "sales_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", - "sales_gift_wrapping": "abc123", + "sales_gift_wrapping": "xyz789", "sales_printed_card": "abc123", "secure_base_link_url": "abc123", - "secure_base_media_url": "xyz789", + "secure_base_media_url": "abc123", "secure_base_static_url": "xyz789", "secure_base_url": "xyz789", - "share_active_segments": false, - "share_applied_cart_rule": true, - "shopping_assistance_checkbox_title": "xyz789", + "share_active_segments": true, + "share_applied_cart_rule": false, + "shopping_assistance_checkbox_title": "abc123", "shopping_assistance_checkbox_tooltip": "xyz789", - "shopping_assistance_enabled": false, + "shopping_assistance_enabled": true, "shopping_cart_display_full_summary": true, "shopping_cart_display_grand_total": true, - "shopping_cart_display_price": 987, - "shopping_cart_display_shipping": 987, - "shopping_cart_display_subtotal": 987, + "shopping_cart_display_price": 123, + "shopping_cart_display_shipping": 123, + "shopping_cart_display_subtotal": 123, "shopping_cart_display_tax_gift_wrapping": "DISPLAY_EXCLUDING_TAX", "shopping_cart_display_zero_tax": false, - "store_code": "4", + "store_code": 4, "store_group_code": "4", "store_group_name": "abc123", - "store_name": "xyz789", - "store_sort_order": 123, + "store_name": "abc123", + "store_sort_order": 987, "timezone": "xyz789", "title_separator": "abc123", - "use_store_in_url": false, - "website_code": "4", - "website_name": "xyz789", - "weight_unit": "xyz789", - "zero_subtotal_enable_for_specific_countries": true, - "zero_subtotal_enabled": false, + "use_store_in_url": true, + "website_code": 4, + "website_name": "abc123", + "weight_unit": "abc123", + "zero_subtotal_enable_for_specific_countries": false, + "zero_subtotal_enabled": true, "zero_subtotal_new_order_status": "abc123", "zero_subtotal_payment_action": "xyz789", "zero_subtotal_payment_from_specific_countries": "abc123", "zero_subtotal_sort_order": 123, - "zero_subtotal_title": "xyz789" + "zero_subtotal_title": "abc123" }
    @@ -78989,10 +78581,10 @@
    Fields
    Example
    {
       "attachments": [NegotiableQuoteCommentAttachmentInput],
    -  "comment": "xyz789",
    +  "comment": "abc123",
       "max_order_commitment": 987,
    -  "min_order_commitment": 123,
    -  "name": "abc123",
    +  "min_order_commitment": 987,
    +  "name": "xyz789",
       "reference_document_links": [
         NegotiableQuoteTemplateReferenceDocumentLinkInput
       ],
    @@ -79210,7 +78802,7 @@ 
    Possible Types
    Example
    -
    {"value": "abc123"}
    +                  
    {"value": "xyz789"}
     
    @@ -79483,7 +79075,7 @@
    Fields
    Example
    {
       "cartId": "abc123",
    -  "id": "abc123"
    +  "id": "xyz789"
     }
     
    @@ -79626,7 +79218,7 @@
    Fields
    Example
    -
    {"value": "abc123"}
    +                  
    {"value": "xyz789"}
     
    @@ -79735,7 +79327,7 @@
    Example
    {
       "discount": ProductDiscount,
       "final_price": Money,
    -  "quantity": 987.65
    +  "quantity": 123.45
     }
     
    @@ -79905,12 +79497,12 @@
    Fields
    Example
    {
    -  "unitName": "abc123",
    +  "unitName": "xyz789",
       "storefrontLabel": "xyz789",
    -  "pagePlacement": "abc123",
    -  "displayNumber": 987,
    +  "pagePlacement": "xyz789",
    +  "displayNumber": 123,
       "pageType": "xyz789",
    -  "unitStatus": "abc123",
    +  "unitStatus": "xyz789",
       "typeId": "abc123",
       "filterRules": [FilterRuleInput]
     }
    @@ -80345,7 +79937,7 @@ 
    Fields
    Example
    {
    -  "gift_registry_item_uid": "4",
    +  "gift_registry_item_uid": 4,
       "note": "xyz789",
       "quantity": 123.45
     }
    @@ -80497,7 +80089,7 @@ 
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "email": "xyz789", + "email": "abc123", "firstname": "xyz789", "gift_registry_registrant_uid": 4, "lastname": "abc123" @@ -80720,7 +80312,7 @@
    Fields
    Example
    {
       "items": [NegotiableQuoteTemplateItemQuantityInput],
    -  "template_id": 4
    +  "template_id": "4"
     }
     
    @@ -80847,11 +80439,11 @@
    Fields
    Example
    {
    -  "applies_to": ["4"],
    +  "applies_to": [4],
       "approvers": ["4"],
       "condition": CreatePurchaseOrderApprovalRuleConditionInput,
    -  "description": "abc123",
    -  "name": "xyz789",
    +  "description": "xyz789",
    +  "name": "abc123",
       "status": "ENABLED",
       "uid": "4"
     }
    @@ -80903,7 +80495,7 @@ 
    Fields
    Example
    {
       "description": "xyz789",
    -  "name": "xyz789"
    +  "name": "abc123"
     }
     
    @@ -80965,9 +80557,9 @@
    Fields
    Example
    {
       "entered_options": [EnteredOptionInput],
    -  "item_id": "4",
    +  "item_id": 4,
       "quantity": 987.65,
    -  "selected_options": ["xyz789"]
    +  "selected_options": ["abc123"]
     }
     
    @@ -81099,7 +80691,7 @@
    Fields
    Example
    {
    -  "name": "abc123",
    +  "name": "xyz789",
       "uid": 4,
       "visibility": "PUBLIC"
     }
    @@ -81156,8 +80748,8 @@ 
    Fields
    Example
    {
    -  "currentPage": 123,
    -  "pageSize": 123,
    +  "currentPage": 987,
    +  "pageSize": 987,
       "sort": [CompaniesSortInput]
     }
     
    @@ -81252,7 +80844,7 @@
    Fields
    Example
    -
    {"message": "xyz789", "type": "NOT_FOUND"}
    +                  
    {"message": "abc123", "type": "NOT_FOUND"}
     
    @@ -81704,9 +81296,9 @@
    Fields
    Example
    {
       "payment_source": "xyz789",
    -  "payments_order_id": "abc123",
    -  "paypal_order_id": "xyz789",
    -  "public_hash": "abc123"
    +  "payments_order_id": "xyz789",
    +  "paypal_order_id": "abc123",
    +  "public_hash": "xyz789"
     }
     
    @@ -81799,7 +81391,7 @@
    Fields
    Example
    {
       "date": "2007-12-03T10:15:30Z",
    -  "sku": "abc123"
    +  "sku": "xyz789"
     }
     
    @@ -81851,7 +81443,7 @@
    Fields
    Example
    {
       "dateTime": "2007-12-03T10:15:30Z",
    -  "sku": "abc123"
    +  "sku": "xyz789"
     }
     
    @@ -81970,16 +81562,16 @@
    Fields
    Example
    {
    -  "backorder_message": "xyz789",
    +  "backorder_message": "abc123",
       "custom_attributes": [CustomAttribute],
       "customizable_options": [SelectedCustomizableOption],
       "discount": [Discount],
       "errors": [CartItemError],
    -  "is_available": true,
    +  "is_available": false,
       "is_salable": false,
       "max_qty": 123.45,
    -  "min_qty": 123.45,
    -  "not_available_message": "xyz789",
    +  "min_qty": 987.65,
    +  "not_available_message": "abc123",
       "note_from_buyer": [ItemNote],
       "note_from_seller": [ItemNote],
       "prices": CartItemPrices,
    @@ -82235,46 +81827,46 @@ 
    filters
    Example
    {
    -  "canonical_url": "abc123",
    +  "canonical_url": "xyz789",
       "categories": [CategoryInterface],
    -  "country_of_manufacture": "xyz789",
    +  "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    -  "gift_message_available": false,
    +  "gift_message_available": true,
       "gift_wrapping_available": false,
       "gift_wrapping_price": Money,
       "image": ProductImage,
       "is_returnable": "abc123",
       "manufacturer": 987,
    -  "max_sale_qty": 123.45,
    +  "max_sale_qty": 987.65,
       "media_gallery": [MediaGalleryInterface],
    -  "meta_description": "abc123",
    -  "meta_keyword": "xyz789",
    +  "meta_description": "xyz789",
    +  "meta_keyword": "abc123",
       "meta_title": "abc123",
    -  "min_sale_qty": 987.65,
    +  "min_sale_qty": 123.45,
       "name": "abc123",
       "new_from_date": "xyz789",
       "new_to_date": "xyz789",
    -  "only_x_left_in_stock": 987.65,
    +  "only_x_left_in_stock": 123.45,
       "options": [CustomizableOptionInterface],
    -  "options_container": "xyz789",
    +  "options_container": "abc123",
       "price_range": PriceRange,
       "price_tiers": [TierPrice],
       "product_links": [ProductLinksInterface],
       "quantity": 123.45,
       "related_products": [ProductInterface],
       "short_description": ComplexTextValue,
    -  "sku": "abc123",
    +  "sku": "xyz789",
       "small_image": ProductImage,
       "special_price": 123.45,
       "special_to_date": "xyz789",
       "stock_status": "IN_STOCK",
    -  "swatch_image": "abc123",
    +  "swatch_image": "xyz789",
       "thumbnail": ProductImage,
       "uid": 4,
       "upsell_products": [ProductInterface],
    -  "url_key": "xyz789"
    +  "url_key": "abc123"
     }
     
    @@ -82339,9 +81931,9 @@
    Example
    {
       "customizable_options": [SelectedCustomizableOption],
       "product": ProductInterface,
    -  "quantity": 987.65,
    -  "sku": "xyz789",
    -  "uid": 4
    +  "quantity": 123.45,
    +  "sku": "abc123",
    +  "uid": "4"
     }
     
    @@ -82409,12 +82001,12 @@
    Fields
    Example
    {
    -  "added_at": "xyz789",
    +  "added_at": "abc123",
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "abc123",
    +  "description": "xyz789",
       "id": "4",
       "product": ProductInterface,
    -  "quantity": 123.45
    +  "quantity": 987.65
     }
     
    @@ -82462,7 +82054,7 @@
    Fields
    Example
    {
       "code": "PRODUCT_NOT_FOUND",
    -  "message": "abc123"
    +  "message": "xyz789"
     }
     
    @@ -82600,12 +82192,12 @@
    pageSize
    Example
    {
    -  "id": "4",
    -  "items_count": 987,
    +  "id": 4,
    +  "items_count": 123,
       "items_v2": WishlistItems,
    -  "name": "xyz789",
    -  "sharing_code": "xyz789",
    -  "updated_at": "abc123",
    +  "name": "abc123",
    +  "sharing_code": "abc123",
    +  "updated_at": "xyz789",
       "visibility": "PUBLIC"
     }
     
    @@ -82665,7 +82257,7 @@
    Example
    {
       "code": "PRODUCT_NOT_FOUND",
       "message": "xyz789",
    -  "wishlistId": 4,
    +  "wishlistId": "4",
       "wishlistItemId": "4"
     }
     
    @@ -82852,7 +82444,7 @@
    Example
    {
       "entered_options": [EnteredOptionInput],
       "parent_sku": "abc123",
    -  "quantity": 123.45,
    +  "quantity": 987.65,
       "selected_options": [4],
       "sku": "abc123"
     }
    @@ -82969,9 +82561,9 @@ 
    Possible Types
    Example
    {
    -  "added_at": "xyz789",
    +  "added_at": "abc123",
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "abc123",
    +  "description": "xyz789",
       "id": "4",
       "product": ProductInterface,
       "quantity": 987.65
    @@ -83095,7 +82687,7 @@ 
    Example
    "entered_options": [EnteredOptionInput], "quantity": 123.45, "selected_options": [4], - "wishlist_item_id": "4" + "wishlist_item_id": 4 }
    @@ -83237,7 +82829,7 @@
    Fields
    Example
    {
    -  "key": "xyz789",
    +  "key": "abc123",
       "media_resource_type": "NEGOTIABLE_QUOTE_ATTACHMENT"
     }
     
    @@ -83382,7 +82974,7 @@
    Fields
    Example
    {
    -  "expires_at": "xyz789",
    +  "expires_at": "abc123",
       "key": "abc123",
       "upload_url": "xyz789"
     }
    
    From 64abd554394ae49cdd62caa034142b215fd15aec Mon Sep 17 00:00:00 2001
    From: Jared Hoover 
    Date: Fri, 29 May 2026 15:13:30 -0500
    Subject: [PATCH 3/9] remove paybylink
    
    ---
     spectaql/metadata-saas.json        |   21 +
     static/graphql-api/saas/index.html | 3466 +++++++++++++---------------
     2 files changed, 1669 insertions(+), 1818 deletions(-)
    
    diff --git a/spectaql/metadata-saas.json b/spectaql/metadata-saas.json
    index 4e45491c2..3bc9fdf15 100644
    --- a/spectaql/metadata-saas.json
    +++ b/spectaql/metadata-saas.json
    @@ -9,6 +9,15 @@
             }
           }
         },
    +    "Mutation": {
    +      "fields": {
    +        "completePayByLinkPayment": {
    +          "documentation": {
    +            "undocumented": true
    +          }
    +        }
    +      }
    +    },
         "PayByLinkOrder": {
           "documentation": {
             "undocumented": true
    @@ -28,6 +37,18 @@
           "documentation": {
             "undocumented": true
           }
    +    },
    +    "CompletePayByLinkPaymentOutput": {
    +      "documentation": {
    +        "undocumented": true
    +      }
    +    }
    +  },
    +  "INPUT_OBJECT": {
    +    "PayByLinkInput": {
    +      "documentation": {
    +        "undocumented": true
    +      }
         }
       }
     }
    diff --git a/static/graphql-api/saas/index.html b/static/graphql-api/saas/index.html
    index 3d4e2d752..af536f5f6 100644
    --- a/static/graphql-api/saas/index.html
    +++ b/static/graphql-api/saas/index.html
    @@ -134,7 +134,6 @@ 
                   
  • ComparableItem
  • CompareList
  • CompleteOrderInput
  • -
  • CompletePayByLinkPaymentOutput
  • ComplexProductView
  • ComplexTextValue
  • ConditionInput
  • @@ -811,7 +809,6 @@
  • OrderTotal
  • PageInfo
  • PageType
  • -
  • PayByLinkInput
  • PaymentAttributeInput
  • PaymentConfigItem
  • PaymentConfigOutput
  • @@ -1297,7 +1294,7 @@
    Query
    Variables
    -
    {"formCode": "abc123"}
    +                  
    {"formCode": "xyz789"}
     
    @@ -1623,92 +1620,92 @@
    Response
    "data": { "availableStores": [ { - "allow_company_registration": false, + "allow_company_registration": true, "allow_gift_receipt": "abc123", - "allow_gift_wrapping_on_order": "abc123", - "allow_gift_wrapping_on_order_items": "abc123", - "allow_items": "xyz789", + "allow_gift_wrapping_on_order": "xyz789", + "allow_gift_wrapping_on_order_items": "xyz789", + "allow_items": "abc123", "allow_order": "abc123", "allow_printed_card": "xyz789", "autocomplete_on_storefront": false, - "base_currency_code": "xyz789", - "base_link_url": "xyz789", - "base_media_url": "xyz789", - "base_static_url": "abc123", + "base_currency_code": "abc123", + "base_link_url": "abc123", + "base_media_url": "abc123", + "base_static_url": "xyz789", "base_url": "abc123", - "cart_expires_in_days": 987, + "cart_expires_in_days": 123, "cart_gift_wrapping": "abc123", - "cart_merge_preference": "abc123", - "cart_printed_card": "abc123", - "cart_summary_display_quantity": 987, + "cart_merge_preference": "xyz789", + "cart_printed_card": "xyz789", + "cart_summary_display_quantity": 123, "catalog_default_sort_by": "abc123", "category_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", - "category_url_suffix": "xyz789", + "category_url_suffix": "abc123", "check_money_order_enable_for_specific_countries": true, "check_money_order_enabled": false, - "check_money_order_make_check_payable_to": "xyz789", - "check_money_order_max_order_total": "xyz789", - "check_money_order_min_order_total": "xyz789", + "check_money_order_make_check_payable_to": "abc123", + "check_money_order_max_order_total": "abc123", + "check_money_order_min_order_total": "abc123", "check_money_order_new_order_status": "abc123", "check_money_order_payment_from_specific_countries": "abc123", "check_money_order_send_check_to": "abc123", "check_money_order_sort_order": 987, - "check_money_order_title": "xyz789", - "company_credit_enabled": true, + "check_money_order_title": "abc123", + "company_credit_enabled": false, "company_enabled": false, "configurable_product_image": "ITSELF", - "configurable_thumbnail_source": "xyz789", + "configurable_thumbnail_source": "abc123", "contact_enabled": true, - "countries_with_required_region": "abc123", - "create_account_confirmation": false, + "countries_with_required_region": "xyz789", + "create_account_confirmation": true, "customer_access_token_lifetime": 123.45, "default_country": "abc123", - "default_display_currency_code": "xyz789", - "display_product_prices_in_catalog": 123, - "display_shipping_prices": 123, - "display_state_if_optional": true, + "default_display_currency_code": "abc123", + "display_product_prices_in_catalog": 987, + "display_shipping_prices": 987, + "display_state_if_optional": false, "enable_multiple_wishlists": "xyz789", - "fixed_product_taxes_apply_tax_to_fpt": true, + "fixed_product_taxes_apply_tax_to_fpt": false, "fixed_product_taxes_display_prices_in_emails": 123, - "fixed_product_taxes_display_prices_in_product_lists": 987, - "fixed_product_taxes_display_prices_in_sales_modules": 987, + "fixed_product_taxes_display_prices_in_product_lists": 123, + "fixed_product_taxes_display_prices_in_sales_modules": 123, "fixed_product_taxes_display_prices_on_product_view_page": 987, - "fixed_product_taxes_enable": true, - "fixed_product_taxes_include_fpt_in_subtotal": true, + "fixed_product_taxes_enable": false, + "fixed_product_taxes_include_fpt_in_subtotal": false, "graphql_share_customer_group": false, "grid_per_page": 987, "grid_per_page_values": "xyz789", "grouped_product_image": "ITSELF", "is_checkout_agreements_enabled": false, - "is_default_store": true, + "is_default_store": false, "is_default_store_group": false, "is_guest_checkout_enabled": false, "is_negotiable_quote_active": false, - "is_one_page_checkout_enabled": true, - "is_requisition_list_active": "abc123", + "is_one_page_checkout_enabled": false, + "is_requisition_list_active": "xyz789", "list_mode": "abc123", "list_per_page": 123, - "list_per_page_values": "abc123", + "list_per_page_values": "xyz789", "locale": "abc123", - "magento_reward_general_is_enabled": "abc123", + "magento_reward_general_is_enabled": "xyz789", "magento_reward_general_is_enabled_on_front": "abc123", - "magento_reward_general_min_points_balance": "abc123", - "magento_reward_general_publish_history": "abc123", + "magento_reward_general_min_points_balance": "xyz789", + "magento_reward_general_publish_history": "xyz789", "magento_reward_points_invitation_customer": "abc123", "magento_reward_points_invitation_customer_limit": "abc123", - "magento_reward_points_invitation_order": "abc123", + "magento_reward_points_invitation_order": "xyz789", "magento_reward_points_invitation_order_limit": "xyz789", "magento_reward_points_newsletter": "xyz789", - "magento_reward_points_order": "abc123", + "magento_reward_points_order": "xyz789", "magento_reward_points_register": "xyz789", "magento_reward_points_review": "xyz789", - "magento_reward_points_review_limit": "xyz789", - "magento_wishlist_general_is_enabled": "xyz789", - "max_items_in_order_summary": 987, + "magento_reward_points_review_limit": "abc123", + "magento_wishlist_general_is_enabled": "abc123", + "max_items_in_order_summary": 123, "maximum_number_of_wishlists": "abc123", - "minicart_display": false, - "minicart_max_items": 987, - "minimum_password_length": "xyz789", + "minicart_display": true, + "minicart_max_items": 123, + "minimum_password_length": "abc123", "newsletter_enabled": false, "optional_zip_countries": "xyz789", "order_cancellation_enabled": false, @@ -1718,59 +1715,59 @@
    Response
    "orders_invoices_credit_memos_display_full_summary": true, "orders_invoices_credit_memos_display_grandtotal": false, "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_shipping_amount": 123, + "orders_invoices_credit_memos_display_subtotal": 987, "orders_invoices_credit_memos_display_zero_tax": true, "printed_card_priceV2": Money, "product_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", "product_url_suffix": "abc123", "quickorder_active": false, - "quote_minimum_amount": 123.45, + "quote_minimum_amount": 987.65, "quote_minimum_amount_message": "xyz789", "required_character_classes_number": "abc123", "requisition_list_share_link_validity_days": 987, - "requisition_list_share_max_recipients": 987, + "requisition_list_share_max_recipients": 123, "requisition_list_share_storefront_path": "xyz789", "requisition_list_sharing_enabled": false, - "returns_enabled": "xyz789", + "returns_enabled": "abc123", "root_category_uid": "4", "sales_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", "sales_gift_wrapping": "xyz789", "sales_printed_card": "abc123", - "secure_base_link_url": "xyz789", - "secure_base_media_url": "xyz789", + "secure_base_link_url": "abc123", + "secure_base_media_url": "abc123", "secure_base_static_url": "abc123", - "secure_base_url": "abc123", - "share_active_segments": false, - "share_applied_cart_rule": true, - "shopping_assistance_checkbox_title": "xyz789", - "shopping_assistance_checkbox_tooltip": "xyz789", + "secure_base_url": "xyz789", + "share_active_segments": true, + "share_applied_cart_rule": false, + "shopping_assistance_checkbox_title": "abc123", + "shopping_assistance_checkbox_tooltip": "abc123", "shopping_assistance_enabled": true, "shopping_cart_display_full_summary": true, - "shopping_cart_display_grand_total": false, + "shopping_cart_display_grand_total": true, "shopping_cart_display_price": 987, - "shopping_cart_display_shipping": 123, - "shopping_cart_display_subtotal": 987, + "shopping_cart_display_shipping": 987, + "shopping_cart_display_subtotal": 123, "shopping_cart_display_tax_gift_wrapping": "DISPLAY_EXCLUDING_TAX", - "shopping_cart_display_zero_tax": true, + "shopping_cart_display_zero_tax": false, "store_code": 4, "store_group_code": 4, - "store_group_name": "xyz789", - "store_name": "abc123", - "store_sort_order": 987, + "store_group_name": "abc123", + "store_name": "xyz789", + "store_sort_order": 123, "timezone": "xyz789", "title_separator": "abc123", "use_store_in_url": false, - "website_code": 4, + "website_code": "4", "website_name": "abc123", - "weight_unit": "xyz789", - "zero_subtotal_enable_for_specific_countries": true, - "zero_subtotal_enabled": false, + "weight_unit": "abc123", + "zero_subtotal_enable_for_specific_countries": false, + "zero_subtotal_enabled": true, "zero_subtotal_new_order_status": "abc123", "zero_subtotal_payment_action": "xyz789", - "zero_subtotal_payment_from_specific_countries": "xyz789", - "zero_subtotal_sort_order": 987, - "zero_subtotal_title": "abc123" + "zero_subtotal_payment_from_specific_countries": "abc123", + "zero_subtotal_sort_order": 123, + "zero_subtotal_title": "xyz789" } ] } @@ -1904,7 +1901,7 @@
    Response
    ], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "xyz789", + "email": "abc123", "gift_message": GiftMessage, "gift_receipt_included": false, "gift_wrapping": GiftWrapping, @@ -1912,7 +1909,7 @@
    Response
    "is_virtual": true, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": true, + "printed_card_included": false, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], @@ -2022,8 +2019,8 @@
    Query
    Variables
    {
    -  "ids": ["abc123"],
    -  "roles": ["abc123"],
    +  "ids": ["xyz789"],
    +  "roles": ["xyz789"],
       "subtree": Subtree
     }
     
    @@ -2035,18 +2032,18 @@
    Response
    "categories": [ { "availableSortBy": ["abc123"], - "children": ["abc123"], - "defaultSortBy": "abc123", - "id": 4, - "level": 987, + "children": ["xyz789"], + "defaultSortBy": "xyz789", + "id": "4", + "level": 123, "name": "abc123", "parentId": "xyz789", - "position": 123, + "position": 987, "path": "xyz789", - "roles": ["abc123"], - "urlKey": "xyz789", + "roles": ["xyz789"], + "urlKey": "abc123", "urlPath": "xyz789", - "count": 987, + "count": 123, "title": "xyz789" } ] @@ -2157,14 +2154,14 @@
    Response
    "data": { "categoryTree": [ { - "slug": "xyz789", + "slug": "abc123", "name": "xyz789", - "description": "xyz789", + "description": "abc123", "metaTags": CategoryMetaTags, "images": [CategoryImage], "level": 987, "parentSlug": "xyz789", - "childrenSlugs": ["xyz789"] + "childrenSlugs": ["abc123"] } ] } @@ -2221,13 +2218,13 @@
    Response
    "data": { "checkoutAgreements": [ { - "agreement_id": 987, - "checkbox_text": "xyz789", + "agreement_id": 123, + "checkbox_text": "abc123", "content": "xyz789", - "content_height": "xyz789", + "content_height": "abc123", "is_html": false, "mode": "AUTO", - "name": "abc123" + "name": "xyz789" } ] } @@ -2390,12 +2387,12 @@
    Response
    "credit_history": CompanyCreditHistory, "custom_attributes": [CustomAttribute], "email": "abc123", - "id": 4, + "id": "4", "legal_address": CompanyLegalAddress, "legal_name": "xyz789", "name": "abc123", "payment_methods": ["abc123"], - "reseller_id": "xyz789", + "reseller_id": "abc123", "role": CompanyRole, "roles": CompanyRoles, "sales_representative": CompanySalesRepresentative, @@ -2404,7 +2401,7 @@
    Response
    "team": CompanyTeam, "user": Customer, "users": CompanyUsers, - "vat_tax_id": "xyz789" + "vat_tax_id": "abc123" } } } @@ -2487,7 +2484,7 @@
    Response
    "attributes": [ComparableAttribute], "item_count": 987, "items": [ComparableItem], - "uid": 4 + "uid": "4" } } } @@ -2547,9 +2544,9 @@
    Response
    "available_regions": [Region], "full_name_english": "xyz789", "full_name_locale": "abc123", - "id": "xyz789", + "id": "abc123", "three_letter_abbreviation": "xyz789", - "two_letter_abbreviation": "xyz789" + "two_letter_abbreviation": "abc123" } ] } @@ -2632,11 +2629,11 @@
    Response
    "data": { "country": { "available_regions": [Region], - "full_name_english": "xyz789", + "full_name_english": "abc123", "full_name_locale": "abc123", "id": "abc123", - "three_letter_abbreviation": "abc123", - "two_letter_abbreviation": "abc123" + "three_letter_abbreviation": "xyz789", + "two_letter_abbreviation": "xyz789" } } } @@ -2695,10 +2692,10 @@
    Response
    "available_currency_codes": [ "abc123" ], - "base_currency_code": "abc123", + "base_currency_code": "xyz789", "base_currency_symbol": "xyz789", "default_display_currency_code": "xyz789", - "default_display_currency_symbol": "abc123", + "default_display_currency_symbol": "xyz789", "exchange_rates": [ExchangeRate] } } @@ -2930,27 +2927,27 @@
    Response
    "addresses": [CustomerAddress], "addressesV2": CustomerAddresses, "admin_assistance_actions": AdminAssistanceActions, - "allow_remote_shopping_assistance": false, + "allow_remote_shopping_assistance": true, "companies": UserCompaniesOutput, "company_hierarchy": [CompanyHierarchy], "compare_list": CompareList, "confirmation_status": "ACCOUNT_CONFIRMED", - "created_at": "abc123", + "created_at": "xyz789", "custom_attributes": [AttributeValueInterface], "date_of_birth": "abc123", "default_billing": "xyz789", - "default_shipping": "xyz789", - "email": "abc123", - "firstname": "xyz789", - "gender": 987, + "default_shipping": "abc123", + "email": "xyz789", + "firstname": "abc123", + "gender": 123, "gift_registries": [GiftRegistry], "gift_registry": GiftRegistry, "group": CustomerGroupStorefront, "id": "4", "is_subscribed": true, "job_title": "xyz789", - "lastname": "xyz789", - "middlename": "abc123", + "lastname": "abc123", + "middlename": "xyz789", "orders": CustomerOrders, "prefix": "abc123", "purchase_order": PurchaseOrder, @@ -2970,7 +2967,7 @@
    Response
    "store_credit": CustomerStoreCredit, "structure_id": "4", "suffix": "xyz789", - "taxvat": "abc123", + "taxvat": "xyz789", "team": CompanyTeam, "telephone": "abc123", "wishlist_v2": Wishlist, @@ -3083,7 +3080,7 @@
    Response
    ], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "xyz789", + "email": "abc123", "gift_message": GiftMessage, "gift_receipt_included": true, "gift_wrapping": GiftWrapping, @@ -3091,11 +3088,11 @@
    Response
    "is_virtual": false, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": false, + "printed_card_included": true, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], - "total_quantity": 987.65 + "total_quantity": 123.45 } } } @@ -3303,7 +3300,7 @@
    Query
    Variables
    -
    {"cartId": "xyz789"}
    +                  
    {"cartId": "abc123"}
     
    @@ -3479,7 +3476,7 @@
    Query
    Variables
    {
    -  "cartId": "abc123",
    +  "cartId": "xyz789",
       "id": "xyz789"
     }
     
    @@ -3789,7 +3786,7 @@
    Response
    {
       "data": {
         "giftRegistry": {
    -      "created_at": "abc123",
    +      "created_at": "xyz789",
           "dynamic_attributes": [
             GiftRegistryDynamicAttribute
           ],
    @@ -3802,7 +3799,7 @@ 
    Response
    "shipping_address": CustomerAddress, "status": "ACTIVE", "type": GiftRegistryType, - "uid": 4 + "uid": "4" } } } @@ -3882,11 +3879,11 @@
    Response
    "giftRegistryEmailSearch": [ { "event_date": "abc123", - "event_title": "xyz789", - "gift_registry_uid": 4, + "event_title": "abc123", + "gift_registry_uid": "4", "location": "abc123", "name": "abc123", - "type": "abc123" + "type": "xyz789" } ] } @@ -3968,10 +3965,10 @@
    Response
    { "event_date": "abc123", "event_title": "xyz789", - "gift_registry_uid": "4", - "location": "xyz789", + "gift_registry_uid": 4, + "location": "abc123", "name": "xyz789", - "type": "abc123" + "type": "xyz789" } ] } @@ -4063,7 +4060,7 @@
    Query
    Variables
    {
    -  "firstName": "abc123",
    +  "firstName": "xyz789",
       "lastName": "xyz789",
       "giftRegistryTypeUid": 4
     }
    @@ -4078,9 +4075,9 @@ 
    Response
    "event_date": "xyz789", "event_title": "xyz789", "gift_registry_uid": 4, - "location": "abc123", - "name": "xyz789", - "type": "xyz789" + "location": "xyz789", + "name": "abc123", + "type": "abc123" } ] } @@ -4281,23 +4278,23 @@
    Response
    {
       "data": {
         "guestOrder": {
    -      "admin_assisted_order": 123,
    +      "admin_assisted_order": 987,
           "applied_coupons": [AppliedCoupon],
           "applied_gift_cards": [ApplyGiftCardToOrder],
           "available_actions": ["REORDER"],
           "billing_address": OrderAddress,
    -      "carrier": "xyz789",
    +      "carrier": "abc123",
           "comments": [SalesCommentItem],
           "credit_memos": [CreditMemo],
           "custom_attributes": [CustomAttribute],
           "customer_info": OrderCustomerInfo,
    -      "email": "xyz789",
    +      "email": "abc123",
           "gift_message": GiftMessage,
    -      "gift_receipt_included": false,
    +      "gift_receipt_included": true,
           "gift_wrapping": GiftWrapping,
    -      "id": "4",
    +      "id": 4,
           "invoices": [Invoice],
    -      "is_virtual": false,
    +      "is_virtual": true,
           "items": [OrderItemInterface],
           "items_eligible_for_return": [OrderItemInterface],
           "negotiable_quote": NegotiableQuote,
    @@ -4305,13 +4302,13 @@ 
    Response
    "order_date": "xyz789", "order_status_change_date": "xyz789", "payment_methods": [OrderPaymentMethod], - "printed_card_included": true, + "printed_card_included": false, "returns": Returns, "shipments": [OrderShipment], "shipping_address": OrderAddress, - "shipping_method": "xyz789", + "shipping_method": "abc123", "status": "abc123", - "token": "xyz789", + "token": "abc123", "total": OrderTotal } } @@ -4463,9 +4460,9 @@
    Response
    "credit_memos": [CreditMemo], "custom_attributes": [CustomAttribute], "customer_info": OrderCustomerInfo, - "email": "abc123", + "email": "xyz789", "gift_message": GiftMessage, - "gift_receipt_included": true, + "gift_receipt_included": false, "gift_wrapping": GiftWrapping, "id": 4, "invoices": [Invoice], @@ -4473,17 +4470,17 @@
    Response
    "items": [OrderItemInterface], "items_eligible_for_return": [OrderItemInterface], "negotiable_quote": NegotiableQuote, - "number": "xyz789", + "number": "abc123", "order_date": "xyz789", - "order_status_change_date": "abc123", + "order_status_change_date": "xyz789", "payment_methods": [OrderPaymentMethod], "printed_card_included": false, "returns": Returns, "shipments": [OrderShipment], "shipping_address": OrderAddress, "shipping_method": "abc123", - "status": "xyz789", - "token": "xyz789", + "status": "abc123", + "token": "abc123", "total": OrderTotal } } @@ -4686,7 +4683,7 @@
    Query
    Variables
    -
    {"name": "abc123"}
    +                  
    {"name": "xyz789"}
     
    @@ -4754,12 +4751,12 @@
    Query
    Variables
    -
    {"email": "xyz789"}
    +                  
    {"email": "abc123"}
     
    Response
    -
    {"data": {"isCompanyUserEmailAvailable": {"is_email_available": true}}}
    +                  
    {"data": {"isCompanyUserEmailAvailable": {"is_email_available": false}}}
     
    @@ -4821,7 +4818,7 @@
    Query
    Variables
    -
    {"email": "abc123"}
    +                  
    {"email": "xyz789"}
     
    @@ -4974,7 +4971,7 @@
    Response
    {
       "data": {
         "isSubscribedProductAlertStock": {
    -      "isSubscribed": true,
    +      "isSubscribed": false,
           "message": "xyz789"
         }
       }
    @@ -5166,7 +5163,7 @@ 
    Query
    Variables
    -
    {"uid": 4}
    +                  
    {"uid": "4"}
     
    @@ -5182,7 +5179,7 @@
    Response
    "comments": [NegotiableQuoteComment], "created_at": "xyz789", "custom_attributes": [CustomAttribute], - "email": "abc123", + "email": "xyz789", "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "is_virtual": true, @@ -5190,16 +5187,16 @@
    Response
    "name": "xyz789", "order": CustomerOrder, "prices": CartPrices, - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ NegotiableQuoteShippingAddress ], "status": "SUBMITTED", - "template_id": "4", + "template_id": 4, "template_name": "xyz789", - "total_quantity": 987.65, - "uid": "4", + "total_quantity": 123.45, + "uid": 4, "updated_at": "xyz789" } } @@ -5305,7 +5302,7 @@
    Query
    Variables
    -
    {"templateId": 4}
    +                  
    {"templateId": "4"}
     
    @@ -5315,15 +5312,15 @@
    Response
    "negotiableQuoteTemplate": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", - "expiration_date": "xyz789", + "created_at": "xyz789", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": false, "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 123, - "min_order_commitment": 987, + "min_order_commitment": 123, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, @@ -5336,7 +5333,7 @@
    Response
    ], "status": "xyz789", "template_id": "4", - "total_quantity": 123.45, + "total_quantity": 987.65, "uid": 4, "updated_at": "xyz789" } @@ -5456,7 +5453,7 @@
    Response
    "items": [NegotiableQuoteTemplateGridItem], "page_info": SearchResultPageInfo, "sort_fields": SortFields, - "total_count": 987 + "total_count": 123 } } } @@ -5574,7 +5571,7 @@
    Response
    "items": [NegotiableQuote], "page_info": SearchResultPageInfo, "sort_fields": SortFields, - "total_count": 123 + "total_count": 987 } } } @@ -5848,8 +5845,8 @@
    Response
    "items": [ProductSearchItem], "page_info": SearchResultPageInfo, "related_terms": ["abc123"], - "suggestions": ["xyz789"], - "total_count": 123, + "suggestions": ["abc123"], + "total_count": 987, "warnings": [ProductSearchWarning] } } @@ -5949,7 +5946,7 @@
    Query
    Variables
    -
    {"skus": ["xyz789"]}
    +                  
    {"skus": ["abc123"]}
     
    @@ -5959,27 +5956,27 @@
    Response
    "products": [ { "addToCartAllowed": true, - "inStock": true, - "lowStock": false, + "inStock": false, + "lowStock": true, "attributes": [ProductViewAttribute], "description": "abc123", - "id": 4, + "id": "4", "images": [ProductViewImage], "videos": [ProductViewVideo], "lastModifiedAt": "2007-12-03T10:15:30Z", - "metaDescription": "abc123", + "metaDescription": "xyz789", "metaKeyword": "abc123", - "metaTitle": "abc123", + "metaTitle": "xyz789", "name": "xyz789", "shortDescription": "xyz789", "inputOptions": [ProductViewInputOption], - "sku": "xyz789", + "sku": "abc123", "externalId": "abc123", - "url": "abc123", - "urlKey": "xyz789", + "url": "xyz789", + "urlKey": "abc123", "links": [ProductViewLink], "categories": [CategoryProductView], - "queryType": "xyz789", + "queryType": "abc123", "visibility": "xyz789" } ] @@ -6194,8 +6191,8 @@
    Response
    "forms": ["PLACE_ORDER"], "is_enabled": false, "language_code": "abc123", - "minimum_score": 987.65, - "theme": "abc123", + "minimum_score": 123.45, + "theme": "xyz789", "website_key": "xyz789" } } @@ -6325,9 +6322,9 @@
    Query
    Variables
    {
    -  "cartSkus": ["xyz789"],
    +  "cartSkus": ["abc123"],
       "category": "xyz789",
    -  "currentSku": "abc123",
    +  "currentSku": "xyz789",
       "currentProduct": CurrentProductInput,
       "pageType": "CMS",
       "userPurchaseHistory": [PurchaseHistory],
    @@ -6448,7 +6445,7 @@ 
    Query
    Variables
    {
       "unitIds": ["xyz789"],
    -  "currentSku": "abc123",
    +  "currentSku": "xyz789",
       "currentProduct": CurrentProductInput,
       "userPurchaseHistory": [PurchaseHistory],
       "userViewHistory": [ViewHistory],
    @@ -6462,7 +6459,7 @@ 
    Response
    "data": { "recommendationsByUnitIds": { "results": [RecommendationUnit], - "totalResults": 123 + "totalResults": 987 } } } @@ -6574,8 +6571,8 @@
    Query
    Variables
    {
    -  "optionIds": ["abc123"],
    -  "sku": "abc123"
    +  "optionIds": ["xyz789"],
    +  "sku": "xyz789"
     }
     
    @@ -6588,24 +6585,24 @@
    Response
    "inStock": true, "lowStock": true, "attributes": [ProductViewAttribute], - "description": "abc123", + "description": "xyz789", "id": "4", "images": [ProductViewImage], "videos": [ProductViewVideo], "lastModifiedAt": "2007-12-03T10:15:30Z", - "metaDescription": "xyz789", + "metaDescription": "abc123", "metaKeyword": "abc123", - "metaTitle": "xyz789", + "metaTitle": "abc123", "name": "xyz789", - "shortDescription": "abc123", + "shortDescription": "xyz789", "inputOptions": [ProductViewInputOption], - "sku": "xyz789", + "sku": "abc123", "externalId": "xyz789", "url": "abc123", "urlKey": "xyz789", "links": [ProductViewLink], "categories": [CategoryProductView], - "queryType": "xyz789", + "queryType": "abc123", "visibility": "abc123" } } @@ -6797,7 +6794,7 @@
    Response
    "data": { "sharedRequisitionList": { "requisition_list": RequisitionList, - "sender_name": "abc123" + "sender_name": "xyz789" } } } @@ -6995,99 +6992,99 @@
    Response
    {
       "data": {
         "storeConfig": {
    -      "allow_company_registration": false,
    -      "allow_gift_receipt": "xyz789",
    -      "allow_gift_wrapping_on_order": "xyz789",
    -      "allow_gift_wrapping_on_order_items": "xyz789",
    +      "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": false,
    +      "allow_printed_card": "xyz789",
    +      "autocomplete_on_storefront": true,
           "base_currency_code": "abc123",
           "base_link_url": "xyz789",
           "base_media_url": "xyz789",
           "base_static_url": "abc123",
           "base_url": "xyz789",
    -      "cart_expires_in_days": 123,
    +      "cart_expires_in_days": 987,
           "cart_gift_wrapping": "xyz789",
    -      "cart_merge_preference": "xyz789",
    +      "cart_merge_preference": "abc123",
           "cart_printed_card": "xyz789",
           "cart_summary_display_quantity": 123,
    -      "catalog_default_sort_by": "abc123",
    +      "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": true,
    +      "check_money_order_enable_for_specific_countries": false,
           "check_money_order_enabled": true,
    -      "check_money_order_make_check_payable_to": "abc123",
    -      "check_money_order_max_order_total": "xyz789",
    -      "check_money_order_min_order_total": "abc123",
    -      "check_money_order_new_order_status": "xyz789",
    +      "check_money_order_make_check_payable_to": "xyz789",
    +      "check_money_order_max_order_total": "abc123",
    +      "check_money_order_min_order_total": "xyz789",
    +      "check_money_order_new_order_status": "abc123",
           "check_money_order_payment_from_specific_countries": "xyz789",
    -      "check_money_order_send_check_to": "xyz789",
    -      "check_money_order_sort_order": 987,
    +      "check_money_order_send_check_to": "abc123",
    +      "check_money_order_sort_order": 123,
           "check_money_order_title": "xyz789",
    -      "company_credit_enabled": false,
    +      "company_credit_enabled": true,
           "company_enabled": false,
           "configurable_product_image": "ITSELF",
           "configurable_thumbnail_source": "xyz789",
    -      "contact_enabled": false,
    -      "countries_with_required_region": "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",
    +      "customer_access_token_lifetime": 987.65,
    +      "default_country": "xyz789",
    +      "default_display_currency_code": "xyz789",
           "display_product_prices_in_catalog": 987,
           "display_shipping_prices": 123,
    -      "display_state_if_optional": false,
    +      "display_state_if_optional": true,
           "enable_multiple_wishlists": "xyz789",
    -      "fixed_product_taxes_apply_tax_to_fpt": true,
    +      "fixed_product_taxes_apply_tax_to_fpt": false,
           "fixed_product_taxes_display_prices_in_emails": 123,
    -      "fixed_product_taxes_display_prices_in_product_lists": 987,
    -      "fixed_product_taxes_display_prices_in_sales_modules": 987,
    +      "fixed_product_taxes_display_prices_in_product_lists": 123,
    +      "fixed_product_taxes_display_prices_in_sales_modules": 123,
           "fixed_product_taxes_display_prices_on_product_view_page": 987,
    -      "fixed_product_taxes_enable": false,
    +      "fixed_product_taxes_enable": true,
           "fixed_product_taxes_include_fpt_in_subtotal": true,
    -      "graphql_share_customer_group": true,
    +      "graphql_share_customer_group": false,
           "grid_per_page": 123,
           "grid_per_page_values": "abc123",
           "grouped_product_image": "ITSELF",
           "is_checkout_agreements_enabled": true,
           "is_default_store": true,
    -      "is_default_store_group": true,
    -      "is_guest_checkout_enabled": true,
    -      "is_negotiable_quote_active": true,
    -      "is_one_page_checkout_enabled": true,
    +      "is_default_store_group": false,
    +      "is_guest_checkout_enabled": false,
    +      "is_negotiable_quote_active": false,
    +      "is_one_page_checkout_enabled": false,
           "is_requisition_list_active": "xyz789",
    -      "list_mode": "xyz789",
    +      "list_mode": "abc123",
           "list_per_page": 123,
    -      "list_per_page_values": "abc123",
    +      "list_per_page_values": "xyz789",
           "locale": "abc123",
    -      "magento_reward_general_is_enabled": "xyz789",
    +      "magento_reward_general_is_enabled": "abc123",
           "magento_reward_general_is_enabled_on_front": "abc123",
    -      "magento_reward_general_min_points_balance": "abc123",
    +      "magento_reward_general_min_points_balance": "xyz789",
           "magento_reward_general_publish_history": "xyz789",
           "magento_reward_points_invitation_customer": "xyz789",
           "magento_reward_points_invitation_customer_limit": "abc123",
           "magento_reward_points_invitation_order": "xyz789",
           "magento_reward_points_invitation_order_limit": "abc123",
    -      "magento_reward_points_newsletter": "abc123",
    -      "magento_reward_points_order": "xyz789",
    +      "magento_reward_points_newsletter": "xyz789",
    +      "magento_reward_points_order": "abc123",
           "magento_reward_points_register": "xyz789",
           "magento_reward_points_review": "xyz789",
    -      "magento_reward_points_review_limit": "abc123",
    +      "magento_reward_points_review_limit": "xyz789",
           "magento_wishlist_general_is_enabled": "abc123",
    -      "max_items_in_order_summary": 123,
    +      "max_items_in_order_summary": 987,
           "maximum_number_of_wishlists": "xyz789",
    -      "minicart_display": false,
    +      "minicart_display": true,
           "minicart_max_items": 123,
    -      "minimum_password_length": "abc123",
    -      "newsletter_enabled": false,
    +      "minimum_password_length": "xyz789",
    +      "newsletter_enabled": true,
           "optional_zip_countries": "abc123",
           "order_cancellation_enabled": true,
           "order_cancellation_reasons": [CancellationReason],
           "orders_invoices_credit_memos_display_full_summary": false,
    -      "orders_invoices_credit_memos_display_grandtotal": false,
    -      "orders_invoices_credit_memos_display_price": 123,
    +      "orders_invoices_credit_memos_display_grandtotal": true,
    +      "orders_invoices_credit_memos_display_price": 987,
           "orders_invoices_credit_memos_display_shipping_amount": 987,
           "orders_invoices_credit_memos_display_subtotal": 987,
           "orders_invoices_credit_memos_display_zero_tax": false,
    @@ -7097,50 +7094,50 @@ 
    Response
    "quickorder_active": false, "quote_minimum_amount": 123.45, "quote_minimum_amount_message": "abc123", - "required_character_classes_number": "abc123", + "required_character_classes_number": "xyz789", "requisition_list_share_link_validity_days": 987, "requisition_list_share_max_recipients": 123, "requisition_list_share_storefront_path": "xyz789", - "requisition_list_sharing_enabled": true, + "requisition_list_sharing_enabled": false, "returns_enabled": "abc123", "root_category_uid": 4, "sales_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", - "sales_gift_wrapping": "abc123", - "sales_printed_card": "xyz789", - "secure_base_link_url": "abc123", - "secure_base_media_url": "abc123", - "secure_base_static_url": "abc123", - "secure_base_url": "xyz789", - "share_active_segments": false, + "sales_gift_wrapping": "xyz789", + "sales_printed_card": "abc123", + "secure_base_link_url": "xyz789", + "secure_base_media_url": "xyz789", + "secure_base_static_url": "xyz789", + "secure_base_url": "abc123", + "share_active_segments": true, "share_applied_cart_rule": true, - "shopping_assistance_checkbox_title": "abc123", - "shopping_assistance_checkbox_tooltip": "abc123", + "shopping_assistance_checkbox_title": "xyz789", + "shopping_assistance_checkbox_tooltip": "xyz789", "shopping_assistance_enabled": true, - "shopping_cart_display_full_summary": false, + "shopping_cart_display_full_summary": true, "shopping_cart_display_grand_total": true, - "shopping_cart_display_price": 123, + "shopping_cart_display_price": 987, "shopping_cart_display_shipping": 987, - "shopping_cart_display_subtotal": 987, + "shopping_cart_display_subtotal": 123, "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_name": "abc123", "store_sort_order": 987, "timezone": "xyz789", - "title_separator": "abc123", - "use_store_in_url": false, + "title_separator": "xyz789", + "use_store_in_url": true, "website_code": 4, "website_name": "abc123", "weight_unit": "abc123", - "zero_subtotal_enable_for_specific_countries": true, - "zero_subtotal_enabled": true, + "zero_subtotal_enable_for_specific_countries": false, + "zero_subtotal_enabled": false, "zero_subtotal_new_order_status": "abc123", - "zero_subtotal_payment_action": "abc123", - "zero_subtotal_payment_from_specific_countries": "xyz789", + "zero_subtotal_payment_action": "xyz789", + "zero_subtotal_payment_from_specific_countries": "abc123", "zero_subtotal_sort_order": 987, - "zero_subtotal_title": "abc123" + "zero_subtotal_title": "xyz789" } } } @@ -7229,10 +7226,10 @@
    Query
    Variables
    {
    -  "sku": "abc123",
    +  "sku": "xyz789",
       "optionIds": ["xyz789"],
    -  "pageSize": 987,
    -  "cursor": "abc123"
    +  "pageSize": 123,
    +  "cursor": "xyz789"
     }
     
    @@ -7422,15 +7419,15 @@
    Response
    "acceptNegotiableQuoteTemplate": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", - "expiration_date": "abc123", + "created_at": "xyz789", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": false, + "is_min_max_qty_used": true, "is_virtual": true, "items": [CartItemInterface], - "max_order_commitment": 123, - "min_order_commitment": 987, + "max_order_commitment": 987, + "min_order_commitment": 123, "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, @@ -7442,8 +7439,8 @@
    Response
    NegotiableQuoteShippingAddress ], "status": "xyz789", - "template_id": "4", - "total_quantity": 987.65, + "template_id": 4, + "total_quantity": 123.45, "uid": 4, "updated_at": "abc123" } @@ -7691,7 +7688,7 @@
    Query
    Variables
    {
    -  "cartId": "xyz789",
    +  "cartId": "abc123",
       "cartItems": [CartItemInput]
     }
     
    @@ -7783,7 +7780,7 @@
    Response
    "data": { "addProductsToCompareList": { "attributes": [ComparableAttribute], - "item_count": 123, + "item_count": 987, "items": [ComparableItem], "uid": "4" } @@ -7944,7 +7941,7 @@
    Query
    Variables
    {
    -  "requisitionListUid": "4",
    +  "requisitionListUid": 4,
       "requisitionListItems": [RequisitionListItemsInput]
     }
     
    @@ -8285,8 +8282,8 @@
    Query
    Variables
    {
    -  "requisitionListUid": "4",
    -  "requisitionListItemUids": [4]
    +  "requisitionListUid": 4,
    +  "requisitionListItemUids": ["4"]
     }
     
    @@ -9111,7 +9108,7 @@
    Query
    Variables
    -
    {"uid": 4}
    +                  
    {"uid": "4"}
     
    @@ -9254,15 +9251,15 @@
    Response
    ], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "xyz789", + "email": "abc123", "gift_message": GiftMessage, "gift_receipt_included": false, "gift_wrapping": GiftWrapping, - "id": 4, + "id": "4", "is_virtual": false, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": true, + "printed_card_included": false, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], @@ -9384,7 +9381,7 @@
    Response
    "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": false, + "is_min_max_qty_used": true, "is_virtual": false, "items": [CartItemInterface], "max_order_commitment": 987, @@ -9400,7 +9397,7 @@
    Response
    NegotiableQuoteShippingAddress ], "status": "abc123", - "template_id": "4", + "template_id": 4, "total_quantity": 987.65, "uid": "4", "updated_at": "xyz789" @@ -9742,7 +9739,7 @@
    Query
    Variables
    {
    -  "currentPassword": "abc123",
    +  "currentPassword": "xyz789",
       "newPassword": "abc123"
     }
     
    @@ -9755,7 +9752,7 @@
    Response
    "addresses": [CustomerAddress], "addressesV2": CustomerAddresses, "admin_assistance_actions": AdminAssistanceActions, - "allow_remote_shopping_assistance": false, + "allow_remote_shopping_assistance": true, "companies": UserCompaniesOutput, "company_hierarchy": [CompanyHierarchy], "compare_list": CompareList, @@ -9764,9 +9761,9 @@
    Response
    "custom_attributes": [AttributeValueInterface], "date_of_birth": "abc123", "default_billing": "abc123", - "default_shipping": "xyz789", + "default_shipping": "abc123", "email": "abc123", - "firstname": "abc123", + "firstname": "xyz789", "gender": 987, "gift_registries": [GiftRegistry], "gift_registry": GiftRegistry, @@ -9775,7 +9772,7 @@
    Response
    "is_subscribed": false, "job_title": "abc123", "lastname": "xyz789", - "middlename": "xyz789", + "middlename": "abc123", "orders": CustomerOrders, "prefix": "abc123", "purchase_order": PurchaseOrder, @@ -9795,7 +9792,7 @@
    Response
    "store_credit": CustomerStoreCredit, "structure_id": 4, "suffix": "abc123", - "taxvat": "xyz789", + "taxvat": "abc123", "team": CompanyTeam, "telephone": "abc123", "wishlist_v2": Wishlist, @@ -9867,14 +9864,14 @@
    Query
    Variables
    -
    {"cartUid": "xyz789"}
    +                  
    {"cartUid": "abc123"}
     
    Response
    {
       "data": {
    -    "clearCustomerCart": {"cart": Cart, "status": false}
    +    "clearCustomerCart": {"cart": Cart, "status": true}
       }
     }
     
    @@ -10123,94 +10120,6 @@
    Response
    } } } -
    -
    -
    - back to top -
    -
    -
    -
    - Mutations -
    -

    - completePayByLinkPayment -

    -
    -
    -
    -
    Description
    -

    Complete a Pay By Link payment for an in-process gateway (Payment Services).

    -
    -
    -
    -
    -
    -
    -
    Response
    -

    Returns a CompletePayByLinkPaymentOutput -

    -
    -
    -
    Arguments
    - - - - - - - - - - - - - - - - - -
    NameDescription
    - token - String! - The token issued for the Pay By Link payment.
    - payment_method - PaymentMethodInput! - The payment method the customer has selected to complete the order.
    -
    -
    -
    -

    Example

    -
    -
    Query
    -
    mutation completePayByLinkPayment(
    -  $token: String!,
    -  $payment_method: PaymentMethodInput!
    -) {
    -  completePayByLinkPayment(
    -    token: $token,
    -    payment_method: $payment_method
    -  ) {
    -    order_number
    -  }
    -}
    -
    -
    -
    -
    Variables
    -
    {
    -  "token": "xyz789",
    -  "payment_method": PaymentMethodInput
    -}
    -
    -
    -
    -
    Response
    -
    {
    -  "data": {
    -    "completePayByLinkPayment": {
    -      "order_number": "abc123"
    -    }
    -  }
    -}
     
    @@ -10508,7 +10417,7 @@
    Variables
    Response
    -
    {"data": {"contactUs": {"status": true}}}
    +                  
    {"data": {"contactUs": {"status": false}}}
     
    @@ -10593,7 +10502,7 @@
    Query
    Variables
    {
    -  "sourceRequisitionListUid": "4",
    +  "sourceRequisitionListUid": 4,
       "destinationRequisitionListUid": "4",
       "requisitionListItem": CopyItemsBetweenRequisitionListsInput
     }
    @@ -11175,8 +11084,8 @@ 
    Response
    {
       "data": {
         "createCustomerAddress": {
    -      "city": "abc123",
    -      "company": "abc123",
    +      "city": "xyz789",
    +      "company": "xyz789",
           "country_code": "AF",
           "custom_attributesV2": [AttributeValueInterface],
           "default_billing": true,
    @@ -11184,17 +11093,17 @@ 
    Response
    "extension_attributes": [CustomerAddressAttribute], "fax": "xyz789", "firstname": "xyz789", - "id": 123, - "lastname": "abc123", + "id": 987, + "lastname": "xyz789", "middlename": "xyz789", "postcode": "xyz789", - "prefix": "abc123", + "prefix": "xyz789", "region": CustomerAddressRegion, - "region_id": 123, - "street": ["abc123"], + "region_id": 987, + "street": ["xyz789"], "suffix": "xyz789", "telephone": "xyz789", - "uid": 4, + "uid": "4", "vat_id": "xyz789" } } @@ -11485,10 +11394,10 @@
    Response
    "data": { "createPaymentOrder": { "amount": 987.65, - "currency_code": "xyz789", + "currency_code": "abc123", "id": "abc123", - "mp_order_id": "xyz789", - "status": "abc123" + "mp_order_id": "abc123", + "status": "xyz789" } } } @@ -11585,7 +11494,7 @@
    Response
    "description": "abc123", "name": "abc123", "status": "ENABLED", - "uid": "4", + "uid": 4, "updated_at": "xyz789" } } @@ -11812,7 +11721,7 @@
    Response
    {
       "data": {
         "createVaultCardSetupToken": {
    -      "setup_token": "xyz789"
    +      "setup_token": "abc123"
         }
       }
     }
    @@ -12015,12 +11924,12 @@ 
    Query
    Variables
    -
    {"id": 4}
    +                  
    {"id": "4"}
     
    Response
    -
    {"data": {"deleteCompanyTeam": {"success": false}}}
    +                  
    {"data": {"deleteCompanyTeam": {"success": true}}}
     
    @@ -12150,7 +12059,7 @@
    Query
    Variables
    -
    {"uid": 4}
    +                  
    {"uid": "4"}
     
    @@ -12263,7 +12172,7 @@
    Query
    Variables
    -
    {"id": 123}
    +                  
    {"id": 987}
     
    @@ -12328,12 +12237,12 @@
    Query
    Variables
    -
    {"uid": "4"}
    +                  
    {"uid": 4}
     
    Response
    -
    {"data": {"deleteCustomerAddressV2": true}}
    +                  
    {"data": {"deleteCustomerAddressV2": false}}
     
    @@ -12398,7 +12307,7 @@
    Variables
    Response
    -
    {"data": {"deleteNegotiableQuoteTemplate": false}}
    +                  
    {"data": {"deleteNegotiableQuoteTemplate": true}}
     
    @@ -12560,7 +12469,7 @@
    Response
    "data": { "deletePaymentToken": { "customerPaymentTokens": CustomerPaymentTokens, - "result": false + "result": true } } } @@ -12713,7 +12622,7 @@
    Response
    "data": { "deleteRequisitionList": { "requisition_lists": RequisitionLists, - "status": false + "status": true } } } @@ -12793,7 +12702,7 @@
    Query
    Variables
    {
    -  "requisitionListUid": 4,
    +  "requisitionListUid": "4",
       "requisitionListItemUids": ["4"]
     }
     
    @@ -13046,11 +12955,11 @@
    Response
    { "additional_data": [ShippingAdditionalData], "amount": Money, - "available": false, + "available": true, "carrier_code": "abc123", "carrier_title": "xyz789", "error_message": "xyz789", - "method_code": "abc123", + "method_code": "xyz789", "method_title": "abc123", "price_excl_tax": Money, "price_incl_tax": Money @@ -13200,7 +13109,7 @@
    Response
    "data": { "exchangeExternalCustomerToken": { "customer": Customer, - "token": "xyz789" + "token": "abc123" } } } @@ -13278,8 +13187,8 @@
    Query
    Variables
    {
    -  "email": "abc123",
    -  "otp": "abc123"
    +  "email": "xyz789",
    +  "otp": "xyz789"
     }
     
    @@ -13288,7 +13197,7 @@
    Response
    {
       "data": {
         "exchangeOtpForCustomerToken": {
    -      "token": "xyz789"
    +      "token": "abc123"
         }
       }
     }
    @@ -13436,8 +13345,8 @@ 
    Query
    Variables
    {
    -  "email": "abc123",
    -  "password": "abc123"
    +  "email": "xyz789",
    +  "password": "xyz789"
     }
     
    @@ -13446,7 +13355,7 @@
    Response
    {
       "data": {
         "generateCustomerToken": {
    -      "token": "abc123"
    +      "token": "xyz789"
         }
       }
     }
    @@ -13739,8 +13648,8 @@ 
    Response
    {
       "data": {
         "initiateUpload": {
    -      "expires_at": "xyz789",
    -      "key": "xyz789",
    +      "expires_at": "abc123",
    +      "key": "abc123",
           "upload_url": "xyz789"
         }
       }
    @@ -13889,7 +13798,7 @@ 
    Response
    ], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "abc123", + "email": "xyz789", "gift_message": GiftMessage, "gift_receipt_included": true, "gift_wrapping": GiftWrapping, @@ -13897,11 +13806,11 @@
    Response
    "is_virtual": true, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": true, + "printed_card_included": false, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], - "total_quantity": 987.65 + "total_quantity": 123.45 } } } @@ -13984,7 +13893,7 @@
    Query
    Variables
    -
    {"cartUid": 4, "giftRegistryUid": 4}
    +                  
    {"cartUid": 4, "giftRegistryUid": "4"}
     
    @@ -14086,7 +13995,7 @@
    Query
    Variables
    {
       "sourceRequisitionListUid": 4,
    -  "destinationRequisitionListUid": "4",
    +  "destinationRequisitionListUid": 4,
       "requisitionListItem": MoveItemsBetweenRequisitionListsInput
     }
     
    @@ -14393,16 +14302,16 @@
    Response
    "openNegotiableQuoteTemplate": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", + "created_at": "xyz789", "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": true, + "is_min_max_qty_used": false, "is_virtual": false, "items": [CartItemInterface], "max_order_commitment": 123, - "min_order_commitment": 987, - "name": "xyz789", + "min_order_commitment": 123, + "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ @@ -14412,11 +14321,11 @@
    Response
    "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "xyz789", - "template_id": 4, + "status": "abc123", + "template_id": "4", "total_quantity": 123.45, "uid": 4, - "updated_at": "abc123" + "updated_at": "xyz789" } } } @@ -14879,7 +14788,7 @@
    Response
    "redeemGiftCardBalanceAsStoreCredit": { "balance": Money, "code": "abc123", - "expiration_date": "abc123" + "expiration_date": "xyz789" } } } @@ -15312,7 +15221,7 @@
    Query
    Variables
    -
    {"giftRegistryUid": 4, "itemsUid": ["4"]}
    +                  
    {"giftRegistryUid": "4", "itemsUid": [4]}
     
    @@ -15400,8 +15309,8 @@
    Query
    Variables
    {
    -  "giftRegistryUid": 4,
    -  "registrantsUid": ["4"]
    +  "giftRegistryUid": "4",
    +  "registrantsUid": [4]
     }
     
    @@ -15668,16 +15577,16 @@
    Response
    "removeNegotiableQuoteTemplateItems": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "xyz789", - "expiration_date": "xyz789", + "created_at": "abc123", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": false, + "is_min_max_qty_used": true, "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 987, - "min_order_commitment": 123, - "name": "xyz789", + "min_order_commitment": 987, + "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ @@ -15687,11 +15596,11 @@
    Response
    "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", - "template_id": 4, + "status": "xyz789", + "template_id": "4", "total_quantity": 987.65, - "uid": 4, - "updated_at": "xyz789" + "uid": "4", + "updated_at": "abc123" } } } @@ -15772,7 +15681,7 @@
    Response
    "data": { "removeProductsFromCompareList": { "attributes": [ComparableAttribute], - "item_count": 123, + "item_count": 987, "items": [ComparableItem], "uid": 4 } @@ -15856,10 +15765,7 @@
    Query
    Variables
    -
    {
    -  "wishlistId": "4",
    -  "wishlistItemsIds": ["4"]
    -}
    +                  
    {"wishlistId": 4, "wishlistItemsIds": ["4"]}
     
    @@ -16220,7 +16126,7 @@
    Query
    Variables
    -
    {"orderNumber": "xyz789"}
    +                  
    {"orderNumber": "abc123"}
     
    @@ -16309,7 +16215,7 @@
    Response
    {
       "data": {
         "requestGuestOrderCancel": {
    -      "error": "abc123",
    +      "error": "xyz789",
           "errorV2": CancelOrderError,
           "order": CustomerOrder
         }
    @@ -16574,25 +16480,25 @@ 
    Response
    "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": false, - "is_virtual": true, + "is_virtual": false, "items": [CartItemInterface], - "max_order_commitment": 987, + "max_order_commitment": 123, "min_order_commitment": 123, - "name": "xyz789", + "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "shipping_addresses": [ NegotiableQuoteShippingAddress ], "status": "abc123", "template_id": "4", "total_quantity": 987.65, - "uid": 4, - "updated_at": "xyz789" + "uid": "4", + "updated_at": "abc123" } } } @@ -16887,7 +16793,7 @@
    Variables
    {
       "email": "abc123",
       "resetPasswordToken": "abc123",
    -  "newPassword": "xyz789"
    +  "newPassword": "abc123"
     }
     
    @@ -17152,7 +17058,7 @@
    Response
    "data": { "setCartAsInactive": { "error": "abc123", - "success": false + "success": true } } } @@ -18367,28 +18273,28 @@
    Response
    "setNegotiableQuoteTemplateShippingAddress": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "xyz789", + "created_at": "abc123", "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": false, - "is_virtual": true, + "is_virtual": false, "items": [CartItemInterface], - "max_order_commitment": 123, - "min_order_commitment": 123, - "name": "xyz789", + "max_order_commitment": 987, + "min_order_commitment": 987, + "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", - "template_id": 4, - "total_quantity": 123.45, + "status": "xyz789", + "template_id": "4", + "total_quantity": 987.65, "uid": 4, "updated_at": "abc123" } @@ -18574,28 +18480,28 @@
    Response
    "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], "created_at": "xyz789", - "expiration_date": "abc123", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": false, + "is_min_max_qty_used": true, "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 123, - "min_order_commitment": 987, + "min_order_commitment": 123, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "xyz789", - "template_id": "4", + "status": "abc123", + "template_id": 4, "total_quantity": 123.45, - "uid": 4, + "uid": "4", "updated_at": "abc123" } } @@ -18714,26 +18620,26 @@
    Response
    "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": true, - "is_virtual": false, + "is_min_max_qty_used": false, + "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 123, - "min_order_commitment": 987, + "min_order_commitment": 123, "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", - "template_id": 4, + "status": "xyz789", + "template_id": "4", "total_quantity": 987.65, - "uid": 4, - "updated_at": "xyz789" + "uid": "4", + "updated_at": "abc123" } } } @@ -19039,7 +18945,7 @@
    Response
    {
       "data": {
         "shareRequisitionListByEmail": {
    -      "sent_count": 987,
    +      "sent_count": 123,
           "user_errors": [ShareRequisitionListUserError]
         }
       }
    @@ -19113,7 +19019,7 @@ 
    Response
    {
       "data": {
         "shareRequisitionListByToken": {
    -      "token": "xyz789"
    +      "token": "abc123"
         }
       }
     }
    @@ -19227,15 +19133,15 @@ 
    Response
    "submitNegotiableQuoteTemplateForReview": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", + "created_at": "xyz789", "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": true, + "is_min_max_qty_used": false, "is_virtual": true, "items": [CartItemInterface], - "max_order_commitment": 987, - "min_order_commitment": 987, + "max_order_commitment": 123, + "min_order_commitment": 123, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, @@ -19246,11 +19152,11 @@
    Response
    "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", + "status": "xyz789", "template_id": 4, - "total_quantity": 987.65, - "uid": 4, - "updated_at": "xyz789" + "total_quantity": 123.45, + "uid": "4", + "updated_at": "abc123" } } } @@ -19315,7 +19221,7 @@
    Query
    Variables
    -
    {"email": "xyz789"}
    +                  
    {"email": "abc123"}
     
    @@ -19393,7 +19299,7 @@
    Response
    "data": { "subscribeProductAlertPrice": { "message": "abc123", - "success": true + "success": false } } } @@ -19469,7 +19375,7 @@
    Response
    "data": { "subscribeProductAlertStock": { "message": "xyz789", - "success": true + "success": false } } } @@ -19685,7 +19591,7 @@
    Response
    "data": { "unsubscribeProductAlertPrice": { "message": "abc123", - "success": true + "success": false } } } @@ -19736,7 +19642,7 @@
    Response
    "data": { "unsubscribeProductAlertPriceAll": { "message": "abc123", - "success": false + "success": true } } } @@ -19811,7 +19717,7 @@
    Response
    {
       "data": {
         "unsubscribeProductAlertStock": {
    -      "message": "xyz789",
    +      "message": "abc123",
           "success": true
         }
       }
    @@ -19862,7 +19768,7 @@ 
    Response
    {
       "data": {
         "unsubscribeProductAlertStockAll": {
    -      "message": "xyz789",
    +      "message": "abc123",
           "success": true
         }
       }
    @@ -20402,7 +20308,7 @@ 
    Query
    Variables
    -
    {"id": 123, "input": CustomerAddressInput}
    +                  
    {"id": 987, "input": CustomerAddressInput}
     
    @@ -20410,25 +20316,25 @@
    Response
    {
       "data": {
         "updateCustomerAddress": {
    -      "city": "abc123",
    -      "company": "abc123",
    +      "city": "xyz789",
    +      "company": "xyz789",
           "country_code": "AF",
           "custom_attributesV2": [AttributeValueInterface],
           "default_billing": true,
    -      "default_shipping": false,
    +      "default_shipping": true,
           "extension_attributes": [CustomerAddressAttribute],
           "fax": "xyz789",
    -      "firstname": "xyz789",
    +      "firstname": "abc123",
           "id": 987,
           "lastname": "abc123",
    -      "middlename": "xyz789",
    +      "middlename": "abc123",
           "postcode": "abc123",
           "prefix": "xyz789",
           "region": CustomerAddressRegion,
    -      "region_id": 987,
    -      "street": ["abc123"],
    +      "region_id": 123,
    +      "street": ["xyz789"],
           "suffix": "xyz789",
    -      "telephone": "xyz789",
    +      "telephone": "abc123",
           "uid": "4",
           "vat_id": "abc123"
         }
    @@ -20533,7 +20439,10 @@ 
    Query
    Variables
    -
    {"uid": 4, "input": CustomerAddressInput}
    +                  
    {
    +  "uid": "4",
    +  "input": CustomerAddressInput
    +}
     
    @@ -20541,26 +20450,26 @@
    Response
    {
       "data": {
         "updateCustomerAddressV2": {
    -      "city": "abc123",
    +      "city": "xyz789",
           "company": "abc123",
           "country_code": "AF",
           "custom_attributesV2": [AttributeValueInterface],
           "default_billing": false,
    -      "default_shipping": true,
    +      "default_shipping": false,
           "extension_attributes": [CustomerAddressAttribute],
           "fax": "xyz789",
    -      "firstname": "abc123",
    -      "id": 123,
    -      "lastname": "abc123",
    -      "middlename": "xyz789",
    +      "firstname": "xyz789",
    +      "id": 987,
    +      "lastname": "xyz789",
    +      "middlename": "abc123",
           "postcode": "abc123",
    -      "prefix": "abc123",
    +      "prefix": "xyz789",
           "region": CustomerAddressRegion,
    -      "region_id": 987,
    +      "region_id": 123,
           "street": ["abc123"],
           "suffix": "abc123",
           "telephone": "xyz789",
    -      "uid": "4",
    +      "uid": 4,
           "vat_id": "abc123"
         }
       }
    @@ -20642,7 +20551,7 @@ 
    Query
    Variables
    {
       "email": "xyz789",
    -  "password": "abc123"
    +  "password": "xyz789"
     }
     
    @@ -20794,7 +20703,7 @@
    Query
    Variables
    {
    -  "giftRegistryUid": 4,
    +  "giftRegistryUid": "4",
       "giftRegistry": UpdateGiftRegistryInput
     }
     
    @@ -21320,11 +21229,11 @@
    Response
    "condition": PurchaseOrderApprovalRuleConditionInterface, "created_at": "abc123", "created_by": "xyz789", - "description": "xyz789", - "name": "xyz789", + "description": "abc123", + "name": "abc123", "status": "ENABLED", "uid": 4, - "updated_at": "abc123" + "updated_at": "xyz789" } } } @@ -21495,7 +21404,7 @@
    Query
    Variables
    {
    -  "requisitionListUid": 4,
    +  "requisitionListUid": "4",
       "requisitionListItems": [
         UpdateRequisitionListItemsInput
       ]
    @@ -21595,8 +21504,8 @@ 
    Query
    Variables
    {
    -  "wishlistId": 4,
    -  "name": "xyz789",
    +  "wishlistId": "4",
    +  "name": "abc123",
       "visibility": "PUBLIC"
     }
     
    @@ -21606,8 +21515,8 @@
    Response
    {
       "data": {
         "updateWishlist": {
    -      "name": "xyz789",
    -      "uid": 4,
    +      "name": "abc123",
    +      "uid": "4",
           "visibility": "PUBLIC"
         }
       }
    @@ -21919,8 +21828,8 @@ 
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "email": "abc123", - "firstname": "abc123", + "email": "xyz789", + "firstname": "xyz789", "lastname": "xyz789" }
    @@ -22057,7 +21966,7 @@
    Fields
    Example
    -
    {"products": [4], "uid": 4}
    +                  
    {"products": ["4"], "uid": 4}
     
    @@ -22337,8 +22246,8 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    -  "purchase_order_uid": 4,
    +  "cart_id": "abc123",
    +  "purchase_order_uid": "4",
       "replace_existing_cart_items": true
     }
     
    @@ -22550,7 +22459,10 @@
    Fields
    Example
    -
    {"comment_text": "abc123", "return_uid": 4}
    +                  
    {
    +  "comment_text": "xyz789",
    +  "return_uid": "4"
    +}
     
    @@ -22802,8 +22714,8 @@
    Fields
    Example
    {
    -  "action": "xyz789",
    -  "date": "abc123",
    +  "action": "abc123",
    +  "date": "xyz789",
       "details": "abc123"
     }
     
    @@ -22858,7 +22770,7 @@
    Example
    {
       "items": [AdminAssistanceAction],
       "page_info": SearchResultPageInfo,
    -  "total_count": 123
    +  "total_count": 987
     }
     
    @@ -23048,13 +22960,13 @@
    Fields
    Example
    {
       "button_styles": ButtonStyles,
    -  "code": "xyz789",
    -  "is_visible": true,
    -  "payment_intent": "xyz789",
    -  "payment_source": "xyz789",
    +  "code": "abc123",
    +  "is_visible": false,
    +  "payment_intent": "abc123",
    +  "payment_source": "abc123",
       "sdk_params": [SDKParams],
       "sort_order": "xyz789",
    -  "title": "xyz789"
    +  "title": "abc123"
     }
     
    @@ -23109,9 +23021,9 @@
    Fields
    Example
    {
    -  "payment_source": "abc123",
    -  "payments_order_id": "abc123",
    -  "paypal_order_id": "xyz789"
    +  "payment_source": "xyz789",
    +  "payments_order_id": "xyz789",
    +  "paypal_order_id": "abc123"
     }
     
    @@ -23211,7 +23123,7 @@
    Example
    "applied_balance": Money, "code": "abc123", "current_balance": Money, - "expiration_date": "abc123" + "expiration_date": "xyz789" }
    @@ -23265,7 +23177,7 @@
    Example
    {
       "action_type": "BOOST",
       "rule_id": "abc123",
    -  "rule_name": "abc123"
    +  "rule_name": "xyz789"
     }
     
    @@ -23425,7 +23337,7 @@
    Fields
    Example
    {
       "cart_id": "xyz789",
    -  "coupon_code": "xyz789"
    +  "coupon_code": "abc123"
     }
     
    @@ -23569,7 +23481,7 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    +  "cart_id": "abc123",
       "coupon_codes": ["xyz789"],
       "type": "APPEND"
     }
    @@ -23620,8 +23532,8 @@ 
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    -  "gift_card_code": "abc123"
    +  "cart_id": "abc123",
    +  "gift_card_code": "xyz789"
     }
     
    @@ -23878,7 +23790,7 @@
    Fields
    Example
    -
    {"radius": 123, "search_term": "xyz789"}
    +                  
    {"radius": 987, "search_term": "abc123"}
     
    @@ -23940,10 +23852,10 @@
    Fields
    Example
    {
       "asset_image": ProductMediaGalleryEntriesAssetImage,
    -  "disabled": true,
    -  "label": "xyz789",
    +  "disabled": false,
    +  "label": "abc123",
       "position": 987,
    -  "url": "xyz789"
    +  "url": "abc123"
     }
     
    @@ -24006,7 +23918,7 @@
    Fields
    Example
    {
       "asset_video": ProductMediaGalleryEntriesAssetVideo,
    -  "disabled": true,
    +  "disabled": false,
       "label": "xyz789",
       "position": 987,
       "url": "xyz789"
    @@ -24057,7 +23969,10 @@ 
    Fields
    Example
    -
    {"child_company_id": 4, "parent_company_id": 4}
    +                  
    {
    +  "child_company_id": 4,
    +  "parent_company_id": "4"
    +}
     
    @@ -24142,7 +24057,7 @@
    Fields
    Example
    -
    {"compare_list": CompareList, "result": false}
    +                  
    {"compare_list": CompareList, "result": true}
     
    @@ -24264,10 +24179,10 @@
    Fields
    Example
    {
    -  "attribute_type": "abc123",
    -  "code": 4,
    -  "url": "xyz789",
    -  "value": "xyz789"
    +  "attribute_type": "xyz789",
    +  "code": "4",
    +  "url": "abc123",
    +  "value": "abc123"
     }
     
    @@ -24376,16 +24291,16 @@
    Fields
    Example
    {
    -  "is_comparable": false,
    +  "is_comparable": true,
       "is_filterable": true,
    -  "is_filterable_in_search": false,
    -  "is_html_allowed_on_front": true,
    -  "is_searchable": false,
    +  "is_filterable_in_search": true,
    +  "is_html_allowed_on_front": false,
    +  "is_searchable": true,
       "is_used_for_customer_segment": false,
    -  "is_used_for_price_rules": true,
    -  "is_used_for_promo_rules": false,
    +  "is_used_for_price_rules": false,
    +  "is_used_for_promo_rules": true,
       "is_visible_in_advanced_search": false,
    -  "is_visible_on_front": true,
    +  "is_visible_on_front": false,
       "is_wysiwyg_enabled": true,
       "used_in_product_listing": true
     }
    @@ -24588,9 +24503,9 @@ 
    Fields
    Example
    {
       "attribute_type": "abc123",
    -  "code": "4",
    -  "url": "xyz789",
    -  "value": "abc123"
    +  "code": 4,
    +  "url": "abc123",
    +  "value": "xyz789"
     }
     
    @@ -24639,8 +24554,8 @@
    Fields
    Example
    {
    -  "attribute_code": "xyz789",
    -  "entity_type": "abc123"
    +  "attribute_code": "abc123",
    +  "entity_type": "xyz789"
     }
     
    @@ -24768,7 +24683,7 @@
    Example
    "entity_type": "CATALOG_PRODUCT", "frontend_class": "abc123", "frontend_input": "BOOLEAN", - "is_required": true, + "is_required": false, "is_unique": true, "label": "abc123", "options": [CustomAttributeOptionInterface] @@ -24978,9 +24893,9 @@
    Fields
    Example
    {
    -  "is_default": true,
    -  "label": "abc123",
    -  "value": "abc123"
    +  "is_default": false,
    +  "label": "xyz789",
    +  "value": "xyz789"
     }
     
    @@ -25023,7 +24938,7 @@
    Fields
    Example
    {
    -  "label": "abc123",
    +  "label": "xyz789",
       "value": "abc123"
     }
     
    @@ -25084,7 +24999,7 @@
    Possible Types
    Example
    {
    -  "label": "abc123",
    +  "label": "xyz789",
       "value": "xyz789"
     }
     
    @@ -25134,7 +25049,7 @@
    Fields
    Example
    {
    -  "attribute_type": "xyz789",
    +  "attribute_type": "abc123",
       "code": "4",
       "selected_options": [AttributeSelectedOptionInterface]
     }
    @@ -25241,9 +25156,9 @@ 
    Fields
    Example
    {
    -  "attribute_code": "xyz789",
    +  "attribute_code": "abc123",
       "selected_options": [AttributeInputSelectedOption],
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -25322,10 +25237,7 @@
    Possible Types
    Example
    -
    {
    -  "attribute_type": "abc123",
    -  "code": "4"
    -}
    +                  
    {"attribute_type": "xyz789", "code": 4}
     
    @@ -25466,7 +25378,7 @@
    Fields
    Example
    -
    {"code": "AFN", "symbol": "xyz789"}
    +                  
    {"code": "AFN", "symbol": "abc123"}
     
    @@ -25614,12 +25526,12 @@
    Example
    {
       "additional_data": [ShippingAdditionalData],
       "amount": Money,
    -  "available": false,
    +  "available": true,
       "carrier_code": "xyz789",
    -  "carrier_title": "xyz789",
    +  "carrier_title": "abc123",
       "error_message": "xyz789",
    -  "method_code": "abc123",
    -  "method_title": "abc123",
    +  "method_code": "xyz789",
    +  "method_title": "xyz789",
       "price_excl_tax": Money,
       "price_incl_tax": Money
     }
    @@ -25741,10 +25653,10 @@ 
    Fields
    Example
    {
       "address": CartAddressInput,
    -  "customer_address_id": 987,
    +  "customer_address_id": 123,
       "customer_address_uid": "4",
       "same_as_shipping": true,
    -  "use_for_shipping": true
    +  "use_for_shipping": false
     }
     
    @@ -25818,10 +25730,10 @@
    Fields
    Example
    {
       "address_line_1": "abc123",
    -  "address_line_2": "abc123",
    -  "city": "xyz789",
    +  "address_line_2": "xyz789",
    +  "city": "abc123",
       "country_code": "abc123",
    -  "postal_code": "xyz789",
    +  "postal_code": "abc123",
       "region": "abc123"
     }
     
    @@ -25950,24 +25862,24 @@
    Fields
    Example
    {
    -  "city": "abc123",
    +  "city": "xyz789",
       "company": "xyz789",
       "country": CartAddressCountry,
       "custom_attributes": [AttributeValueInterface],
    -  "customer_address_uid": "4",
    -  "fax": "xyz789",
    -  "firstname": "xyz789",
    +  "customer_address_uid": 4,
    +  "fax": "abc123",
    +  "firstname": "abc123",
       "id": 123,
       "lastname": "abc123",
       "middlename": "xyz789",
       "postcode": "xyz789",
    -  "prefix": "abc123",
    +  "prefix": "xyz789",
       "region": CartAddressRegion,
       "street": ["xyz789"],
       "suffix": "xyz789",
       "telephone": "xyz789",
       "uid": "4",
    -  "vat_id": "xyz789"
    +  "vat_id": "abc123"
     }
     
    @@ -26048,9 +25960,9 @@
    Example
    {
       "category_level": 123,
       "category_name": "abc123",
    -  "category_uid": 4,
    -  "category_url_key": "abc123",
    -  "category_url_path": "abc123"
    +  "category_uid": "4",
    +  "category_url_key": "xyz789",
    +  "category_url_path": "xyz789"
     }
     
    @@ -26128,7 +26040,7 @@
    Possible Types
    Example
    -
    {"title": "abc123"}
    +                  
    {"title": "xyz789"}
     
    @@ -26275,16 +26187,16 @@
    Example
    "errors": [CartItemError], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "is_available": false, - "is_salable": false, - "max_qty": 123.45, - "min_qty": 123.45, - "not_available_message": "abc123", + "is_available": true, + "is_salable": true, + "max_qty": 987.65, + "min_qty": 987.65, + "not_available_message": "xyz789", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 123.45, + "quantity": 987.65, "uid": 4 }
    @@ -26372,9 +26284,9 @@
    Example
    "discounts": [Discount], "id": "4", "order_item": OrderItemInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "xyz789", + "product_sku": "abc123", "quantity_refunded": 987.65 }
    @@ -26464,7 +26376,7 @@
    Example
    "order_item": OrderItemInterface, "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "xyz789", + "product_sku": "abc123", "quantity_invoiced": 987.65 }
    @@ -26543,13 +26455,13 @@
    Fields
    Example
    {
       "options": [BundleItemOption],
    -  "position": 123,
    +  "position": 987,
       "price_range": PriceRange,
    -  "required": true,
    +  "required": false,
       "sku": "xyz789",
    -  "title": "abc123",
    -  "type": "xyz789",
    -  "uid": 4
    +  "title": "xyz789",
    +  "type": "abc123",
    +  "uid": "4"
     }
     
    @@ -26631,14 +26543,14 @@
    Fields
    Example
    {
    -  "can_change_quantity": false,
    -  "is_default": false,
    +  "can_change_quantity": true,
    +  "is_default": true,
       "label": "abc123",
    -  "position": 987,
    -  "price": 987.65,
    +  "position": 123,
    +  "price": 123.45,
       "price_type": "FIXED",
       "product": ProductInterface,
    -  "quantity": 123.45,
    +  "quantity": 987.65,
       "uid": 4
     }
     
    @@ -26809,22 +26721,22 @@
    Example
    "entered_options": [OrderItemOption], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "id": "4", + "id": 4, "parent_sku": "xyz789", "prices": OrderItemPrices, "product": ProductInterface, "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "xyz789", + "product_sku": "abc123", "product_type": "abc123", "product_url_key": "abc123", - "quantity_canceled": 987.65, - "quantity_invoiced": 123.45, + "quantity_canceled": 123.45, + "quantity_invoiced": 987.65, "quantity_ordered": 123.45, "quantity_refunded": 123.45, - "quantity_return_requested": 987.65, + "quantity_return_requested": 123.45, "quantity_returned": 987.65, - "quantity_shipped": 987.65, + "quantity_shipped": 123.45, "selected_options": [OrderItemOption], "status": "abc123" } @@ -27118,52 +27030,52 @@
    Example
    {
       "canonical_url": "abc123",
       "categories": [CategoryInterface],
    -  "country_of_manufacture": "xyz789",
    +  "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
       "dynamic_price": true,
    -  "dynamic_sku": false,
    +  "dynamic_sku": true,
       "dynamic_weight": false,
    -  "gift_message_available": false,
    +  "gift_message_available": true,
       "gift_wrapping_available": true,
       "gift_wrapping_price": Money,
       "image": ProductImage,
    -  "is_returnable": "abc123",
    +  "is_returnable": "xyz789",
       "items": [BundleItem],
    -  "manufacturer": 987,
    -  "max_sale_qty": 987.65,
    +  "manufacturer": 123,
    +  "max_sale_qty": 123.45,
       "media_gallery": [MediaGalleryInterface],
       "meta_description": "xyz789",
    -  "meta_keyword": "abc123",
    -  "meta_title": "abc123",
    -  "min_sale_qty": 987.65,
    -  "name": "abc123",
    +  "meta_keyword": "xyz789",
    +  "meta_title": "xyz789",
    +  "min_sale_qty": 123.45,
    +  "name": "xyz789",
       "new_from_date": "xyz789",
       "new_to_date": "abc123",
       "only_x_left_in_stock": 123.45,
       "options": [CustomizableOptionInterface],
    -  "options_container": "abc123",
    +  "options_container": "xyz789",
       "price_details": PriceDetails,
       "price_range": PriceRange,
       "price_tiers": [TierPrice],
       "price_view": "PRICE_RANGE",
       "product_links": [ProductLinksInterface],
    -  "quantity": 987.65,
    +  "quantity": 123.45,
       "related_products": [ProductInterface],
       "ship_bundle_items": "TOGETHER",
       "short_description": ComplexTextValue,
       "sku": "xyz789",
       "small_image": ProductImage,
       "special_price": 123.45,
    -  "special_to_date": "xyz789",
    +  "special_to_date": "abc123",
       "stock_status": "IN_STOCK",
    -  "swatch_image": "xyz789",
    +  "swatch_image": "abc123",
       "thumbnail": ProductImage,
    -  "uid": 4,
    +  "uid": "4",
       "upsell_products": [ProductInterface],
       "url_key": "abc123",
    -  "weight": 987.65
    +  "weight": 123.45
     }
     
    @@ -27233,9 +27145,9 @@
    Example
    "bundle_options": [SelectedBundleOption], "customizable_options": [SelectedCustomizableOption], "product": ProductInterface, - "quantity": 987.65, - "sku": "abc123", - "uid": 4 + "quantity": 123.45, + "sku": "xyz789", + "uid": "4" }
    @@ -27310,10 +27222,10 @@
    Example
    "bundle_options": [ItemSelectedBundleOption], "id": "4", "order_item": OrderItemInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "xyz789", - "quantity_shipped": 123.45 + "product_sku": "abc123", + "quantity_shipped": 987.65 }
    @@ -27386,7 +27298,7 @@
    Fields
    Example
    {
    -  "added_at": "xyz789",
    +  "added_at": "abc123",
       "bundle_options": [SelectedBundleOption],
       "customizable_options": [SelectedCustomizableOption],
       "description": "abc123",
    @@ -27461,12 +27373,12 @@ 
    Fields
    Example
    {
       "color": "xyz789",
    -  "height": 987,
    -  "label": "xyz789",
    -  "layout": "xyz789",
    -  "shape": "xyz789",
    +  "height": 123,
    +  "label": "abc123",
    +  "layout": "abc123",
    +  "shape": "abc123",
       "tagline": false,
    -  "use_default_height": true
    +  "use_default_height": false
     }
     
    @@ -27560,7 +27472,7 @@
    Fields
    Example
    {
       "code": "ORDER_CANCELLATION_DISABLED",
    -  "message": "xyz789"
    +  "message": "abc123"
     }
     
    @@ -27681,7 +27593,10 @@
    Fields
    Example
    -
    {"order_id": 4, "reason": "abc123"}
    +                  
    {
    +  "order_id": "4",
    +  "reason": "xyz789"
    +}
     
    @@ -27733,7 +27648,7 @@
    Fields
    Example
    {
    -  "error": "xyz789",
    +  "error": "abc123",
       "errorV2": CancelOrderError,
       "order": CustomerOrder
     }
    @@ -27773,7 +27688,7 @@ 
    Fields
    Example
    -
    {"description": "abc123"}
    +                  
    {"description": "xyz789"}
     
    @@ -27832,7 +27747,7 @@
    Example
    {
       "bin_details": CardBin,
       "card_expiry_month": "xyz789",
    -  "card_expiry_year": "abc123",
    +  "card_expiry_year": "xyz789",
       "last_digits": "xyz789",
       "name": "abc123"
     }
    @@ -27871,7 +27786,7 @@ 
    Fields
    Example
    -
    {"bin": "xyz789"}
    +                  
    {"bin": "abc123"}
     
    @@ -27974,7 +27889,7 @@
    Example
    {
       "brand": "abc123",
       "expiry": "xyz789",
    -  "last_digits": "abc123"
    +  "last_digits": "xyz789"
     }
     
    @@ -28146,19 +28061,19 @@
    Example
    "available_payment_methods": [AvailablePaymentMethod], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "abc123", + "email": "xyz789", "gift_message": GiftMessage, - "gift_receipt_included": false, + "gift_receipt_included": true, "gift_wrapping": GiftWrapping, "id": "4", "is_virtual": true, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": true, + "printed_card_included": false, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], - "total_quantity": 987.65 + "total_quantity": 123.45 }
    @@ -28205,8 +28120,8 @@
    Fields
    Example
    {
    -  "code": "abc123",
    -  "label": "abc123"
    +  "code": "xyz789",
    +  "label": "xyz789"
     }
     
    @@ -28345,23 +28260,23 @@
    Fields
    Example
    {
    -  "city": "abc123",
    -  "company": "xyz789",
    -  "country_code": "abc123",
    +  "city": "xyz789",
    +  "company": "abc123",
    +  "country_code": "xyz789",
       "custom_attributes": [AttributeValueInput],
       "fax": "xyz789",
    -  "firstname": "xyz789",
    +  "firstname": "abc123",
       "lastname": "abc123",
    -  "middlename": "abc123",
    +  "middlename": "xyz789",
       "postcode": "abc123",
       "prefix": "xyz789",
       "region": "abc123",
    -  "region_id": 987,
    +  "region_id": 123,
       "save_in_address_book": false,
    -  "street": ["xyz789"],
    +  "street": ["abc123"],
       "suffix": "abc123",
    -  "telephone": "xyz789",
    -  "vat_id": "abc123"
    +  "telephone": "abc123",
    +  "vat_id": "xyz789"
     }
     
    @@ -28507,12 +28422,12 @@
    Possible Types
    Example
    {
    -  "city": "abc123",
    +  "city": "xyz789",
       "company": "abc123",
       "country": CartAddressCountry,
       "custom_attributes": [AttributeValueInterface],
    -  "customer_address_uid": "4",
    -  "fax": "abc123",
    +  "customer_address_uid": 4,
    +  "fax": "xyz789",
       "firstname": "xyz789",
       "id": 987,
       "lastname": "abc123",
    @@ -28520,11 +28435,11 @@ 
    Example
    "postcode": "xyz789", "prefix": "abc123", "region": CartAddressRegion, - "street": ["xyz789"], + "street": ["abc123"], "suffix": "xyz789", "telephone": "abc123", "uid": "4", - "vat_id": "abc123" + "vat_id": "xyz789" }
    @@ -28576,9 +28491,9 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    +  "code": "abc123",
       "label": "xyz789",
    -  "region_id": 987
    +  "region_id": 123
     }
     
    @@ -28627,7 +28542,7 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    +  "cart_id": "abc123",
       "custom_attributes": [CustomAttributeInput]
     }
     
    @@ -28728,8 +28643,8 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    -  "cart_item_id": "abc123",
    +  "cart_id": "xyz789",
    +  "cart_item_id": "xyz789",
       "custom_attributes": [CustomAttributeInput]
     }
     
    @@ -28891,10 +28806,10 @@
    Fields
    Example
    {
       "entered_options": [EnteredOptionInput],
    -  "parent_sku": "abc123",
    +  "parent_sku": "xyz789",
       "quantity": 123.45,
    -  "selected_options": ["4"],
    -  "sku": "abc123"
    +  "selected_options": [4],
    +  "sku": "xyz789"
     }
     
    @@ -29055,16 +28970,16 @@
    Example
    "discount": [Discount], "errors": [CartItemError], "is_available": true, - "is_salable": false, - "max_qty": 987.65, - "min_qty": 987.65, + "is_salable": true, + "max_qty": 123.45, + "min_qty": 123.45, "not_available_message": "xyz789", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, "quantity": 987.65, - "uid": 4 + "uid": "4" }
    @@ -29220,7 +29135,7 @@
    Example
    {
       "type": "FIXED",
       "units": "xyz789",
    -  "value": 987.65
    +  "value": 123.45
     }
     
    @@ -29290,7 +29205,7 @@
    Example
    "cart_item_uid": "4", "customizable_options": [CustomizableOptionInput], "gift_message": GiftMessageInput, - "gift_wrapping_id": 4, + "gift_wrapping_id": "4", "quantity": 123.45 }
    @@ -29509,7 +29424,7 @@
    Fields
    Example
    {
       "amount": Money,
    -  "label": "abc123"
    +  "label": "xyz789"
     }
     
    @@ -29878,27 +29793,27 @@
    Fields
    Example
    {
       "apply_to": ["SIMPLE"],
    -  "code": 4,
    +  "code": "4",
       "default_value": "xyz789",
       "entity_type": "CATALOG_PRODUCT",
    -  "frontend_class": "xyz789",
    +  "frontend_class": "abc123",
       "frontend_input": "BOOLEAN",
    -  "is_comparable": true,
    +  "is_comparable": false,
       "is_filterable": true,
       "is_filterable_in_search": true,
       "is_html_allowed_on_front": true,
    -  "is_required": false,
    +  "is_required": true,
       "is_searchable": true,
    -  "is_unique": true,
    +  "is_unique": false,
       "is_used_for_price_rules": true,
       "is_used_for_promo_rules": false,
    -  "is_visible_in_advanced_search": true,
    +  "is_visible_in_advanced_search": false,
       "is_visible_on_front": true,
    -  "is_wysiwyg_enabled": true,
    -  "label": "xyz789",
    +  "is_wysiwyg_enabled": false,
    +  "label": "abc123",
       "options": [CustomAttributeOptionInterface],
       "swatch_input_type": "BOOLEAN",
    -  "update_product_preview_image": false,
    +  "update_product_preview_image": true,
       "use_product_image_for_swatch": true,
       "used_in_product_listing": true
     }
    @@ -29963,7 +29878,7 @@ 
    Example
    {
       "count": 123,
       "id": "4",
    -  "path": "abc123",
    +  "path": "xyz789",
       "title": "xyz789"
     }
     
    @@ -30019,7 +29934,7 @@
    Possible Types
    Example
    -
    {"id": "4"}
    +                  
    {"id": 4}
     
    @@ -30075,9 +29990,9 @@
    Fields
    Example
    {
    -  "url": "abc123",
    +  "url": "xyz789",
       "label": "abc123",
    -  "roles": ["abc123"],
    +  "roles": ["xyz789"],
       "customRoles": ["xyz789"]
     }
     
    @@ -30269,31 +30184,31 @@
    Possible Types
    Example
    {
    -  "available_sort_by": ["abc123"],
    +  "available_sort_by": ["xyz789"],
       "breadcrumbs": [Breadcrumb],
    -  "canonical_url": "abc123",
    +  "canonical_url": "xyz789",
       "children_count": "abc123",
       "custom_layout_update_file": "xyz789",
    -  "default_sort_by": "abc123",
    +  "default_sort_by": "xyz789",
       "description": "xyz789",
       "display_mode": "xyz789",
    -  "filter_price_range": 987.65,
    +  "filter_price_range": 123.45,
       "image": "xyz789",
    -  "include_in_menu": 123,
    -  "is_anchor": 123,
    -  "landing_page": 987,
    -  "level": 987,
    -  "meta_description": "abc123",
    -  "meta_keywords": "xyz789",
    -  "meta_title": "abc123",
    -  "name": "abc123",
    -  "path": "xyz789",
    +  "include_in_menu": 987,
    +  "is_anchor": 987,
    +  "landing_page": 123,
    +  "level": 123,
    +  "meta_description": "xyz789",
    +  "meta_keywords": "abc123",
    +  "meta_title": "xyz789",
    +  "name": "xyz789",
    +  "path": "abc123",
       "path_in_store": "xyz789",
    -  "position": 987,
    -  "product_count": 987,
    -  "uid": "4",
    +  "position": 123,
    +  "product_count": 123,
    +  "uid": 4,
       "url_key": "abc123",
    -  "url_path": "xyz789"
    +  "url_path": "abc123"
     }
     
    @@ -30346,8 +30261,8 @@
    Fields
    Example
    {
       "title": "xyz789",
    -  "description": "xyz789",
    -  "keywords": ["abc123"]
    +  "description": "abc123",
    +  "keywords": ["xyz789"]
     }
     
    @@ -30400,7 +30315,7 @@
    Fields
    Example
    {
       "slug": "abc123",
    -  "name": "abc123",
    +  "name": "xyz789",
       "children": [CategoryNavigationView]
     }
     
    @@ -30458,8 +30373,8 @@
    Fields
    Example
    {
    -  "name": "xyz789",
    -  "slug": "abc123",
    +  "name": "abc123",
    +  "slug": "xyz789",
       "level": 123,
       "parents": [CategoryProductView]
     }
    @@ -30635,30 +30550,30 @@ 
    Fields
    Example
    {
    -  "available_sort_by": ["abc123"],
    +  "available_sort_by": ["xyz789"],
       "breadcrumbs": [Breadcrumb],
       "canonical_url": "xyz789",
    -  "children_count": "abc123",
    +  "children_count": "xyz789",
       "custom_layout_update_file": "abc123",
    -  "default_sort_by": "xyz789",
    +  "default_sort_by": "abc123",
       "description": "xyz789",
    -  "display_mode": "abc123",
    +  "display_mode": "xyz789",
       "filter_price_range": 987.65,
       "image": "xyz789",
    -  "include_in_menu": 123,
    -  "is_anchor": 123,
    -  "landing_page": 123,
    -  "level": 123,
    +  "include_in_menu": 987,
    +  "is_anchor": 987,
    +  "landing_page": 987,
    +  "level": 987,
       "meta_description": "abc123",
       "meta_keywords": "xyz789",
    -  "meta_title": "xyz789",
    -  "name": "xyz789",
    +  "meta_title": "abc123",
    +  "name": "abc123",
       "path": "abc123",
    -  "path_in_store": "abc123",
    -  "position": 123,
    -  "product_count": 123,
    -  "uid": "4",
    -  "url_key": "xyz789",
    +  "path_in_store": "xyz789",
    +  "position": 987,
    +  "product_count": 987,
    +  "uid": 4,
    +  "url_key": "abc123",
       "url_path": "xyz789"
     }
     
    @@ -30737,7 +30652,7 @@
    Fields
    Example
    {
       "slug": "abc123",
    -  "name": "xyz789",
    +  "name": "abc123",
       "description": "xyz789",
       "metaTags": CategoryMetaTags,
       "images": [CategoryImage],
    @@ -30861,15 +30776,15 @@ 
    Example
    "defaultSortBy": "abc123", "id": 4, "level": 987, - "name": "xyz789", + "name": "abc123", "parentId": "abc123", "position": 987, "path": "abc123", - "roles": ["abc123"], - "urlKey": "xyz789", + "roles": ["xyz789"], + "urlKey": "abc123", "urlPath": "xyz789", - "count": 123, - "title": "abc123" + "count": 987, + "title": "xyz789" }
    @@ -30969,15 +30884,15 @@
    Possible Types
    Example
    {
    -  "availableSortBy": ["abc123"],
    +  "availableSortBy": ["xyz789"],
       "defaultSortBy": "xyz789",
    -  "id": "4",
    -  "level": 987,
    -  "name": "abc123",
    +  "id": 4,
    +  "level": 123,
    +  "name": "xyz789",
       "path": "abc123",
    -  "roles": ["xyz789"],
    -  "urlKey": "abc123",
    -  "urlPath": "abc123"
    +  "roles": ["abc123"],
    +  "urlKey": "xyz789",
    +  "urlPath": "xyz789"
     }
     
    @@ -31052,7 +30967,7 @@
    Possible Types
    Example
    {
       "slug": "xyz789",
    -  "name": "xyz789"
    +  "name": "abc123"
     }
     
    @@ -31127,10 +31042,10 @@
    Example
    "agreement_id": 987, "checkbox_text": "xyz789", "content": "xyz789", - "content_height": "xyz789", + "content_height": "abc123", "is_html": false, "mode": "AUTO", - "name": "abc123" + "name": "xyz789" }
    @@ -31231,7 +31146,7 @@
    Example
    {
       "code": "REORDER_NOT_AVAILABLE",
       "message": "xyz789",
    -  "path": ["abc123"]
    +  "path": ["xyz789"]
     }
     
    @@ -31343,7 +31258,7 @@
    Fields
    Example
    -
    {"cart": Cart, "status": true}
    +                  
    {"cart": Cart, "status": false}
     
    @@ -31678,7 +31593,7 @@
    Fields
    Example
    -
    {"priceBookId": 4}
    +                  
    {"priceBookId": "4"}
     
    @@ -32048,10 +31963,10 @@
    Example
    "credit": CompanyCredit, "credit_history": CompanyCreditHistory, "custom_attributes": [CustomAttribute], - "email": "abc123", + "email": "xyz789", "id": 4, "legal_address": CompanyLegalAddress, - "legal_name": "abc123", + "legal_name": "xyz789", "name": "abc123", "payment_methods": ["abc123"], "reseller_id": "xyz789", @@ -32063,7 +31978,7 @@
    Example
    "team": CompanyTeam, "user": Customer, "users": CompanyUsers, - "vat_tax_id": "xyz789" + "vat_tax_id": "abc123" }
    @@ -32122,7 +32037,7 @@
    Example
    {
       "children": [CompanyAclResource],
       "id": "4",
    -  "sort_order": 123,
    +  "sort_order": 987,
       "text": "xyz789"
     }
     
    @@ -32204,9 +32119,9 @@
    Example
    {
       "custom_attributes": [AttributeValueInput],
       "email": "xyz789",
    -  "firstname": "abc123",
    +  "firstname": "xyz789",
       "gender": 123,
    -  "job_title": "xyz789",
    +  "job_title": "abc123",
       "lastname": "abc123",
       "telephone": "abc123"
     }
    @@ -32258,7 +32173,7 @@ 
    Fields
    Example
    {
       "code": "xyz789",
    -  "title": "xyz789"
    +  "title": "abc123"
     }
     
    @@ -32320,9 +32235,9 @@
    Fields
    Example
    {
    -  "id": "4",
    +  "id": 4,
       "is_admin": true,
    -  "legal_name": "abc123",
    +  "legal_name": "xyz789",
       "name": "xyz789",
       "status": "PENDING"
     }
    @@ -32408,7 +32323,7 @@ 
    Example
    "company_name": "xyz789", "legal_address": CompanyLegalAddressCreateInput, "legal_name": "xyz789", - "reseller_id": "xyz789", + "reseller_id": "abc123", "vat_tax_id": "abc123" }
    @@ -32650,7 +32565,7 @@
    Example
    "amount": Money, "balance": CompanyCredit, "custom_reference_number": "xyz789", - "date": "xyz789", + "date": "abc123", "type": "ALLOCATION", "updated_by": CompanyCreditOperationUser } @@ -32961,7 +32876,7 @@
    Fields
    Example
    -
    {"success": false}
    +                  
    {"success": true}
     
    @@ -33027,7 +32942,7 @@
    Fields
    Example
    {
    -  "company_id": 4,
    +  "company_id": "4",
       "customer_id": "4",
       "job_title": "abc123",
       "status": "ACTIVE",
    @@ -33098,11 +33013,11 @@ 
    Fields
    Example
    {
    -  "city": "abc123",
    +  "city": "xyz789",
       "country_code": "AF",
    -  "postcode": "xyz789",
    +  "postcode": "abc123",
       "region": CustomerAddressRegion,
    -  "street": ["abc123"],
    +  "street": ["xyz789"],
       "telephone": "abc123"
     }
     
    @@ -33180,8 +33095,8 @@
    Example
    "country_id": "AF", "postcode": "xyz789", "region": CustomerAddressRegionInput, - "street": ["xyz789"], - "telephone": "abc123" + "street": ["abc123"], + "telephone": "xyz789" }
    @@ -33258,7 +33173,7 @@
    Example
    "country_id": "AF", "postcode": "xyz789", "region": CustomerAddressRegionInput, - "street": ["xyz789"], + "street": ["abc123"], "telephone": "abc123" }
    @@ -33317,7 +33232,7 @@
    Fields
    Example
    {
       "id": 4,
    -  "name": "abc123",
    +  "name": "xyz789",
       "permissions": [CompanyAclResource],
       "users_count": 123
     }
    @@ -33369,7 +33284,7 @@ 
    Fields
    Example
    {
       "name": "abc123",
    -  "permissions": ["abc123"]
    +  "permissions": ["xyz789"]
     }
     
    @@ -33424,8 +33339,8 @@
    Fields
    Example
    {
    -  "id": 4,
    -  "name": "abc123",
    +  "id": "4",
    +  "name": "xyz789",
       "permissions": ["xyz789"]
     }
     
    @@ -33827,8 +33742,8 @@
    Fields
    Example
    {
    -  "description": "abc123",
    -  "id": "4",
    +  "description": "xyz789",
    +  "id": 4,
       "name": "abc123",
       "structure_id": "4"
     }
    @@ -33887,7 +33802,7 @@ 
    Example
    {
       "description": "xyz789",
       "name": "xyz789",
    -  "target_id": 4
    +  "target_id": "4"
     }
     
    @@ -33942,8 +33857,8 @@
    Fields
    Example
    {
    -  "description": "abc123",
    -  "id": "4",
    +  "description": "xyz789",
    +  "id": 4,
       "name": "abc123"
     }
     
    @@ -34020,9 +33935,9 @@
    Example
    "company_email": "xyz789", "company_name": "abc123", "legal_address": CompanyLegalAddressUpdateInput, - "legal_name": "xyz789", - "reseller_id": "abc123", - "vat_tax_id": "xyz789" + "legal_name": "abc123", + "reseller_id": "xyz789", + "vat_tax_id": "abc123" }
    @@ -34107,14 +34022,14 @@
    Fields
    Example
    {
    -  "email": "abc123",
    +  "email": "xyz789",
       "firstname": "abc123",
       "job_title": "abc123",
    -  "lastname": "xyz789",
    -  "role_id": "4",
    +  "lastname": "abc123",
    +  "role_id": 4,
       "status": "ACTIVE",
       "target_id": "4",
    -  "telephone": "xyz789"
    +  "telephone": "abc123"
     }
     
    @@ -34247,11 +34162,11 @@
    Fields
    Example
    {
       "email": "xyz789",
    -  "firstname": "xyz789",
    -  "id": 4,
    -  "job_title": "abc123",
    +  "firstname": "abc123",
    +  "id": "4",
    +  "job_title": "xyz789",
       "lastname": "xyz789",
    -  "role_id": 4,
    +  "role_id": "4",
       "status": "ACTIVE",
       "telephone": "xyz789"
     }
    @@ -34451,7 +34366,7 @@ 
    Example
    {
       "attributes": [ProductAttribute],
       "product": ProductInterface,
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -34511,7 +34426,7 @@
    Example
    "attributes": [ComparableAttribute], "item_count": 987, "items": [ComparableItem], - "uid": "4" + "uid": 4 }
    @@ -34560,49 +34475,9 @@
    Fields
    Example
    {
    -  "cartId": "xyz789",
    -  "id": "abc123"
    +  "cartId": "abc123",
    +  "id": "xyz789"
     }
    -
    -
    - - back to top - -
    -
    -
    - Types -
    -

    CompletePayByLinkPaymentOutput

    -
    -
    -
    -
    Description
    -

    Result of completing a Pay By Link payment.

    -
    -
    -
    Fields
    - - - - - - - - - - - - - -
    Field NameDescription
    order_number - String! - The increment id of the order whose payment was completed.
    -
    -
    -
    -
    -
    Example
    -
    {"order_number": "xyz789"}
     
    @@ -34832,25 +34707,25 @@
    Example
    {
       "addToCartAllowed": false,
       "inStock": false,
    -  "lowStock": false,
    +  "lowStock": true,
       "attributes": [ProductViewAttribute],
       "description": "xyz789",
       "id": "4",
       "images": [ProductViewImage],
       "videos": [ProductViewVideo],
       "lastModifiedAt": "2007-12-03T10:15:30Z",
    -  "metaDescription": "xyz789",
    +  "metaDescription": "abc123",
       "metaKeyword": "xyz789",
       "metaTitle": "abc123",
       "name": "abc123",
       "inputOptions": [ProductViewInputOption],
       "options": [ProductViewOption],
       "priceRange": ProductViewPriceRange,
    -  "shortDescription": "xyz789",
    -  "sku": "abc123",
    -  "externalId": "abc123",
    +  "shortDescription": "abc123",
    +  "sku": "xyz789",
    +  "externalId": "xyz789",
       "url": "abc123",
    -  "urlKey": "abc123",
    +  "urlKey": "xyz789",
       "links": [ProductViewLink],
       "categories": [CategoryProductView],
       "queryType": "xyz789",
    @@ -34891,7 +34766,7 @@ 
    Fields
    Example
    -
    {"html": "abc123"}
    +                  
    {"html": "xyz789"}
     
    @@ -34946,7 +34821,7 @@
    Example
    {
       "field": "UNKNOWN_FIELD",
       "operator": OperatorInput,
    -  "enabled": true
    +  "enabled": false
     }
     
    @@ -35003,9 +34878,9 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    +  "code": "abc123",
       "label": "xyz789",
    -  "uid": "4",
    +  "uid": 4,
       "value_index": 987
     }
     
    @@ -35151,7 +35026,7 @@
    Fields
    Example
    {
       "available_gift_wrapping": [GiftWrapping],
    -  "backorder_message": "abc123",
    +  "backorder_message": "xyz789",
       "configurable_options": [SelectedConfigurableOption],
       "configured_variant": ProductInterface,
       "custom_attributes": [CustomAttribute],
    @@ -35160,11 +35035,11 @@ 
    Example
    "errors": [CartItemError], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "is_available": true, + "is_available": false, "is_salable": true, "max_qty": 123.45, - "min_qty": 987.65, - "not_available_message": "abc123", + "min_qty": 123.45, + "not_available_message": "xyz789", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, @@ -35217,8 +35092,8 @@
    Fields
    Example
    {
    -  "attribute_code": "xyz789",
    -  "option_value_uids": [4]
    +  "attribute_code": "abc123",
    +  "option_value_uids": ["4"]
     }
     
    @@ -35382,20 +35257,20 @@
    Example
    "parent_sku": "abc123", "prices": OrderItemPrices, "product": ProductInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, - "product_sku": "abc123", - "product_type": "xyz789", + "product_sku": "xyz789", + "product_type": "abc123", "product_url_key": "abc123", - "quantity_canceled": 123.45, - "quantity_invoiced": 987.65, + "quantity_canceled": 987.65, + "quantity_invoiced": 123.45, "quantity_ordered": 123.45, "quantity_refunded": 123.45, - "quantity_return_requested": 987.65, + "quantity_return_requested": 123.45, "quantity_returned": 123.45, - "quantity_shipped": 987.65, + "quantity_shipped": 123.45, "selected_options": [OrderItemOption], - "status": "xyz789" + "status": "abc123" }
    @@ -35678,7 +35553,7 @@
    filters
    Example
    {
    -  "canonical_url": "xyz789",
    +  "canonical_url": "abc123",
       "categories": [CategoryInterface],
       "configurable_options": [ConfigurableProductOptions],
       "configurable_product_options_selection": ConfigurableProductOptionsSelection,
    @@ -35690,20 +35565,20 @@ 
    Example
    "gift_wrapping_available": true, "gift_wrapping_price": Money, "image": ProductImage, - "is_returnable": "xyz789", + "is_returnable": "abc123", "manufacturer": 987, - "max_sale_qty": 123.45, + "max_sale_qty": 987.65, "media_gallery": [MediaGalleryInterface], - "meta_description": "abc123", - "meta_keyword": "abc123", + "meta_description": "xyz789", + "meta_keyword": "xyz789", "meta_title": "abc123", "min_sale_qty": 987.65, "name": "xyz789", - "new_from_date": "abc123", + "new_from_date": "xyz789", "new_to_date": "abc123", "only_x_left_in_stock": 123.45, "options": [CustomizableOptionInterface], - "options_container": "xyz789", + "options_container": "abc123", "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], @@ -35712,12 +35587,12 @@
    Example
    "short_description": ComplexTextValue, "sku": "xyz789", "small_image": ProductImage, - "special_price": 987.65, + "special_price": 123.45, "special_to_date": "xyz789", "stock_status": "IN_STOCK", "swatch_image": "xyz789", "thumbnail": ProductImage, - "uid": "4", + "uid": 4, "upsell_products": [ProductInterface], "url_key": "abc123", "variants": [ConfigurableVariant], @@ -35778,9 +35653,9 @@
    Fields
    Example
    {
    -  "attribute_code": "abc123",
    -  "label": "abc123",
    -  "uid": 4,
    +  "attribute_code": "xyz789",
    +  "label": "xyz789",
    +  "uid": "4",
       "values": [ConfigurableProductOptionValue]
     }
     
    @@ -35844,8 +35719,8 @@
    Fields
    Example
    {
       "is_available": true,
    -  "is_use_default": true,
    -  "label": "abc123",
    +  "is_use_default": false,
    +  "label": "xyz789",
       "swatch": SwatchDataInterface,
       "uid": "4"
     }
    @@ -35921,9 +35796,9 @@ 
    Example
    {
       "attribute_code": "xyz789",
       "attribute_uid": 4,
    -  "label": "xyz789",
    +  "label": "abc123",
       "position": 123,
    -  "uid": 4,
    +  "uid": "4",
       "use_default": true,
       "values": [ConfigurableProductOptionsValues]
     }
    @@ -36054,12 +35929,12 @@ 
    Fields
    Example
    {
    -  "default_label": "abc123",
    +  "default_label": "xyz789",
       "label": "abc123",
    -  "store_label": "xyz789",
    +  "store_label": "abc123",
       "swatch_data": SwatchDataInterface,
    -  "uid": 4,
    -  "use_default_value": false
    +  "uid": "4",
    +  "use_default_value": true
     }
     
    @@ -36129,9 +36004,9 @@
    Example
    "configurable_options": [SelectedConfigurableOption], "customizable_options": [SelectedCustomizableOption], "product": ProductInterface, - "quantity": 123.45, + "quantity": 987.65, "sku": "abc123", - "uid": 4 + "uid": "4" }
    @@ -36264,7 +36139,7 @@
    Example
    "description": "xyz789", "id": 4, "product": ProductInterface, - "quantity": 123.45 + "quantity": 987.65 }
    @@ -36309,7 +36184,7 @@
    Fields
    Example
    {
    -  "confirmation_key": "xyz789",
    +  "confirmation_key": "abc123",
       "order_id": "4"
     }
     
    @@ -36360,7 +36235,7 @@
    Fields
    Example
    {
       "confirmation_key": "xyz789",
    -  "email": "xyz789"
    +  "email": "abc123"
     }
     
    @@ -36510,10 +36385,10 @@
    Fields
    Example
    {
    -  "comment": "abc123",
    +  "comment": "xyz789",
       "email": "xyz789",
    -  "name": "xyz789",
    -  "telephone": "xyz789"
    +  "name": "abc123",
    +  "telephone": "abc123"
     }
     
    @@ -36595,7 +36470,7 @@
    Fields
    Example
    -
    {"requisitionListItemUids": [4]}
    +                  
    {"requisitionListItemUids": ["4"]}
     
    @@ -36754,9 +36629,9 @@
    Example
    "available_regions": [Region], "full_name_english": "xyz789", "full_name_locale": "xyz789", - "id": "abc123", + "id": "xyz789", "three_letter_abbreviation": "xyz789", - "two_letter_abbreviation": "abc123" + "two_letter_abbreviation": "xyz789" }
    @@ -38463,7 +38338,7 @@
    Fields
    Example
    -
    {"products": ["4"]}
    +                  
    {"products": [4]}
     
    @@ -38550,8 +38425,8 @@
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "event_name": "xyz789", - "gift_registry_type_uid": "4", + "event_name": "abc123", + "gift_registry_type_uid": 4, "message": "xyz789", "privacy_settings": "PRIVATE", "registrants": [AddGiftRegistryRegistrantInput], @@ -38736,11 +38611,11 @@
    Fields
    Example
    {
    -  "cartId": "abc123",
    +  "cartId": "xyz789",
       "location": "PRODUCT_DETAIL",
    -  "methodCode": "xyz789",
    -  "paymentSource": "abc123",
    -  "vaultIntent": false
    +  "methodCode": "abc123",
    +  "paymentSource": "xyz789",
    +  "vaultIntent": true
     }
     
    @@ -38802,11 +38677,11 @@
    Fields
    Example
    {
    -  "amount": 987.65,
    +  "amount": 123.45,
       "currency_code": "xyz789",
    -  "id": "xyz789",
    -  "mp_order_id": "abc123",
    -  "status": "xyz789"
    +  "id": "abc123",
    +  "mp_order_id": "xyz789",
    +  "status": "abc123"
     }
     
    @@ -38917,7 +38792,7 @@
    Example
    "amount": CreatePurchaseOrderApprovalRuleConditionAmountInput, "attribute": "GRAND_TOTAL", "operator": "MORE_THAN", - "quantity": 123 + "quantity": 987 }
    @@ -38966,7 +38841,7 @@
    Fields
    Example
    {
    -  "description": "abc123",
    +  "description": "xyz789",
       "name": "abc123"
     }
     
    @@ -39057,7 +38932,7 @@
    Fields
    Example
    {
       "card_description": "xyz789",
    -  "setup_token_id": "abc123"
    +  "setup_token_id": "xyz789"
     }
     
    @@ -39351,7 +39226,7 @@
    Example
    {
       "comments": [SalesCommentItem],
       "custom_attributes": [CustomAttribute],
    -  "id": 4,
    +  "id": "4",
       "items": [CreditMemoItemInterface],
       "number": "xyz789",
       "total": CreditMemoTotal
    @@ -39481,9 +39356,9 @@ 
    Example
    "discounts": [Discount], "id": 4, "order_item": OrderItemInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "abc123", + "product_sku": "xyz789", "quantity_refunded": 987.65 }
    @@ -39539,8 +39414,8 @@
    Fields
    Example
    {
    -  "credit_memo_id": "xyz789",
    -  "credit_memo_item_id": "xyz789",
    +  "credit_memo_id": "abc123",
    +  "credit_memo_item_id": "abc123",
       "custom_attributes": [CustomAttributeInput]
     }
     
    @@ -39854,7 +39729,7 @@
    Example
    "base_currency_code": "abc123", "base_currency_symbol": "xyz789", "default_display_currency_code": "xyz789", - "default_display_currency_symbol": "abc123", + "default_display_currency_symbol": "xyz789", "exchange_rates": [ExchangeRate] }
    @@ -41121,7 +40996,7 @@
    Fields
    Example
    -
    {"sku": "abc123", "price": 987.65}
    +                  
    {"sku": "xyz789", "price": 123.45}
     
    @@ -41167,8 +41042,8 @@
    Fields
    Example
    {
    -  "attribute_code": "abc123",
    -  "value": "abc123"
    +  "attribute_code": "xyz789",
    +  "value": "xyz789"
     }
     
    @@ -41218,7 +41093,7 @@
    Fields
    Example
    {
       "attribute_code": "abc123",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -41333,12 +41208,12 @@
    Possible Types
    Example
    {
       "code": 4,
    -  "default_value": "abc123",
    +  "default_value": "xyz789",
       "entity_type": "CATALOG_PRODUCT",
       "frontend_class": "xyz789",
       "frontend_input": "BOOLEAN",
    -  "is_required": false,
    -  "is_unique": false,
    +  "is_required": true,
    +  "is_unique": true,
       "label": "xyz789",
       "options": [CustomAttributeOptionInterface]
     }
    @@ -41405,8 +41280,8 @@ 
    Possible Types
    Example
    {
    -  "is_default": true,
    -  "label": "xyz789",
    +  "is_default": false,
    +  "label": "abc123",
       "value": "abc123"
     }
     
    @@ -41456,7 +41331,7 @@
    Fields
    Example
    {
    -  "key": "abc123",
    +  "key": "xyz789",
       "value": "xyz789"
     }
     
    @@ -42100,24 +41975,24 @@
    Example
    "addresses": [CustomerAddress], "addressesV2": CustomerAddresses, "admin_assistance_actions": AdminAssistanceActions, - "allow_remote_shopping_assistance": false, + "allow_remote_shopping_assistance": true, "companies": UserCompaniesOutput, "company_hierarchy": [CompanyHierarchy], "compare_list": CompareList, "confirmation_status": "ACCOUNT_CONFIRMED", - "created_at": "abc123", + "created_at": "xyz789", "custom_attributes": [AttributeValueInterface], "date_of_birth": "xyz789", - "default_billing": "xyz789", + "default_billing": "abc123", "default_shipping": "xyz789", - "email": "xyz789", - "firstname": "abc123", + "email": "abc123", + "firstname": "xyz789", "gender": 987, "gift_registries": [GiftRegistry], "gift_registry": GiftRegistry, "group": CustomerGroupStorefront, - "id": "4", - "is_subscribed": true, + "id": 4, + "is_subscribed": false, "job_title": "abc123", "lastname": "abc123", "middlename": "xyz789", @@ -42128,7 +42003,7 @@
    Example
    "purchase_order_approval_rule_metadata": PurchaseOrderApprovalRuleMetadata, "purchase_order_approval_rules": PurchaseOrderApprovalRules, "purchase_orders": PurchaseOrders, - "purchase_orders_enabled": false, + "purchase_orders_enabled": true, "quote_enabled": true, "requisition_lists": RequisitionLists, "return": Return, @@ -42138,9 +42013,9 @@
    Example
    "segments": [CustomerSegmentStorefront], "status": "ACTIVE", "store_credit": CustomerStoreCredit, - "structure_id": 4, + "structure_id": "4", "suffix": "xyz789", - "taxvat": "abc123", + "taxvat": "xyz789", "team": CompanyTeam, "telephone": "xyz789", "wishlist_v2": Wishlist, @@ -42300,27 +42175,27 @@
    attributeCodes
    Example
    {
    -  "city": "xyz789",
    -  "company": "xyz789",
    +  "city": "abc123",
    +  "company": "abc123",
       "country_code": "AF",
       "custom_attributesV2": [AttributeValueInterface],
    -  "default_billing": false,
    +  "default_billing": true,
       "default_shipping": true,
       "extension_attributes": [CustomerAddressAttribute],
    -  "fax": "abc123",
    +  "fax": "xyz789",
       "firstname": "xyz789",
       "id": 123,
       "lastname": "abc123",
       "middlename": "xyz789",
       "postcode": "abc123",
    -  "prefix": "abc123",
    +  "prefix": "xyz789",
       "region": CustomerAddressRegion,
       "region_id": 123,
       "street": ["xyz789"],
       "suffix": "abc123",
    -  "telephone": "xyz789",
    -  "uid": 4,
    -  "vat_id": "xyz789"
    +  "telephone": "abc123",
    +  "uid": "4",
    +  "vat_id": "abc123"
     }
     
    @@ -42367,7 +42242,7 @@
    Fields
    Example
    {
    -  "attribute_code": "abc123",
    +  "attribute_code": "xyz789",
       "value": "xyz789"
     }
     
    @@ -42512,18 +42387,18 @@
    Example
    "country_code": "AF", "custom_attributesV2": [AttributeValueInput], "default_billing": false, - "default_shipping": false, - "fax": "abc123", - "firstname": "xyz789", - "lastname": "xyz789", - "middlename": "xyz789", + "default_shipping": true, + "fax": "xyz789", + "firstname": "abc123", + "lastname": "abc123", + "middlename": "abc123", "postcode": "abc123", - "prefix": "xyz789", + "prefix": "abc123", "region": CustomerAddressRegionInput, "street": ["xyz789"], - "suffix": "abc123", - "telephone": "abc123", - "vat_id": "abc123" + "suffix": "xyz789", + "telephone": "xyz789", + "vat_id": "xyz789" }
    @@ -42576,7 +42451,7 @@
    Fields
    Example
    {
       "region": "xyz789",
    -  "region_code": "abc123",
    +  "region_code": "xyz789",
       "region_id": 987
     }
     
    @@ -42633,8 +42508,8 @@
    Fields
    Example
    {
       "region": "xyz789",
    -  "region_code": "abc123",
    -  "region_id": 123
    +  "region_code": "xyz789",
    +  "region_id": 987
     }
     
    @@ -42684,7 +42559,7 @@
    Example
    {
       "items": [CustomerAddress],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -42789,15 +42664,15 @@
    Example
    "code": 4, "default_value": "xyz789", "entity_type": "CATALOG_PRODUCT", - "frontend_class": "abc123", + "frontend_class": "xyz789", "frontend_input": "BOOLEAN", "input_filter": "NONE", - "is_required": true, + "is_required": false, "is_unique": false, "label": "abc123", "multiline_count": 123, "options": [CustomAttributeOptionInterface], - "sort_order": 987, + "sort_order": 123, "validate_rules": [ValidationRule] }
    @@ -42916,16 +42791,16 @@
    Example
    "allow_remote_shopping_assistance": false, "custom_attributes": [AttributeValueInput], "date_of_birth": "xyz789", - "email": "abc123", - "firstname": "xyz789", - "gender": 987, - "is_subscribed": false, - "lastname": "abc123", - "middlename": "abc123", + "email": "xyz789", + "firstname": "abc123", + "gender": 123, + "is_subscribed": true, + "lastname": "xyz789", + "middlename": "xyz789", "password": "xyz789", - "prefix": "xyz789", - "suffix": "xyz789", - "taxvat": "abc123" + "prefix": "abc123", + "suffix": "abc123", + "taxvat": "xyz789" }
    @@ -42987,11 +42862,11 @@
    Fields
    Example
    {
    -  "date": "abc123",
    +  "date": "xyz789",
       "download_url": "abc123",
    -  "order_increment_id": "xyz789",
    +  "order_increment_id": "abc123",
       "remaining_downloads": "abc123",
    -  "status": "xyz789"
    +  "status": "abc123"
     }
     
    @@ -43072,7 +42947,7 @@
    Fields
    Example
    -
    {"uid": 4}
    +                  
    {"uid": "4"}
     
    @@ -43305,20 +43180,20 @@
    Example
    "gift_wrapping": GiftWrapping, "id": "4", "invoices": [Invoice], - "is_virtual": false, + "is_virtual": true, "items": [OrderItemInterface], "items_eligible_for_return": [OrderItemInterface], "negotiable_quote": NegotiableQuote, - "number": "abc123", - "order_date": "xyz789", - "order_status_change_date": "xyz789", + "number": "xyz789", + "order_date": "abc123", + "order_status_change_date": "abc123", "payment_methods": [OrderPaymentMethod], "printed_card_included": true, "returns": Returns, "shipments": [OrderShipment], "shipping_address": OrderAddress, "shipping_method": "abc123", - "status": "abc123", + "status": "xyz789", "token": "xyz789", "total": OrderTotal } @@ -43474,7 +43349,7 @@
    Example
    "date_of_first_order": "abc123", "items": [CustomerOrder], "page_info": SearchResultPageInfo, - "total_count": 123 + "total_count": 987 }
    @@ -43659,7 +43534,7 @@
    Fields
    Example
    -
    {"uid": 4}
    +                  
    {"uid": "4"}
     
    @@ -43731,7 +43606,7 @@
    Example
    {
       "balance_history": CustomerStoreCreditHistory,
       "current_balance": Money,
    -  "enabled": true
    +  "enabled": false
     }
     
    @@ -43785,7 +43660,7 @@
    Example
    {
       "items": [CustomerStoreCreditHistoryItem],
       "page_info": SearchResultPageInfo,
    -  "total_count": 123
    +  "total_count": 987
     }
     
    @@ -43842,7 +43717,7 @@
    Fields
    Example
    {
    -  "action": "abc123",
    +  "action": "xyz789",
       "actual_balance": Money,
       "balance_change": Money,
       "date_time_changed": "abc123"
    @@ -43886,7 +43761,7 @@ 
    Fields
    Example
    -
    {"token": "xyz789"}
    +                  
    {"token": "abc123"}
     
    @@ -43991,10 +43866,10 @@
    Example
    "allow_remote_shopping_assistance": true, "custom_attributes": [AttributeValueInput], "date_of_birth": "xyz789", - "firstname": "abc123", + "firstname": "xyz789", "gender": 123, "is_subscribed": true, - "lastname": "xyz789", + "lastname": "abc123", "middlename": "xyz789", "prefix": "xyz789", "suffix": "xyz789", @@ -44065,11 +43940,11 @@
    Fields
    Example
    {
    -  "product_sku": "abc123",
    -  "required": true,
    -  "sort_order": 123,
    +  "product_sku": "xyz789",
    +  "required": false,
    +  "sort_order": 987,
       "title": "abc123",
    -  "uid": 4,
    +  "uid": "4",
       "value": CustomizableAreaValue
     }
     
    @@ -44133,7 +44008,7 @@
    Fields
    Example
    {
       "max_characters": 987,
    -  "price": 987.65,
    +  "price": 123.45,
       "price_type": "FIXED",
       "sku": "xyz789",
       "uid": "4"
    @@ -44198,9 +44073,9 @@ 
    Fields
    Example
    {
    -  "required": true,
    +  "required": false,
       "sort_order": 123,
    -  "title": "xyz789",
    +  "title": "abc123",
       "uid": "4",
       "value": [CustomizableCheckboxValue]
     }
    @@ -44274,12 +44149,12 @@ 
    Fields
    Example
    {
    -  "option_type_id": 987,
    +  "option_type_id": 123,
       "price": 987.65,
       "price_type": "FIXED",
       "sku": "abc123",
       "sort_order": 123,
    -  "title": "abc123",
    +  "title": "xyz789",
       "uid": "4"
     }
     
    @@ -44350,8 +44225,8 @@
    Example
    "product_sku": "xyz789", "required": false, "sort_order": 987, - "title": "abc123", - "uid": "4", + "title": "xyz789", + "uid": 4, "value": CustomizableDateValue }
    @@ -44474,7 +44349,7 @@
    Example
    "price_type": "FIXED", "sku": "abc123", "type": "DATE", - "uid": "4" + "uid": 4 }
    @@ -44536,10 +44411,10 @@
    Fields
    Example
    {
    -  "required": false,
    +  "required": true,
       "sort_order": 987,
    -  "title": "xyz789",
    -  "uid": "4",
    +  "title": "abc123",
    +  "uid": 4,
       "value": [CustomizableDropDownValue]
     }
     
    @@ -44612,13 +44487,13 @@
    Fields
    Example
    {
    -  "option_type_id": 987,
    +  "option_type_id": 123,
       "price": 987.65,
       "price_type": "FIXED",
    -  "sku": "xyz789",
    -  "sort_order": 123,
    -  "title": "xyz789",
    -  "uid": "4"
    +  "sku": "abc123",
    +  "sort_order": 987,
    +  "title": "abc123",
    +  "uid": 4
     }
     
    @@ -44685,9 +44560,9 @@
    Fields
    Example
    {
    -  "product_sku": "xyz789",
    +  "product_sku": "abc123",
       "required": true,
    -  "sort_order": 987,
    +  "sort_order": 123,
       "title": "abc123",
       "uid": 4,
       "value": CustomizableFieldValue
    @@ -44756,7 +44631,7 @@ 
    Example
    "price": 987.65, "price_type": "FIXED", "sku": "xyz789", - "uid": "4" + "uid": 4 }
    @@ -44823,11 +44698,11 @@
    Fields
    Example
    {
    -  "product_sku": "xyz789",
    -  "required": true,
    -  "sort_order": 123,
    -  "title": "abc123",
    -  "uid": "4",
    +  "product_sku": "abc123",
    +  "required": false,
    +  "sort_order": 987,
    +  "title": "xyz789",
    +  "uid": 4,
       "value": CustomizableFileValue
     }
     
    @@ -44900,13 +44775,13 @@
    Fields
    Example
    {
    -  "file_extension": "abc123",
    -  "image_size_x": 123,
    -  "image_size_y": 123,
    +  "file_extension": "xyz789",
    +  "image_size_x": 987,
    +  "image_size_y": 987,
       "price": 987.65,
       "price_type": "FIXED",
    -  "sku": "abc123",
    -  "uid": "4"
    +  "sku": "xyz789",
    +  "uid": 4
     }
     
    @@ -44969,9 +44844,9 @@
    Fields
    Example
    {
       "required": false,
    -  "sort_order": 123,
    +  "sort_order": 987,
       "title": "abc123",
    -  "uid": 4,
    +  "uid": "4",
       "value": [CustomizableMultipleValue]
     }
     
    @@ -45044,8 +44919,8 @@
    Fields
    Example
    {
    -  "option_type_id": 987,
    -  "price": 123.45,
    +  "option_type_id": 123,
    +  "price": 987.65,
       "price_type": "FIXED",
       "sku": "abc123",
       "sort_order": 123,
    @@ -45098,7 +44973,10 @@ 
    Fields
    Example
    -
    {"uid": 4, "value_string": "xyz789"}
    +                  
    {
    +  "uid": "4",
    +  "value_string": "abc123"
    +}
     
    @@ -45208,7 +45086,7 @@
    Example
    {
       "required": false,
       "sort_order": 123,
    -  "title": "abc123",
    +  "title": "xyz789",
       "uid": 4
     }
     
    @@ -45356,7 +45234,7 @@
    Example
    "required": true, "sort_order": 987, "title": "abc123", - "uid": "4", + "uid": 4, "value": [CustomizableRadioValue] }
    @@ -45433,9 +45311,9 @@
    Example
    "price": 987.65, "price_type": "FIXED", "sku": "xyz789", - "sort_order": 123, + "sort_order": 987, "title": "xyz789", - "uid": "4" + "uid": 4 }
    @@ -45538,7 +45416,7 @@
    Fields
    Example
    -
    {"success": true}
    +                  
    {"success": false}
     
    @@ -45578,7 +45456,7 @@
    Fields
    Example
    -
    {"success": true}
    +                  
    {"success": false}
     
    @@ -45711,7 +45589,7 @@
    Fields
    Example
    {
       "errors": [NegotiableQuoteInvalidStateError],
    -  "quote_uid": 4
    +  "quote_uid": "4"
     }
     
    @@ -45793,7 +45671,7 @@
    Fields
    Example
    -
    {"template_id": 4}
    +                  
    {"template_id": "4"}
     
    @@ -45830,7 +45708,7 @@
    Fields
    Example
    -
    {"quote_uids": [4]}
    +                  
    {"quote_uids": ["4"]}
     
    @@ -46008,7 +45886,7 @@
    Fields
    Example
    -
    {"message": "xyz789", "type": "UNDEFINED"}
    +                  
    {"message": "abc123", "type": "UNDEFINED"}
     
    @@ -46338,8 +46216,8 @@
    Example
    "amount": Money, "applied_to": "ITEM", "coupon": AppliedCoupon, - "is_discounting_locked": true, - "label": "abc123", + "is_discounting_locked": false, + "label": "xyz789", "type": "xyz789", "value": 123.45 } @@ -46479,15 +46357,15 @@
    Example
    "is_salable": false, "links": [DownloadableProductLinks], "max_qty": 987.65, - "min_qty": 123.45, - "not_available_message": "abc123", + "min_qty": 987.65, + "not_available_message": "xyz789", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 987.65, + "quantity": 123.45, "samples": [DownloadableProductSamples], - "uid": "4" + "uid": 4 }
    @@ -46572,12 +46450,12 @@
    Example
    "custom_attributes": [CustomAttribute], "discounts": [Discount], "downloadable_links": [DownloadableItemsLinks], - "id": 4, + "id": "4", "order_item": OrderItemInterface, "product_name": "xyz789", "product_sale_price": Money, "product_sku": "xyz789", - "quantity_refunded": 123.45 + "quantity_refunded": 987.65 }
    @@ -46664,7 +46542,7 @@
    Example
    "downloadable_links": [DownloadableItemsLinks], "id": 4, "order_item": OrderItemInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, "product_sku": "abc123", "quantity_invoiced": 123.45 @@ -46719,9 +46597,9 @@
    Fields
    Example
    {
    -  "sort_order": 123,
    -  "title": "abc123",
    -  "uid": 4
    +  "sort_order": 987,
    +  "title": "xyz789",
    +  "uid": "4"
     }
     
    @@ -46886,23 +46764,23 @@
    Example
    "entered_options": [OrderItemOption], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "id": "4", + "id": 4, "prices": OrderItemPrices, "product": ProductInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, "product_sku": "abc123", - "product_type": "xyz789", + "product_type": "abc123", "product_url_key": "xyz789", - "quantity_canceled": 987.65, - "quantity_invoiced": 123.45, + "quantity_canceled": 123.45, + "quantity_invoiced": 987.65, "quantity_ordered": 123.45, - "quantity_refunded": 123.45, + "quantity_refunded": 987.65, "quantity_return_requested": 123.45, - "quantity_returned": 987.65, - "quantity_shipped": 123.45, + "quantity_returned": 123.45, + "quantity_shipped": 987.65, "selected_options": [OrderItemOption], - "status": "abc123" + "status": "xyz789" }
    @@ -47184,42 +47062,42 @@
    Example
    "downloadable_product_samples": [ DownloadableProductSamples ], - "gift_message_available": false, + "gift_message_available": true, "gift_wrapping_available": false, "gift_wrapping_price": Money, "image": ProductImage, "is_returnable": "xyz789", "links_purchased_separately": 123, "links_title": "abc123", - "manufacturer": 987, - "max_sale_qty": 123.45, + "manufacturer": 123, + "max_sale_qty": 987.65, "media_gallery": [MediaGalleryInterface], "meta_description": "xyz789", "meta_keyword": "abc123", - "meta_title": "abc123", - "min_sale_qty": 987.65, + "meta_title": "xyz789", + "min_sale_qty": 123.45, "name": "abc123", - "new_from_date": "xyz789", - "new_to_date": "abc123", - "only_x_left_in_stock": 123.45, + "new_from_date": "abc123", + "new_to_date": "xyz789", + "only_x_left_in_stock": 987.65, "options": [CustomizableOptionInterface], "options_container": "xyz789", "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], - "quantity": 987.65, + "quantity": 123.45, "related_products": [ProductInterface], "short_description": ComplexTextValue, "sku": "xyz789", "small_image": ProductImage, "special_price": 987.65, - "special_to_date": "xyz789", + "special_to_date": "abc123", "stock_status": "IN_STOCK", "swatch_image": "xyz789", "thumbnail": ProductImage, "uid": "4", "upsell_products": [ProductInterface], - "url_key": "abc123" + "url_key": "xyz789" }
    @@ -47341,10 +47219,10 @@
    Fields
    Example
    {
       "price": 123.45,
    -  "sample_url": "xyz789",
    -  "sort_order": 987,
    +  "sample_url": "abc123",
    +  "sort_order": 123,
       "title": "xyz789",
    -  "uid": "4"
    +  "uid": 4
     }
     
    @@ -47437,8 +47315,8 @@
    Fields
    Example
    {
    -  "sample_url": "xyz789",
    -  "sort_order": 987,
    +  "sample_url": "abc123",
    +  "sort_order": 123,
       "title": "abc123"
     }
     
    @@ -47517,7 +47395,7 @@
    Example
    "quantity": 123.45, "samples": [DownloadableProductSamples], "sku": "xyz789", - "uid": 4 + "uid": "4" }
    @@ -47597,11 +47475,11 @@
    Example
    {
       "added_at": "xyz789",
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "abc123",
    -  "id": "4",
    +  "description": "xyz789",
    +  "id": 4,
       "links_v2": [DownloadableProductLinks],
       "product": ProductInterface,
    -  "quantity": 123.45,
    +  "quantity": 987.65,
       "samples": [DownloadableProductSamples]
     }
     
    @@ -47650,7 +47528,10 @@
    Fields
    Example
    -
    {"duplicated_quote_uid": 4, "quote_uid": 4}
    +                  
    {
    +  "duplicated_quote_uid": 4,
    +  "quote_uid": "4"
    +}
     
    @@ -47856,7 +47737,7 @@
    Possible Types
    Example
    {
       "code": "PRODUCT_NOT_FOUND",
    -  "message": "xyz789"
    +  "message": "abc123"
     }
     
    @@ -47975,7 +47856,7 @@
    Fields
    Example
    {
       "country_code": "AF",
    -  "postcode": "xyz789",
    +  "postcode": "abc123",
       "region": CustomerAddressRegionInput
     }
     
    @@ -48028,7 +47909,7 @@
    Fields
    Example
    {
       "address": EstimateAddressInput,
    -  "cart_id": "xyz789",
    +  "cart_id": "abc123",
       "shipping_method": ShippingMethodInput
     }
     
    @@ -48158,7 +48039,7 @@
    Fields
    Example
    {
       "customer": Customer,
    -  "token": "abc123"
    +  "token": "xyz789"
     }
     
    @@ -48204,7 +48085,7 @@
    Fields
    Example
    -
    {"currency_to": "xyz789", "rate": 987.65}
    +                  
    {"currency_to": "abc123", "rate": 123.45}
     
    @@ -48278,10 +48159,10 @@
    Example
    {
       "code": "abc123",
       "is_visible": true,
    -  "payment_intent": "abc123",
    +  "payment_intent": "xyz789",
       "payment_source": "xyz789",
       "sdk_params": [SDKParams],
    -  "sort_order": "xyz789",
    +  "sort_order": "abc123",
       "three_ds_mode": "OFF",
       "title": "abc123"
     }
    @@ -48666,7 +48547,7 @@ 
    Fields
    Example
    {
    -  "name": "xyz789",
    +  "name": "abc123",
       "type": "UNKNOWN_FILTER_RULE_TYPE",
       "conditions": [ConditionInput]
     }
    @@ -48775,7 +48656,7 @@ 
    Fields
    Example
    {
    -  "eq": "abc123",
    +  "eq": "xyz789",
       "in": ["xyz789"],
       "match": "abc123"
     }
    @@ -48899,19 +48780,19 @@ 
    Fields
    Example
    {
       "eq": "xyz789",
    -  "from": "abc123",
    +  "from": "xyz789",
       "gt": "abc123",
    -  "gteq": "abc123",
    -  "in": ["xyz789"],
    +  "gteq": "xyz789",
    +  "in": ["abc123"],
       "like": "xyz789",
       "lt": "abc123",
    -  "lteq": "xyz789",
    -  "moreq": "xyz789",
    -  "neq": "xyz789",
    -  "nin": ["abc123"],
    +  "lteq": "abc123",
    +  "moreq": "abc123",
    +  "neq": "abc123",
    +  "nin": ["xyz789"],
       "notnull": "abc123",
       "null": "abc123",
    -  "to": "xyz789"
    +  "to": "abc123"
     }
     
    @@ -48968,7 +48849,7 @@
    Fields
    Example
    {
    -  "attribute": "abc123",
    +  "attribute": "xyz789",
       "frontendInput": "xyz789",
       "label": "abc123",
       "numeric": true
    @@ -49019,7 +48900,7 @@ 
    Fields
    Example
    {
       "amount": Money,
    -  "label": "xyz789"
    +  "label": "abc123"
     }
     
    @@ -49107,7 +48988,7 @@
    Description
    Example
    -
    987.65
    +                  
    123.45
     
    @@ -49148,7 +49029,7 @@
    Fields
    Example
    -
    {"customer_email": "xyz789"}
    +                  
    {"customer_email": "abc123"}
     
    @@ -49188,7 +49069,7 @@
    Fields
    Example
    -
    {"customer_token": "abc123"}
    +                  
    {"customer_token": "xyz789"}
     
    @@ -49229,7 +49110,7 @@
    Fields
    Example
    -
    {"template_id": "4"}
    +                  
    {"template_id": 4}
     
    @@ -49361,7 +49242,7 @@
    Fields
    Example
    {
       "balance": Money,
    -  "code": "abc123",
    +  "code": "xyz789",
       "expiration_date": "xyz789"
     }
     
    @@ -49465,11 +49346,11 @@
    Fields
    Example
    {
    -  "attribute_id": 987,
    -  "uid": 4,
    -  "value": 987.65,
    -  "website_id": 123,
    -  "website_value": 987.65
    +  "attribute_id": 123,
    +  "uid": "4",
    +  "value": 123.45,
    +  "website_id": 987,
    +  "website_value": 123.45
     }
     
    @@ -49643,11 +49524,11 @@
    Example
    "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, "is_available": true, - "is_salable": true, - "max_qty": 123.45, - "message": "xyz789", - "min_qty": 123.45, - "not_available_message": "abc123", + "is_salable": false, + "max_qty": 987.65, + "message": "abc123", + "min_qty": 987.65, + "not_available_message": "xyz789", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, @@ -49655,8 +49536,8 @@
    Example
    "quantity": 987.65, "recipient_email": "abc123", "recipient_name": "abc123", - "sender_email": "abc123", - "sender_name": "abc123", + "sender_email": "xyz789", + "sender_name": "xyz789", "uid": 4 }
    @@ -49742,8 +49623,8 @@
    Example
    "order_item": OrderItemInterface, "product_name": "abc123", "product_sale_price": Money, - "product_sku": "abc123", - "quantity_refunded": 987.65 + "product_sku": "xyz789", + "quantity_refunded": 123.45 }
    @@ -49828,7 +49709,7 @@
    Example
    "order_item": OrderItemInterface, "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "abc123", + "product_sku": "xyz789", "quantity_invoiced": 987.65 }
    @@ -49891,11 +49772,11 @@
    Fields
    Example
    {
    -  "message": "xyz789",
    +  "message": "abc123",
       "recipient_email": "xyz789",
    -  "recipient_name": "xyz789",
    +  "recipient_name": "abc123",
       "sender_email": "xyz789",
    -  "sender_name": "xyz789"
    +  "sender_name": "abc123"
     }
     
    @@ -49971,9 +49852,9 @@
    Example
    "custom_giftcard_amount": Money, "message": "xyz789", "recipient_email": "abc123", - "recipient_name": "abc123", - "sender_email": "abc123", - "sender_name": "xyz789" + "recipient_name": "xyz789", + "sender_email": "xyz789", + "sender_name": "abc123" }
    @@ -50137,20 +50018,20 @@
    Example
    "id": "4", "prices": OrderItemPrices, "product": ProductInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "xyz789", - "product_type": "xyz789", - "product_url_key": "xyz789", - "quantity_canceled": 987.65, - "quantity_invoiced": 123.45, + "product_sku": "abc123", + "product_type": "abc123", + "product_url_key": "abc123", + "quantity_canceled": 123.45, + "quantity_invoiced": 987.65, "quantity_ordered": 123.45, - "quantity_refunded": 123.45, - "quantity_return_requested": 123.45, + "quantity_refunded": 987.65, + "quantity_return_requested": 987.65, "quantity_returned": 987.65, "quantity_shipped": 123.45, "selected_options": [OrderItemOption], - "status": "abc123" + "status": "xyz789" } @@ -50455,8 +50336,8 @@
    filters
    Example
    {
    -  "allow_message": true,
    -  "allow_open_amount": true,
    +  "allow_message": false,
    +  "allow_open_amount": false,
       "canonical_url": "xyz789",
       "categories": [CategoryInterface],
       "country_of_manufacture": "abc123",
    @@ -50470,23 +50351,23 @@ 
    Example
    "giftcard_amounts": [GiftCardAmounts], "giftcard_type": "VIRTUAL", "image": ProductImage, - "is_redeemable": true, - "is_returnable": "xyz789", + "is_redeemable": false, + "is_returnable": "abc123", "lifetime": 123, - "manufacturer": 123, + "manufacturer": 987, "max_sale_qty": 987.65, "media_gallery": [MediaGalleryInterface], "message_max_length": 987, - "meta_description": "abc123", + "meta_description": "xyz789", "meta_keyword": "abc123", - "meta_title": "abc123", - "min_sale_qty": 987.65, - "name": "xyz789", + "meta_title": "xyz789", + "min_sale_qty": 123.45, + "name": "abc123", "new_from_date": "xyz789", - "new_to_date": "abc123", + "new_to_date": "xyz789", "only_x_left_in_stock": 123.45, - "open_amount_max": 987.65, - "open_amount_min": 123.45, + "open_amount_max": 123.45, + "open_amount_min": 987.65, "options": [CustomizableOptionInterface], "options_container": "abc123", "price_range": PriceRange, @@ -50495,10 +50376,10 @@
    Example
    "quantity": 987.65, "related_products": [ProductInterface], "short_description": ComplexTextValue, - "sku": "xyz789", + "sku": "abc123", "small_image": ProductImage, - "special_price": 987.65, - "special_to_date": "abc123", + "special_price": 123.45, + "special_to_date": "xyz789", "stock_status": "IN_STOCK", "swatch_image": "abc123", "thumbnail": ProductImage, @@ -50576,8 +50457,8 @@
    Example
    "customizable_options": [SelectedCustomizableOption], "gift_card_options": GiftCardOptions, "product": ProductInterface, - "quantity": 123.45, - "sku": "xyz789", + "quantity": 987.65, + "sku": "abc123", "uid": "4" }
    @@ -50649,9 +50530,9 @@
    Example
    "gift_card": GiftCardItem, "id": 4, "order_item": OrderItemInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, - "product_sku": "xyz789", + "product_sku": "abc123", "quantity_shipped": 123.45 } @@ -50781,13 +50662,13 @@
    Fields
    Example
    {
    -  "added_at": "xyz789",
    +  "added_at": "abc123",
       "customizable_options": [SelectedCustomizableOption],
       "description": "xyz789",
       "gift_card_options": GiftCardOptions,
       "id": "4",
       "product": ProductInterface,
    -  "quantity": 123.45
    +  "quantity": 987.65
     }
     
    @@ -50839,7 +50720,7 @@
    Fields
    Example
    {
    -  "from": "xyz789",
    +  "from": "abc123",
       "message": "xyz789",
       "to": "abc123"
     }
    @@ -50896,7 +50777,7 @@ 
    Fields
    Example
    {
    -  "from": "abc123",
    +  "from": "xyz789",
       "message": "xyz789",
       "to": "abc123"
     }
    @@ -51067,9 +50948,9 @@ 
    Fields
    Example
    {
    -  "created_at": "abc123",
    +  "created_at": "xyz789",
       "dynamic_attributes": [GiftRegistryDynamicAttribute],
    -  "event_name": "xyz789",
    +  "event_name": "abc123",
       "items": [GiftRegistryItemInterface],
       "message": "abc123",
       "owner_name": "abc123",
    @@ -51078,7 +50959,7 @@ 
    Example
    "shipping_address": CustomerAddress, "status": "ACTIVE", "type": GiftRegistryType, - "uid": 4 + "uid": "4" }
    @@ -51131,7 +51012,7 @@
    Fields
    Example
    {
    -  "code": 4,
    +  "code": "4",
       "group": "EVENT_INFORMATION",
       "label": "xyz789",
       "value": "abc123"
    @@ -51259,7 +51140,10 @@ 
    Fields
    Example
    -
    {"code": 4, "value": "abc123"}
    +                  
    {
    +  "code": "4",
    +  "value": "abc123"
    +}
     
    @@ -51328,8 +51212,8 @@
    Possible Types
    Example
    {
    -  "code": 4,
    -  "label": "xyz789",
    +  "code": "4",
    +  "label": "abc123",
       "value": "abc123"
     }
     
    @@ -51396,9 +51280,9 @@
    Example
    "attribute_group": "abc123", "code": 4, "input_type": "abc123", - "is_required": false, - "label": "xyz789", - "sort_order": 123 + "is_required": true, + "label": "abc123", + "sort_order": 987 }
    @@ -51478,7 +51362,7 @@
    Possible Types
    Example
    {
    -  "attribute_group": "xyz789",
    +  "attribute_group": "abc123",
       "code": "4",
       "input_type": "abc123",
       "is_required": false,
    @@ -51551,8 +51435,8 @@ 
    Example
    "note": "abc123", "product": ProductInterface, "quantity": 123.45, - "quantity_fulfilled": 987.65, - "uid": 4 + "quantity_fulfilled": 123.45, + "uid": "4" }
    @@ -51633,7 +51517,7 @@
    Possible Types
    Example
    {
    -  "created_at": "abc123",
    +  "created_at": "xyz789",
       "note": "abc123",
       "product": ProductInterface,
       "quantity": 987.65,
    @@ -51702,7 +51586,7 @@ 
    Possible Types
    Example
    {
    -  "status": true,
    +  "status": false,
       "user_errors": [GiftRegistryItemsUserError]
     }
     
    @@ -51767,9 +51651,9 @@
    Example
    {
       "code": "OUT_OF_STOCK",
       "gift_registry_item_uid": "4",
    -  "gift_registry_uid": 4,
    -  "message": "xyz789",
    -  "product_uid": "4"
    +  "gift_registry_uid": "4",
    +  "message": "abc123",
    +  "product_uid": 4
     }
     
    @@ -51993,9 +51877,9 @@
    Example
    "dynamic_attributes": [ GiftRegistryRegistrantDynamicAttribute ], - "email": "xyz789", + "email": "abc123", "firstname": "abc123", - "lastname": "abc123", + "lastname": "xyz789", "uid": "4" }
    @@ -52113,11 +51997,11 @@
    Fields
    Example
    {
    -  "event_date": "xyz789",
    +  "event_date": "abc123",
       "event_title": "xyz789",
    -  "gift_registry_uid": "4",
    +  "gift_registry_uid": 4,
       "location": "abc123",
    -  "name": "abc123",
    +  "name": "xyz789",
       "type": "xyz789"
     }
     
    @@ -52280,7 +52164,7 @@
    Example
    GiftRegistryDynamicAttributeMetadataInterface ], "label": "abc123", - "uid": 4 + "uid": "4" }
    @@ -52337,10 +52221,10 @@
    Fields
    Example
    {
    -  "design": "xyz789",
    +  "design": "abc123",
       "image": GiftWrappingImage,
       "price": Money,
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -52518,11 +52402,11 @@
    Example
    {
       "button_styles": GooglePayButtonStyles,
       "code": "abc123",
    -  "is_visible": false,
    +  "is_visible": true,
       "payment_intent": "abc123",
    -  "payment_source": "abc123",
    +  "payment_source": "xyz789",
       "sdk_params": [SDKParams],
    -  "sort_order": "abc123",
    +  "sort_order": "xyz789",
       "three_ds_mode": "OFF",
       "title": "abc123"
     }
    @@ -52579,9 +52463,9 @@ 
    Fields
    Example
    {
    -  "payment_source": "abc123",
    -  "payments_order_id": "abc123",
    -  "paypal_order_id": "xyz789"
    +  "payment_source": "xyz789",
    +  "payments_order_id": "xyz789",
    +  "paypal_order_id": "abc123"
     }
     
    @@ -52836,46 +52720,46 @@
    filters
    Example
    {
    -  "canonical_url": "xyz789",
    +  "canonical_url": "abc123",
       "categories": [CategoryInterface],
       "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    -  "gift_message_available": true,
    -  "gift_wrapping_available": false,
    +  "gift_message_available": false,
    +  "gift_wrapping_available": true,
       "gift_wrapping_price": Money,
       "image": ProductImage,
    -  "is_returnable": "abc123",
    +  "is_returnable": "xyz789",
       "items": [GroupedProductItem],
       "manufacturer": 123,
       "max_sale_qty": 123.45,
       "media_gallery": [MediaGalleryInterface],
       "meta_description": "abc123",
       "meta_keyword": "xyz789",
    -  "meta_title": "xyz789",
    -  "min_sale_qty": 987.65,
    -  "name": "abc123",
    -  "new_from_date": "abc123",
    +  "meta_title": "abc123",
    +  "min_sale_qty": 123.45,
    +  "name": "xyz789",
    +  "new_from_date": "xyz789",
       "new_to_date": "abc123",
    -  "only_x_left_in_stock": 987.65,
    -  "options_container": "xyz789",
    +  "only_x_left_in_stock": 123.45,
    +  "options_container": "abc123",
       "price_range": PriceRange,
       "price_tiers": [TierPrice],
       "product_links": [ProductLinksInterface],
    -  "quantity": 123.45,
    +  "quantity": 987.65,
       "related_products": [ProductInterface],
       "short_description": ComplexTextValue,
       "sku": "xyz789",
       "small_image": ProductImage,
       "special_price": 123.45,
    -  "special_to_date": "abc123",
    +  "special_to_date": "xyz789",
       "stock_status": "IN_STOCK",
    -  "swatch_image": "xyz789",
    +  "swatch_image": "abc123",
       "thumbnail": ProductImage,
       "uid": "4",
       "upsell_products": [ProductInterface],
    -  "url_key": "xyz789",
    +  "url_key": "abc123",
       "weight": 123.45
     }
     
    @@ -52931,7 +52815,7 @@
    Example
    {
       "position": 123,
       "product": ProductInterface,
    -  "qty": 987.65
    +  "qty": 123.45
     }
     
    @@ -53004,7 +52888,7 @@
    Example
    "description": "xyz789", "id": "4", "product": ProductInterface, - "quantity": 123.45 + "quantity": 987.65 }
    @@ -53053,7 +52937,7 @@
    Fields
    Example
    {
    -  "reason": "xyz789",
    +  "reason": "abc123",
       "token": "xyz789"
     }
     
    @@ -53109,7 +52993,7 @@
    Fields
    Example
    {
    -  "email": "abc123",
    +  "email": "xyz789",
       "lastname": "xyz789",
       "number": "xyz789"
     }
    @@ -53232,10 +53116,10 @@ 
    Fields
    Example
    {
    -  "created_at": "abc123",
    -  "creator_name": "xyz789",
    +  "created_at": "xyz789",
    +  "creator_name": "abc123",
       "creator_type": "xyz789",
    -  "item_id": 123,
    +  "item_id": 987,
       "note": "abc123",
       "product_name": "xyz789"
     }
    @@ -53325,10 +53209,10 @@ 
    Fields
    Example
    {
    -  "cc_vault_code": "abc123",
    +  "cc_vault_code": "xyz789",
       "code": "abc123",
    -  "is_vault_enabled": false,
    -  "is_visible": false,
    +  "is_vault_enabled": true,
    +  "is_visible": true,
       "payment_intent": "xyz789",
       "payment_source": "abc123",
       "requires_card_details": false,
    @@ -53427,10 +53311,10 @@ 
    Fields
    Example
    {
       "cardBin": "abc123",
    -  "cardExpiryMonth": "abc123",
    +  "cardExpiryMonth": "xyz789",
       "cardExpiryYear": "abc123",
    -  "cardLast4": "abc123",
    -  "holderName": "xyz789",
    +  "cardLast4": "xyz789",
    +  "holderName": "abc123",
       "is_active_payment_token_enabler": true,
       "payment_source": "abc123",
       "payments_order_id": "abc123",
    @@ -53457,7 +53341,7 @@ 
    Description
    Example
    -
    4
    +                  
    "4"
     
    @@ -53500,7 +53384,7 @@
    Fields
    Example
    {
       "thumbnail": "xyz789",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -53663,7 +53547,7 @@
    Example
    {
       "code": "PRODUCT_NOT_FOUND",
       "message": "abc123",
    -  "quantity": 987.65
    +  "quantity": 123.45
     }
     
    @@ -53686,7 +53570,7 @@
    Description
    Example
    -
    123
    +                  
    987
     
    @@ -53794,9 +53678,9 @@
    Example
    {
       "comments": [SalesCommentItem],
       "custom_attributes": [CustomAttribute],
    -  "id": "4",
    +  "id": 4,
       "items": [InvoiceItemInterface],
    -  "number": "abc123",
    +  "number": "xyz789",
       "total": InvoiceTotal
     }
     
    @@ -53924,9 +53808,9 @@
    Example
    "discounts": [Discount], "id": 4, "order_item": OrderItemInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, - "product_sku": "xyz789", + "product_sku": "abc123", "quantity_invoiced": 123.45 }
    @@ -53984,7 +53868,7 @@
    Example
    {
       "custom_attributes": [CustomAttributeInput],
       "invoice_id": "xyz789",
    -  "invoice_item_id": "abc123"
    +  "invoice_item_id": "xyz789"
     }
     
    @@ -54095,12 +53979,12 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "id": 4,
    +  "id": "4",
       "order_item": OrderItemInterface,
       "product_name": "xyz789",
       "product_sale_price": Money,
       "product_sku": "xyz789",
    -  "quantity_invoiced": 987.65
    +  "quantity_invoiced": 123.45
     }
     
    @@ -54305,7 +54189,7 @@
    Fields
    Example
    -
    {"is_email_available": false}
    +                  
    {"is_email_available": true}
     
    @@ -54345,7 +54229,7 @@
    Fields
    Example
    -
    {"is_role_name_available": false}
    +                  
    {"is_role_name_available": true}
     
    @@ -54385,7 +54269,7 @@
    Fields
    Example
    -
    {"is_email_available": false}
    +                  
    {"is_email_available": true}
     
    @@ -54425,7 +54309,7 @@
    Fields
    Example
    -
    {"is_email_available": false}
    +                  
    {"is_email_available": true}
     
    @@ -54629,13 +54513,13 @@
    Fields
    Example
    {
    -  "created_at": "xyz789",
    +  "created_at": "abc123",
       "creator_id": 987,
       "creator_name": "xyz789",
    -  "creator_type": 987,
    +  "creator_type": 123,
       "negotiable_quote_item_uid": "4",
    -  "note": "abc123",
    -  "note_uid": 4
    +  "note": "xyz789",
    +  "note_uid": "4"
     }
     
    @@ -54687,8 +54571,8 @@
    Fields
    Example
    {
    -  "label": "abc123",
    -  "uid": "4",
    +  "label": "xyz789",
    +  "uid": 4,
       "values": [ItemSelectedBundleOptionValue]
     }
     
    @@ -54752,10 +54636,10 @@
    Fields
    Example
    {
       "price": Money,
    -  "product_name": "xyz789",
    +  "product_name": "abc123",
       "product_sku": "xyz789",
       "quantity": 123.45,
    -  "uid": "4"
    +  "uid": 4
     }
     
    @@ -54825,7 +54709,7 @@
    Fields
    Example
    {
       "name": "abc123",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -54880,9 +54764,9 @@
    Fields
    Example
    {
    -  "note": "abc123",
    +  "note": "xyz789",
       "quote_item_uid": 4,
    -  "quote_uid": "4"
    +  "quote_uid": 4
     }
     
    @@ -54971,8 +54855,8 @@
    Possible Types
    Example
    {
    -  "disabled": false,
    -  "label": "abc123",
    +  "disabled": true,
    +  "label": "xyz789",
       "position": 123,
       "url": "abc123"
     }
    @@ -55076,7 +54960,7 @@ 
    Fields
    Example
    -
    {"type": "xyz789"}
    +                  
    {"type": "abc123"}
     
    @@ -55118,7 +55002,7 @@
    Fields
    Example
    {
    -  "layout": "xyz789",
    +  "layout": "abc123",
       "logo": MessageStyleLogo
     }
     
    @@ -55165,7 +55049,7 @@
    Fields
    Example
    -
    {"currency": "AFN", "value": 123.45}
    +                  
    {"currency": "AFN", "value": 987.65}
     
    @@ -55217,7 +55101,7 @@
    Fields
    Example
    {
       "gift_registry": GiftRegistry,
    -  "status": true,
    +  "status": false,
       "user_errors": [GiftRegistryItemsUserError]
     }
     
    @@ -55363,7 +55247,7 @@
    Fields
    Example
    {
       "quote_item_uid": "4",
    -  "quote_uid": 4,
    +  "quote_uid": "4",
       "requisition_list_uid": "4"
     }
     
    @@ -55617,21 +55501,21 @@
    Example
    "created_at": "xyz789", "custom_attributes": [CustomAttribute], "email": "abc123", - "expiration_date": "xyz789", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "is_virtual": false, "items": [CartItemInterface], "name": "abc123", "order": CustomerOrder, "prices": CartPrices, - "sales_rep_name": "abc123", + "sales_rep_name": "xyz789", "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [NegotiableQuoteShippingAddress], "status": "SUBMITTED", "template_id": "4", - "template_name": "abc123", - "total_quantity": 987.65, - "uid": "4", + "template_name": "xyz789", + "total_quantity": 123.45, + "uid": 4, "updated_at": "xyz789" }
    @@ -55679,8 +55563,8 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    -  "label": "abc123"
    +  "code": "abc123",
    +  "label": "xyz789"
     }
     
    @@ -55819,21 +55703,21 @@
    Fields
    Example
    {
    -  "city": "abc123",
    +  "city": "xyz789",
       "company": "abc123",
       "country_code": "abc123",
       "custom_attributes": [AttributeValueInput],
    -  "fax": "abc123",
    -  "firstname": "xyz789",
    -  "lastname": "xyz789",
    -  "middlename": "xyz789",
    +  "fax": "xyz789",
    +  "firstname": "abc123",
    +  "lastname": "abc123",
    +  "middlename": "abc123",
       "postcode": "xyz789",
    -  "prefix": "abc123",
    +  "prefix": "xyz789",
       "region": "abc123",
       "region_id": 123,
       "save_in_address_book": true,
       "street": ["xyz789"],
    -  "suffix": "abc123",
    +  "suffix": "xyz789",
       "telephone": "xyz789",
       "vat_id": "xyz789"
     }
    @@ -55979,19 +55863,19 @@ 
    Example
    "company": "abc123", "country": NegotiableQuoteAddressCountry, "custom_attributes": [AttributeValueInterface], - "customer_address_uid": "4", - "fax": "abc123", - "firstname": "xyz789", + "customer_address_uid": 4, + "fax": "xyz789", + "firstname": "abc123", "lastname": "xyz789", "middlename": "xyz789", "postcode": "abc123", "prefix": "xyz789", "region": NegotiableQuoteAddressRegion, - "street": ["abc123"], + "street": ["xyz789"], "suffix": "abc123", - "telephone": "abc123", - "uid": 4, - "vat_id": "abc123" + "telephone": "xyz789", + "uid": "4", + "vat_id": "xyz789" }
    @@ -56043,7 +55927,7 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    +  "code": "abc123",
       "label": "abc123",
       "region_id": 987
     }
    @@ -56163,23 +56047,23 @@ 
    Fields
    Example
    {
    -  "city": "xyz789",
    -  "company": "abc123",
    +  "city": "abc123",
    +  "company": "xyz789",
       "country": NegotiableQuoteAddressCountry,
       "custom_attributes": [AttributeValueInterface],
    -  "customer_address_uid": 4,
    +  "customer_address_uid": "4",
       "fax": "abc123",
    -  "firstname": "abc123",
    -  "lastname": "abc123",
    -  "middlename": "abc123",
    -  "postcode": "abc123",
    -  "prefix": "xyz789",
    +  "firstname": "xyz789",
    +  "lastname": "xyz789",
    +  "middlename": "xyz789",
    +  "postcode": "xyz789",
    +  "prefix": "abc123",
       "region": NegotiableQuoteAddressRegion,
       "street": ["abc123"],
       "suffix": "abc123",
       "telephone": "abc123",
    -  "uid": "4",
    -  "vat_id": "abc123"
    +  "uid": 4,
    +  "vat_id": "xyz789"
     }
     
    @@ -56241,9 +56125,9 @@
    Fields
    Example
    {
       "address": NegotiableQuoteAddressInput,
    -  "customer_address_uid": 4,
    -  "same_as_shipping": true,
    -  "use_for_shipping": false
    +  "customer_address_uid": "4",
    +  "same_as_shipping": false,
    +  "use_for_shipping": true
     }
     
    @@ -56315,7 +56199,7 @@
    Example
    "created_at": "abc123", "creator_type": "BUYER", "text": "xyz789", - "uid": 4 + "uid": "4" }
    @@ -56363,7 +56247,7 @@
    Fields
    Example
    {
       "name": "abc123",
    -  "url": "xyz789"
    +  "url": "abc123"
     }
     
    @@ -56551,7 +56435,7 @@
    Fields
    Example
    {
    -  "new_value": "abc123",
    +  "new_value": "xyz789",
       "old_value": "xyz789",
       "title": "abc123"
     }
    @@ -56787,7 +56671,7 @@ 
    Example
    "changes": NegotiableQuoteHistoryChanges, "created_at": "abc123", "item_note": HistoryItemNoteData, - "uid": 4 + "uid": "4" }
    @@ -56942,7 +56826,7 @@
    Fields
    Example
    {
    -  "products_removed_from_catalog": ["4"],
    +  "products_removed_from_catalog": [4],
       "products_removed_from_quote": [ProductInterface]
     }
     
    @@ -57164,7 +57048,7 @@
    Fields
    Example
    -
    {"quantity": 123.45, "quote_item_uid": 4}
    +                  
    {"quantity": 987.65, "quote_item_uid": 4}
     
    @@ -57212,7 +57096,7 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    +  "code": "abc123",
       "purchase_order_number": "xyz789"
     }
     
    @@ -57272,8 +57156,8 @@
    Example
    {
       "document_identifier": "xyz789",
       "document_name": "abc123",
    -  "link_id": 4,
    -  "reference_document_url": "abc123"
    +  "link_id": "4",
    +  "reference_document_url": "xyz789"
     }
     
    @@ -57402,23 +57286,23 @@
    Fields
    Example
    {
       "available_shipping_methods": [AvailableShippingMethod],
    -  "city": "abc123",
    +  "city": "xyz789",
       "company": "abc123",
       "country": NegotiableQuoteAddressCountry,
       "custom_attributes": [AttributeValueInterface],
    -  "customer_address_uid": "4",
    -  "fax": "xyz789",
    +  "customer_address_uid": 4,
    +  "fax": "abc123",
       "firstname": "abc123",
       "lastname": "abc123",
       "middlename": "abc123",
       "postcode": "abc123",
    -  "prefix": "xyz789",
    +  "prefix": "abc123",
       "region": NegotiableQuoteAddressRegion,
       "selected_shipping_method": SelectedShippingMethod,
    -  "street": ["abc123"],
    +  "street": ["xyz789"],
       "suffix": "xyz789",
    -  "telephone": "abc123",
    -  "uid": "4",
    +  "telephone": "xyz789",
    +  "uid": 4,
       "vat_id": "xyz789"
     }
     
    @@ -57475,7 +57359,7 @@
    Fields
    Example
    {
       "address": NegotiableQuoteAddressInput,
    -  "customer_address_uid": "4",
    +  "customer_address_uid": 4,
       "customer_notes": "abc123"
     }
     
    @@ -57816,12 +57700,12 @@
    Example
    {
       "buyer": NegotiableQuoteUser,
       "comments": [NegotiableQuoteComment],
    -  "created_at": "xyz789",
    -  "expiration_date": "abc123",
    +  "created_at": "abc123",
    +  "expiration_date": "xyz789",
       "history": [NegotiableQuoteHistoryEntry],
       "historyV2": [NegotiableQuoteTemplateHistoryEntry],
       "is_min_max_qty_used": false,
    -  "is_virtual": false,
    +  "is_virtual": true,
       "items": [CartItemInterface],
       "max_order_commitment": 123,
       "min_order_commitment": 123,
    @@ -57836,7 +57720,7 @@ 
    Example
    "status": "xyz789", "template_id": "4", "total_quantity": 987.65, - "uid": 4, + "uid": "4", "updated_at": "xyz789" }
    @@ -58024,26 +57908,26 @@
    Fields
    Example
    {
    -  "activated_at": "xyz789",
    -  "company_name": "xyz789",
    +  "activated_at": "abc123",
    +  "company_name": "abc123",
       "created_at": "abc123",
    -  "expiration_date": "xyz789",
    -  "is_min_max_qty_used": false,
    +  "expiration_date": "abc123",
    +  "is_min_max_qty_used": true,
       "last_ordered_at": "xyz789",
    -  "last_shared_at": "xyz789",
    -  "max_order_commitment": 123,
    +  "last_shared_at": "abc123",
    +  "max_order_commitment": 987,
       "min_negotiated_grand_total": 123.45,
       "min_order_commitment": 987,
    -  "name": "xyz789",
    -  "orders_placed": 123,
    +  "name": "abc123",
    +  "orders_placed": 987,
       "prices": CartPrices,
       "sales_rep_name": "xyz789",
    -  "state": "xyz789",
    +  "state": "abc123",
       "status": "abc123",
       "submitted_by": "xyz789",
       "template_id": "4",
    -  "uid": 4,
    -  "updated_at": "xyz789"
    +  "uid": "4",
    +  "updated_at": "abc123"
     }
     
    @@ -58228,7 +58112,7 @@
    Fields
    Example
    {
    -  "new_status": "xyz789",
    +  "new_status": "abc123",
       "old_status": "abc123"
     }
     
    @@ -58329,7 +58213,7 @@
    Fields
    Example
    -
    {"item_id": 4, "max_qty": 987.65, "min_qty": 987.65, "quantity": 123.45}
    +                  
    {"item_id": 4, "max_qty": 987.65, "min_qty": 987.65, "quantity": 987.65}
     
    @@ -58389,10 +58273,10 @@
    Fields
    Example
    {
    -  "document_identifier": "xyz789",
    +  "document_identifier": "abc123",
       "document_name": "xyz789",
       "link_id": "4",
    -  "reference_document_url": "abc123"
    +  "reference_document_url": "xyz789"
     }
     
    @@ -58449,7 +58333,7 @@
    Example
    {
       "address": NegotiableQuoteAddressInput,
       "customer_address_uid": 4,
    -  "customer_notes": "xyz789"
    +  "customer_notes": "abc123"
     }
     
    @@ -58599,7 +58483,7 @@
    Example
    "items": [NegotiableQuoteTemplateGridItem], "page_info": SearchResultPageInfo, "sort_fields": SortFields, - "total_count": 987 + "total_count": 123 }
    @@ -58693,7 +58577,7 @@
    Fields
    Example
    -
    {"quote_uid": "4"}
    +                  
    {"quote_uid": 4}
     
    @@ -58739,8 +58623,8 @@
    Fields
    Example
    {
    -  "firstname": "xyz789",
    -  "lastname": "xyz789"
    +  "firstname": "abc123",
    +  "lastname": "abc123"
     }
     
    @@ -58800,7 +58684,7 @@
    Example
    "items": [NegotiableQuote], "page_info": SearchResultPageInfo, "sort_fields": SortFields, - "total_count": 123 + "total_count": 987 }
    @@ -58846,10 +58730,7 @@
    Fields
    Example
    -
    {
    -  "message": "abc123",
    -  "uid": "4"
    -}
    +                  
    {"message": "xyz789", "uid": 4}
     
    @@ -59136,7 +59017,7 @@
    Fields
    Example
    -
    {"order_number": "abc123"}
    +                  
    {"order_number": "xyz789"}
     
    @@ -59321,21 +59202,21 @@
    attributeCodes
    Example
    {
    -  "city": "xyz789",
    -  "company": "xyz789",
    +  "city": "abc123",
    +  "company": "abc123",
       "country_code": "AF",
       "custom_attributesV2": [AttributeValueInterface],
       "fax": "xyz789",
    -  "firstname": "abc123",
    +  "firstname": "xyz789",
       "lastname": "xyz789",
       "middlename": "abc123",
    -  "postcode": "xyz789",
    -  "prefix": "xyz789",
    -  "region": "abc123",
    -  "region_id": 4,
    -  "street": ["xyz789"],
    -  "suffix": "abc123",
    -  "telephone": "xyz789",
    +  "postcode": "abc123",
    +  "prefix": "abc123",
    +  "region": "xyz789",
    +  "region_id": "4",
    +  "street": ["abc123"],
    +  "suffix": "xyz789",
    +  "telephone": "abc123",
       "vat_id": "xyz789"
     }
     
    @@ -59394,7 +59275,7 @@
    Fields
    Example
    {
    -  "firstname": "abc123",
    +  "firstname": "xyz789",
       "lastname": "abc123",
       "middlename": "abc123",
       "prefix": "abc123",
    @@ -59556,18 +59437,18 @@ 
    Example
    "id": 4, "prices": OrderItemPrices, "product": ProductInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "abc123", + "product_sku": "xyz789", "product_type": "abc123", "product_url_key": "abc123", - "quantity_canceled": 123.45, - "quantity_invoiced": 987.65, + "quantity_canceled": 987.65, + "quantity_invoiced": 123.45, "quantity_ordered": 987.65, "quantity_refunded": 123.45, "quantity_return_requested": 987.65, - "quantity_returned": 123.45, - "quantity_shipped": 123.45, + "quantity_returned": 987.65, + "quantity_shipped": 987.65, "selected_options": [OrderItemOption], "status": "abc123" } @@ -59765,23 +59646,23 @@
    Example
    "entered_options": [OrderItemOption], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "id": "4", + "id": 4, "prices": OrderItemPrices, "product": ProductInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, "product_sku": "abc123", "product_type": "xyz789", - "product_url_key": "abc123", + "product_url_key": "xyz789", "quantity_canceled": 123.45, "quantity_invoiced": 123.45, "quantity_ordered": 123.45, "quantity_refunded": 123.45, - "quantity_return_requested": 987.65, + "quantity_return_requested": 123.45, "quantity_returned": 123.45, - "quantity_shipped": 987.65, + "quantity_shipped": 123.45, "selected_options": [OrderItemOption], - "status": "abc123" + "status": "xyz789" }
    @@ -59828,8 +59709,8 @@
    Fields
    Example
    {
    -  "label": "xyz789",
    -  "value": "xyz789"
    +  "label": "abc123",
    +  "value": "abc123"
     }
     
    @@ -59982,7 +59863,7 @@
    Example
    {
       "additional_data": [KeyValue],
       "name": "abc123",
    -  "type": "xyz789"
    +  "type": "abc123"
     }
     
    @@ -60045,7 +59926,7 @@
    Fields
    Example
    {
       "comments": [SalesCommentItem],
    -  "id": 4,
    +  "id": "4",
       "items": [ShipmentItemInterface],
       "number": "abc123",
       "tracking": [ShipmentTracking]
    @@ -60261,7 +60142,7 @@ 
    Fields
    Example
    -
    {"currentPage": 987, "pageSize": 987, "totalPages": 987}
    +                  
    {"currentPage": 123, "pageSize": 987, "totalPages": 987}
     
    @@ -60340,47 +60221,6 @@
    Values
    Example
    "CMS"
    -
    -
    - - back to top - -
    -
    -
    - Types -
    -

    PayByLinkInput

    -
    -
    -
    -
    Description
    -

    Defines optional inputs for the Pay By Link payment method.

    -
    -
    -
    Fields
    - - - - - - - - - - - - - -
    Input FieldDescription
    - recipient_email - String - Email address of the person who should receive the payment link. When omitted, the link is sent to the order customer's email.
    -
    -
    -
    -
    -
    Example
    -
    {"recipient_email": "xyz789"}
     
    @@ -60429,7 +60269,7 @@
    Fields
    Example
    {
       "key": "abc123",
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -60533,12 +60373,12 @@
    Possible Types
    Example
    {
    -  "code": "abc123",
    +  "code": "xyz789",
       "is_visible": false,
    -  "payment_intent": "abc123",
    +  "payment_intent": "xyz789",
       "sdk_params": [SDKParams],
    -  "sort_order": "xyz789",
    -  "title": "abc123"
    +  "sort_order": "abc123",
    +  "title": "xyz789"
     }
     
    @@ -60715,12 +60555,6 @@
    Fields
    The internal name for the payment method. - - - paybylink - PayByLinkInput - - Pay By Link payment method options. - payment_services_paypal_apple_pay - ApplePayMethodInput @@ -60773,14 +60607,13 @@
    Example
    {
       "additional_data": [PaymentAttributeInput],
       "code": "abc123",
    -  "paybylink": PayByLinkInput,
       "payment_services_paypal_apple_pay": ApplePayMethodInput,
       "payment_services_paypal_fastlane": FastlaneMethodInput,
       "payment_services_paypal_google_pay": GooglePayMethodInput,
       "payment_services_paypal_hosted_fields": HostedFieldsInput,
       "payment_services_paypal_smart_buttons": SmartButtonMethodInput,
       "payment_services_paypal_vault": VaultMethodInput,
    -  "purchase_order_number": "abc123"
    +  "purchase_order_number": "xyz789"
     }
     
    @@ -60840,7 +60673,7 @@
    Example
    "id": "abc123", "mp_order_id": "abc123", "payment_source_details": PaymentSourceDetails, - "status": "abc123" + "status": "xyz789" }
    @@ -60883,7 +60716,7 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    +  "code": "abc123",
       "params": [SDKParams]
     }
     
    @@ -61059,7 +60892,7 @@
    Fields
    Example
    {
       "details": "xyz789",
    -  "payment_method_code": "abc123",
    +  "payment_method_code": "xyz789",
       "public_hash": "abc123",
       "type": "card"
     }
    @@ -61312,21 +61145,21 @@ 
    Fields
    Example
    {
    -  "city": "xyz789",
    -  "contact_name": "abc123",
    +  "city": "abc123",
    +  "contact_name": "xyz789",
       "country_id": "xyz789",
       "description": "abc123",
    -  "email": "xyz789",
    +  "email": "abc123",
       "fax": "abc123",
    -  "latitude": 987.65,
    +  "latitude": 123.45,
       "longitude": 123.45,
       "name": "xyz789",
    -  "phone": "xyz789",
    +  "phone": "abc123",
       "pickup_location_code": "abc123",
    -  "postcode": "xyz789",
    +  "postcode": "abc123",
       "region": "abc123",
       "region_id": 987,
    -  "street": "abc123"
    +  "street": "xyz789"
     }
     
    @@ -61620,7 +61453,7 @@
    Example
    {
       "items": [PickupLocation],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -61797,7 +61630,7 @@
    Fields
    Example
    {
       "code": "CART_NOT_FOUND",
    -  "message": "abc123"
    +  "message": "xyz789"
     }
     
    @@ -61905,7 +61738,7 @@
    Fields
    Example
    -
    {"purchase_order_uid": "4"}
    +                  
    {"purchase_order_uid": 4}
     
    @@ -61986,7 +61819,7 @@
    Fields
    Example
    -
    {"cart_id": "xyz789"}
    +                  
    {"cart_id": "abc123"}
     
    @@ -62075,7 +61908,7 @@
    Fields
    Example
    -
    {"cart_id": "abc123"}
    +                  
    {"cart_id": "xyz789"}
     
    @@ -62259,8 +62092,8 @@
    Fields
    Example
    {
    -  "discount_percentage": 987.65,
    -  "main_final_price": 987.65,
    +  "discount_percentage": 123.45,
    +  "main_final_price": 123.45,
       "main_price": 987.65
     }
     
    @@ -62453,7 +62286,7 @@
    Fields
    Example
    -
    {"sku": "abc123"}
    +                  
    {"sku": "xyz789"}
     
    @@ -62491,7 +62324,7 @@
    Fields
    Example
    -
    {"sku": "abc123"}
    +                  
    {"sku": "xyz789"}
     
    @@ -62580,7 +62413,7 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    +  "code": "abc123",
       "value": "abc123"
     }
     
    @@ -62634,9 +62467,9 @@
    Fields
    Example
    {
    -  "attribute_type": "xyz789",
    +  "attribute_type": "abc123",
       "code": "4",
    -  "url": "xyz789",
    +  "url": "abc123",
       "value": "abc123"
     }
     
    @@ -62731,7 +62564,7 @@
    Fields
    Example
    -
    {"amount_off": 987.65, "percent_off": 987.65}
    +                  
    {"amount_off": 123.45, "percent_off": 123.45}
     
    @@ -62789,7 +62622,7 @@
    Example
    {
       "disabled": true,
       "label": "xyz789",
    -  "position": 123,
    +  "position": 987,
       "url": "abc123"
     }
     
    @@ -62875,7 +62708,7 @@
    Fields
    Example
    -
    {"sku": "xyz789"}
    +                  
    {"sku": "abc123"}
     
    @@ -63166,41 +62999,41 @@
    Possible Types
    Example
    {
    -  "canonical_url": "xyz789",
    +  "canonical_url": "abc123",
       "categories": [CategoryInterface],
       "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    -  "gift_message_available": true,
    -  "gift_wrapping_available": true,
    +  "gift_message_available": false,
    +  "gift_wrapping_available": false,
       "gift_wrapping_price": Money,
       "image": ProductImage,
    -  "is_returnable": "abc123",
    +  "is_returnable": "xyz789",
       "manufacturer": 123,
       "max_sale_qty": 123.45,
       "media_gallery": [MediaGalleryInterface],
       "meta_description": "abc123",
    -  "meta_keyword": "xyz789",
    -  "meta_title": "abc123",
    +  "meta_keyword": "abc123",
    +  "meta_title": "xyz789",
       "min_sale_qty": 123.45,
       "name": "xyz789",
       "new_from_date": "xyz789",
    -  "new_to_date": "abc123",
    +  "new_to_date": "xyz789",
       "only_x_left_in_stock": 987.65,
       "options_container": "xyz789",
       "price_range": PriceRange,
       "price_tiers": [TierPrice],
       "product_links": [ProductLinksInterface],
    -  "quantity": 123.45,
    +  "quantity": 987.65,
       "related_products": [ProductInterface],
       "short_description": ComplexTextValue,
       "sku": "xyz789",
       "small_image": ProductImage,
    -  "special_price": 123.45,
    -  "special_to_date": "abc123",
    +  "special_price": 987.65,
    +  "special_to_date": "xyz789",
       "stock_status": "IN_STOCK",
    -  "swatch_image": "abc123",
    +  "swatch_image": "xyz789",
       "thumbnail": ProductImage,
       "uid": "4",
       "upsell_products": [ProductInterface],
    @@ -63267,9 +63100,9 @@ 
    Fields
    Example
    {
       "link_type": "abc123",
    -  "linked_product_sku": "abc123",
    -  "linked_product_type": "abc123",
    -  "position": 987,
    +  "linked_product_sku": "xyz789",
    +  "linked_product_type": "xyz789",
    +  "position": 123,
       "sku": "xyz789"
     }
     
    @@ -63349,11 +63182,11 @@
    Possible Types
    Example
    {
    -  "link_type": "abc123",
    +  "link_type": "xyz789",
       "linked_product_sku": "xyz789",
    -  "linked_product_type": "xyz789",
    +  "linked_product_type": "abc123",
       "position": 987,
    -  "sku": "abc123"
    +  "sku": "xyz789"
     }
     
    @@ -63406,7 +63239,7 @@
    Fields
    Example
    {
       "asset_id": "xyz789",
    -  "media_type": "abc123",
    +  "media_type": "xyz789",
       "media_url": "xyz789"
     }
     
    @@ -63459,9 +63292,9 @@
    Fields
    Example
    {
    -  "media_type": "xyz789",
    +  "media_type": "abc123",
       "video_asset_id": "abc123",
    -  "video_media_url": "xyz789"
    +  "video_media_url": "abc123"
     }
     
    @@ -63724,7 +63557,7 @@
    Example
    "page_info": SearchResultPageInfo, "related_terms": ["abc123"], "suggestions": ["abc123"], - "total_count": 123, + "total_count": 987, "warnings": [ProductSearchWarning] }
    @@ -63773,7 +63606,7 @@
    Fields
    Example
    -
    {"attribute": "xyz789", "direction": "ASC"}
    +                  
    {"attribute": "abc123", "direction": "ASC"}
     
    @@ -63819,7 +63652,7 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    +  "code": "abc123",
       "message": "xyz789"
     }
     
    @@ -63931,9 +63764,9 @@
    Fields
    Example
    {
    -  "disabled": false,
    -  "label": "xyz789",
    -  "position": 123,
    +  "disabled": true,
    +  "label": "abc123",
    +  "position": 987,
       "url": "abc123",
       "video_content": ProductMediaGalleryEntriesVideoContent
     }
    @@ -64175,26 +64008,26 @@ 
    Example
    {
       "addToCartAllowed": true,
       "inStock": true,
    -  "lowStock": false,
    +  "lowStock": true,
       "attributes": [ProductViewAttribute],
    -  "description": "xyz789",
    +  "description": "abc123",
       "id": 4,
       "images": [ProductViewImage],
       "videos": [ProductViewVideo],
       "lastModifiedAt": "2007-12-03T10:15:30Z",
       "metaDescription": "xyz789",
       "metaKeyword": "xyz789",
    -  "metaTitle": "abc123",
    +  "metaTitle": "xyz789",
       "name": "abc123",
       "shortDescription": "abc123",
       "inputOptions": [ProductViewInputOption],
       "sku": "abc123",
    -  "externalId": "xyz789",
    -  "url": "abc123",
    -  "urlKey": "xyz789",
    +  "externalId": "abc123",
    +  "url": "xyz789",
    +  "urlKey": "abc123",
       "links": [ProductViewLink],
       "categories": [CategoryProductView],
    -  "queryType": "abc123",
    +  "queryType": "xyz789",
       "visibility": "xyz789"
     }
     
    @@ -64253,8 +64086,8 @@
    Fields
    Example
    {
       "label": "abc123",
    -  "name": "abc123",
    -  "roles": ["xyz789"],
    +  "name": "xyz789",
    +  "roles": ["abc123"],
       "value": {}
     }
     
    @@ -65621,16 +65454,16 @@
    Fields
    Example
    {
    -  "id": 4,
    +  "id": "4",
       "title": "xyz789",
    -  "required": false,
    -  "type": "abc123",
    -  "markupAmount": 123.45,
    -  "suffix": "abc123",
    +  "required": true,
    +  "type": "xyz789",
    +  "markupAmount": 987.65,
    +  "suffix": "xyz789",
       "sortOrder": 987,
       "range": ProductViewInputOptionRange,
       "imageSize": ProductViewInputOptionImageSize,
    -  "fileExtensions": "xyz789"
    +  "fileExtensions": "abc123"
     }
     
    @@ -65676,7 +65509,7 @@
    Fields
    Example
    -
    {"width": 123, "height": 987}
    +                  
    {"width": 987, "height": 987}
     
    @@ -65721,7 +65554,7 @@
    Fields
    Example
    -
    {"from": 987.65, "to": 987.65}
    +                  
    {"from": 987.65, "to": 123.45}
     
    @@ -65768,7 +65601,7 @@
    Fields
    Example
    {
       "product": ProductView,
    -  "linkTypes": ["xyz789"]
    +  "linkTypes": ["abc123"]
     }
     
    @@ -65876,9 +65709,9 @@
    Fields
    Example
    {
       "id": 4,
    -  "multi": false,
    +  "multi": true,
       "required": true,
    -  "title": "abc123",
    +  "title": "xyz789",
       "values": [ProductViewOptionValue]
     }
     
    @@ -65960,7 +65793,7 @@
    Example
    {
       "id": "4",
       "title": "xyz789",
    -  "inStock": true
    +  "inStock": false
     }
     
    @@ -66012,9 +65845,9 @@
    Fields
    Example
    {
    -  "id": 4,
    +  "id": "4",
       "title": "abc123",
    -  "inStock": true
    +  "inStock": false
     }
     
    @@ -66081,10 +65914,10 @@
    Fields
    Example
    {
    -  "id": 4,
    +  "id": "4",
       "isDefault": false,
       "product": SimpleProductView,
    -  "quantity": 123.45,
    +  "quantity": 987.65,
       "title": "xyz789",
       "inStock": false
     }
    @@ -66434,7 +66267,7 @@ 
    Fields
    Example
    -
    {"gte": 123.45, "lt": 987.65}
    +                  
    {"gte": 987.65, "lt": 123.45}
     
    @@ -66641,7 +66474,7 @@
    Fields
    Example
    {
       "date": "2007-12-03T10:15:30Z",
    -  "items": ["abc123"]
    +  "items": ["xyz789"]
     }
     
    @@ -66744,12 +66577,12 @@
    Example
    "created_at": "abc123", "created_by": Customer, "history_log": [PurchaseOrderHistoryItem], - "number": "xyz789", + "number": "abc123", "order": CustomerOrder, "quote": Cart, "status": "PENDING", "uid": 4, - "updated_at": "xyz789" + "updated_at": "abc123" }
    @@ -66922,9 +66755,9 @@
    Fields
    Example
    {
    -  "message": "xyz789",
    +  "message": "abc123",
       "name": "xyz789",
    -  "role": "xyz789",
    +  "role": "abc123",
       "status": "PENDING",
       "updated_at": "xyz789"
     }
    @@ -67069,12 +66902,12 @@ 
    Example
    "approver_roles": [CompanyRole], "condition": PurchaseOrderApprovalRuleConditionInterface, "created_at": "abc123", - "created_by": "abc123", - "description": "abc123", - "name": "abc123", + "created_by": "xyz789", + "description": "xyz789", + "name": "xyz789", "status": "ENABLED", - "uid": 4, - "updated_at": "abc123" + "uid": "4", + "updated_at": "xyz789" }
    @@ -67378,10 +67211,10 @@
    Fields
    Example
    {
       "applies_to": ["4"],
    -  "approvers": [4],
    +  "approvers": ["4"],
       "condition": CreatePurchaseOrderApprovalRuleConditionInput,
    -  "description": "abc123",
    -  "name": "abc123",
    +  "description": "xyz789",
    +  "name": "xyz789",
       "status": "ENABLED"
     }
     
    @@ -67587,7 +67420,7 @@
    Example
    {
       "items": [PurchaseOrderApprovalRule],
       "page_info": SearchResultPageInfo,
    -  "total_count": 123
    +  "total_count": 987
     }
     
    @@ -67646,7 +67479,7 @@
    Example
    {
       "author": Customer,
       "created_at": "abc123",
    -  "text": "abc123",
    +  "text": "xyz789",
       "uid": 4
     }
     
    @@ -67770,9 +67603,9 @@
    Fields
    Example
    {
    -  "activity": "xyz789",
    +  "activity": "abc123",
       "created_at": "xyz789",
    -  "message": "abc123",
    +  "message": "xyz789",
       "uid": 4
     }
     
    @@ -67821,7 +67654,7 @@
    Fields
    Example
    {
       "events": [PurchaseOrderApprovalFlowEvent],
    -  "rule_name": "abc123"
    +  "rule_name": "xyz789"
     }
     
    @@ -67969,7 +67802,7 @@
    Example
    {
       "items": [PurchaseOrder],
       "page_info": SearchResultPageInfo,
    -  "total_count": 123
    +  "total_count": 987
     }
     
    @@ -68011,7 +67844,7 @@
    Fields
    Example
    -
    {"purchase_order_uids": [4]}
    +                  
    {"purchase_order_uids": ["4"]}
     
    @@ -68127,7 +67960,7 @@
    Example
    {
       "company_purchase_orders": true,
       "created_date": FilterRangeTypeInput,
    -  "my_approvals": true,
    +  "my_approvals": false,
       "require_my_approval": true,
       "status": "PENDING"
     }
    @@ -68174,7 +68007,7 @@ 
    Fields
    Example
    {
    -  "customerGroup": "abc123",
    +  "customerGroup": "xyz789",
       "userViewHistory": [ViewHistoryInput]
     }
     
    @@ -68272,7 +68105,7 @@
    Fields
    Example
    {
       "expiration_date": "abc123",
    -  "template_id": "4"
    +  "template_id": 4
     }
     
    @@ -68333,10 +68166,10 @@
    Fields
    Example
    {
    -  "item_id": "4",
    +  "item_id": 4,
       "item_uid": "4",
       "note": "xyz789",
    -  "templateId": 4
    +  "templateId": "4"
     }
     
    @@ -68383,8 +68216,8 @@
    Fields
    Example
    {
    -  "message": "xyz789",
    -  "type": "xyz789"
    +  "message": "abc123",
    +  "type": "abc123"
     }
     
    @@ -68442,9 +68275,9 @@
    Fields
    Example
    {
       "count": 987,
    -  "from": 123.45,
    -  "title": "xyz789",
    -  "to": 987.65
    +  "from": 987.65,
    +  "title": "abc123",
    +  "to": 123.45
     }
     
    @@ -68594,7 +68427,7 @@
    Fields
    Example
    -
    {"from": 123.45, "to": 987.65}
    +                  
    {"from": 987.65, "to": 123.45}
     
    @@ -68716,10 +68549,10 @@
    Fields
    Example
    {
       "badge_position": "xyz789",
    -  "language_code": "abc123",
    +  "language_code": "xyz789",
       "minimum_score": 123.45,
       "re_captcha_type": "INVISIBLE",
    -  "technical_failure_message": "xyz789",
    +  "technical_failure_message": "abc123",
       "theme": "xyz789",
       "validation_failure_message": "xyz789",
       "website_key": "xyz789"
    @@ -68800,12 +68633,12 @@ 
    Fields
    Example
    {
       "badge_position": "abc123",
    -  "failure_message": "xyz789",
    +  "failure_message": "abc123",
       "forms": ["PLACE_ORDER"],
       "is_enabled": false,
       "language_code": "xyz789",
       "minimum_score": 987.65,
    -  "theme": "abc123",
    +  "theme": "xyz789",
       "website_key": "abc123"
     }
     
    @@ -69109,15 +68942,15 @@
    Fields
    Example
    {
    -  "displayOrder": 987,
    -  "pageType": "abc123",
    +  "displayOrder": 123,
    +  "pageType": "xyz789",
       "productsView": [ProductView],
    -  "storefrontLabel": "abc123",
    +  "storefrontLabel": "xyz789",
       "totalProducts": 123,
    -  "typeId": "xyz789",
    -  "unitId": "xyz789",
    +  "typeId": "abc123",
    +  "unitId": "abc123",
       "unitName": "xyz789",
    -  "userError": "xyz789"
    +  "userError": "abc123"
     }
     
    @@ -69163,7 +68996,7 @@
    Fields
    Example
    -
    {"results": [RecommendationUnit], "totalResults": 123}
    +                  
    {"results": [RecommendationUnit], "totalResults": 987}
     
    @@ -69342,7 +69175,7 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    +  "cart_id": "xyz789",
       "coupon_codes": ["abc123"]
     }
     
    @@ -69392,7 +69225,7 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    +  "cart_id": "xyz789",
       "gift_card_code": "abc123"
     }
     
    @@ -69602,7 +69435,7 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    +  "cart_id": "xyz789",
       "cart_item_uid": "4"
     }
     
    @@ -69691,7 +69524,7 @@
    Fields
    Example
    -
    {"quote_item_uids": [4], "quote_uid": 4}
    +                  
    {"quote_item_uids": [4], "quote_uid": "4"}
     
    @@ -69778,10 +69611,7 @@
    Fields
    Example
    -
    {
    -  "item_uids": ["4"],
    -  "template_id": "4"
    -}
    +                  
    {"item_uids": [4], "template_id": "4"}
     
    @@ -69828,7 +69658,10 @@
    Fields
    Example
    -
    {"products": ["4"], "uid": 4}
    +                  
    {
    +  "products": ["4"],
    +  "uid": "4"
    +}
     
    @@ -69917,7 +69750,7 @@
    Fields
    Example
    -
    {"return_shipping_tracking_uid": 4}
    +                  
    {"return_shipping_tracking_uid": "4"}
     
    @@ -70132,7 +69965,7 @@
    Fields
    Example
    {
    -  "quote_comment": "xyz789",
    +  "quote_comment": "abc123",
       "quote_name": "abc123",
       "quote_uid": 4
     }
    @@ -70283,8 +70116,8 @@ 
    Fields
    Example
    {
    -  "comment_text": "xyz789",
    -  "contact_email": "xyz789",
    +  "comment_text": "abc123",
    +  "contact_email": "abc123",
       "items": [RequestReturnItemInput],
       "token": "abc123"
     }
    @@ -70347,7 +70180,7 @@ 
    Fields
    Example
    {
    -  "cart_id": 4,
    +  "cart_id": "4",
       "comment": NegotiableQuoteCommentInput,
       "is_draft": false,
       "quote_name": "abc123"
    @@ -70559,7 +70392,7 @@ 
    Example
    "entered_custom_attributes": [ EnteredCustomAttributeInput ], - "order_item_uid": "4", + "order_item_uid": 4, "quantity_to_return": 123.45, "selected_custom_attributes": [ SelectedCustomAttributeInput @@ -70716,9 +70549,9 @@
    pageSize
    Example
    {
    -  "description": "abc123",
    +  "description": "xyz789",
       "items": RequistionListItems,
    -  "items_count": 123,
    +  "items_count": 987,
       "name": "xyz789",
       "uid": "4",
       "updated_at": "xyz789"
    @@ -70880,7 +70713,7 @@ 
    Example
    "product": ProductInterface, "quantity": 123.45, "sku": "abc123", - "uid": 4 + "uid": "4" }
    @@ -70948,10 +70781,10 @@
    Fields
    Example
    {
       "entered_options": [EnteredOptionInput],
    -  "parent_sku": "xyz789",
    -  "quantity": 123.45,
    +  "parent_sku": "abc123",
    +  "quantity": 987.65,
       "selected_options": ["abc123"],
    -  "sku": "xyz789"
    +  "sku": "abc123"
     }
     
    @@ -71101,7 +70934,7 @@
    Example
    "items": [RequisitionList], "page_info": SearchResultPageInfo, "sort_fields": SortFields, - "total_count": 123 + "total_count": 987 }
    @@ -71155,7 +70988,7 @@
    Example
    {
       "items": [RequisitionListItemInterface],
       "page_info": SearchResultPageInfo,
    -  "total_pages": 987
    +  "total_pages": 123
     }
     
    @@ -71251,7 +71084,7 @@
    Example
    "order": CustomerOrder, "shipping": ReturnShipping, "status": "PENDING", - "uid": "4" + "uid": 4 }
    @@ -71308,10 +71141,10 @@
    Fields
    Example
    {
    -  "author_name": "abc123",
    -  "created_at": "xyz789",
    -  "text": "xyz789",
    -  "uid": 4
    +  "author_name": "xyz789",
    +  "created_at": "abc123",
    +  "text": "abc123",
    +  "uid": "4"
     }
     
    @@ -71363,7 +71196,7 @@
    Fields
    Example
    {
    -  "email": "xyz789",
    +  "email": "abc123",
       "firstname": "abc123",
       "lastname": "xyz789"
     }
    @@ -71435,7 +71268,7 @@ 
    Example
    "custom_attributesV2": [AttributeValueInterface], "order_item": OrderItemInterface, "quantity": 987.65, - "request_quantity": 123.45, + "request_quantity": 987.65, "status": "PENDING", "uid": "4" } @@ -71545,10 +71378,10 @@
    Example
    "frontend_class": "xyz789", "frontend_input": "BOOLEAN", "input_filter": "NONE", - "is_required": false, + "is_required": true, "is_unique": true, - "label": "abc123", - "multiline_count": 987, + "label": "xyz789", + "multiline_count": 123, "options": [CustomAttributeOptionInterface], "sort_order": 987, "validate_rules": [ValidationRule] @@ -71757,13 +71590,13 @@
    Fields
    Example
    {
    -  "city": "abc123",
    +  "city": "xyz789",
       "contact_name": "xyz789",
       "country": Country,
    -  "postcode": "abc123",
    +  "postcode": "xyz789",
       "region": Region,
    -  "street": ["abc123"],
    -  "telephone": "xyz789"
    +  "street": ["xyz789"],
    +  "telephone": "abc123"
     }
     
    @@ -71809,10 +71642,7 @@
    Fields
    Example
    -
    {
    -  "label": "xyz789",
    -  "uid": "4"
    -}
    +                  
    {"label": "abc123", "uid": 4}
     
    @@ -71871,7 +71701,7 @@
    Example
    "carrier": ReturnShippingCarrier, "status": ReturnShippingTrackingStatus, "tracking_number": "abc123", - "uid": 4 + "uid": "4" }
    @@ -71917,7 +71747,7 @@
    Fields
    Example
    -
    {"text": "abc123", "type": "INFORMATION"}
    +                  
    {"text": "xyz789", "type": "INFORMATION"}
     
    @@ -72137,7 +71967,7 @@
    Example
    {
       "items": [Return],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -72178,7 +72008,7 @@
    Fields
    Example
    -
    {"result": true}
    +                  
    {"result": false}
     
    @@ -72336,7 +72166,7 @@
    Fields
    Example
    {
       "balance": RewardPointsAmount,
    -  "change_reason": "abc123",
    +  "change_reason": "xyz789",
       "date": "xyz789",
       "points_change": 123.45
     }
    @@ -72571,7 +72401,7 @@ 
    Fields
    Example
    {
    -  "name": "abc123",
    +  "name": "xyz789",
       "value": "abc123"
     }
     
    @@ -72619,8 +72449,8 @@
    Fields
    Example
    {
    -  "message": "abc123",
    -  "timestamp": "abc123"
    +  "message": "xyz789",
    +  "timestamp": "xyz789"
     }
     
    @@ -72671,7 +72501,7 @@
    Fields
    Example
    -
    {"count": 123, "id": 4, "title": "xyz789"}
    +                  
    {"count": 123, "id": 4, "title": "abc123"}
     
    @@ -72779,7 +72609,7 @@
    Fields
    Example
    {
       "items": [CategoryTreeView],
    -  "totalCount": 123,
    +  "totalCount": 987,
       "pageInfo": PageInfo
     }
     
    @@ -72853,12 +72683,12 @@
    Fields
    Example
    {
    -  "attribute": "xyz789",
    +  "attribute": "abc123",
       "contains": "abc123",
       "eq": "xyz789",
    -  "in": ["xyz789"],
    +  "in": ["abc123"],
       "range": SearchRangeInput,
    -  "startsWith": "xyz789"
    +  "startsWith": "abc123"
     }
     
    @@ -72906,7 +72736,7 @@
    Fields
    Example
    -
    {"from": 987.65, "to": 987.65}
    +                  
    {"from": 123.45, "to": 987.65}
     
    @@ -72956,7 +72786,7 @@
    Fields
    Example
    -
    {"current_page": 987, "page_size": 987, "total_pages": 123}
    +                  
    {"current_page": 123, "page_size": 123, "total_pages": 123}
     
    @@ -73012,7 +72842,7 @@
    Fields
    Example
    {
    -  "label": "abc123",
    +  "label": "xyz789",
       "type": "abc123",
       "uid": "4",
       "values": [SelectedBundleOptionValue]
    @@ -73081,7 +72911,7 @@ 
    Example
    "original_price": Money, "priceV2": Money, "quantity": 987.65, - "uid": "4" + "uid": 4 }
    @@ -73140,7 +72970,7 @@
    Example
    {
       "configurable_product_option_uid": "4",
       "configurable_product_option_value_uid": 4,
    -  "option_label": "xyz789",
    +  "option_label": "abc123",
       "value_label": "abc123"
     }
     
    @@ -73258,9 +73088,9 @@
    Fields
    Example
    {
    -  "customizable_option_uid": 4,
    -  "is_required": true,
    -  "label": "xyz789",
    +  "customizable_option_uid": "4",
    +  "is_required": false,
    +  "label": "abc123",
       "sort_order": 987,
       "type": "abc123",
       "values": [SelectedCustomizableOptionValue]
    @@ -73382,8 +73212,8 @@ 
    Example
    {
       "code": "abc123",
       "oope_payment_method_config": OopePaymentMethodConfig,
    -  "purchase_order_number": "xyz789",
    -  "title": "xyz789"
    +  "purchase_order_number": "abc123",
    +  "title": "abc123"
     }
     
    @@ -73462,9 +73292,9 @@
    Example
    {
       "additional_data": [ShippingAdditionalData],
       "amount": Money,
    -  "carrier_code": "xyz789",
    -  "carrier_title": "xyz789",
    -  "method_code": "xyz789",
    +  "carrier_code": "abc123",
    +  "carrier_title": "abc123",
    +  "method_code": "abc123",
       "method_title": "abc123",
       "price_excl_tax": Money,
       "price_incl_tax": Money
    @@ -73604,7 +73434,7 @@ 
    Fields
    Example
    {
       "billing_address": BillingAddressInput,
    -  "cart_id": "xyz789"
    +  "cart_id": "abc123"
     }
     
    @@ -73690,7 +73520,7 @@
    Fields
    Example
    -
    {"error": "xyz789", "success": false}
    +                  
    {"error": "abc123", "success": true}
     
    @@ -73737,10 +73567,7 @@
    Fields
    Example
    -
    {
    -  "custom_attributes": [CustomAttributeInput],
    -  "id": "4"
    -}
    +                  
    {"custom_attributes": [CustomAttributeInput], "id": 4}
     
    @@ -73939,7 +73766,7 @@
    Example
    "cart_id": "xyz789", "gift_message": GiftMessageInput, "gift_receipt_included": false, - "gift_wrapping_id": 4, + "gift_wrapping_id": "4", "printed_card_included": false }
    @@ -74029,8 +73856,8 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    -  "email": "abc123"
    +  "cart_id": "xyz789",
    +  "email": "xyz789"
     }
     
    @@ -74339,7 +74166,7 @@
    Fields
    Example
    {
    -  "quote_uid": 4,
    +  "quote_uid": "4",
       "shipping_addresses": [
         NegotiableQuoteShippingAddressInput
       ]
    @@ -74431,7 +74258,7 @@ 
    Fields
    Example
    {
    -  "quote_uid": "4",
    +  "quote_uid": 4,
       "shipping_methods": [ShippingMethodInput]
     }
     
    @@ -74522,7 +74349,7 @@
    Fields
    Example
    {
       "shipping_address": NegotiableQuoteTemplateShippingAddressInput,
    -  "template_id": "4"
    +  "template_id": 4
     }
     
    @@ -74661,7 +74488,7 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    +  "cart_id": "xyz789",
       "shipping_addresses": [ShippingAddressInput]
     }
     
    @@ -74841,7 +74668,7 @@
    Fields
    Example
    {
    -  "email": "xyz789",
    +  "email": "abc123",
       "name": "abc123"
     }
     
    @@ -74883,7 +74710,7 @@
    Fields
    Example
    -
    {"is_shared": true}
    +                  
    {"is_shared": false}
     
    @@ -74932,7 +74759,7 @@
    Fields
    Example
    {
       "message": "xyz789",
    -  "name": "xyz789"
    +  "name": "abc123"
     }
     
    @@ -74981,8 +74808,8 @@
    Fields
    Example
    {
    -  "customerUids": [4],
    -  "requisitionListUid": "4"
    +  "customerUids": ["4"],
    +  "requisitionListUid": 4
     }
     
    @@ -75029,7 +74856,7 @@
    Fields
    Example
    {
    -  "sent_count": 987,
    +  "sent_count": 123,
       "user_errors": [ShareRequisitionListUserError]
     }
     
    @@ -75071,7 +74898,7 @@
    Fields
    Example
    -
    {"token": "abc123"}
    +                  
    {"token": "xyz789"}
     
    @@ -75118,7 +74945,7 @@
    Fields
    Example
    {
       "code": "MAX_RECIPIENTS_EXCEEDED",
    -  "message": "xyz789"
    +  "message": "abc123"
     }
     
    @@ -75345,8 +75172,8 @@
    Example
    "order_item": OrderItemInterface, "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "xyz789", - "quantity_shipped": 987.65 + "product_sku": "abc123", + "quantity_shipped": 123.45 }
    @@ -75503,8 +75330,8 @@
    Fields
    Example
    {
       "carrier": "xyz789",
    -  "number": "abc123",
    -  "title": "xyz789",
    +  "number": "xyz789",
    +  "title": "abc123",
       "tracking_url": "xyz789"
     }
     
    @@ -75554,8 +75381,8 @@
    Fields
    Example
    {
    -  "key": "xyz789",
    -  "value": "abc123"
    +  "key": "abc123",
    +  "value": "xyz789"
     }
     
    @@ -75623,9 +75450,9 @@
    Fields
    Example
    {
       "address": CartAddressInput,
    -  "customer_address_id": 987,
    -  "customer_address_uid": 4,
    -  "customer_notes": "abc123",
    +  "customer_address_id": 123,
    +  "customer_address_uid": "4",
    +  "customer_notes": "xyz789",
       "pickup_location_code": "xyz789"
     }
     
    @@ -75787,28 +75614,28 @@
    Example
    {
       "available_shipping_methods": [AvailableShippingMethod],
       "cart_items_v2": [CartItemInterface],
    -  "city": "abc123",
    +  "city": "xyz789",
       "company": "xyz789",
       "country": CartAddressCountry,
       "custom_attributes": [AttributeValueInterface],
    -  "customer_address_uid": "4",
    +  "customer_address_uid": 4,
       "customer_notes": "xyz789",
    -  "fax": "xyz789",
    +  "fax": "abc123",
       "firstname": "xyz789",
    -  "id": 123,
    +  "id": 987,
       "lastname": "abc123",
       "middlename": "xyz789",
       "pickup_location_code": "abc123",
       "postcode": "xyz789",
    -  "prefix": "abc123",
    +  "prefix": "xyz789",
       "region": CartAddressRegion,
       "same_as_billing": true,
       "selected_shipping_method": SelectedShippingMethod,
       "street": ["abc123"],
    -  "suffix": "xyz789",
    +  "suffix": "abc123",
       "telephone": "abc123",
    -  "uid": "4",
    -  "vat_id": "abc123"
    +  "uid": 4,
    +  "vat_id": "xyz789"
     }
     
    @@ -75964,7 +75791,7 @@
    Fields
    Example
    {
       "carrier_code": "xyz789",
    -  "method_code": "xyz789"
    +  "method_code": "abc123"
     }
     
    @@ -76107,15 +75934,15 @@
    Example
    "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, "is_available": true, - "is_salable": false, - "max_qty": 987.65, - "min_qty": 987.65, - "not_available_message": "abc123", + "is_salable": true, + "max_qty": 123.45, + "min_qty": 123.45, + "not_available_message": "xyz789", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 987.65, + "quantity": 123.45, "uid": "4" }
    @@ -76371,44 +76198,44 @@
    filters
    Example
    {
    -  "canonical_url": "abc123",
    +  "canonical_url": "xyz789",
       "categories": [CategoryInterface],
    -  "country_of_manufacture": "abc123",
    +  "country_of_manufacture": "xyz789",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    -  "gift_message_available": false,
    -  "gift_wrapping_available": true,
    +  "gift_message_available": true,
    +  "gift_wrapping_available": false,
       "gift_wrapping_price": Money,
       "image": ProductImage,
    -  "is_returnable": "xyz789",
    +  "is_returnable": "abc123",
       "manufacturer": 123,
       "max_sale_qty": 123.45,
       "media_gallery": [MediaGalleryInterface],
    -  "meta_description": "xyz789",
    -  "meta_keyword": "abc123",
    +  "meta_description": "abc123",
    +  "meta_keyword": "xyz789",
       "meta_title": "abc123",
    -  "min_sale_qty": 987.65,
    +  "min_sale_qty": 123.45,
       "name": "abc123",
    -  "new_from_date": "abc123",
    +  "new_from_date": "xyz789",
       "new_to_date": "abc123",
    -  "only_x_left_in_stock": 123.45,
    +  "only_x_left_in_stock": 987.65,
       "options": [CustomizableOptionInterface],
    -  "options_container": "abc123",
    +  "options_container": "xyz789",
       "price_range": PriceRange,
       "price_tiers": [TierPrice],
       "product_links": [ProductLinksInterface],
    -  "quantity": 987.65,
    +  "quantity": 123.45,
       "related_products": [ProductInterface],
       "short_description": ComplexTextValue,
    -  "sku": "abc123",
    +  "sku": "xyz789",
       "small_image": ProductImage,
    -  "special_price": 987.65,
    -  "special_to_date": "xyz789",
    +  "special_price": 123.45,
    +  "special_to_date": "abc123",
       "stock_status": "IN_STOCK",
    -  "swatch_image": "abc123",
    +  "swatch_image": "xyz789",
       "thumbnail": ProductImage,
    -  "uid": 4,
    +  "uid": "4",
       "upsell_products": [ProductInterface],
       "url_key": "abc123",
       "weight": 123.45
    @@ -76634,11 +76461,11 @@ 
    family<
    Example
    {
    -  "addToCartAllowed": false,
    -  "inStock": true,
    +  "addToCartAllowed": true,
    +  "inStock": false,
       "lowStock": false,
       "attributes": [ProductViewAttribute],
    -  "description": "xyz789",
    +  "description": "abc123",
       "id": 4,
       "images": [ProductViewImage],
       "videos": [ProductViewVideo],
    @@ -76646,18 +76473,18 @@ 
    Example
    "lastModifiedAt": "2007-12-03T10:15:30Z", "metaDescription": "xyz789", "metaKeyword": "xyz789", - "metaTitle": "xyz789", - "name": "abc123", + "metaTitle": "abc123", + "name": "xyz789", "price": ProductViewPrice, "shortDescription": "abc123", "sku": "xyz789", "externalId": "xyz789", - "url": "xyz789", + "url": "abc123", "urlKey": "abc123", "links": [ProductViewLink], "categories": [CategoryProductView], "queryType": "abc123", - "visibility": "xyz789" + "visibility": "abc123" }
    @@ -76722,9 +76549,9 @@
    Example
    {
       "customizable_options": [SelectedCustomizableOption],
       "product": ProductInterface,
    -  "quantity": 987.65,
    +  "quantity": 123.45,
       "sku": "xyz789",
    -  "uid": "4"
    +  "uid": 4
     }
     
    @@ -76794,8 +76621,8 @@
    Example
    {
       "added_at": "xyz789",
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "abc123",
    -  "id": "4",
    +  "description": "xyz789",
    +  "id": 4,
       "product": ProductInterface,
       "quantity": 987.65
     }
    @@ -76852,7 +76679,7 @@ 
    Fields
    Example
    {
    -  "payment_source": "xyz789",
    +  "payment_source": "abc123",
       "payments_order_id": "abc123",
       "paypal_order_id": "xyz789"
     }
    @@ -76942,17 +76769,17 @@ 
    Fields
    Example
    {
    -  "app_switch_when_available": false,
    +  "app_switch_when_available": true,
       "button_styles": ButtonStyles,
    -  "code": "xyz789",
    -  "display_message": true,
    -  "display_venmo": true,
    -  "is_visible": false,
    +  "code": "abc123",
    +  "display_message": false,
    +  "display_venmo": false,
    +  "is_visible": true,
       "message_styles": MessageStyles,
    -  "payment_intent": "xyz789",
    +  "payment_intent": "abc123",
       "sdk_params": [SDKParams],
       "sort_order": "abc123",
    -  "title": "xyz789"
    +  "title": "abc123"
     }
     
    @@ -77096,7 +76923,7 @@
    Fields
    Example
    {
    -  "default": "abc123",
    +  "default": "xyz789",
       "options": [SortField]
     }
     
    @@ -77420,10 +77247,10 @@
    Fields
    Example
    {
    -  "attribute": "abc123",
    -  "frontendInput": "abc123",
    -  "label": "xyz789",
    -  "numeric": false
    +  "attribute": "xyz789",
    +  "frontendInput": "xyz789",
    +  "label": "abc123",
    +  "numeric": true
     }
     
    @@ -78244,51 +78071,51 @@
    Fields
    Example
    {
    -  "allow_company_registration": false,
    +  "allow_company_registration": true,
       "allow_gift_receipt": "xyz789",
    -  "allow_gift_wrapping_on_order": "xyz789",
    +  "allow_gift_wrapping_on_order": "abc123",
       "allow_gift_wrapping_on_order_items": "xyz789",
       "allow_items": "xyz789",
       "allow_order": "xyz789",
    -  "allow_printed_card": "abc123",
    +  "allow_printed_card": "xyz789",
       "autocomplete_on_storefront": true,
       "base_currency_code": "abc123",
    -  "base_link_url": "xyz789",
    +  "base_link_url": "abc123",
       "base_media_url": "xyz789",
       "base_static_url": "abc123",
       "base_url": "abc123",
    -  "cart_expires_in_days": 123,
    +  "cart_expires_in_days": 987,
       "cart_gift_wrapping": "xyz789",
    -  "cart_merge_preference": "xyz789",
    +  "cart_merge_preference": "abc123",
       "cart_printed_card": "abc123",
    -  "cart_summary_display_quantity": 987,
    +  "cart_summary_display_quantity": 123,
       "catalog_default_sort_by": "abc123",
       "category_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS",
    -  "category_url_suffix": "abc123",
    +  "category_url_suffix": "xyz789",
       "check_money_order_enable_for_specific_countries": true,
       "check_money_order_enabled": true,
       "check_money_order_make_check_payable_to": "xyz789",
    -  "check_money_order_max_order_total": "xyz789",
    +  "check_money_order_max_order_total": "abc123",
       "check_money_order_min_order_total": "abc123",
    -  "check_money_order_new_order_status": "xyz789",
    +  "check_money_order_new_order_status": "abc123",
       "check_money_order_payment_from_specific_countries": "xyz789",
    -  "check_money_order_send_check_to": "xyz789",
    +  "check_money_order_send_check_to": "abc123",
       "check_money_order_sort_order": 987,
    -  "check_money_order_title": "xyz789",
    -  "company_credit_enabled": true,
    -  "company_enabled": true,
    +  "check_money_order_title": "abc123",
    +  "company_credit_enabled": false,
    +  "company_enabled": false,
       "configurable_product_image": "ITSELF",
       "configurable_thumbnail_source": "xyz789",
       "contact_enabled": false,
       "countries_with_required_region": "xyz789",
       "create_account_confirmation": false,
    -  "customer_access_token_lifetime": 123.45,
    +  "customer_access_token_lifetime": 987.65,
       "default_country": "xyz789",
    -  "default_display_currency_code": "xyz789",
    -  "display_product_prices_in_catalog": 987,
    -  "display_shipping_prices": 987,
    +  "default_display_currency_code": "abc123",
    +  "display_product_prices_in_catalog": 123,
    +  "display_shipping_prices": 123,
       "display_state_if_optional": false,
    -  "enable_multiple_wishlists": "xyz789",
    +  "enable_multiple_wishlists": "abc123",
       "fixed_product_taxes_apply_tax_to_fpt": false,
       "fixed_product_taxes_display_prices_in_emails": 123,
       "fixed_product_taxes_display_prices_in_product_lists": 987,
    @@ -78302,93 +78129,93 @@ 
    Example
    "grouped_product_image": "ITSELF", "is_checkout_agreements_enabled": false, "is_default_store": false, - "is_default_store_group": false, - "is_guest_checkout_enabled": false, + "is_default_store_group": true, + "is_guest_checkout_enabled": true, "is_negotiable_quote_active": true, - "is_one_page_checkout_enabled": false, - "is_requisition_list_active": "xyz789", + "is_one_page_checkout_enabled": true, + "is_requisition_list_active": "abc123", "list_mode": "xyz789", - "list_per_page": 123, + "list_per_page": 987, "list_per_page_values": "abc123", - "locale": "xyz789", - "magento_reward_general_is_enabled": "xyz789", + "locale": "abc123", + "magento_reward_general_is_enabled": "abc123", "magento_reward_general_is_enabled_on_front": "xyz789", - "magento_reward_general_min_points_balance": "abc123", + "magento_reward_general_min_points_balance": "xyz789", "magento_reward_general_publish_history": "abc123", - "magento_reward_points_invitation_customer": "xyz789", + "magento_reward_points_invitation_customer": "abc123", "magento_reward_points_invitation_customer_limit": "xyz789", - "magento_reward_points_invitation_order": "abc123", - "magento_reward_points_invitation_order_limit": "abc123", + "magento_reward_points_invitation_order": "xyz789", + "magento_reward_points_invitation_order_limit": "xyz789", "magento_reward_points_newsletter": "xyz789", "magento_reward_points_order": "abc123", "magento_reward_points_register": "abc123", - "magento_reward_points_review": "abc123", - "magento_reward_points_review_limit": "xyz789", - "magento_wishlist_general_is_enabled": "abc123", + "magento_reward_points_review": "xyz789", + "magento_reward_points_review_limit": "abc123", + "magento_wishlist_general_is_enabled": "xyz789", "max_items_in_order_summary": 987, - "maximum_number_of_wishlists": "xyz789", - "minicart_display": true, + "maximum_number_of_wishlists": "abc123", + "minicart_display": false, "minicart_max_items": 987, "minimum_password_length": "abc123", "newsletter_enabled": true, "optional_zip_countries": "xyz789", - "order_cancellation_enabled": false, + "order_cancellation_enabled": true, "order_cancellation_reasons": [CancellationReason], "orders_invoices_credit_memos_display_full_summary": false, "orders_invoices_credit_memos_display_grandtotal": false, - "orders_invoices_credit_memos_display_price": 123, - "orders_invoices_credit_memos_display_shipping_amount": 987, + "orders_invoices_credit_memos_display_price": 987, + "orders_invoices_credit_memos_display_shipping_amount": 123, "orders_invoices_credit_memos_display_subtotal": 987, - "orders_invoices_credit_memos_display_zero_tax": true, + "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, + "quickorder_active": true, "quote_minimum_amount": 987.65, - "quote_minimum_amount_message": "abc123", - "required_character_classes_number": "xyz789", + "quote_minimum_amount_message": "xyz789", + "required_character_classes_number": "abc123", "requisition_list_share_link_validity_days": 123, "requisition_list_share_max_recipients": 123, "requisition_list_share_storefront_path": "abc123", "requisition_list_sharing_enabled": true, - "returns_enabled": "xyz789", - "root_category_uid": 4, + "returns_enabled": "abc123", + "root_category_uid": "4", "sales_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", - "sales_gift_wrapping": "xyz789", + "sales_gift_wrapping": "abc123", "sales_printed_card": "abc123", "secure_base_link_url": "abc123", - "secure_base_media_url": "abc123", + "secure_base_media_url": "xyz789", "secure_base_static_url": "xyz789", - "secure_base_url": "xyz789", - "share_active_segments": true, + "secure_base_url": "abc123", + "share_active_segments": false, "share_applied_cart_rule": false, "shopping_assistance_checkbox_title": "abc123", "shopping_assistance_checkbox_tooltip": "xyz789", - "shopping_assistance_enabled": true, + "shopping_assistance_enabled": false, "shopping_cart_display_full_summary": true, - "shopping_cart_display_grand_total": true, + "shopping_cart_display_grand_total": false, "shopping_cart_display_price": 123, - "shopping_cart_display_shipping": 123, - "shopping_cart_display_subtotal": 123, + "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": "abc123", + "store_group_code": 4, + "store_group_name": "xyz789", + "store_name": "xyz789", "store_sort_order": 987, "timezone": "xyz789", "title_separator": "abc123", "use_store_in_url": true, "website_code": 4, - "website_name": "abc123", - "weight_unit": "abc123", - "zero_subtotal_enable_for_specific_countries": false, + "website_name": "xyz789", + "weight_unit": "xyz789", + "zero_subtotal_enable_for_specific_countries": true, "zero_subtotal_enabled": true, - "zero_subtotal_new_order_status": "abc123", + "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_sort_order": 987, "zero_subtotal_title": "abc123" }
    @@ -78581,14 +78408,14 @@
    Fields
    Example
    {
       "attachments": [NegotiableQuoteCommentAttachmentInput],
    -  "comment": "abc123",
    -  "max_order_commitment": 987,
    +  "comment": "xyz789",
    +  "max_order_commitment": 123,
       "min_order_commitment": 987,
    -  "name": "xyz789",
    +  "name": "abc123",
       "reference_document_links": [
         NegotiableQuoteTemplateReferenceDocumentLinkInput
       ],
    -  "template_id": "4"
    +  "template_id": 4
     }
     
    @@ -78739,7 +78566,7 @@
    Fields
    Example
    -
    {"depth": 987, "startLevel": 987}
    +                  
    {"depth": 123, "startLevel": 123}
     
    @@ -79074,8 +78901,8 @@
    Fields
    Example
    {
    -  "cartId": "abc123",
    -  "id": "xyz789"
    +  "cartId": "xyz789",
    +  "id": "abc123"
     }
     
    @@ -79327,7 +79154,7 @@
    Example
    {
       "discount": ProductDiscount,
       "final_price": Money,
    -  "quantity": 123.45
    +  "quantity": 987.65
     }
     
    @@ -79369,7 +79196,7 @@
    Fields
    Example
    -
    {"child_company_id": 4}
    +                  
    {"child_company_id": "4"}
     
    @@ -79500,7 +79327,7 @@
    Example
    "unitName": "xyz789", "storefrontLabel": "xyz789", "pagePlacement": "xyz789", - "displayNumber": 123, + "displayNumber": 987, "pageType": "xyz789", "unitStatus": "xyz789", "typeId": "abc123", @@ -79878,8 +79705,8 @@
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "event_name": "abc123", - "message": "xyz789", + "event_name": "xyz789", + "message": "abc123", "privacy_settings": "PRIVATE", "shipping_address": GiftRegistryShippingAddressInput, "status": "ACTIVE" @@ -79937,9 +79764,9 @@
    Fields
    Example
    {
    -  "gift_registry_item_uid": 4,
    +  "gift_registry_item_uid": "4",
       "note": "xyz789",
    -  "quantity": 123.45
    +  "quantity": 987.65
     }
     
    @@ -80089,10 +79916,10 @@
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "email": "abc123", + "email": "xyz789", "firstname": "xyz789", "gift_registry_registrant_uid": 4, - "lastname": "abc123" + "lastname": "xyz789" }
    @@ -80222,7 +80049,7 @@
    Fields
    Example
    {
       "items": [NegotiableQuoteItemQuantityInput],
    -  "quote_uid": 4
    +  "quote_uid": "4"
     }
     
    @@ -80440,12 +80267,12 @@
    Fields
    Example
    {
       "applies_to": [4],
    -  "approvers": ["4"],
    +  "approvers": [4],
       "condition": CreatePurchaseOrderApprovalRuleConditionInput,
       "description": "xyz789",
    -  "name": "abc123",
    +  "name": "xyz789",
       "status": "ENABLED",
    -  "uid": "4"
    +  "uid": 4
     }
     
    @@ -80559,7 +80386,7 @@
    Example
    "entered_options": [EnteredOptionInput], "item_id": 4, "quantity": 987.65, - "selected_options": ["abc123"] + "selected_options": ["xyz789"] }
    @@ -80691,7 +80518,7 @@
    Fields
    Example
    {
    -  "name": "xyz789",
    +  "name": "abc123",
       "uid": 4,
       "visibility": "PUBLIC"
     }
    @@ -80748,8 +80575,8 @@ 
    Fields
    Example
    {
    -  "currentPage": 987,
    -  "pageSize": 987,
    +  "currentPage": 123,
    +  "pageSize": 123,
       "sort": [CompaniesSortInput]
     }
     
    @@ -81046,7 +80873,7 @@
    Fields
    Example
    {
       "name": "DATE_RANGE_MAX",
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -81295,8 +81122,8 @@
    Fields
    Example
    {
    -  "payment_source": "xyz789",
    -  "payments_order_id": "xyz789",
    +  "payment_source": "abc123",
    +  "payments_order_id": "abc123",
       "paypal_order_id": "abc123",
       "public_hash": "xyz789"
     }
    @@ -81391,7 +81218,7 @@ 
    Fields
    Example
    {
       "date": "2007-12-03T10:15:30Z",
    -  "sku": "xyz789"
    +  "sku": "abc123"
     }
     
    @@ -81443,7 +81270,7 @@
    Fields
    Example
    {
       "dateTime": "2007-12-03T10:15:30Z",
    -  "sku": "xyz789"
    +  "sku": "abc123"
     }
     
    @@ -81562,14 +81389,14 @@
    Fields
    Example
    {
    -  "backorder_message": "abc123",
    +  "backorder_message": "xyz789",
       "custom_attributes": [CustomAttribute],
       "customizable_options": [SelectedCustomizableOption],
       "discount": [Discount],
       "errors": [CartItemError],
       "is_available": false,
    -  "is_salable": false,
    -  "max_qty": 123.45,
    +  "is_salable": true,
    +  "max_qty": 987.65,
       "min_qty": 987.65,
       "not_available_message": "abc123",
       "note_from_buyer": [ItemNote],
    @@ -81827,28 +81654,28 @@ 
    filters
    Example
    {
    -  "canonical_url": "xyz789",
    +  "canonical_url": "abc123",
       "categories": [CategoryInterface],
    -  "country_of_manufacture": "abc123",
    +  "country_of_manufacture": "xyz789",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
       "gift_message_available": true,
    -  "gift_wrapping_available": false,
    +  "gift_wrapping_available": true,
       "gift_wrapping_price": Money,
       "image": ProductImage,
    -  "is_returnable": "abc123",
    -  "manufacturer": 987,
    +  "is_returnable": "xyz789",
    +  "manufacturer": 123,
       "max_sale_qty": 987.65,
       "media_gallery": [MediaGalleryInterface],
    -  "meta_description": "xyz789",
    -  "meta_keyword": "abc123",
    +  "meta_description": "abc123",
    +  "meta_keyword": "xyz789",
       "meta_title": "abc123",
       "min_sale_qty": 123.45,
       "name": "abc123",
    -  "new_from_date": "xyz789",
    +  "new_from_date": "abc123",
       "new_to_date": "xyz789",
    -  "only_x_left_in_stock": 123.45,
    +  "only_x_left_in_stock": 987.65,
       "options": [CustomizableOptionInterface],
       "options_container": "abc123",
       "price_range": PriceRange,
    @@ -81857,16 +81684,16 @@ 
    Example
    "quantity": 123.45, "related_products": [ProductInterface], "short_description": ComplexTextValue, - "sku": "xyz789", + "sku": "abc123", "small_image": ProductImage, - "special_price": 123.45, + "special_price": 987.65, "special_to_date": "xyz789", "stock_status": "IN_STOCK", - "swatch_image": "xyz789", + "swatch_image": "abc123", "thumbnail": ProductImage, - "uid": 4, + "uid": "4", "upsell_products": [ProductInterface], - "url_key": "abc123" + "url_key": "xyz789" }
    @@ -81932,8 +81759,8 @@
    Example
    "customizable_options": [SelectedCustomizableOption], "product": ProductInterface, "quantity": 123.45, - "sku": "abc123", - "uid": "4" + "sku": "xyz789", + "uid": 4 }
    @@ -82001,12 +81828,12 @@
    Fields
    Example
    {
    -  "added_at": "abc123",
    +  "added_at": "xyz789",
       "customizable_options": [SelectedCustomizableOption],
       "description": "xyz789",
    -  "id": "4",
    +  "id": 4,
       "product": ProductInterface,
    -  "quantity": 987.65
    +  "quantity": 123.45
     }
     
    @@ -82054,7 +81881,7 @@
    Fields
    Example
    {
       "code": "PRODUCT_NOT_FOUND",
    -  "message": "xyz789"
    +  "message": "abc123"
     }
     
    @@ -82192,12 +82019,12 @@
    pageSize
    Example
    {
    -  "id": 4,
    -  "items_count": 123,
    +  "id": "4",
    +  "items_count": 987,
       "items_v2": WishlistItems,
    -  "name": "abc123",
    -  "sharing_code": "abc123",
    -  "updated_at": "xyz789",
    +  "name": "xyz789",
    +  "sharing_code": "xyz789",
    +  "updated_at": "abc123",
       "visibility": "PUBLIC"
     }
     
    @@ -82257,8 +82084,8 @@
    Example
    {
       "code": "PRODUCT_NOT_FOUND",
       "message": "xyz789",
    -  "wishlistId": "4",
    -  "wishlistItemId": "4"
    +  "wishlistId": 4,
    +  "wishlistItemId": 4
     }
     
    @@ -82376,7 +82203,10 @@
    Fields
    Example
    -
    {"quantity": 123.45, "wishlist_item_id": 4}
    +                  
    {
    +  "quantity": 987.65,
    +  "wishlist_item_id": "4"
    +}
     
    @@ -82445,8 +82275,8 @@
    Example
    "entered_options": [EnteredOptionInput], "parent_sku": "abc123", "quantity": 987.65, - "selected_options": [4], - "sku": "abc123" + "selected_options": ["4"], + "sku": "xyz789" }
    @@ -82563,10 +82393,10 @@
    Example
    {
       "added_at": "abc123",
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "xyz789",
    +  "description": "abc123",
       "id": "4",
       "product": ProductInterface,
    -  "quantity": 987.65
    +  "quantity": 123.45
     }
     
    @@ -82615,7 +82445,7 @@
    Fields
    Example
    {
    -  "quantity": 123.45,
    +  "quantity": 987.65,
       "wishlist_item_id": "4"
     }
     
    @@ -82685,9 +82515,9 @@
    Example
    {
       "description": "xyz789",
       "entered_options": [EnteredOptionInput],
    -  "quantity": 123.45,
    -  "selected_options": [4],
    -  "wishlist_item_id": 4
    +  "quantity": 987.65,
    +  "selected_options": ["4"],
    +  "wishlist_item_id": "4"
     }
     
    @@ -82879,7 +82709,7 @@
    Fields
    Example
    {
       "key": "xyz789",
    -  "message": "abc123",
    +  "message": "xyz789",
       "success": true
     }
     
    @@ -82974,8 +82804,8 @@
    Fields
    Example
    {
    -  "expires_at": "abc123",
    -  "key": "abc123",
    +  "expires_at": "xyz789",
    +  "key": "xyz789",
       "upload_url": "xyz789"
     }
     
    From c22b3b256d009d825e93bf6d99082c40b08b7886 Mon Sep 17 00:00:00 2001 From: Jared Hoover Date: Fri, 29 May 2026 15:18:01 -0500 Subject: [PATCH 4/9] re run spectaql --- static/graphql-api/saas/index.html | 3275 ++++++++++++++-------------- 1 file changed, 1638 insertions(+), 1637 deletions(-) diff --git a/static/graphql-api/saas/index.html b/static/graphql-api/saas/index.html index af536f5f6..3650e6890 100644 --- a/static/graphql-api/saas/index.html +++ b/static/graphql-api/saas/index.html @@ -1294,7 +1294,7 @@
    Query
    Variables
    -
    {"formCode": "xyz789"}
    +                  
    {"formCode": "abc123"}
     
    @@ -1620,21 +1620,21 @@
    Response
    "data": { "availableStores": [ { - "allow_company_registration": true, - "allow_gift_receipt": "abc123", + "allow_company_registration": false, + "allow_gift_receipt": "xyz789", "allow_gift_wrapping_on_order": "xyz789", - "allow_gift_wrapping_on_order_items": "xyz789", - "allow_items": "abc123", - "allow_order": "abc123", - "allow_printed_card": "xyz789", + "allow_gift_wrapping_on_order_items": "abc123", + "allow_items": "xyz789", + "allow_order": "xyz789", + "allow_printed_card": "abc123", "autocomplete_on_storefront": false, - "base_currency_code": "abc123", + "base_currency_code": "xyz789", "base_link_url": "abc123", "base_media_url": "abc123", "base_static_url": "xyz789", "base_url": "abc123", "cart_expires_in_days": 123, - "cart_gift_wrapping": "abc123", + "cart_gift_wrapping": "xyz789", "cart_merge_preference": "xyz789", "cart_printed_card": "xyz789", "cart_summary_display_quantity": 123, @@ -1642,131 +1642,131 @@
    Response
    "category_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", "category_url_suffix": "abc123", "check_money_order_enable_for_specific_countries": true, - "check_money_order_enabled": false, - "check_money_order_make_check_payable_to": "abc123", - "check_money_order_max_order_total": "abc123", + "check_money_order_enabled": true, + "check_money_order_make_check_payable_to": "xyz789", + "check_money_order_max_order_total": "xyz789", "check_money_order_min_order_total": "abc123", - "check_money_order_new_order_status": "abc123", - "check_money_order_payment_from_specific_countries": "abc123", - "check_money_order_send_check_to": "abc123", + "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", + "check_money_order_title": "xyz789", "company_credit_enabled": false, "company_enabled": false, "configurable_product_image": "ITSELF", - "configurable_thumbnail_source": "abc123", + "configurable_thumbnail_source": "xyz789", "contact_enabled": true, - "countries_with_required_region": "xyz789", + "countries_with_required_region": "abc123", "create_account_confirmation": true, - "customer_access_token_lifetime": 123.45, + "customer_access_token_lifetime": 987.65, "default_country": "abc123", - "default_display_currency_code": "abc123", - "display_product_prices_in_catalog": 987, + "default_display_currency_code": "xyz789", + "display_product_prices_in_catalog": 123, "display_shipping_prices": 987, - "display_state_if_optional": false, + "display_state_if_optional": true, "enable_multiple_wishlists": "xyz789", - "fixed_product_taxes_apply_tax_to_fpt": false, + "fixed_product_taxes_apply_tax_to_fpt": true, "fixed_product_taxes_display_prices_in_emails": 123, - "fixed_product_taxes_display_prices_in_product_lists": 123, + "fixed_product_taxes_display_prices_in_product_lists": 987, "fixed_product_taxes_display_prices_in_sales_modules": 123, - "fixed_product_taxes_display_prices_on_product_view_page": 987, + "fixed_product_taxes_display_prices_on_product_view_page": 123, "fixed_product_taxes_enable": false, - "fixed_product_taxes_include_fpt_in_subtotal": false, + "fixed_product_taxes_include_fpt_in_subtotal": true, "graphql_share_customer_group": false, - "grid_per_page": 987, - "grid_per_page_values": "xyz789", + "grid_per_page": 123, + "grid_per_page_values": "abc123", "grouped_product_image": "ITSELF", - "is_checkout_agreements_enabled": false, - "is_default_store": false, + "is_checkout_agreements_enabled": true, + "is_default_store": true, "is_default_store_group": false, - "is_guest_checkout_enabled": false, - "is_negotiable_quote_active": false, - "is_one_page_checkout_enabled": false, + "is_guest_checkout_enabled": true, + "is_negotiable_quote_active": true, + "is_one_page_checkout_enabled": true, "is_requisition_list_active": "xyz789", "list_mode": "abc123", "list_per_page": 123, "list_per_page_values": "xyz789", - "locale": "abc123", + "locale": "xyz789", "magento_reward_general_is_enabled": "xyz789", "magento_reward_general_is_enabled_on_front": "abc123", - "magento_reward_general_min_points_balance": "xyz789", + "magento_reward_general_min_points_balance": "abc123", "magento_reward_general_publish_history": "xyz789", - "magento_reward_points_invitation_customer": "abc123", + "magento_reward_points_invitation_customer": "xyz789", "magento_reward_points_invitation_customer_limit": "abc123", - "magento_reward_points_invitation_order": "xyz789", + "magento_reward_points_invitation_order": "abc123", "magento_reward_points_invitation_order_limit": "xyz789", "magento_reward_points_newsletter": "xyz789", - "magento_reward_points_order": "xyz789", + "magento_reward_points_order": "abc123", "magento_reward_points_register": "xyz789", "magento_reward_points_review": "xyz789", "magento_reward_points_review_limit": "abc123", - "magento_wishlist_general_is_enabled": "abc123", - "max_items_in_order_summary": 123, + "magento_wishlist_general_is_enabled": "xyz789", + "max_items_in_order_summary": 987, "maximum_number_of_wishlists": "abc123", "minicart_display": true, "minicart_max_items": 123, "minimum_password_length": "abc123", "newsletter_enabled": false, - "optional_zip_countries": "xyz789", - "order_cancellation_enabled": false, + "optional_zip_countries": "abc123", + "order_cancellation_enabled": true, "order_cancellation_reasons": [ CancellationReason ], - "orders_invoices_credit_memos_display_full_summary": true, - "orders_invoices_credit_memos_display_grandtotal": false, - "orders_invoices_credit_memos_display_price": 123, - "orders_invoices_credit_memos_display_shipping_amount": 123, + "orders_invoices_credit_memos_display_full_summary": false, + "orders_invoices_credit_memos_display_grandtotal": true, + "orders_invoices_credit_memos_display_price": 987, + "orders_invoices_credit_memos_display_shipping_amount": 987, "orders_invoices_credit_memos_display_subtotal": 987, - "orders_invoices_credit_memos_display_zero_tax": true, + "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": 123.45, "quote_minimum_amount_message": "xyz789", - "required_character_classes_number": "abc123", - "requisition_list_share_link_validity_days": 987, - "requisition_list_share_max_recipients": 123, - "requisition_list_share_storefront_path": "xyz789", - "requisition_list_sharing_enabled": false, + "required_character_classes_number": "xyz789", + "requisition_list_share_link_validity_days": 123, + "requisition_list_share_max_recipients": 987, + "requisition_list_share_storefront_path": "abc123", + "requisition_list_sharing_enabled": true, "returns_enabled": "abc123", - "root_category_uid": "4", + "root_category_uid": 4, "sales_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", - "sales_gift_wrapping": "xyz789", + "sales_gift_wrapping": "abc123", "sales_printed_card": "abc123", "secure_base_link_url": "abc123", "secure_base_media_url": "abc123", - "secure_base_static_url": "abc123", - "secure_base_url": "xyz789", - "share_active_segments": true, + "secure_base_static_url": "xyz789", + "secure_base_url": "abc123", + "share_active_segments": false, "share_applied_cart_rule": false, "shopping_assistance_checkbox_title": "abc123", - "shopping_assistance_checkbox_tooltip": "abc123", - "shopping_assistance_enabled": true, + "shopping_assistance_checkbox_tooltip": "xyz789", + "shopping_assistance_enabled": false, "shopping_cart_display_full_summary": true, - "shopping_cart_display_grand_total": true, - "shopping_cart_display_price": 987, - "shopping_cart_display_shipping": 987, + "shopping_cart_display_grand_total": false, + "shopping_cart_display_price": 123, + "shopping_cart_display_shipping": 123, "shopping_cart_display_subtotal": 123, "shopping_cart_display_tax_gift_wrapping": "DISPLAY_EXCLUDING_TAX", "shopping_cart_display_zero_tax": false, - "store_code": 4, - "store_group_code": 4, + "store_code": "4", + "store_group_code": "4", "store_group_name": "abc123", - "store_name": "xyz789", + "store_name": "abc123", "store_sort_order": 123, - "timezone": "xyz789", + "timezone": "abc123", "title_separator": "abc123", "use_store_in_url": false, - "website_code": "4", + "website_code": 4, "website_name": "abc123", "weight_unit": "abc123", "zero_subtotal_enable_for_specific_countries": false, - "zero_subtotal_enabled": true, - "zero_subtotal_new_order_status": "abc123", + "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_payment_from_specific_countries": "xyz789", + "zero_subtotal_sort_order": 987, "zero_subtotal_title": "xyz789" } ] @@ -1883,7 +1883,7 @@
    Query
    Variables
    -
    {"cart_id": "xyz789"}
    +                  
    {"cart_id": "abc123"}
     
    @@ -1905,8 +1905,8 @@
    Response
    "gift_message": GiftMessage, "gift_receipt_included": false, "gift_wrapping": GiftWrapping, - "id": "4", - "is_virtual": true, + "id": 4, + "is_virtual": false, "itemsV2": CartItems, "prices": CartPrices, "printed_card_included": false, @@ -2019,7 +2019,7 @@
    Query
    Variables
    {
    -  "ids": ["xyz789"],
    +  "ids": ["abc123"],
       "roles": ["xyz789"],
       "subtree": Subtree
     }
    @@ -2032,19 +2032,19 @@ 
    Response
    "categories": [ { "availableSortBy": ["abc123"], - "children": ["xyz789"], - "defaultSortBy": "xyz789", - "id": "4", + "children": ["abc123"], + "defaultSortBy": "abc123", + "id": 4, "level": 123, "name": "abc123", "parentId": "xyz789", "position": 987, - "path": "xyz789", - "roles": ["xyz789"], + "path": "abc123", + "roles": ["abc123"], "urlKey": "abc123", "urlPath": "xyz789", - "count": 123, - "title": "xyz789" + "count": 987, + "title": "abc123" } ] } @@ -2142,7 +2142,7 @@
    Query
    Variables
    {
    -  "family": "xyz789",
    +  "family": "abc123",
       "slugs": ["xyz789"],
       "depth": 123
     }
    @@ -2154,14 +2154,14 @@ 
    Response
    "data": { "categoryTree": [ { - "slug": "abc123", + "slug": "xyz789", "name": "xyz789", "description": "abc123", "metaTags": CategoryMetaTags, "images": [CategoryImage], - "level": 987, + "level": 123, "parentSlug": "xyz789", - "childrenSlugs": ["abc123"] + "childrenSlugs": ["xyz789"] } ] } @@ -2218,11 +2218,11 @@
    Response
    "data": { "checkoutAgreements": [ { - "agreement_id": 123, + "agreement_id": 987, "checkbox_text": "abc123", "content": "xyz789", - "content_height": "abc123", - "is_html": false, + "content_height": "xyz789", + "is_html": true, "mode": "AUTO", "name": "xyz789" } @@ -2389,8 +2389,8 @@
    Response
    "email": "abc123", "id": "4", "legal_address": CompanyLegalAddress, - "legal_name": "xyz789", - "name": "abc123", + "legal_name": "abc123", + "name": "xyz789", "payment_methods": ["abc123"], "reseller_id": "abc123", "role": CompanyRole, @@ -2401,7 +2401,7 @@
    Response
    "team": CompanyTeam, "user": Customer, "users": CompanyUsers, - "vat_tax_id": "abc123" + "vat_tax_id": "xyz789" } } } @@ -2484,7 +2484,7 @@
    Response
    "attributes": [ComparableAttribute], "item_count": 987, "items": [ComparableItem], - "uid": "4" + "uid": 4 } } } @@ -2546,7 +2546,7 @@
    Response
    "full_name_locale": "abc123", "id": "abc123", "three_letter_abbreviation": "xyz789", - "two_letter_abbreviation": "abc123" + "two_letter_abbreviation": "xyz789" } ] } @@ -2620,7 +2620,7 @@
    Query
    Variables
    -
    {"id": "xyz789"}
    +                  
    {"id": "abc123"}
     
    @@ -2630,8 +2630,8 @@
    Response
    "country": { "available_regions": [Region], "full_name_english": "abc123", - "full_name_locale": "abc123", - "id": "abc123", + "full_name_locale": "xyz789", + "id": "xyz789", "three_letter_abbreviation": "xyz789", "two_letter_abbreviation": "xyz789" } @@ -2692,10 +2692,10 @@
    Response
    "available_currency_codes": [ "abc123" ], - "base_currency_code": "xyz789", - "base_currency_symbol": "xyz789", + "base_currency_code": "abc123", + "base_currency_symbol": "abc123", "default_display_currency_code": "xyz789", - "default_display_currency_symbol": "xyz789", + "default_display_currency_symbol": "abc123", "exchange_rates": [ExchangeRate] } } @@ -2927,36 +2927,36 @@
    Response
    "addresses": [CustomerAddress], "addressesV2": CustomerAddresses, "admin_assistance_actions": AdminAssistanceActions, - "allow_remote_shopping_assistance": true, + "allow_remote_shopping_assistance": false, "companies": UserCompaniesOutput, "company_hierarchy": [CompanyHierarchy], "compare_list": CompareList, "confirmation_status": "ACCOUNT_CONFIRMED", "created_at": "xyz789", "custom_attributes": [AttributeValueInterface], - "date_of_birth": "abc123", + "date_of_birth": "xyz789", "default_billing": "xyz789", "default_shipping": "abc123", - "email": "xyz789", + "email": "abc123", "firstname": "abc123", - "gender": 123, + "gender": 987, "gift_registries": [GiftRegistry], "gift_registry": GiftRegistry, "group": CustomerGroupStorefront, - "id": "4", + "id": 4, "is_subscribed": true, "job_title": "xyz789", "lastname": "abc123", "middlename": "xyz789", "orders": CustomerOrders, - "prefix": "abc123", + "prefix": "xyz789", "purchase_order": PurchaseOrder, "purchase_order_approval_rule": PurchaseOrderApprovalRule, "purchase_order_approval_rule_metadata": PurchaseOrderApprovalRuleMetadata, "purchase_order_approval_rules": PurchaseOrderApprovalRules, "purchase_orders": PurchaseOrders, "purchase_orders_enabled": true, - "quote_enabled": false, + "quote_enabled": true, "requisition_lists": RequisitionLists, "return": Return, "returns": Returns, @@ -2966,10 +2966,10 @@
    Response
    "status": "ACTIVE", "store_credit": CustomerStoreCredit, "structure_id": "4", - "suffix": "xyz789", + "suffix": "abc123", "taxvat": "xyz789", "team": CompanyTeam, - "telephone": "abc123", + "telephone": "xyz789", "wishlist_v2": Wishlist, "wishlists": [Wishlist] } @@ -3080,11 +3080,11 @@
    Response
    ], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "abc123", + "email": "xyz789", "gift_message": GiftMessage, "gift_receipt_included": true, "gift_wrapping": GiftWrapping, - "id": 4, + "id": "4", "is_virtual": false, "itemsV2": CartItems, "prices": CartPrices, @@ -3189,7 +3189,7 @@
    Query
    Response
    -
    {"data": {"customerGroup": {"uid": "4"}}}
    +                  
    {"data": {"customerGroup": {"uid": 4}}}
     
    @@ -3300,7 +3300,7 @@
    Query
    Variables
    -
    {"cartId": "abc123"}
    +                  
    {"cartId": "xyz789"}
     
    @@ -3477,7 +3477,7 @@
    Query
    Variables
    {
       "cartId": "xyz789",
    -  "id": "xyz789"
    +  "id": "abc123"
     }
     
    @@ -3487,7 +3487,7 @@
    Response
    "data": { "getPaymentOrder": { "id": "abc123", - "mp_order_id": "abc123", + "mp_order_id": "xyz789", "payment_source_details": PaymentSourceDetails, "status": "xyz789" } @@ -3786,14 +3786,14 @@
    Response
    {
       "data": {
         "giftRegistry": {
    -      "created_at": "xyz789",
    +      "created_at": "abc123",
           "dynamic_attributes": [
             GiftRegistryDynamicAttribute
           ],
    -      "event_name": "abc123",
    +      "event_name": "xyz789",
           "items": [GiftRegistryItemInterface],
    -      "message": "abc123",
    -      "owner_name": "abc123",
    +      "message": "xyz789",
    +      "owner_name": "xyz789",
           "privacy_settings": "PRIVATE",
           "registrants": [GiftRegistryRegistrant],
           "shipping_address": CustomerAddress,
    @@ -3880,9 +3880,9 @@ 
    Response
    { "event_date": "abc123", "event_title": "abc123", - "gift_registry_uid": "4", + "gift_registry_uid": 4, "location": "abc123", - "name": "abc123", + "name": "xyz789", "type": "xyz789" } ] @@ -4061,7 +4061,7 @@
    Query
    Variables
    {
       "firstName": "xyz789",
    -  "lastName": "xyz789",
    +  "lastName": "abc123",
       "giftRegistryTypeUid": 4
     }
     
    @@ -4076,8 +4076,8 @@
    Response
    "event_title": "xyz789", "gift_registry_uid": 4, "location": "xyz789", - "name": "abc123", - "type": "abc123" + "name": "xyz789", + "type": "xyz789" } ] } @@ -4136,7 +4136,7 @@
    Response
    GiftRegistryDynamicAttributeMetadataInterface ], "label": "xyz789", - "uid": 4 + "uid": "4" } ] } @@ -4288,27 +4288,27 @@
    Response
    "credit_memos": [CreditMemo], "custom_attributes": [CustomAttribute], "customer_info": OrderCustomerInfo, - "email": "abc123", + "email": "xyz789", "gift_message": GiftMessage, "gift_receipt_included": true, "gift_wrapping": GiftWrapping, - "id": 4, + "id": "4", "invoices": [Invoice], "is_virtual": true, "items": [OrderItemInterface], "items_eligible_for_return": [OrderItemInterface], "negotiable_quote": NegotiableQuote, "number": "abc123", - "order_date": "xyz789", - "order_status_change_date": "xyz789", + "order_date": "abc123", + "order_status_change_date": "abc123", "payment_methods": [OrderPaymentMethod], "printed_card_included": false, "returns": Returns, "shipments": [OrderShipment], "shipping_address": OrderAddress, - "shipping_method": "abc123", + "shipping_method": "xyz789", "status": "abc123", - "token": "abc123", + "token": "xyz789", "total": OrderTotal } } @@ -4462,19 +4462,19 @@
    Response
    "customer_info": OrderCustomerInfo, "email": "xyz789", "gift_message": GiftMessage, - "gift_receipt_included": false, + "gift_receipt_included": true, "gift_wrapping": GiftWrapping, - "id": 4, + "id": "4", "invoices": [Invoice], - "is_virtual": true, + "is_virtual": false, "items": [OrderItemInterface], "items_eligible_for_return": [OrderItemInterface], "negotiable_quote": NegotiableQuote, - "number": "abc123", + "number": "xyz789", "order_date": "xyz789", - "order_status_change_date": "xyz789", + "order_status_change_date": "abc123", "payment_methods": [OrderPaymentMethod], - "printed_card_included": false, + "printed_card_included": true, "returns": Returns, "shipments": [OrderShipment], "shipping_address": OrderAddress, @@ -4552,7 +4552,7 @@
    Variables
    Response
    -
    {"data": {"isCompanyAdminEmailAvailable": {"is_email_available": false}}}
    +                  
    {"data": {"isCompanyAdminEmailAvailable": {"is_email_available": true}}}
     
    @@ -4615,12 +4615,12 @@
    Query
    Variables
    -
    {"email": "xyz789"}
    +                  
    {"email": "abc123"}
     
    Response
    -
    {"data": {"isCompanyEmailAvailable": {"is_email_available": false}}}
    +                  
    {"data": {"isCompanyEmailAvailable": {"is_email_available": true}}}
     
    @@ -4751,7 +4751,7 @@
    Query
    Variables
    -
    {"email": "abc123"}
    +                  
    {"email": "xyz789"}
     
    @@ -4818,12 +4818,12 @@
    Query
    Variables
    -
    {"email": "xyz789"}
    +                  
    {"email": "abc123"}
     
    Response
    -
    {"data": {"isEmailAvailable": {"is_email_available": true}}}
    +                  
    {"data": {"isEmailAvailable": {"is_email_available": false}}}
     
    @@ -4896,7 +4896,7 @@
    Response
    "data": { "isSubscribedProductAlertPrice": { "isSubscribed": true, - "message": "xyz789" + "message": "abc123" } } } @@ -4971,7 +4971,7 @@
    Response
    {
       "data": {
         "isSubscribedProductAlertStock": {
    -      "isSubscribed": false,
    +      "isSubscribed": true,
           "message": "xyz789"
         }
       }
    @@ -5041,7 +5041,7 @@ 
    Query
    Variables
    -
    {"family": "xyz789"}
    +                  
    {"family": "abc123"}
     
    @@ -5163,7 +5163,7 @@
    Query
    Variables
    -
    {"uid": "4"}
    +                  
    {"uid": 4}
     
    @@ -5180,11 +5180,11 @@
    Response
    "created_at": "xyz789", "custom_attributes": [CustomAttribute], "email": "xyz789", - "expiration_date": "abc123", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], - "is_virtual": true, + "is_virtual": false, "items": [CartItemInterface], - "name": "xyz789", + "name": "abc123", "order": CustomerOrder, "prices": CartPrices, "sales_rep_name": "abc123", @@ -5193,10 +5193,10 @@
    Response
    NegotiableQuoteShippingAddress ], "status": "SUBMITTED", - "template_id": 4, + "template_id": "4", "template_name": "xyz789", - "total_quantity": 123.45, - "uid": 4, + "total_quantity": 987.65, + "uid": "4", "updated_at": "xyz789" } } @@ -5312,16 +5312,16 @@
    Response
    "negotiableQuoteTemplate": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "xyz789", + "created_at": "abc123", "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": false, - "is_virtual": true, + "is_min_max_qty_used": true, + "is_virtual": false, "items": [CartItemInterface], - "max_order_commitment": 123, - "min_order_commitment": 123, - "name": "xyz789", + "max_order_commitment": 987, + "min_order_commitment": 987, + "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ @@ -5333,9 +5333,9 @@
    Response
    ], "status": "xyz789", "template_id": "4", - "total_quantity": 987.65, - "uid": 4, - "updated_at": "xyz789" + "total_quantity": 123.45, + "uid": "4", + "updated_at": "abc123" } } } @@ -5703,7 +5703,7 @@
    Response
    "pickupLocations": { "items": [PickupLocation], "page_info": SearchResultPageInfo, - "total_count": 123 + "total_count": 987 } } } @@ -5845,8 +5845,8 @@
    Response
    "items": [ProductSearchItem], "page_info": SearchResultPageInfo, "related_terms": ["abc123"], - "suggestions": ["abc123"], - "total_count": 987, + "suggestions": ["xyz789"], + "total_count": 123, "warnings": [ProductSearchWarning] } } @@ -5946,7 +5946,7 @@
    Query
    Variables
    -
    {"skus": ["abc123"]}
    +                  
    {"skus": ["xyz789"]}
     
    @@ -5956,23 +5956,23 @@
    Response
    "products": [ { "addToCartAllowed": true, - "inStock": false, - "lowStock": true, + "inStock": true, + "lowStock": false, "attributes": [ProductViewAttribute], "description": "abc123", "id": "4", "images": [ProductViewImage], "videos": [ProductViewVideo], "lastModifiedAt": "2007-12-03T10:15:30Z", - "metaDescription": "xyz789", + "metaDescription": "abc123", "metaKeyword": "abc123", "metaTitle": "xyz789", "name": "xyz789", "shortDescription": "xyz789", "inputOptions": [ProductViewInputOption], "sku": "abc123", - "externalId": "abc123", - "url": "xyz789", + "externalId": "xyz789", + "url": "abc123", "urlKey": "abc123", "links": [ProductViewLink], "categories": [CategoryProductView], @@ -6048,7 +6048,7 @@
    Response
    "data": { "recaptchaFormConfig": { "configurations": ReCaptchaConfiguration, - "is_enabled": true + "is_enabled": false } } } @@ -6187,12 +6187,12 @@
    Response
    "data": { "recaptchaV3Config": { "badge_position": "xyz789", - "failure_message": "abc123", + "failure_message": "xyz789", "forms": ["PLACE_ORDER"], - "is_enabled": false, - "language_code": "abc123", + "is_enabled": true, + "language_code": "xyz789", "minimum_score": 123.45, - "theme": "xyz789", + "theme": "abc123", "website_key": "xyz789" } } @@ -6322,8 +6322,8 @@
    Query
    Variables
    {
    -  "cartSkus": ["abc123"],
    -  "category": "xyz789",
    +  "cartSkus": ["xyz789"],
    +  "category": "abc123",
       "currentSku": "xyz789",
       "currentProduct": CurrentProductInput,
       "pageType": "CMS",
    @@ -6339,7 +6339,7 @@ 
    Response
    "data": { "recommendations": { "results": [RecommendationUnit], - "totalResults": 987 + "totalResults": 123 } } } @@ -6444,12 +6444,12 @@
    Query
    Variables
    {
    -  "unitIds": ["xyz789"],
    +  "unitIds": ["abc123"],
       "currentSku": "xyz789",
       "currentProduct": CurrentProductInput,
       "userPurchaseHistory": [PurchaseHistory],
       "userViewHistory": [ViewHistory],
    -  "cartSkus": ["xyz789"]
    +  "cartSkus": ["abc123"]
     }
     
    @@ -6459,7 +6459,7 @@
    Response
    "data": { "recommendationsByUnitIds": { "results": [RecommendationUnit], - "totalResults": 987 + "totalResults": 123 } } } @@ -6572,7 +6572,7 @@
    Query
    Variables
    {
       "optionIds": ["xyz789"],
    -  "sku": "xyz789"
    +  "sku": "abc123"
     }
     
    @@ -6583,7 +6583,7 @@
    Response
    "refineProduct": { "addToCartAllowed": false, "inStock": true, - "lowStock": true, + "lowStock": false, "attributes": [ProductViewAttribute], "description": "xyz789", "id": "4", @@ -6593,16 +6593,16 @@
    Response
    "metaDescription": "abc123", "metaKeyword": "abc123", "metaTitle": "abc123", - "name": "xyz789", - "shortDescription": "xyz789", + "name": "abc123", + "shortDescription": "abc123", "inputOptions": [ProductViewInputOption], - "sku": "abc123", + "sku": "xyz789", "externalId": "xyz789", - "url": "abc123", - "urlKey": "xyz789", + "url": "xyz789", + "urlKey": "abc123", "links": [ProductViewLink], "categories": [CategoryProductView], - "queryType": "abc123", + "queryType": "xyz789", "visibility": "abc123" } } @@ -6703,8 +6703,8 @@
    Query
    Variables
    {
    -  "searchTerm": "abc123",
    -  "family": "abc123",
    +  "searchTerm": "xyz789",
    +  "family": "xyz789",
       "pageSize": 20,
       "currentPage": 1
     }
    @@ -6716,7 +6716,7 @@ 
    Response
    "data": { "searchCategory": { "items": [CategoryTreeView], - "totalCount": 123, + "totalCount": 987, "pageInfo": PageInfo } } @@ -6785,7 +6785,7 @@
    Query
    Variables
    -
    {"token": "abc123"}
    +                  
    {"token": "xyz789"}
     
    @@ -6794,7 +6794,7 @@
    Response
    "data": { "sharedRequisitionList": { "requisition_list": RequisitionList, - "sender_name": "xyz789" + "sender_name": "abc123" } } } @@ -6992,152 +6992,152 @@
    Response
    {
       "data": {
         "storeConfig": {
    -      "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_company_registration": false,
    +      "allow_gift_receipt": "xyz789",
    +      "allow_gift_wrapping_on_order": "xyz789",
    +      "allow_gift_wrapping_on_order_items": "xyz789",
    +      "allow_items": "xyz789",
    +      "allow_order": "xyz789",
           "allow_printed_card": "xyz789",
           "autocomplete_on_storefront": true,
    -      "base_currency_code": "abc123",
    -      "base_link_url": "xyz789",
    -      "base_media_url": "xyz789",
    +      "base_currency_code": "xyz789",
    +      "base_link_url": "abc123",
    +      "base_media_url": "abc123",
           "base_static_url": "abc123",
           "base_url": "xyz789",
    -      "cart_expires_in_days": 987,
    -      "cart_gift_wrapping": "xyz789",
    +      "cart_expires_in_days": 123,
    +      "cart_gift_wrapping": "abc123",
           "cart_merge_preference": "abc123",
           "cart_printed_card": "xyz789",
    -      "cart_summary_display_quantity": 123,
    -      "catalog_default_sort_by": "xyz789",
    +      "cart_summary_display_quantity": 987,
    +      "catalog_default_sort_by": "abc123",
           "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": true,
    -      "check_money_order_make_check_payable_to": "xyz789",
    -      "check_money_order_max_order_total": "abc123",
    +      "check_money_order_make_check_payable_to": "abc123",
    +      "check_money_order_max_order_total": "xyz789",
           "check_money_order_min_order_total": "xyz789",
    -      "check_money_order_new_order_status": "abc123",
    +      "check_money_order_new_order_status": "xyz789",
           "check_money_order_payment_from_specific_countries": "xyz789",
    -      "check_money_order_send_check_to": "abc123",
    +      "check_money_order_send_check_to": "xyz789",
           "check_money_order_sort_order": 123,
    -      "check_money_order_title": "xyz789",
    -      "company_credit_enabled": true,
    +      "check_money_order_title": "abc123",
    +      "company_credit_enabled": false,
           "company_enabled": false,
           "configurable_product_image": "ITSELF",
    -      "configurable_thumbnail_source": "xyz789",
    -      "contact_enabled": true,
    +      "configurable_thumbnail_source": "abc123",
    +      "contact_enabled": false,
           "countries_with_required_region": "xyz789",
    -      "create_account_confirmation": true,
    +      "create_account_confirmation": false,
           "customer_access_token_lifetime": 987.65,
    -      "default_country": "xyz789",
    +      "default_country": "abc123",
           "default_display_currency_code": "xyz789",
           "display_product_prices_in_catalog": 987,
           "display_shipping_prices": 123,
           "display_state_if_optional": true,
    -      "enable_multiple_wishlists": "xyz789",
    +      "enable_multiple_wishlists": "abc123",
           "fixed_product_taxes_apply_tax_to_fpt": false,
    -      "fixed_product_taxes_display_prices_in_emails": 123,
    -      "fixed_product_taxes_display_prices_in_product_lists": 123,
    +      "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": 123,
    -      "fixed_product_taxes_display_prices_on_product_view_page": 987,
    -      "fixed_product_taxes_enable": true,
    -      "fixed_product_taxes_include_fpt_in_subtotal": true,
    +      "fixed_product_taxes_display_prices_on_product_view_page": 123,
    +      "fixed_product_taxes_enable": false,
    +      "fixed_product_taxes_include_fpt_in_subtotal": false,
           "graphql_share_customer_group": false,
           "grid_per_page": 123,
    -      "grid_per_page_values": "abc123",
    +      "grid_per_page_values": "xyz789",
           "grouped_product_image": "ITSELF",
           "is_checkout_agreements_enabled": true,
           "is_default_store": true,
           "is_default_store_group": false,
           "is_guest_checkout_enabled": false,
           "is_negotiable_quote_active": false,
    -      "is_one_page_checkout_enabled": false,
    +      "is_one_page_checkout_enabled": true,
           "is_requisition_list_active": "xyz789",
    -      "list_mode": "abc123",
    -      "list_per_page": 123,
    +      "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": "xyz789",
    +      "locale": "xyz789",
    +      "magento_reward_general_is_enabled": "xyz789",
    +      "magento_reward_general_is_enabled_on_front": "xyz789",
    +      "magento_reward_general_min_points_balance": "abc123",
           "magento_reward_general_publish_history": "xyz789",
    -      "magento_reward_points_invitation_customer": "xyz789",
    +      "magento_reward_points_invitation_customer": "abc123",
           "magento_reward_points_invitation_customer_limit": "abc123",
    -      "magento_reward_points_invitation_order": "xyz789",
    +      "magento_reward_points_invitation_order": "abc123",
           "magento_reward_points_invitation_order_limit": "abc123",
           "magento_reward_points_newsletter": "xyz789",
           "magento_reward_points_order": "abc123",
    -      "magento_reward_points_register": "xyz789",
    -      "magento_reward_points_review": "xyz789",
    -      "magento_reward_points_review_limit": "xyz789",
    +      "magento_reward_points_register": "abc123",
    +      "magento_reward_points_review": "abc123",
    +      "magento_reward_points_review_limit": "abc123",
           "magento_wishlist_general_is_enabled": "abc123",
           "max_items_in_order_summary": 987,
           "maximum_number_of_wishlists": "xyz789",
           "minicart_display": true,
           "minicart_max_items": 123,
           "minimum_password_length": "xyz789",
    -      "newsletter_enabled": true,
    -      "optional_zip_countries": "abc123",
    +      "newsletter_enabled": false,
    +      "optional_zip_countries": "xyz789",
           "order_cancellation_enabled": true,
           "order_cancellation_reasons": [CancellationReason],
           "orders_invoices_credit_memos_display_full_summary": false,
           "orders_invoices_credit_memos_display_grandtotal": true,
           "orders_invoices_credit_memos_display_price": 987,
           "orders_invoices_credit_memos_display_shipping_amount": 987,
    -      "orders_invoices_credit_memos_display_subtotal": 987,
    -      "orders_invoices_credit_memos_display_zero_tax": false,
    +      "orders_invoices_credit_memos_display_subtotal": 123,
    +      "orders_invoices_credit_memos_display_zero_tax": true,
           "printed_card_priceV2": Money,
           "product_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS",
    -      "product_url_suffix": "abc123",
    +      "product_url_suffix": "xyz789",
           "quickorder_active": false,
    -      "quote_minimum_amount": 123.45,
    +      "quote_minimum_amount": 987.65,
           "quote_minimum_amount_message": "abc123",
           "required_character_classes_number": "xyz789",
    -      "requisition_list_share_link_validity_days": 987,
    +      "requisition_list_share_link_validity_days": 123,
           "requisition_list_share_max_recipients": 123,
           "requisition_list_share_storefront_path": "xyz789",
    -      "requisition_list_sharing_enabled": false,
    +      "requisition_list_sharing_enabled": true,
           "returns_enabled": "abc123",
    -      "root_category_uid": 4,
    +      "root_category_uid": "4",
           "sales_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS",
    -      "sales_gift_wrapping": "xyz789",
    -      "sales_printed_card": "abc123",
    +      "sales_gift_wrapping": "abc123",
    +      "sales_printed_card": "xyz789",
           "secure_base_link_url": "xyz789",
           "secure_base_media_url": "xyz789",
           "secure_base_static_url": "xyz789",
    -      "secure_base_url": "abc123",
    -      "share_active_segments": true,
    +      "secure_base_url": "xyz789",
    +      "share_active_segments": false,
           "share_applied_cart_rule": true,
           "shopping_assistance_checkbox_title": "xyz789",
    -      "shopping_assistance_checkbox_tooltip": "xyz789",
    +      "shopping_assistance_checkbox_tooltip": "abc123",
           "shopping_assistance_enabled": true,
    -      "shopping_cart_display_full_summary": true,
    +      "shopping_cart_display_full_summary": false,
           "shopping_cart_display_grand_total": true,
    -      "shopping_cart_display_price": 987,
    +      "shopping_cart_display_price": 123,
           "shopping_cart_display_shipping": 987,
    -      "shopping_cart_display_subtotal": 123,
    +      "shopping_cart_display_subtotal": 987,
           "shopping_cart_display_tax_gift_wrapping": "DISPLAY_EXCLUDING_TAX",
    -      "shopping_cart_display_zero_tax": false,
    +      "shopping_cart_display_zero_tax": true,
           "store_code": "4",
    -      "store_group_code": "4",
    -      "store_group_name": "abc123",
    -      "store_name": "abc123",
    +      "store_group_code": 4,
    +      "store_group_name": "xyz789",
    +      "store_name": "xyz789",
           "store_sort_order": 987,
    -      "timezone": "xyz789",
    -      "title_separator": "xyz789",
    +      "timezone": "abc123",
    +      "title_separator": "abc123",
           "use_store_in_url": true,
           "website_code": 4,
    -      "website_name": "abc123",
    -      "weight_unit": "abc123",
    +      "website_name": "xyz789",
    +      "weight_unit": "xyz789",
           "zero_subtotal_enable_for_specific_countries": false,
           "zero_subtotal_enabled": false,
           "zero_subtotal_new_order_status": "abc123",
    -      "zero_subtotal_payment_action": "xyz789",
    +      "zero_subtotal_payment_action": "abc123",
           "zero_subtotal_payment_from_specific_countries": "abc123",
           "zero_subtotal_sort_order": 987,
    -      "zero_subtotal_title": "xyz789"
    +      "zero_subtotal_title": "abc123"
         }
       }
     }
    @@ -7226,9 +7226,9 @@ 
    Query
    Variables
    {
    -  "sku": "xyz789",
    +  "sku": "abc123",
       "optionIds": ["xyz789"],
    -  "pageSize": 123,
    +  "pageSize": 987,
       "cursor": "xyz789"
     }
     
    @@ -7308,7 +7308,7 @@
    Variables
    Response
    -
    {"data": {"acceptCompanyInvitation": {"success": false}}}
    +                  
    {"data": {"acceptCompanyInvitation": {"success": true}}}
     
    @@ -7439,9 +7439,9 @@
    Response
    NegotiableQuoteShippingAddress ], "status": "xyz789", - "template_id": 4, + "template_id": "4", "total_quantity": 123.45, - "uid": 4, + "uid": "4", "updated_at": "abc123" } } @@ -7595,7 +7595,7 @@
    Query
    Variables
    {
    -  "giftRegistryUid": "4",
    +  "giftRegistryUid": 4,
       "registrants": [AddGiftRegistryRegistrantInput]
     }
     
    @@ -7688,7 +7688,7 @@
    Query
    Variables
    {
    -  "cartId": "abc123",
    +  "cartId": "xyz789",
       "cartItems": [CartItemInput]
     }
     
    @@ -7780,9 +7780,9 @@
    Response
    "data": { "addProductsToCompareList": { "attributes": [ComparableAttribute], - "item_count": 987, + "item_count": 123, "items": [ComparableItem], - "uid": "4" + "uid": 4 } } } @@ -8282,8 +8282,8 @@
    Query
    Variables
    {
    -  "requisitionListUid": 4,
    -  "requisitionListItemUids": ["4"]
    +  "requisitionListUid": "4",
    +  "requisitionListItemUids": [4]
     }
     
    @@ -8527,7 +8527,7 @@
    Query
    Variables
    -
    {"wishlistId": 4, "wishlistItemIds": ["4"]}
    +                  
    {"wishlistId": "4", "wishlistItemIds": [4]}
     
    @@ -8538,7 +8538,7 @@
    Response
    "add_wishlist_items_to_cart_user_errors": [ WishlistCartUserInputError ], - "status": true, + "status": false, "wishlist": Wishlist } } @@ -9108,7 +9108,7 @@
    Query
    Variables
    -
    {"uid": "4"}
    +                  
    {"uid": 4}
     
    @@ -9253,13 +9253,13 @@
    Response
    "custom_attributes": [CustomAttribute], "email": "abc123", "gift_message": GiftMessage, - "gift_receipt_included": false, + "gift_receipt_included": true, "gift_wrapping": GiftWrapping, - "id": "4", - "is_virtual": false, + "id": 4, + "is_virtual": true, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": false, + "printed_card_included": true, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], @@ -9377,30 +9377,30 @@
    Response
    "cancelNegotiableQuoteTemplate": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "xyz789", + "created_at": "abc123", "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": true, + "is_min_max_qty_used": false, "is_virtual": false, "items": [CartItemInterface], - "max_order_commitment": 987, + "max_order_commitment": 123, "min_order_commitment": 123, - "name": "xyz789", + "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", + "status": "xyz789", "template_id": 4, - "total_quantity": 987.65, - "uid": "4", - "updated_at": "xyz789" + "total_quantity": 123.45, + "uid": 4, + "updated_at": "abc123" } } } @@ -9480,7 +9480,7 @@
    Response
    {
       "data": {
         "cancelOrder": {
    -      "error": "xyz789",
    +      "error": "abc123",
           "errorV2": CancelOrderError,
           "order": CustomerOrder
         }
    @@ -9739,8 +9739,8 @@ 
    Query
    Variables
    {
    -  "currentPassword": "xyz789",
    -  "newPassword": "abc123"
    +  "currentPassword": "abc123",
    +  "newPassword": "xyz789"
     }
     
    @@ -9752,7 +9752,7 @@
    Response
    "addresses": [CustomerAddress], "addressesV2": CustomerAddresses, "admin_assistance_actions": AdminAssistanceActions, - "allow_remote_shopping_assistance": true, + "allow_remote_shopping_assistance": false, "companies": UserCompaniesOutput, "company_hierarchy": [CompanyHierarchy], "compare_list": CompareList, @@ -9761,26 +9761,26 @@
    Response
    "custom_attributes": [AttributeValueInterface], "date_of_birth": "abc123", "default_billing": "abc123", - "default_shipping": "abc123", - "email": "abc123", + "default_shipping": "xyz789", + "email": "xyz789", "firstname": "xyz789", - "gender": 987, + "gender": 123, "gift_registries": [GiftRegistry], "gift_registry": GiftRegistry, "group": CustomerGroupStorefront, - "id": 4, - "is_subscribed": false, + "id": "4", + "is_subscribed": true, "job_title": "abc123", "lastname": "xyz789", - "middlename": "abc123", + "middlename": "xyz789", "orders": CustomerOrders, - "prefix": "abc123", + "prefix": "xyz789", "purchase_order": PurchaseOrder, "purchase_order_approval_rule": PurchaseOrderApprovalRule, "purchase_order_approval_rule_metadata": PurchaseOrderApprovalRuleMetadata, "purchase_order_approval_rules": PurchaseOrderApprovalRules, "purchase_orders": PurchaseOrders, - "purchase_orders_enabled": false, + "purchase_orders_enabled": true, "quote_enabled": false, "requisition_lists": RequisitionLists, "return": Return, @@ -9790,11 +9790,11 @@
    Response
    "segments": [CustomerSegmentStorefront], "status": "ACTIVE", "store_credit": CustomerStoreCredit, - "structure_id": 4, - "suffix": "abc123", + "structure_id": "4", + "suffix": "xyz789", "taxvat": "abc123", "team": CompanyTeam, - "telephone": "abc123", + "telephone": "xyz789", "wishlist_v2": Wishlist, "wishlists": [Wishlist] } @@ -9871,7 +9871,7 @@
    Variables
    Response
    {
       "data": {
    -    "clearCustomerCart": {"cart": Cart, "status": true}
    +    "clearCustomerCart": {"cart": Cart, "status": false}
       }
     }
     
    @@ -9940,7 +9940,7 @@
    Query
    Variables
    -
    {"wishlistId": "4"}
    +                  
    {"wishlistId": 4}
     
    @@ -10608,7 +10608,7 @@
    Query
    Variables
    {
       "sourceWishlistUid": 4,
    -  "destinationWishlistUid": 4,
    +  "destinationWishlistUid": "4",
       "wishlistItems": [WishlistItemCopyInput]
     }
     
    @@ -10982,9 +10982,9 @@
    Response
    "data": { "createCompareList": { "attributes": [ComparableAttribute], - "item_count": 123, + "item_count": 987, "items": [ComparableItem], - "uid": "4" + "uid": 4 } } } @@ -11084,26 +11084,26 @@
    Response
    {
       "data": {
         "createCustomerAddress": {
    -      "city": "xyz789",
    +      "city": "abc123",
           "company": "xyz789",
           "country_code": "AF",
           "custom_attributesV2": [AttributeValueInterface],
           "default_billing": true,
    -      "default_shipping": true,
    +      "default_shipping": false,
           "extension_attributes": [CustomerAddressAttribute],
           "fax": "xyz789",
           "firstname": "xyz789",
    -      "id": 987,
    -      "lastname": "xyz789",
    +      "id": 123,
    +      "lastname": "abc123",
           "middlename": "xyz789",
           "postcode": "xyz789",
    -      "prefix": "xyz789",
    +      "prefix": "abc123",
           "region": CustomerAddressRegion,
    -      "region_id": 987,
    +      "region_id": 123,
           "street": ["xyz789"],
    -      "suffix": "xyz789",
    -      "telephone": "xyz789",
    -      "uid": "4",
    +      "suffix": "abc123",
    +      "telephone": "abc123",
    +      "uid": 4,
           "vat_id": "xyz789"
         }
       }
    @@ -11393,11 +11393,11 @@ 
    Response
    {
       "data": {
         "createPaymentOrder": {
    -      "amount": 987.65,
    +      "amount": 123.45,
           "currency_code": "abc123",
    -      "id": "abc123",
    -      "mp_order_id": "abc123",
    -      "status": "xyz789"
    +      "id": "xyz789",
    +      "mp_order_id": "xyz789",
    +      "status": "abc123"
         }
       }
     }
    @@ -11490,12 +11490,12 @@ 
    Response
    "approver_roles": [CompanyRole], "condition": PurchaseOrderApprovalRuleConditionInterface, "created_at": "abc123", - "created_by": "abc123", - "description": "abc123", - "name": "abc123", + "created_by": "xyz789", + "description": "xyz789", + "name": "xyz789", "status": "ENABLED", - "uid": 4, - "updated_at": "xyz789" + "uid": "4", + "updated_at": "abc123" } } } @@ -11648,7 +11648,7 @@
    Response
    "data": { "createVaultCardPaymentToken": { "payment_source": PaymentSourceOutput, - "vault_token_id": "xyz789" + "vault_token_id": "abc123" } } } @@ -11856,7 +11856,7 @@
    Query
    Variables
    -
    {"id": "4"}
    +                  
    {"id": 4}
     
    @@ -11929,7 +11929,7 @@
    Variables
    Response
    -
    {"data": {"deleteCompanyTeam": {"success": true}}}
    +                  
    {"data": {"deleteCompanyTeam": {"success": false}}}
     
    @@ -11997,7 +11997,7 @@
    Variables
    Response
    -
    {"data": {"deleteCompanyUserV2": {"success": false}}}
    +                  
    {"data": {"deleteCompanyUserV2": {"success": true}}}
     
    @@ -12059,7 +12059,7 @@
    Query
    Variables
    -
    {"uid": "4"}
    +                  
    {"uid": 4}
     
    @@ -12172,7 +12172,7 @@
    Query
    Variables
    -
    {"id": 987}
    +                  
    {"id": 123}
     
    @@ -12237,12 +12237,12 @@
    Query
    Variables
    -
    {"uid": 4}
    +                  
    {"uid": "4"}
     
    Response
    -
    {"data": {"deleteCustomerAddressV2": false}}
    +                  
    {"data": {"deleteCustomerAddressV2": true}}
     
    @@ -12613,7 +12613,7 @@
    Query
    Variables
    -
    {"requisitionListUid": "4"}
    +                  
    {"requisitionListUid": 4}
     
    @@ -12622,7 +12622,7 @@
    Response
    "data": { "deleteRequisitionList": { "requisition_lists": RequisitionLists, - "status": true + "status": false } } } @@ -12780,7 +12780,7 @@
    Query
    Variables
    -
    {"wishlistId": 4}
    +                  
    {"wishlistId": "4"}
     
    @@ -12956,11 +12956,11 @@
    Response
    "additional_data": [ShippingAdditionalData], "amount": Money, "available": true, - "carrier_code": "abc123", + "carrier_code": "xyz789", "carrier_title": "xyz789", - "error_message": "xyz789", - "method_code": "xyz789", - "method_title": "abc123", + "error_message": "abc123", + "method_code": "abc123", + "method_title": "xyz789", "price_excl_tax": Money, "price_incl_tax": Money } @@ -13187,8 +13187,8 @@
    Query
    Variables
    {
    -  "email": "xyz789",
    -  "otp": "xyz789"
    +  "email": "abc123",
    +  "otp": "abc123"
     }
     
    @@ -13197,7 +13197,7 @@
    Response
    {
       "data": {
         "exchangeOtpForCustomerToken": {
    -      "token": "abc123"
    +      "token": "xyz789"
         }
       }
     }
    @@ -13265,9 +13265,9 @@ 
    Response
    {
       "data": {
         "finishUpload": {
    -      "key": "abc123",
    +      "key": "xyz789",
           "message": "xyz789",
    -      "success": true
    +      "success": false
         }
       }
     }
    @@ -13428,7 +13428,7 @@ 
    Response
    {
       "data": {
         "generateCustomerTokenAsAdmin": {
    -      "customer_token": "abc123"
    +      "customer_token": "xyz789"
         }
       }
     }
    @@ -13498,13 +13498,7 @@ 
    Variables
    Response
    -
    {
    -  "data": {
    -    "generateNegotiableQuoteFromTemplate": {
    -      "negotiable_quote_uid": "4"
    -    }
    -  }
    -}
    +                  
    {"data": {"generateNegotiableQuoteFromTemplate": {"negotiable_quote_uid": 4}}}
     
    @@ -13571,7 +13565,7 @@
    Query
    Variables
    -
    {"token": "xyz789"}
    +                  
    {"token": "abc123"}
     
    @@ -13778,7 +13772,7 @@
    Query
    Variables
    {
    -  "source_cart_id": "xyz789",
    +  "source_cart_id": "abc123",
       "destination_cart_id": "abc123"
     }
     
    @@ -13803,14 +13797,14 @@
    Response
    "gift_receipt_included": true, "gift_wrapping": GiftWrapping, "id": 4, - "is_virtual": true, + "is_virtual": false, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": false, + "printed_card_included": true, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], - "total_quantity": 123.45 + "total_quantity": 987.65 } } } @@ -13893,7 +13887,7 @@
    Query
    Variables
    -
    {"cartUid": 4, "giftRegistryUid": "4"}
    +                  
    {"cartUid": 4, "giftRegistryUid": 4}
     
    @@ -13994,7 +13988,7 @@
    Query
    Variables
    {
    -  "sourceRequisitionListUid": 4,
    +  "sourceRequisitionListUid": "4",
       "destinationRequisitionListUid": 4,
       "requisitionListItem": MoveItemsBetweenRequisitionListsInput
     }
    @@ -14175,8 +14169,8 @@ 
    Query
    Variables
    {
    -  "sourceWishlistUid": "4",
    -  "destinationWishlistUid": 4,
    +  "sourceWishlistUid": 4,
    +  "destinationWishlistUid": "4",
       "wishlistItems": [WishlistItemMoveInput]
     }
     
    @@ -14303,15 +14297,15 @@
    Response
    "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], "created_at": "xyz789", - "expiration_date": "abc123", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": false, - "is_virtual": false, + "is_min_max_qty_used": true, + "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 123, "min_order_commitment": 123, - "name": "abc123", + "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ @@ -14322,10 +14316,10 @@
    Response
    NegotiableQuoteShippingAddress ], "status": "abc123", - "template_id": "4", - "total_quantity": 123.45, - "uid": 4, - "updated_at": "xyz789" + "template_id": 4, + "total_quantity": 987.65, + "uid": "4", + "updated_at": "abc123" } } } @@ -14788,7 +14782,7 @@
    Response
    "redeemGiftCardBalanceAsStoreCredit": { "balance": Money, "code": "abc123", - "expiration_date": "xyz789" + "expiration_date": "abc123" } } } @@ -15309,8 +15303,8 @@
    Query
    Variables
    {
    -  "giftRegistryUid": "4",
    -  "registrantsUid": [4]
    +  "giftRegistryUid": 4,
    +  "registrantsUid": ["4"]
     }
     
    @@ -15577,12 +15571,12 @@
    Response
    "removeNegotiableQuoteTemplateItems": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", + "created_at": "xyz789", "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": true, - "is_virtual": true, + "is_virtual": false, "items": [CartItemInterface], "max_order_commitment": 987, "min_order_commitment": 987, @@ -15597,8 +15591,8 @@
    Response
    NegotiableQuoteShippingAddress ], "status": "xyz789", - "template_id": "4", - "total_quantity": 987.65, + "template_id": 4, + "total_quantity": 123.45, "uid": "4", "updated_at": "abc123" } @@ -15681,9 +15675,9 @@
    Response
    "data": { "removeProductsFromCompareList": { "attributes": [ComparableAttribute], - "item_count": 987, + "item_count": 123, "items": [ComparableItem], - "uid": 4 + "uid": "4" } } } @@ -15765,7 +15759,10 @@
    Query
    Variables
    -
    {"wishlistId": 4, "wishlistItemsIds": ["4"]}
    +                  
    {
    +  "wishlistId": "4",
    +  "wishlistItemsIds": ["4"]
    +}
     
    @@ -16215,7 +16212,7 @@
    Response
    {
       "data": {
         "requestGuestOrderCancel": {
    -      "error": "xyz789",
    +      "error": "abc123",
           "errorV2": CancelOrderError,
           "order": CustomerOrder
         }
    @@ -16476,15 +16473,15 @@ 
    Response
    "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], "created_at": "abc123", - "expiration_date": "xyz789", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": false, - "is_virtual": false, + "is_min_max_qty_used": true, + "is_virtual": true, "items": [CartItemInterface], - "max_order_commitment": 123, + "max_order_commitment": 987, "min_order_commitment": 123, - "name": "abc123", + "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ @@ -16494,11 +16491,11 @@
    Response
    "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", - "template_id": "4", - "total_quantity": 987.65, + "status": "xyz789", + "template_id": 4, + "total_quantity": 123.45, "uid": "4", - "updated_at": "abc123" + "updated_at": "xyz789" } } } @@ -16561,12 +16558,12 @@
    Query
    Variables
    -
    {"email": "xyz789"}
    +                  
    {"email": "abc123"}
     
    Response
    -
    {"data": {"requestPasswordResetEmail": false}}
    +                  
    {"data": {"requestPasswordResetEmail": true}}
     
    @@ -16705,7 +16702,7 @@
    Query
    Variables
    -
    {"email": "abc123"}
    +                  
    {"email": "xyz789"}
     
    @@ -16791,9 +16788,9 @@
    Query
    Variables
    {
    -  "email": "abc123",
    -  "resetPasswordToken": "abc123",
    -  "newPassword": "abc123"
    +  "email": "xyz789",
    +  "resetPasswordToken": "xyz789",
    +  "newPassword": "xyz789"
     }
     
    @@ -16842,7 +16839,7 @@
    Query
    Response
    -
    {"data": {"revokeCustomerToken": {"result": false}}}
    +                  
    {"data": {"revokeCustomerToken": {"result": true}}}
     
    @@ -18277,10 +18274,10 @@
    Response
    "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": false, + "is_min_max_qty_used": true, "is_virtual": false, "items": [CartItemInterface], - "max_order_commitment": 987, + "max_order_commitment": 123, "min_order_commitment": 987, "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], @@ -18294,9 +18291,9 @@
    Response
    ], "status": "xyz789", "template_id": "4", - "total_quantity": 987.65, + "total_quantity": 123.45, "uid": 4, - "updated_at": "abc123" + "updated_at": "xyz789" } } } @@ -18479,29 +18476,29 @@
    Response
    "setQuoteTemplateExpirationDate": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "xyz789", - "expiration_date": "xyz789", + "created_at": "abc123", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": true, + "is_min_max_qty_used": false, "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 123, - "min_order_commitment": 123, + "min_order_commitment": 987, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "abc123", + "sales_rep_name": "xyz789", "shipping_addresses": [ NegotiableQuoteShippingAddress ], "status": "abc123", "template_id": 4, - "total_quantity": 123.45, - "uid": "4", + "total_quantity": 987.65, + "uid": 4, "updated_at": "abc123" } } @@ -18616,16 +18613,16 @@
    Response
    "setQuoteTemplateLineItemNote": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", - "expiration_date": "abc123", + "created_at": "xyz789", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": false, - "is_virtual": true, + "is_min_max_qty_used": true, + "is_virtual": false, "items": [CartItemInterface], - "max_order_commitment": 123, - "min_order_commitment": 123, - "name": "abc123", + "max_order_commitment": 987, + "min_order_commitment": 987, + "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ @@ -18637,9 +18634,9 @@
    Response
    ], "status": "xyz789", "template_id": "4", - "total_quantity": 987.65, - "uid": "4", - "updated_at": "abc123" + "total_quantity": 123.45, + "uid": 4, + "updated_at": "xyz789" } } } @@ -18863,7 +18860,7 @@
    Query
    Variables
    {
    -  "giftRegistryUid": "4",
    +  "giftRegistryUid": 4,
       "sender": ShareGiftRegistrySenderInput,
       "invitees": [ShareGiftRegistryInviteeInput]
     }
    @@ -19011,7 +19008,7 @@ 
    Query
    Variables
    -
    {"requisitionListUid": "4"}
    +                  
    {"requisitionListUid": 4}
     
    @@ -19019,7 +19016,7 @@
    Response
    {
       "data": {
         "shareRequisitionListByToken": {
    -      "token": "abc123"
    +      "token": "xyz789"
         }
       }
     }
    @@ -19133,28 +19130,28 @@ 
    Response
    "submitNegotiableQuoteTemplateForReview": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "xyz789", - "expiration_date": "abc123", + "created_at": "abc123", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": false, - "is_virtual": true, + "is_virtual": false, "items": [CartItemInterface], - "max_order_commitment": 123, - "min_order_commitment": 123, + "max_order_commitment": 987, + "min_order_commitment": 987, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "abc123", + "sales_rep_name": "xyz789", "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "xyz789", - "template_id": 4, - "total_quantity": 123.45, + "status": "abc123", + "template_id": "4", + "total_quantity": 987.65, "uid": "4", "updated_at": "abc123" } @@ -19299,7 +19296,7 @@
    Response
    "data": { "subscribeProductAlertPrice": { "message": "abc123", - "success": false + "success": true } } } @@ -19443,7 +19440,7 @@
    Variables
    Response
    -
    {"data": {"syncPaymentOrder": false}}
    +                  
    {"data": {"syncPaymentOrder": true}}
     
    @@ -19641,8 +19638,8 @@
    Response
    {
       "data": {
         "unsubscribeProductAlertPriceAll": {
    -      "message": "abc123",
    -      "success": true
    +      "message": "xyz789",
    +      "success": false
         }
       }
     }
    @@ -19768,8 +19765,8 @@ 
    Response
    {
       "data": {
         "unsubscribeProductAlertStockAll": {
    -      "message": "abc123",
    -      "success": true
    +      "message": "xyz789",
    +      "success": false
         }
       }
     }
    @@ -20308,7 +20305,7 @@ 
    Query
    Variables
    -
    {"id": 987, "input": CustomerAddressInput}
    +                  
    {"id": 123, "input": CustomerAddressInput}
     
    @@ -20316,26 +20313,26 @@
    Response
    {
       "data": {
         "updateCustomerAddress": {
    -      "city": "xyz789",
    +      "city": "abc123",
           "company": "xyz789",
           "country_code": "AF",
           "custom_attributesV2": [AttributeValueInterface],
           "default_billing": true,
    -      "default_shipping": true,
    +      "default_shipping": false,
           "extension_attributes": [CustomerAddressAttribute],
           "fax": "xyz789",
    -      "firstname": "abc123",
    +      "firstname": "xyz789",
           "id": 987,
    -      "lastname": "abc123",
    -      "middlename": "abc123",
    -      "postcode": "abc123",
    -      "prefix": "xyz789",
    +      "lastname": "xyz789",
    +      "middlename": "xyz789",
    +      "postcode": "xyz789",
    +      "prefix": "abc123",
           "region": CustomerAddressRegion,
    -      "region_id": 123,
    +      "region_id": 987,
           "street": ["xyz789"],
    -      "suffix": "xyz789",
    -      "telephone": "abc123",
    -      "uid": "4",
    +      "suffix": "abc123",
    +      "telephone": "xyz789",
    +      "uid": 4,
           "vat_id": "abc123"
         }
       }
    @@ -20458,18 +20455,18 @@ 
    Response
    "default_shipping": false, "extension_attributes": [CustomerAddressAttribute], "fax": "xyz789", - "firstname": "xyz789", + "firstname": "abc123", "id": 987, - "lastname": "xyz789", + "lastname": "abc123", "middlename": "abc123", "postcode": "abc123", - "prefix": "xyz789", + "prefix": "abc123", "region": CustomerAddressRegion, - "region_id": 123, + "region_id": 987, "street": ["abc123"], - "suffix": "abc123", + "suffix": "xyz789", "telephone": "xyz789", - "uid": 4, + "uid": "4", "vat_id": "abc123" } } @@ -20881,7 +20878,7 @@
    Query
    Variables
    {
    -  "giftRegistryUid": 4,
    +  "giftRegistryUid": "4",
       "registrants": [UpdateGiftRegistryRegistrantInput]
     }
     
    @@ -21124,7 +21121,7 @@
    Query
    Variables
    {
    -  "wishlistId": "4",
    +  "wishlistId": 4,
       "wishlistItems": [WishlistItemUpdateInput]
     }
     
    @@ -21227,13 +21224,13 @@
    Response
    "applies_to_roles": [CompanyRole], "approver_roles": [CompanyRole], "condition": PurchaseOrderApprovalRuleConditionInterface, - "created_at": "abc123", - "created_by": "xyz789", - "description": "abc123", + "created_at": "xyz789", + "created_by": "abc123", + "description": "xyz789", "name": "abc123", "status": "ENABLED", - "uid": 4, - "updated_at": "xyz789" + "uid": "4", + "updated_at": "abc123" } } } @@ -21314,7 +21311,7 @@
    Query
    Variables
    {
    -  "requisitionListUid": 4,
    +  "requisitionListUid": "4",
       "input": UpdateRequisitionListInput
     }
     
    @@ -21504,7 +21501,7 @@
    Query
    Variables
    {
    -  "wishlistId": "4",
    +  "wishlistId": 4,
       "name": "abc123",
       "visibility": "PUBLIC"
     }
    @@ -21515,8 +21512,8 @@ 
    Response
    {
       "data": {
         "updateWishlist": {
    -      "name": "abc123",
    -      "uid": "4",
    +      "name": "xyz789",
    +      "uid": 4,
           "visibility": "PUBLIC"
         }
       }
    @@ -21829,8 +21826,8 @@ 
    Example
    GiftRegistryDynamicAttributeInput ], "email": "xyz789", - "firstname": "xyz789", - "lastname": "xyz789" + "firstname": "abc123", + "lastname": "abc123" }
    @@ -21966,7 +21963,10 @@
    Fields
    Example
    -
    {"products": ["4"], "uid": 4}
    +                  
    {
    +  "products": ["4"],
    +  "uid": "4"
    +}
     
    @@ -22150,8 +22150,8 @@
    Fields
    Example
    {
    -  "comment": "abc123",
    -  "purchase_order_uid": "4"
    +  "comment": "xyz789",
    +  "purchase_order_uid": 4
     }
     
    @@ -22248,7 +22248,7 @@
    Example
    {
       "cart_id": "abc123",
       "purchase_order_uid": "4",
    -  "replace_existing_cart_items": true
    +  "replace_existing_cart_items": false
     }
     
    @@ -22459,10 +22459,7 @@
    Fields
    Example
    -
    {
    -  "comment_text": "xyz789",
    -  "return_uid": "4"
    -}
    +                  
    {"comment_text": "xyz789", "return_uid": 4}
     
    @@ -22661,7 +22658,7 @@
    Example
    "add_wishlist_items_to_cart_user_errors": [ WishlistCartUserInputError ], - "status": true, + "status": false, "wishlist": Wishlist }
    @@ -22714,8 +22711,8 @@
    Fields
    Example
    {
    -  "action": "abc123",
    -  "date": "xyz789",
    +  "action": "xyz789",
    +  "date": "abc123",
       "details": "abc123"
     }
     
    @@ -22770,7 +22767,7 @@
    Example
    {
       "items": [AdminAssistanceAction],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -22829,7 +22826,7 @@
    Example
    {
       "attribute": "abc123",
       "buckets": [Bucket],
    -  "title": "xyz789",
    +  "title": "abc123",
       "type": "INTELLIGENT"
     }
     
    @@ -22961,11 +22958,11 @@
    Example
    {
       "button_styles": ButtonStyles,
       "code": "abc123",
    -  "is_visible": false,
    -  "payment_intent": "abc123",
    -  "payment_source": "abc123",
    +  "is_visible": true,
    +  "payment_intent": "xyz789",
    +  "payment_source": "xyz789",
       "sdk_params": [SDKParams],
    -  "sort_order": "xyz789",
    +  "sort_order": "abc123",
       "title": "abc123"
     }
     
    @@ -23023,7 +23020,7 @@
    Example
    {
       "payment_source": "xyz789",
       "payments_order_id": "xyz789",
    -  "paypal_order_id": "abc123"
    +  "paypal_order_id": "xyz789"
     }
     
    @@ -23064,7 +23061,7 @@
    Fields
    Example
    -
    {"code": "abc123"}
    +                  
    {"code": "xyz789"}
     
    @@ -23121,7 +23118,7 @@
    Fields
    Example
    {
       "applied_balance": Money,
    -  "code": "abc123",
    +  "code": "xyz789",
       "current_balance": Money,
       "expiration_date": "xyz789"
     }
    @@ -23176,8 +23173,8 @@ 
    Fields
    Example
    {
       "action_type": "BOOST",
    -  "rule_id": "abc123",
    -  "rule_name": "xyz789"
    +  "rule_id": "xyz789",
    +  "rule_name": "abc123"
     }
     
    @@ -23336,8 +23333,8 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    -  "coupon_code": "abc123"
    +  "cart_id": "abc123",
    +  "coupon_code": "xyz789"
     }
     
    @@ -23481,8 +23478,8 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    -  "coupon_codes": ["xyz789"],
    +  "cart_id": "xyz789",
    +  "coupon_codes": ["abc123"],
       "type": "APPEND"
     }
     
    @@ -23532,7 +23529,7 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    +  "cart_id": "xyz789",
       "gift_card_code": "xyz789"
     }
     
    @@ -23703,7 +23700,7 @@
    Fields
    Example
    -
    {"cart_id": "xyz789"}
    +                  
    {"cart_id": "abc123"}
     
    @@ -23853,9 +23850,9 @@
    Example
    {
       "asset_image": ProductMediaGalleryEntriesAssetImage,
       "disabled": false,
    -  "label": "abc123",
    -  "position": 987,
    -  "url": "abc123"
    +  "label": "xyz789",
    +  "position": 123,
    +  "url": "xyz789"
     }
     
    @@ -23918,7 +23915,7 @@
    Fields
    Example
    {
       "asset_video": ProductMediaGalleryEntriesAssetVideo,
    -  "disabled": false,
    +  "disabled": true,
       "label": "xyz789",
       "position": 987,
       "url": "xyz789"
    @@ -24057,7 +24054,7 @@ 
    Fields
    Example
    -
    {"compare_list": CompareList, "result": true}
    +                  
    {"compare_list": CompareList, "result": false}
     
    @@ -24180,8 +24177,8 @@
    Fields
    Example
    {
       "attribute_type": "xyz789",
    -  "code": "4",
    -  "url": "abc123",
    +  "code": 4,
    +  "url": "xyz789",
       "value": "abc123"
     }
     
    @@ -24292,14 +24289,14 @@
    Fields
    Example
    {
       "is_comparable": true,
    -  "is_filterable": true,
    -  "is_filterable_in_search": true,
    -  "is_html_allowed_on_front": false,
    -  "is_searchable": true,
    +  "is_filterable": false,
    +  "is_filterable_in_search": false,
    +  "is_html_allowed_on_front": true,
    +  "is_searchable": false,
       "is_used_for_customer_segment": false,
    -  "is_used_for_price_rules": false,
    +  "is_used_for_price_rules": true,
       "is_used_for_promo_rules": true,
    -  "is_visible_in_advanced_search": false,
    +  "is_visible_in_advanced_search": true,
       "is_visible_on_front": false,
       "is_wysiwyg_enabled": true,
       "used_in_product_listing": true
    @@ -24504,8 +24501,8 @@ 
    Example
    {
       "attribute_type": "abc123",
       "code": 4,
    -  "url": "abc123",
    -  "value": "xyz789"
    +  "url": "xyz789",
    +  "value": "abc123"
     }
     
    @@ -24555,7 +24552,7 @@
    Fields
    Example
    {
       "attribute_code": "abc123",
    -  "entity_type": "xyz789"
    +  "entity_type": "abc123"
     }
     
    @@ -24597,7 +24594,7 @@
    Fields
    Example
    -
    {"value": "xyz789"}
    +                  
    {"value": "abc123"}
     
    @@ -24679,11 +24676,11 @@
    Fields
    Example
    {
       "code": 4,
    -  "default_value": "xyz789",
    +  "default_value": "abc123",
       "entity_type": "CATALOG_PRODUCT",
    -  "frontend_class": "abc123",
    +  "frontend_class": "xyz789",
       "frontend_input": "BOOLEAN",
    -  "is_required": false,
    +  "is_required": true,
       "is_unique": true,
       "label": "abc123",
       "options": [CustomAttributeOptionInterface]
    @@ -24938,7 +24935,7 @@ 
    Fields
    Example
    {
    -  "label": "xyz789",
    +  "label": "abc123",
       "value": "abc123"
     }
     
    @@ -24999,8 +24996,8 @@
    Possible Types
    Example
    {
    -  "label": "xyz789",
    -  "value": "xyz789"
    +  "label": "abc123",
    +  "value": "abc123"
     }
     
    @@ -25050,7 +25047,7 @@
    Fields
    Example
    {
       "attribute_type": "abc123",
    -  "code": "4",
    +  "code": 4,
       "selected_options": [AttributeSelectedOptionInterface]
     }
     
    @@ -25156,9 +25153,9 @@
    Fields
    Example
    {
    -  "attribute_code": "abc123",
    +  "attribute_code": "xyz789",
       "selected_options": [AttributeInputSelectedOption],
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -25527,11 +25524,11 @@
    Example
    "additional_data": [ShippingAdditionalData], "amount": Money, "available": true, - "carrier_code": "xyz789", + "carrier_code": "abc123", "carrier_title": "abc123", - "error_message": "xyz789", + "error_message": "abc123", "method_code": "xyz789", - "method_title": "xyz789", + "method_title": "abc123", "price_excl_tax": Money, "price_incl_tax": Money } @@ -25653,9 +25650,9 @@
    Fields
    Example
    {
       "address": CartAddressInput,
    -  "customer_address_id": 123,
    -  "customer_address_uid": "4",
    -  "same_as_shipping": true,
    +  "customer_address_id": 987,
    +  "customer_address_uid": 4,
    +  "same_as_shipping": false,
       "use_for_shipping": false
     }
     
    @@ -25729,8 +25726,8 @@
    Fields
    Example
    {
    -  "address_line_1": "abc123",
    -  "address_line_2": "xyz789",
    +  "address_line_1": "xyz789",
    +  "address_line_2": "abc123",
       "city": "abc123",
       "country_code": "abc123",
       "postal_code": "abc123",
    @@ -25863,7 +25860,7 @@ 
    Fields
    Example
    {
       "city": "xyz789",
    -  "company": "xyz789",
    +  "company": "abc123",
       "country": CartAddressCountry,
       "custom_attributes": [AttributeValueInterface],
       "customer_address_uid": 4,
    @@ -25872,14 +25869,14 @@ 
    Example
    "id": 123, "lastname": "abc123", "middlename": "xyz789", - "postcode": "xyz789", + "postcode": "abc123", "prefix": "xyz789", "region": CartAddressRegion, - "street": ["xyz789"], + "street": ["abc123"], "suffix": "xyz789", - "telephone": "xyz789", - "uid": "4", - "vat_id": "abc123" + "telephone": "abc123", + "uid": 4, + "vat_id": "xyz789" }
    @@ -25958,9 +25955,9 @@
    Fields
    Example
    {
    -  "category_level": 123,
    +  "category_level": 987,
       "category_name": "abc123",
    -  "category_uid": "4",
    +  "category_uid": 4,
       "category_url_key": "xyz789",
       "category_url_path": "xyz789"
     }
    @@ -26040,7 +26037,7 @@ 
    Possible Types
    Example
    -
    {"title": "xyz789"}
    +                  
    {"title": "abc123"}
     
    @@ -26179,7 +26176,7 @@
    Fields
    Example
    {
       "available_gift_wrapping": [GiftWrapping],
    -  "backorder_message": "xyz789",
    +  "backorder_message": "abc123",
       "bundle_options": [SelectedBundleOption],
       "custom_attributes": [CustomAttribute],
       "customizable_options": [SelectedCustomizableOption],
    @@ -26187,17 +26184,17 @@ 
    Example
    "errors": [CartItemError], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "is_available": true, - "is_salable": true, - "max_qty": 987.65, - "min_qty": 987.65, - "not_available_message": "xyz789", + "is_available": false, + "is_salable": false, + "max_qty": 123.45, + "min_qty": 123.45, + "not_available_message": "abc123", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 987.65, - "uid": 4 + "quantity": 123.45, + "uid": "4" }
    @@ -26282,9 +26279,9 @@
    Example
    "bundle_options": [ItemSelectedBundleOption], "custom_attributes": [CustomAttribute], "discounts": [Discount], - "id": "4", + "id": 4, "order_item": OrderItemInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, "product_sku": "abc123", "quantity_refunded": 987.65 @@ -26376,7 +26373,7 @@
    Example
    "order_item": OrderItemInterface, "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "abc123", + "product_sku": "xyz789", "quantity_invoiced": 987.65 }
    @@ -26455,10 +26452,10 @@
    Fields
    Example
    {
       "options": [BundleItemOption],
    -  "position": 987,
    +  "position": 123,
       "price_range": PriceRange,
       "required": false,
    -  "sku": "xyz789",
    +  "sku": "abc123",
       "title": "xyz789",
       "type": "abc123",
       "uid": "4"
    @@ -26543,15 +26540,15 @@ 
    Fields
    Example
    {
    -  "can_change_quantity": true,
    +  "can_change_quantity": false,
       "is_default": true,
    -  "label": "abc123",
    -  "position": 123,
    -  "price": 123.45,
    +  "label": "xyz789",
    +  "position": 987,
    +  "price": 987.65,
       "price_type": "FIXED",
       "product": ProductInterface,
       "quantity": 987.65,
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -26722,23 +26719,23 @@
    Example
    "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, "id": 4, - "parent_sku": "xyz789", + "parent_sku": "abc123", "prices": OrderItemPrices, "product": ProductInterface, "product_name": "xyz789", "product_sale_price": Money, "product_sku": "abc123", - "product_type": "abc123", + "product_type": "xyz789", "product_url_key": "abc123", "quantity_canceled": 123.45, "quantity_invoiced": 987.65, - "quantity_ordered": 123.45, + "quantity_ordered": 987.65, "quantity_refunded": 123.45, - "quantity_return_requested": 123.45, - "quantity_returned": 987.65, + "quantity_return_requested": 987.65, + "quantity_returned": 123.45, "quantity_shipped": 123.45, "selected_options": [OrderItemOption], - "status": "abc123" + "status": "xyz789" }
    @@ -27028,32 +27025,32 @@
    filters
    Example
    {
    -  "canonical_url": "abc123",
    +  "canonical_url": "xyz789",
       "categories": [CategoryInterface],
       "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    -  "dynamic_price": true,
    +  "dynamic_price": false,
       "dynamic_sku": true,
    -  "dynamic_weight": false,
    -  "gift_message_available": true,
    -  "gift_wrapping_available": true,
    +  "dynamic_weight": true,
    +  "gift_message_available": false,
    +  "gift_wrapping_available": false,
       "gift_wrapping_price": Money,
       "image": ProductImage,
    -  "is_returnable": "xyz789",
    +  "is_returnable": "abc123",
       "items": [BundleItem],
    -  "manufacturer": 123,
    +  "manufacturer": 987,
       "max_sale_qty": 123.45,
       "media_gallery": [MediaGalleryInterface],
       "meta_description": "xyz789",
    -  "meta_keyword": "xyz789",
    +  "meta_keyword": "abc123",
       "meta_title": "xyz789",
       "min_sale_qty": 123.45,
    -  "name": "xyz789",
    -  "new_from_date": "xyz789",
    +  "name": "abc123",
    +  "new_from_date": "abc123",
       "new_to_date": "abc123",
    -  "only_x_left_in_stock": 123.45,
    +  "only_x_left_in_stock": 987.65,
       "options": [CustomizableOptionInterface],
       "options_container": "xyz789",
       "price_details": PriceDetails,
    @@ -27065,17 +27062,17 @@ 
    Example
    "related_products": [ProductInterface], "ship_bundle_items": "TOGETHER", "short_description": ComplexTextValue, - "sku": "xyz789", + "sku": "abc123", "small_image": ProductImage, "special_price": 123.45, "special_to_date": "abc123", "stock_status": "IN_STOCK", - "swatch_image": "abc123", + "swatch_image": "xyz789", "thumbnail": ProductImage, "uid": "4", "upsell_products": [ProductInterface], "url_key": "abc123", - "weight": 123.45 + "weight": 987.65 }
    @@ -27146,7 +27143,7 @@
    Example
    "customizable_options": [SelectedCustomizableOption], "product": ProductInterface, "quantity": 123.45, - "sku": "xyz789", + "sku": "abc123", "uid": "4" }
    @@ -27220,11 +27217,11 @@
    Fields
    Example
    {
       "bundle_options": [ItemSelectedBundleOption],
    -  "id": "4",
    +  "id": 4,
       "order_item": OrderItemInterface,
       "product_name": "xyz789",
       "product_sale_price": Money,
    -  "product_sku": "abc123",
    +  "product_sku": "xyz789",
       "quantity_shipped": 987.65
     }
     
    @@ -27301,10 +27298,10 @@
    Example
    "added_at": "abc123", "bundle_options": [SelectedBundleOption], "customizable_options": [SelectedCustomizableOption], - "description": "abc123", + "description": "xyz789", "id": 4, "product": ProductInterface, - "quantity": 987.65 + "quantity": 123.45 }
    @@ -27372,11 +27369,11 @@
    Fields
    Example
    {
    -  "color": "xyz789",
    -  "height": 123,
    -  "label": "abc123",
    +  "color": "abc123",
    +  "height": 987,
    +  "label": "xyz789",
       "layout": "abc123",
    -  "shape": "abc123",
    +  "shape": "xyz789",
       "tagline": false,
       "use_default_height": false
     }
    @@ -27427,7 +27424,7 @@ 
    Fields
    Example
    {
    -  "cancellation_comment": "abc123",
    +  "cancellation_comment": "xyz789",
       "template_id": "4"
     }
     
    @@ -27595,7 +27592,7 @@
    Fields
    Example
    {
       "order_id": "4",
    -  "reason": "xyz789"
    +  "reason": "abc123"
     }
     
    @@ -27747,7 +27744,7 @@
    Example
    {
       "bin_details": CardBin,
       "card_expiry_month": "xyz789",
    -  "card_expiry_year": "xyz789",
    +  "card_expiry_year": "abc123",
       "last_digits": "xyz789",
       "name": "abc123"
     }
    @@ -27786,7 +27783,7 @@ 
    Fields
    Example
    -
    {"bin": "abc123"}
    +                  
    {"bin": "xyz789"}
     
    @@ -27835,7 +27832,7 @@
    Fields
    Example
    {
       "billing_address": BillingAddressPaymentSourceInput,
    -  "name": "xyz789"
    +  "name": "abc123"
     }
     
    @@ -27887,7 +27884,7 @@
    Fields
    Example
    {
    -  "brand": "abc123",
    +  "brand": "xyz789",
       "expiry": "xyz789",
       "last_digits": "xyz789"
     }
    @@ -28065,11 +28062,11 @@ 
    Example
    "gift_message": GiftMessage, "gift_receipt_included": true, "gift_wrapping": GiftWrapping, - "id": "4", + "id": 4, "is_virtual": true, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": false, + "printed_card_included": true, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], @@ -28120,7 +28117,7 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    +  "code": "abc123",
       "label": "xyz789"
     }
     
    @@ -28260,23 +28257,23 @@
    Fields
    Example
    {
    -  "city": "xyz789",
    -  "company": "abc123",
    -  "country_code": "xyz789",
    +  "city": "abc123",
    +  "company": "xyz789",
    +  "country_code": "abc123",
       "custom_attributes": [AttributeValueInput],
       "fax": "xyz789",
    -  "firstname": "abc123",
    +  "firstname": "xyz789",
       "lastname": "abc123",
       "middlename": "xyz789",
    -  "postcode": "abc123",
    +  "postcode": "xyz789",
       "prefix": "xyz789",
       "region": "abc123",
       "region_id": 123,
       "save_in_address_book": false,
    -  "street": ["abc123"],
    +  "street": ["xyz789"],
       "suffix": "abc123",
    -  "telephone": "abc123",
    -  "vat_id": "xyz789"
    +  "telephone": "xyz789",
    +  "vat_id": "abc123"
     }
     
    @@ -28423,23 +28420,23 @@
    Possible Types
    Example
    {
       "city": "xyz789",
    -  "company": "abc123",
    +  "company": "xyz789",
       "country": CartAddressCountry,
       "custom_attributes": [AttributeValueInterface],
       "customer_address_uid": 4,
       "fax": "xyz789",
    -  "firstname": "xyz789",
    -  "id": 987,
    -  "lastname": "abc123",
    +  "firstname": "abc123",
    +  "id": 123,
    +  "lastname": "xyz789",
       "middlename": "xyz789",
    -  "postcode": "xyz789",
    -  "prefix": "abc123",
    +  "postcode": "abc123",
    +  "prefix": "xyz789",
       "region": CartAddressRegion,
       "street": ["abc123"],
       "suffix": "xyz789",
       "telephone": "abc123",
       "uid": "4",
    -  "vat_id": "xyz789"
    +  "vat_id": "abc123"
     }
     
    @@ -28492,8 +28489,8 @@
    Fields
    Example
    {
       "code": "abc123",
    -  "label": "xyz789",
    -  "region_id": 123
    +  "label": "abc123",
    +  "region_id": 987
     }
     
    @@ -28542,7 +28539,7 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    +  "cart_id": "xyz789",
       "custom_attributes": [CustomAttributeInput]
     }
     
    @@ -28809,7 +28806,7 @@
    Example
    "parent_sku": "xyz789", "quantity": 123.45, "selected_options": [4], - "sku": "xyz789" + "sku": "abc123" }
    @@ -28965,21 +28962,21 @@
    Possible Types
    Example
    {
    -  "backorder_message": "abc123",
    +  "backorder_message": "xyz789",
       "custom_attributes": [CustomAttribute],
       "discount": [Discount],
       "errors": [CartItemError],
    -  "is_available": true,
    +  "is_available": false,
       "is_salable": true,
       "max_qty": 123.45,
    -  "min_qty": 123.45,
    -  "not_available_message": "xyz789",
    +  "min_qty": 987.65,
    +  "not_available_message": "abc123",
       "note_from_buyer": [ItemNote],
       "note_from_seller": [ItemNote],
       "prices": CartItemPrices,
       "product": ProductInterface,
       "quantity": 987.65,
    -  "uid": "4"
    +  "uid": 4
     }
     
    @@ -29135,7 +29132,7 @@
    Example
    {
       "type": "FIXED",
       "units": "xyz789",
    -  "value": 123.45
    +  "value": 987.65
     }
     
    @@ -29202,10 +29199,10 @@
    Fields
    Example
    {
    -  "cart_item_uid": "4",
    +  "cart_item_uid": 4,
       "customizable_options": [CustomizableOptionInput],
       "gift_message": GiftMessageInput,
    -  "gift_wrapping_id": "4",
    +  "gift_wrapping_id": 4,
       "quantity": 123.45
     }
     
    @@ -29256,7 +29253,7 @@
    Example
    {
       "items": [CartItemInterface],
       "page_info": SearchResultPageInfo,
    -  "total_count": 123
    +  "total_count": 987
     }
     
    @@ -29424,7 +29421,7 @@
    Fields
    Example
    {
       "amount": Money,
    -  "label": "xyz789"
    +  "label": "abc123"
     }
     
    @@ -29796,26 +29793,26 @@
    Example
    "code": "4", "default_value": "xyz789", "entity_type": "CATALOG_PRODUCT", - "frontend_class": "abc123", + "frontend_class": "xyz789", "frontend_input": "BOOLEAN", - "is_comparable": false, + "is_comparable": true, "is_filterable": true, - "is_filterable_in_search": true, - "is_html_allowed_on_front": true, - "is_required": true, - "is_searchable": true, + "is_filterable_in_search": false, + "is_html_allowed_on_front": false, + "is_required": false, + "is_searchable": false, "is_unique": false, "is_used_for_price_rules": true, "is_used_for_promo_rules": false, - "is_visible_in_advanced_search": false, - "is_visible_on_front": true, + "is_visible_in_advanced_search": true, + "is_visible_on_front": false, "is_wysiwyg_enabled": false, "label": "abc123", "options": [CustomAttributeOptionInterface], "swatch_input_type": "BOOLEAN", - "update_product_preview_image": true, - "use_product_image_for_swatch": true, - "used_in_product_listing": true + "update_product_preview_image": false, + "use_product_image_for_swatch": false, + "used_in_product_listing": false }
    @@ -29876,10 +29873,10 @@
    Fields
    Example
    {
    -  "count": 123,
    +  "count": 987,
       "id": "4",
       "path": "xyz789",
    -  "title": "xyz789"
    +  "title": "abc123"
     }
     
    @@ -29934,7 +29931,7 @@
    Possible Types
    Example
    -
    {"id": 4}
    +                  
    {"id": "4"}
     
    @@ -29990,10 +29987,10 @@
    Fields
    Example
    {
    -  "url": "xyz789",
    +  "url": "abc123",
       "label": "abc123",
       "roles": ["xyz789"],
    -  "customRoles": ["xyz789"]
    +  "customRoles": ["abc123"]
     }
     
    @@ -30189,23 +30186,23 @@
    Example
    "canonical_url": "xyz789", "children_count": "abc123", "custom_layout_update_file": "xyz789", - "default_sort_by": "xyz789", + "default_sort_by": "abc123", "description": "xyz789", - "display_mode": "xyz789", + "display_mode": "abc123", "filter_price_range": 123.45, - "image": "xyz789", + "image": "abc123", "include_in_menu": 987, - "is_anchor": 987, - "landing_page": 123, + "is_anchor": 123, + "landing_page": 987, "level": 123, "meta_description": "xyz789", - "meta_keywords": "abc123", - "meta_title": "xyz789", + "meta_keywords": "xyz789", + "meta_title": "abc123", "name": "xyz789", - "path": "abc123", + "path": "xyz789", "path_in_store": "xyz789", "position": 123, - "product_count": 123, + "product_count": 987, "uid": 4, "url_key": "abc123", "url_path": "abc123" @@ -30260,9 +30257,9 @@
    Fields
    Example
    {
    -  "title": "xyz789",
    -  "description": "abc123",
    -  "keywords": ["xyz789"]
    +  "title": "abc123",
    +  "description": "xyz789",
    +  "keywords": ["abc123"]
     }
     
    @@ -30314,7 +30311,7 @@
    Fields
    Example
    {
    -  "slug": "abc123",
    +  "slug": "xyz789",
       "name": "xyz789",
       "children": [CategoryNavigationView]
     }
    @@ -30374,8 +30371,8 @@ 
    Fields
    Example
    {
       "name": "abc123",
    -  "slug": "xyz789",
    -  "level": 123,
    +  "slug": "abc123",
    +  "level": 987,
       "parents": [CategoryProductView]
     }
     
    @@ -30553,17 +30550,17 @@
    Example
    "available_sort_by": ["xyz789"], "breadcrumbs": [Breadcrumb], "canonical_url": "xyz789", - "children_count": "xyz789", + "children_count": "abc123", "custom_layout_update_file": "abc123", - "default_sort_by": "abc123", + "default_sort_by": "xyz789", "description": "xyz789", "display_mode": "xyz789", - "filter_price_range": 987.65, - "image": "xyz789", - "include_in_menu": 987, - "is_anchor": 987, - "landing_page": 987, - "level": 987, + "filter_price_range": 123.45, + "image": "abc123", + "include_in_menu": 123, + "is_anchor": 123, + "landing_page": 123, + "level": 123, "meta_description": "abc123", "meta_keywords": "xyz789", "meta_title": "abc123", @@ -30573,7 +30570,7 @@
    Example
    "position": 987, "product_count": 987, "uid": 4, - "url_key": "abc123", + "url_key": "xyz789", "url_path": "xyz789" }
    @@ -30651,14 +30648,14 @@
    Fields
    Example
    {
    -  "slug": "abc123",
    -  "name": "abc123",
    -  "description": "xyz789",
    +  "slug": "xyz789",
    +  "name": "xyz789",
    +  "description": "abc123",
       "metaTags": CategoryMetaTags,
       "images": [CategoryImage],
       "level": 987,
    -  "parentSlug": "xyz789",
    -  "childrenSlugs": ["xyz789"]
    +  "parentSlug": "abc123",
    +  "childrenSlugs": ["abc123"]
     }
     
    @@ -30774,16 +30771,16 @@
    Example
    "availableSortBy": ["xyz789"], "children": ["abc123"], "defaultSortBy": "abc123", - "id": 4, - "level": 987, + "id": "4", + "level": 123, "name": "abc123", "parentId": "abc123", "position": 987, - "path": "abc123", - "roles": ["xyz789"], + "path": "xyz789", + "roles": ["abc123"], "urlKey": "abc123", "urlPath": "xyz789", - "count": 987, + "count": 123, "title": "xyz789" }
    @@ -30884,15 +30881,15 @@
    Possible Types
    Example
    {
    -  "availableSortBy": ["xyz789"],
    +  "availableSortBy": ["abc123"],
       "defaultSortBy": "xyz789",
       "id": 4,
       "level": 123,
    -  "name": "xyz789",
    +  "name": "abc123",
       "path": "abc123",
       "roles": ["abc123"],
    -  "urlKey": "xyz789",
    -  "urlPath": "xyz789"
    +  "urlKey": "abc123",
    +  "urlPath": "abc123"
     }
     
    @@ -31039,10 +31036,10 @@
    Fields
    Example
    {
    -  "agreement_id": 987,
    +  "agreement_id": 123,
       "checkbox_text": "xyz789",
       "content": "xyz789",
    -  "content_height": "abc123",
    +  "content_height": "xyz789",
       "is_html": false,
       "mode": "AUTO",
       "name": "xyz789"
    @@ -31145,7 +31142,7 @@ 
    Fields
    Example
    {
       "code": "REORDER_NOT_AVAILABLE",
    -  "message": "xyz789",
    +  "message": "abc123",
       "path": ["xyz789"]
     }
     
    @@ -31350,7 +31347,7 @@
    Fields
    Example
    {
       "errors": [NegotiableQuoteInvalidStateError],
    -  "quote_uid": 4
    +  "quote_uid": "4"
     }
     
    @@ -31432,7 +31429,7 @@
    Fields
    Example
    -
    {"quote_uids": ["4"]}
    +                  
    {"quote_uids": [4]}
     
    @@ -31553,7 +31550,7 @@
    Fields
    Example
    -
    {"value": "abc123"}
    +                  
    {"value": "xyz789"}
     
    @@ -31593,7 +31590,7 @@
    Fields
    Example
    -
    {"priceBookId": "4"}
    +                  
    {"priceBookId": 4}
     
    @@ -31969,7 +31966,7 @@
    Example
    "legal_name": "xyz789", "name": "abc123", "payment_methods": ["abc123"], - "reseller_id": "xyz789", + "reseller_id": "abc123", "role": CompanyRole, "roles": CompanyRoles, "sales_representative": CompanySalesRepresentative, @@ -32036,8 +32033,8 @@
    Fields
    Example
    {
       "children": [CompanyAclResource],
    -  "id": "4",
    -  "sort_order": 987,
    +  "id": 4,
    +  "sort_order": 123,
       "text": "xyz789"
     }
     
    @@ -32120,10 +32117,10 @@
    Example
    "custom_attributes": [AttributeValueInput], "email": "xyz789", "firstname": "xyz789", - "gender": 123, - "job_title": "abc123", - "lastname": "abc123", - "telephone": "abc123" + "gender": 987, + "job_title": "xyz789", + "lastname": "xyz789", + "telephone": "xyz789" }
    @@ -32236,8 +32233,8 @@
    Fields
    Example
    {
       "id": 4,
    -  "is_admin": true,
    -  "legal_name": "xyz789",
    +  "is_admin": false,
    +  "legal_name": "abc123",
       "name": "xyz789",
       "status": "PENDING"
     }
    @@ -32320,11 +32317,11 @@ 
    Example
    {
       "company_admin": CompanyAdminInput,
       "company_email": "abc123",
    -  "company_name": "xyz789",
    +  "company_name": "abc123",
       "legal_address": CompanyLegalAddressCreateInput,
       "legal_name": "xyz789",
    -  "reseller_id": "abc123",
    -  "vat_tax_id": "abc123"
    +  "reseller_id": "xyz789",
    +  "vat_tax_id": "xyz789"
     }
     
    @@ -32438,7 +32435,7 @@
    Example
    {
       "items": [CompanyCreditOperation],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -32493,7 +32490,7 @@
    Fields
    Example
    {
    -  "custom_reference_number": "xyz789",
    +  "custom_reference_number": "abc123",
       "operation_type": "ALLOCATION",
       "updated_by": "abc123"
     }
    @@ -32565,7 +32562,7 @@ 
    Example
    "amount": Money, "balance": CompanyCredit, "custom_reference_number": "xyz789", - "date": "abc123", + "date": "xyz789", "type": "ALLOCATION", "updated_by": CompanyCreditOperationUser } @@ -32833,7 +32830,7 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    +  "code": "abc123",
       "role_id": 4,
       "user": CompanyInvitationUserInput
     }
    @@ -32943,7 +32940,7 @@ 
    Fields
    Example
    {
       "company_id": "4",
    -  "customer_id": "4",
    +  "customer_id": 4,
       "job_title": "abc123",
       "status": "ACTIVE",
       "telephone": "abc123"
    @@ -33013,12 +33010,12 @@ 
    Fields
    Example
    {
    -  "city": "xyz789",
    +  "city": "abc123",
       "country_code": "AF",
    -  "postcode": "abc123",
    +  "postcode": "xyz789",
       "region": CustomerAddressRegion,
       "street": ["xyz789"],
    -  "telephone": "abc123"
    +  "telephone": "xyz789"
     }
     
    @@ -33091,7 +33088,7 @@
    Fields
    Example
    {
    -  "city": "xyz789",
    +  "city": "abc123",
       "country_id": "AF",
       "postcode": "xyz789",
       "region": CustomerAddressRegionInput,
    @@ -33169,12 +33166,12 @@ 
    Fields
    Example
    {
    -  "city": "abc123",
    +  "city": "xyz789",
       "country_id": "AF",
    -  "postcode": "xyz789",
    +  "postcode": "abc123",
       "region": CustomerAddressRegionInput,
    -  "street": ["abc123"],
    -  "telephone": "abc123"
    +  "street": ["xyz789"],
    +  "telephone": "xyz789"
     }
     
    @@ -33232,9 +33229,9 @@
    Fields
    Example
    {
       "id": 4,
    -  "name": "xyz789",
    +  "name": "abc123",
       "permissions": [CompanyAclResource],
    -  "users_count": 123
    +  "users_count": 987
     }
     
    @@ -33283,8 +33280,8 @@
    Fields
    Example
    {
    -  "name": "abc123",
    -  "permissions": ["xyz789"]
    +  "name": "xyz789",
    +  "permissions": ["abc123"]
     }
     
    @@ -33339,8 +33336,8 @@
    Fields
    Example
    {
    -  "id": "4",
    -  "name": "xyz789",
    +  "id": 4,
    +  "name": "abc123",
       "permissions": ["xyz789"]
     }
     
    @@ -33395,7 +33392,7 @@
    Example
    {
       "items": [CompanyRole],
       "page_info": SearchResultPageInfo,
    -  "total_count": 123
    +  "total_count": 987
     }
     
    @@ -33448,7 +33445,7 @@
    Fields
    Example
    {
       "email": "abc123",
    -  "firstname": "abc123",
    +  "firstname": "xyz789",
       "lastname": "abc123"
     }
     
    @@ -33639,7 +33636,11 @@
    Fields
    Example
    -
    {"entity": CompanyTeam, "id": 4, "parent_id": 4}
    +                  
    {
    +  "entity": CompanyTeam,
    +  "id": "4",
    +  "parent_id": "4"
    +}
     
    @@ -33686,7 +33687,7 @@
    Fields
    Example
    -
    {"parent_tree_id": "4", "tree_id": 4}
    +                  
    {"parent_tree_id": 4, "tree_id": "4"}
     
    @@ -33742,10 +33743,10 @@
    Fields
    Example
    {
    -  "description": "xyz789",
    +  "description": "abc123",
       "id": 4,
    -  "name": "abc123",
    -  "structure_id": "4"
    +  "name": "xyz789",
    +  "structure_id": 4
     }
     
    @@ -33801,7 +33802,7 @@
    Fields
    Example
    {
       "description": "xyz789",
    -  "name": "xyz789",
    +  "name": "abc123",
       "target_id": "4"
     }
     
    @@ -33857,9 +33858,9 @@
    Fields
    Example
    {
    -  "description": "xyz789",
    -  "id": 4,
    -  "name": "abc123"
    +  "description": "abc123",
    +  "id": "4",
    +  "name": "xyz789"
     }
     
    @@ -33933,11 +33934,11 @@
    Fields
    Example
    {
       "company_email": "xyz789",
    -  "company_name": "abc123",
    +  "company_name": "xyz789",
       "legal_address": CompanyLegalAddressUpdateInput,
    -  "legal_name": "abc123",
    -  "reseller_id": "xyz789",
    -  "vat_tax_id": "abc123"
    +  "legal_name": "xyz789",
    +  "reseller_id": "abc123",
    +  "vat_tax_id": "xyz789"
     }
     
    @@ -34023,12 +34024,12 @@
    Fields
    Example
    {
       "email": "xyz789",
    -  "firstname": "abc123",
    -  "job_title": "abc123",
    +  "firstname": "xyz789",
    +  "job_title": "xyz789",
       "lastname": "abc123",
    -  "role_id": 4,
    +  "role_id": "4",
       "status": "ACTIVE",
    -  "target_id": "4",
    +  "target_id": 4,
       "telephone": "abc123"
     }
     
    @@ -34161,14 +34162,14 @@
    Fields
    Example
    {
    -  "email": "xyz789",
    +  "email": "abc123",
       "firstname": "abc123",
    -  "id": "4",
    +  "id": 4,
       "job_title": "xyz789",
    -  "lastname": "xyz789",
    +  "lastname": "abc123",
       "role_id": "4",
       "status": "ACTIVE",
    -  "telephone": "xyz789"
    +  "telephone": "abc123"
     }
     
    @@ -34222,7 +34223,7 @@
    Example
    {
       "items": [Customer],
       "page_info": SearchResultPageInfo,
    -  "total_count": 123
    +  "total_count": 987
     }
     
    @@ -34310,8 +34311,8 @@
    Fields
    Example
    {
    -  "code": "abc123",
    -  "label": "xyz789"
    +  "code": "xyz789",
    +  "label": "abc123"
     }
     
    @@ -34424,9 +34425,9 @@
    Fields
    Example
    {
       "attributes": [ComparableAttribute],
    -  "item_count": 987,
    +  "item_count": 123,
       "items": [ComparableItem],
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -34475,8 +34476,8 @@
    Fields
    Example
    {
    -  "cartId": "abc123",
    -  "id": "xyz789"
    +  "cartId": "xyz789",
    +  "id": "abc123"
     }
     
    @@ -34707,25 +34708,25 @@
    Example
    {
       "addToCartAllowed": false,
       "inStock": false,
    -  "lowStock": true,
    +  "lowStock": false,
       "attributes": [ProductViewAttribute],
    -  "description": "xyz789",
    -  "id": "4",
    +  "description": "abc123",
    +  "id": 4,
       "images": [ProductViewImage],
       "videos": [ProductViewVideo],
       "lastModifiedAt": "2007-12-03T10:15:30Z",
       "metaDescription": "abc123",
    -  "metaKeyword": "xyz789",
    -  "metaTitle": "abc123",
    +  "metaKeyword": "abc123",
    +  "metaTitle": "xyz789",
       "name": "abc123",
       "inputOptions": [ProductViewInputOption],
       "options": [ProductViewOption],
       "priceRange": ProductViewPriceRange,
    -  "shortDescription": "abc123",
    +  "shortDescription": "xyz789",
       "sku": "xyz789",
       "externalId": "xyz789",
    -  "url": "abc123",
    -  "urlKey": "xyz789",
    +  "url": "xyz789",
    +  "urlKey": "abc123",
       "links": [ProductViewLink],
       "categories": [CategoryProductView],
       "queryType": "xyz789",
    @@ -34766,7 +34767,7 @@ 
    Fields
    Example
    -
    {"html": "xyz789"}
    +                  
    {"html": "abc123"}
     
    @@ -34821,7 +34822,7 @@
    Example
    {
       "field": "UNKNOWN_FIELD",
       "operator": OperatorInput,
    -  "enabled": false
    +  "enabled": true
     }
     
    @@ -34878,9 +34879,9 @@
    Fields
    Example
    {
    -  "code": "abc123",
    -  "label": "xyz789",
    -  "uid": 4,
    +  "code": "xyz789",
    +  "label": "abc123",
    +  "uid": "4",
       "value_index": 987
     }
     
    @@ -35026,7 +35027,7 @@
    Fields
    Example
    {
       "available_gift_wrapping": [GiftWrapping],
    -  "backorder_message": "xyz789",
    +  "backorder_message": "abc123",
       "configurable_options": [SelectedConfigurableOption],
       "configured_variant": ProductInterface,
       "custom_attributes": [CustomAttribute],
    @@ -35036,7 +35037,7 @@ 
    Example
    "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, "is_available": false, - "is_salable": true, + "is_salable": false, "max_qty": 123.45, "min_qty": 123.45, "not_available_message": "xyz789", @@ -35092,8 +35093,8 @@
    Fields
    Example
    {
    -  "attribute_code": "abc123",
    -  "option_value_uids": ["4"]
    +  "attribute_code": "xyz789",
    +  "option_value_uids": [4]
     }
     
    @@ -35254,20 +35255,20 @@
    Example
    "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, "id": 4, - "parent_sku": "abc123", + "parent_sku": "xyz789", "prices": OrderItemPrices, "product": ProductInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, "product_sku": "xyz789", "product_type": "abc123", - "product_url_key": "abc123", + "product_url_key": "xyz789", "quantity_canceled": 987.65, "quantity_invoiced": 123.45, - "quantity_ordered": 123.45, + "quantity_ordered": 987.65, "quantity_refunded": 123.45, "quantity_return_requested": 123.45, - "quantity_returned": 123.45, + "quantity_returned": 987.65, "quantity_shipped": 123.45, "selected_options": [OrderItemOption], "status": "abc123" @@ -35561,42 +35562,42 @@
    Example
    "crosssell_products": [ProductInterface], "custom_attributesV2": ProductCustomAttributes, "description": ComplexTextValue, - "gift_message_available": true, + "gift_message_available": false, "gift_wrapping_available": true, "gift_wrapping_price": Money, "image": ProductImage, "is_returnable": "abc123", - "manufacturer": 987, + "manufacturer": 123, "max_sale_qty": 987.65, "media_gallery": [MediaGalleryInterface], - "meta_description": "xyz789", + "meta_description": "abc123", "meta_keyword": "xyz789", "meta_title": "abc123", "min_sale_qty": 987.65, - "name": "xyz789", - "new_from_date": "xyz789", + "name": "abc123", + "new_from_date": "abc123", "new_to_date": "abc123", "only_x_left_in_stock": 123.45, "options": [CustomizableOptionInterface], - "options_container": "abc123", + "options_container": "xyz789", "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], - "quantity": 123.45, + "quantity": 987.65, "related_products": [ProductInterface], "short_description": ComplexTextValue, "sku": "xyz789", "small_image": ProductImage, - "special_price": 123.45, + "special_price": 987.65, "special_to_date": "xyz789", "stock_status": "IN_STOCK", - "swatch_image": "xyz789", + "swatch_image": "abc123", "thumbnail": ProductImage, "uid": 4, "upsell_products": [ProductInterface], "url_key": "abc123", "variants": [ConfigurableVariant], - "weight": 123.45 + "weight": 987.65 }
    @@ -35653,9 +35654,9 @@
    Fields
    Example
    {
    -  "attribute_code": "xyz789",
    +  "attribute_code": "abc123",
       "label": "xyz789",
    -  "uid": "4",
    +  "uid": 4,
       "values": [ConfigurableProductOptionValue]
     }
     
    @@ -35718,8 +35719,8 @@
    Fields
    Example
    {
    -  "is_available": true,
    -  "is_use_default": false,
    +  "is_available": false,
    +  "is_use_default": true,
       "label": "xyz789",
       "swatch": SwatchDataInterface,
       "uid": "4"
    @@ -35794,10 +35795,10 @@ 
    Fields
    Example
    {
    -  "attribute_code": "xyz789",
    -  "attribute_uid": 4,
    -  "label": "abc123",
    -  "position": 123,
    +  "attribute_code": "abc123",
    +  "attribute_uid": "4",
    +  "label": "xyz789",
    +  "position": 987,
       "uid": "4",
       "use_default": true,
       "values": [ConfigurableProductOptionsValues]
    @@ -35930,10 +35931,10 @@ 
    Fields
    Example
    {
       "default_label": "xyz789",
    -  "label": "abc123",
    +  "label": "xyz789",
       "store_label": "abc123",
       "swatch_data": SwatchDataInterface,
    -  "uid": "4",
    +  "uid": 4,
       "use_default_value": true
     }
     
    @@ -36005,8 +36006,8 @@
    Example
    "customizable_options": [SelectedCustomizableOption], "product": ProductInterface, "quantity": 987.65, - "sku": "abc123", - "uid": "4" + "sku": "xyz789", + "uid": 4 }
    @@ -36132,7 +36133,7 @@
    Fields
    Example
    {
    -  "added_at": "abc123",
    +  "added_at": "xyz789",
       "configurable_options": [SelectedConfigurableOption],
       "configured_variant": ProductInterface,
       "customizable_options": [SelectedCustomizableOption],
    @@ -36185,7 +36186,7 @@ 
    Fields
    Example
    {
       "confirmation_key": "abc123",
    -  "order_id": "4"
    +  "order_id": 4
     }
     
    @@ -36235,7 +36236,7 @@
    Fields
    Example
    {
       "confirmation_key": "xyz789",
    -  "email": "abc123"
    +  "email": "xyz789"
     }
     
    @@ -36281,7 +36282,7 @@
    Fields
    Example
    {
       "confirmation_key": "abc123",
    -  "order_id": "4"
    +  "order_id": 4
     }
     
    @@ -36386,9 +36387,9 @@
    Fields
    Example
    {
       "comment": "xyz789",
    -  "email": "xyz789",
    -  "name": "abc123",
    -  "telephone": "abc123"
    +  "email": "abc123",
    +  "name": "xyz789",
    +  "telephone": "xyz789"
     }
     
    @@ -36470,7 +36471,7 @@
    Fields
    Example
    -
    {"requisitionListItemUids": ["4"]}
    +                  
    {"requisitionListItemUids": [4]}
     
    @@ -36627,9 +36628,9 @@
    Fields
    Example
    {
       "available_regions": [Region],
    -  "full_name_english": "xyz789",
    -  "full_name_locale": "xyz789",
    -  "id": "xyz789",
    +  "full_name_english": "abc123",
    +  "full_name_locale": "abc123",
    +  "id": "abc123",
       "three_letter_abbreviation": "xyz789",
       "two_letter_abbreviation": "xyz789"
     }
    @@ -38425,9 +38426,9 @@ 
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "event_name": "abc123", - "gift_registry_type_uid": 4, - "message": "xyz789", + "event_name": "xyz789", + "gift_registry_type_uid": "4", + "message": "abc123", "privacy_settings": "PRIVATE", "registrants": [AddGiftRegistryRegistrantInput], "shipping_address": GiftRegistryShippingAddressInput, @@ -38613,8 +38614,8 @@
    Example
    {
       "cartId": "xyz789",
       "location": "PRODUCT_DETAIL",
    -  "methodCode": "abc123",
    -  "paymentSource": "xyz789",
    +  "methodCode": "xyz789",
    +  "paymentSource": "abc123",
       "vaultIntent": true
     }
     
    @@ -38677,11 +38678,11 @@
    Fields
    Example
    {
    -  "amount": 123.45,
    +  "amount": 987.65,
       "currency_code": "xyz789",
       "id": "abc123",
    -  "mp_order_id": "xyz789",
    -  "status": "abc123"
    +  "mp_order_id": "abc123",
    +  "status": "xyz789"
     }
     
    @@ -38729,7 +38730,7 @@
    Fields
    Example
    -
    {"currency": "AFN", "value": 123.45}
    +                  
    {"currency": "AFN", "value": 987.65}
     
    @@ -38792,7 +38793,7 @@
    Example
    "amount": CreatePurchaseOrderApprovalRuleConditionAmountInput, "attribute": "GRAND_TOTAL", "operator": "MORE_THAN", - "quantity": 987 + "quantity": 123 }
    @@ -38842,7 +38843,7 @@
    Fields
    Example
    {
       "description": "xyz789",
    -  "name": "abc123"
    +  "name": "xyz789"
     }
     
    @@ -38980,7 +38981,7 @@
    Fields
    Example
    {
       "payment_source": PaymentSourceOutput,
    -  "vault_token_id": "xyz789"
    +  "vault_token_id": "abc123"
     }
     
    @@ -39118,7 +39119,7 @@
    Fields
    Example
    -
    {"name": "xyz789", "visibility": "PUBLIC"}
    +                  
    {"name": "abc123", "visibility": "PUBLIC"}
     
    @@ -39226,7 +39227,7 @@
    Example
    {
       "comments": [SalesCommentItem],
       "custom_attributes": [CustomAttribute],
    -  "id": "4",
    +  "id": 4,
       "items": [CreditMemoItemInterface],
       "number": "xyz789",
       "total": CreditMemoTotal
    @@ -39278,7 +39279,7 @@ 
    Fields
    Example
    {
    -  "credit_memo_id": "abc123",
    +  "credit_memo_id": "xyz789",
       "custom_attributes": [CustomAttributeInput]
     }
     
    @@ -39354,11 +39355,11 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "id": 4,
    +  "id": "4",
       "order_item": OrderItemInterface,
    -  "product_name": "xyz789",
    +  "product_name": "abc123",
       "product_sale_price": Money,
    -  "product_sku": "xyz789",
    +  "product_sku": "abc123",
       "quantity_refunded": 987.65
     }
     
    @@ -39527,9 +39528,9 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "id": "4",
    +  "id": 4,
       "order_item": OrderItemInterface,
    -  "product_name": "abc123",
    +  "product_name": "xyz789",
       "product_sale_price": Money,
       "product_sku": "abc123",
       "quantity_refunded": 123.45
    @@ -39726,8 +39727,8 @@ 
    Fields
    Example
    {
       "available_currency_codes": ["xyz789"],
    -  "base_currency_code": "abc123",
    -  "base_currency_symbol": "xyz789",
    +  "base_currency_code": "xyz789",
    +  "base_currency_symbol": "abc123",
       "default_display_currency_code": "xyz789",
       "default_display_currency_symbol": "xyz789",
       "exchange_rates": [ExchangeRate]
    @@ -40996,7 +40997,7 @@ 
    Fields
    Example
    -
    {"sku": "xyz789", "price": 123.45}
    +                  
    {"sku": "abc123", "price": 987.65}
     
    @@ -41043,7 +41044,7 @@
    Fields
    Example
    {
       "attribute_code": "xyz789",
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -41207,13 +41208,13 @@
    Possible Types
    Example
    {
    -  "code": 4,
    -  "default_value": "xyz789",
    +  "code": "4",
    +  "default_value": "abc123",
       "entity_type": "CATALOG_PRODUCT",
       "frontend_class": "xyz789",
       "frontend_input": "BOOLEAN",
       "is_required": true,
    -  "is_unique": true,
    +  "is_unique": false,
       "label": "xyz789",
       "options": [CustomAttributeOptionInterface]
     }
    @@ -41280,7 +41281,7 @@ 
    Possible Types
    Example
    {
    -  "is_default": false,
    +  "is_default": true,
       "label": "abc123",
       "value": "abc123"
     }
    @@ -41331,7 +41332,7 @@ 
    Fields
    Example
    {
    -  "key": "xyz789",
    +  "key": "abc123",
       "value": "xyz789"
     }
     
    @@ -41380,7 +41381,7 @@
    Fields
    Example
    {
       "type": "UNKNOWN_CUSTOMOPERATOR_TYPE",
    -  "value": ["abc123"]
    +  "value": ["xyz789"]
     }
     
    @@ -41975,7 +41976,7 @@
    Example
    "addresses": [CustomerAddress], "addressesV2": CustomerAddresses, "admin_assistance_actions": AdminAssistanceActions, - "allow_remote_shopping_assistance": true, + "allow_remote_shopping_assistance": false, "companies": UserCompaniesOutput, "company_hierarchy": [CompanyHierarchy], "compare_list": CompareList, @@ -41985,17 +41986,17 @@
    Example
    "date_of_birth": "xyz789", "default_billing": "abc123", "default_shipping": "xyz789", - "email": "abc123", - "firstname": "xyz789", - "gender": 987, + "email": "xyz789", + "firstname": "abc123", + "gender": 123, "gift_registries": [GiftRegistry], "gift_registry": GiftRegistry, "group": CustomerGroupStorefront, - "id": 4, + "id": "4", "is_subscribed": false, "job_title": "abc123", "lastname": "abc123", - "middlename": "xyz789", + "middlename": "abc123", "orders": CustomerOrders, "prefix": "abc123", "purchase_order": PurchaseOrder, @@ -42003,7 +42004,7 @@
    Example
    "purchase_order_approval_rule_metadata": PurchaseOrderApprovalRuleMetadata, "purchase_order_approval_rules": PurchaseOrderApprovalRules, "purchase_orders": PurchaseOrders, - "purchase_orders_enabled": true, + "purchase_orders_enabled": false, "quote_enabled": true, "requisition_lists": RequisitionLists, "return": Return, @@ -42013,9 +42014,9 @@
    Example
    "segments": [CustomerSegmentStorefront], "status": "ACTIVE", "store_credit": CustomerStoreCredit, - "structure_id": "4", + "structure_id": 4, "suffix": "xyz789", - "taxvat": "xyz789", + "taxvat": "abc123", "team": CompanyTeam, "telephone": "xyz789", "wishlist_v2": Wishlist, @@ -42175,27 +42176,27 @@
    attributeCodes
    Example
    {
    -  "city": "abc123",
    +  "city": "xyz789",
       "company": "abc123",
       "country_code": "AF",
       "custom_attributesV2": [AttributeValueInterface],
    -  "default_billing": true,
    +  "default_billing": false,
       "default_shipping": true,
       "extension_attributes": [CustomerAddressAttribute],
    -  "fax": "xyz789",
    +  "fax": "abc123",
       "firstname": "xyz789",
    -  "id": 123,
    -  "lastname": "abc123",
    -  "middlename": "xyz789",
    -  "postcode": "abc123",
    +  "id": 987,
    +  "lastname": "xyz789",
    +  "middlename": "abc123",
    +  "postcode": "xyz789",
       "prefix": "xyz789",
       "region": CustomerAddressRegion,
       "region_id": 123,
       "street": ["xyz789"],
    -  "suffix": "abc123",
    +  "suffix": "xyz789",
       "telephone": "abc123",
    -  "uid": "4",
    -  "vat_id": "abc123"
    +  "uid": 4,
    +  "vat_id": "xyz789"
     }
     
    @@ -42383,7 +42384,7 @@
    Fields
    Example
    {
       "city": "xyz789",
    -  "company": "xyz789",
    +  "company": "abc123",
       "country_code": "AF",
       "custom_attributesV2": [AttributeValueInput],
       "default_billing": false,
    @@ -42393,11 +42394,11 @@ 
    Example
    "lastname": "abc123", "middlename": "abc123", "postcode": "abc123", - "prefix": "abc123", + "prefix": "xyz789", "region": CustomerAddressRegionInput, - "street": ["xyz789"], + "street": ["abc123"], "suffix": "xyz789", - "telephone": "xyz789", + "telephone": "abc123", "vat_id": "xyz789" }
    @@ -42507,8 +42508,8 @@
    Fields
    Example
    {
    -  "region": "xyz789",
    -  "region_code": "xyz789",
    +  "region": "abc123",
    +  "region_code": "abc123",
       "region_id": 987
     }
     
    @@ -42662,17 +42663,17 @@
    Fields
    Example
    {
       "code": 4,
    -  "default_value": "xyz789",
    +  "default_value": "abc123",
       "entity_type": "CATALOG_PRODUCT",
    -  "frontend_class": "xyz789",
    +  "frontend_class": "abc123",
       "frontend_input": "BOOLEAN",
       "input_filter": "NONE",
       "is_required": false,
    -  "is_unique": false,
    -  "label": "abc123",
    -  "multiline_count": 123,
    +  "is_unique": true,
    +  "label": "xyz789",
    +  "multiline_count": 987,
       "options": [CustomAttributeOptionInterface],
    -  "sort_order": 123,
    +  "sort_order": 987,
       "validate_rules": [ValidationRule]
     }
     
    @@ -42788,9 +42789,9 @@
    Fields
    Example
    {
    -  "allow_remote_shopping_assistance": false,
    +  "allow_remote_shopping_assistance": true,
       "custom_attributes": [AttributeValueInput],
    -  "date_of_birth": "xyz789",
    +  "date_of_birth": "abc123",
       "email": "xyz789",
       "firstname": "abc123",
       "gender": 123,
    @@ -42799,7 +42800,7 @@ 
    Example
    "middlename": "xyz789", "password": "xyz789", "prefix": "abc123", - "suffix": "abc123", + "suffix": "xyz789", "taxvat": "xyz789" }
    @@ -42863,9 +42864,9 @@
    Fields
    Example
    {
       "date": "xyz789",
    -  "download_url": "abc123",
    +  "download_url": "xyz789",
       "order_increment_id": "abc123",
    -  "remaining_downloads": "abc123",
    +  "remaining_downloads": "xyz789",
       "status": "abc123"
     }
     
    @@ -42947,7 +42948,7 @@
    Fields
    Example
    -
    {"uid": "4"}
    +                  
    {"uid": 4}
     
    @@ -43169,31 +43170,31 @@
    Example
    "applied_gift_cards": [ApplyGiftCardToOrder], "available_actions": ["REORDER"], "billing_address": OrderAddress, - "carrier": "xyz789", + "carrier": "abc123", "comments": [SalesCommentItem], "credit_memos": [CreditMemo], "custom_attributes": [CustomAttribute], "customer_info": OrderCustomerInfo, "email": "xyz789", "gift_message": GiftMessage, - "gift_receipt_included": false, + "gift_receipt_included": true, "gift_wrapping": GiftWrapping, "id": "4", "invoices": [Invoice], - "is_virtual": true, + "is_virtual": false, "items": [OrderItemInterface], "items_eligible_for_return": [OrderItemInterface], "negotiable_quote": NegotiableQuote, - "number": "xyz789", + "number": "abc123", "order_date": "abc123", - "order_status_change_date": "abc123", + "order_status_change_date": "xyz789", "payment_methods": [OrderPaymentMethod], - "printed_card_included": true, + "printed_card_included": false, "returns": Returns, "shipments": [OrderShipment], "shipping_address": OrderAddress, "shipping_method": "abc123", - "status": "xyz789", + "status": "abc123", "token": "xyz789", "total": OrderTotal } @@ -43534,7 +43535,7 @@
    Fields
    Example
    -
    {"uid": "4"}
    +                  
    {"uid": 4}
     
    @@ -43606,7 +43607,7 @@
    Example
    {
       "balance_history": CustomerStoreCreditHistory,
       "current_balance": Money,
    -  "enabled": false
    +  "enabled": true
     }
     
    @@ -43660,7 +43661,7 @@
    Example
    {
       "items": [CustomerStoreCreditHistoryItem],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -43717,7 +43718,7 @@
    Fields
    Example
    {
    -  "action": "xyz789",
    +  "action": "abc123",
       "actual_balance": Money,
       "balance_change": Money,
       "date_time_changed": "abc123"
    @@ -43761,7 +43762,7 @@ 
    Fields
    Example
    -
    {"token": "abc123"}
    +                  
    {"token": "xyz789"}
     
    @@ -43868,11 +43869,11 @@
    Example
    "date_of_birth": "xyz789", "firstname": "xyz789", "gender": 123, - "is_subscribed": true, + "is_subscribed": false, "lastname": "abc123", "middlename": "xyz789", "prefix": "xyz789", - "suffix": "xyz789", + "suffix": "abc123", "taxvat": "abc123" }
    @@ -43940,10 +43941,10 @@
    Fields
    Example
    {
    -  "product_sku": "xyz789",
    -  "required": false,
    +  "product_sku": "abc123",
    +  "required": true,
       "sort_order": 987,
    -  "title": "abc123",
    +  "title": "xyz789",
       "uid": "4",
       "value": CustomizableAreaValue
     }
    @@ -44008,9 +44009,9 @@ 
    Fields
    Example
    {
       "max_characters": 987,
    -  "price": 123.45,
    +  "price": 987.65,
       "price_type": "FIXED",
    -  "sku": "xyz789",
    +  "sku": "abc123",
       "uid": "4"
     }
     
    @@ -44074,7 +44075,7 @@
    Fields
    Example
    {
       "required": false,
    -  "sort_order": 123,
    +  "sort_order": 987,
       "title": "abc123",
       "uid": "4",
       "value": [CustomizableCheckboxValue]
    @@ -44149,12 +44150,12 @@ 
    Fields
    Example
    {
    -  "option_type_id": 123,
    +  "option_type_id": 987,
       "price": 987.65,
       "price_type": "FIXED",
    -  "sku": "abc123",
    -  "sort_order": 123,
    -  "title": "xyz789",
    +  "sku": "xyz789",
    +  "sort_order": 987,
    +  "title": "abc123",
       "uid": "4"
     }
     
    @@ -44222,10 +44223,10 @@
    Fields
    Example
    {
    -  "product_sku": "xyz789",
    +  "product_sku": "abc123",
       "required": false,
    -  "sort_order": 987,
    -  "title": "xyz789",
    +  "sort_order": 123,
    +  "title": "abc123",
       "uid": 4,
       "value": CustomizableDateValue
     }
    @@ -44413,7 +44414,7 @@ 
    Example
    {
       "required": true,
       "sort_order": 987,
    -  "title": "abc123",
    +  "title": "xyz789",
       "uid": 4,
       "value": [CustomizableDropDownValue]
     }
    @@ -44487,13 +44488,13 @@ 
    Fields
    Example
    {
    -  "option_type_id": 123,
    +  "option_type_id": 987,
       "price": 987.65,
       "price_type": "FIXED",
       "sku": "abc123",
       "sort_order": 987,
       "title": "abc123",
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -44564,7 +44565,7 @@
    Example
    "required": true, "sort_order": 123, "title": "abc123", - "uid": 4, + "uid": "4", "value": CustomizableFieldValue }
    @@ -44627,7 +44628,7 @@
    Fields
    Example
    {
    -  "max_characters": 987,
    +  "max_characters": 123,
       "price": 987.65,
       "price_type": "FIXED",
       "sku": "xyz789",
    @@ -44776,8 +44777,8 @@ 
    Fields
    Example
    {
       "file_extension": "xyz789",
    -  "image_size_x": 987,
    -  "image_size_y": 987,
    +  "image_size_x": 123,
    +  "image_size_y": 123,
       "price": 987.65,
       "price_type": "FIXED",
       "sku": "xyz789",
    @@ -44844,9 +44845,9 @@ 
    Fields
    Example
    {
       "required": false,
    -  "sort_order": 987,
    +  "sort_order": 123,
       "title": "abc123",
    -  "uid": "4",
    +  "uid": 4,
       "value": [CustomizableMultipleValue]
     }
     
    @@ -44919,12 +44920,12 @@
    Fields
    Example
    {
    -  "option_type_id": 123,
    +  "option_type_id": 987,
       "price": 987.65,
       "price_type": "FIXED",
       "sku": "abc123",
    -  "sort_order": 123,
    -  "title": "xyz789",
    +  "sort_order": 987,
    +  "title": "abc123",
       "uid": "4"
     }
     
    @@ -45084,10 +45085,10 @@
    Possible Types
    Example
    {
    -  "required": false,
    +  "required": true,
       "sort_order": 123,
       "title": "xyz789",
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -45232,8 +45233,8 @@
    Fields
    Example
    {
       "required": true,
    -  "sort_order": 987,
    -  "title": "abc123",
    +  "sort_order": 123,
    +  "title": "xyz789",
       "uid": 4,
       "value": [CustomizableRadioValue]
     }
    @@ -45307,13 +45308,13 @@ 
    Fields
    Example
    {
    -  "option_type_id": 987,
    -  "price": 987.65,
    +  "option_type_id": 123,
    +  "price": 123.45,
       "price_type": "FIXED",
    -  "sku": "xyz789",
    -  "sort_order": 987,
    +  "sku": "abc123",
    +  "sort_order": 123,
       "title": "xyz789",
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -45416,7 +45417,7 @@
    Fields
    Example
    -
    {"success": false}
    +                  
    {"success": true}
     
    @@ -45456,7 +45457,7 @@
    Fields
    Example
    -
    {"success": false}
    +                  
    {"success": true}
     
    @@ -45671,7 +45672,7 @@
    Fields
    Example
    -
    {"template_id": "4"}
    +                  
    {"template_id": 4}
     
    @@ -46097,7 +46098,7 @@
    Fields
    Example
    -
    {"requisition_lists": RequisitionLists, "status": false}
    +                  
    {"requisition_lists": RequisitionLists, "status": true}
     
    @@ -46142,7 +46143,7 @@
    Fields
    Example
    -
    {"status": true, "wishlists": [Wishlist]}
    +                  
    {"status": false, "wishlists": [Wishlist]}
     
    @@ -46216,10 +46217,10 @@
    Example
    "amount": Money, "applied_to": "ITEM", "coupon": AppliedCoupon, - "is_discounting_locked": false, + "is_discounting_locked": true, "label": "xyz789", "type": "xyz789", - "value": 123.45 + "value": 987.65 }
    @@ -46358,14 +46359,14 @@
    Example
    "links": [DownloadableProductLinks], "max_qty": 987.65, "min_qty": 987.65, - "not_available_message": "xyz789", + "not_available_message": "abc123", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 123.45, + "quantity": 987.65, "samples": [DownloadableProductSamples], - "uid": 4 + "uid": "4" }
    @@ -46450,12 +46451,12 @@
    Example
    "custom_attributes": [CustomAttribute], "discounts": [Discount], "downloadable_links": [DownloadableItemsLinks], - "id": "4", + "id": 4, "order_item": OrderItemInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, - "product_sku": "xyz789", - "quantity_refunded": 987.65 + "product_sku": "abc123", + "quantity_refunded": 123.45 }
    @@ -46540,11 +46541,11 @@
    Example
    "custom_attributes": [CustomAttribute], "discounts": [Discount], "downloadable_links": [DownloadableItemsLinks], - "id": 4, + "id": "4", "order_item": OrderItemInterface, "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "abc123", + "product_sku": "xyz789", "quantity_invoiced": 123.45 }
    @@ -46760,7 +46761,7 @@
    Example
    "custom_attributes": [CustomAttribute], "discounts": [Discount], "downloadable_links": [DownloadableItemsLinks], - "eligible_for_return": true, + "eligible_for_return": false, "entered_options": [OrderItemOption], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, @@ -46770,14 +46771,14 @@
    Example
    "product_name": "abc123", "product_sale_price": Money, "product_sku": "abc123", - "product_type": "abc123", - "product_url_key": "xyz789", + "product_type": "xyz789", + "product_url_key": "abc123", "quantity_canceled": 123.45, - "quantity_invoiced": 987.65, - "quantity_ordered": 123.45, + "quantity_invoiced": 123.45, + "quantity_ordered": 987.65, "quantity_refunded": 987.65, "quantity_return_requested": 123.45, - "quantity_returned": 123.45, + "quantity_returned": 987.65, "quantity_shipped": 987.65, "selected_options": [OrderItemOption], "status": "xyz789" @@ -47052,7 +47053,7 @@
    Example
    {
       "canonical_url": "xyz789",
       "categories": [CategoryInterface],
    -  "country_of_manufacture": "xyz789",
    +  "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    @@ -47066,11 +47067,11 @@ 
    Example
    "gift_wrapping_available": false, "gift_wrapping_price": Money, "image": ProductImage, - "is_returnable": "xyz789", - "links_purchased_separately": 123, + "is_returnable": "abc123", + "links_purchased_separately": 987, "links_title": "abc123", "manufacturer": 123, - "max_sale_qty": 987.65, + "max_sale_qty": 123.45, "media_gallery": [MediaGalleryInterface], "meta_description": "xyz789", "meta_keyword": "abc123", @@ -47085,19 +47086,19 @@
    Example
    "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], - "quantity": 123.45, + "quantity": 987.65, "related_products": [ProductInterface], "short_description": ComplexTextValue, - "sku": "xyz789", + "sku": "abc123", "small_image": ProductImage, - "special_price": 987.65, - "special_to_date": "abc123", + "special_price": 123.45, + "special_to_date": "xyz789", "stock_status": "IN_STOCK", "swatch_image": "xyz789", "thumbnail": ProductImage, "uid": "4", "upsell_products": [ProductInterface], - "url_key": "xyz789" + "url_key": "abc123" }
    @@ -47221,7 +47222,7 @@
    Example
    "price": 123.45, "sample_url": "abc123", "sort_order": 123, - "title": "xyz789", + "title": "abc123", "uid": 4 }
    @@ -47315,8 +47316,8 @@
    Fields
    Example
    {
    -  "sample_url": "abc123",
    -  "sort_order": 123,
    +  "sample_url": "xyz789",
    +  "sort_order": 987,
       "title": "abc123"
     }
     
    @@ -47473,13 +47474,13 @@
    Fields
    Example
    {
    -  "added_at": "xyz789",
    +  "added_at": "abc123",
       "customizable_options": [SelectedCustomizableOption],
       "description": "xyz789",
       "id": 4,
       "links_v2": [DownloadableProductLinks],
       "product": ProductInterface,
    -  "quantity": 987.65,
    +  "quantity": 123.45,
       "samples": [DownloadableProductSamples]
     }
     
    @@ -47619,7 +47620,7 @@
    Fields
    Example
    {
    -  "attribute_code": "abc123",
    +  "attribute_code": "xyz789",
       "value": "xyz789"
     }
     
    @@ -47668,7 +47669,7 @@
    Fields
    Example
    -
    {"uid": 4, "value": "xyz789"}
    +                  
    {"uid": 4, "value": "abc123"}
     
    @@ -47737,7 +47738,7 @@
    Possible Types
    Example
    {
       "code": "PRODUCT_NOT_FOUND",
    -  "message": "abc123"
    +  "message": "xyz789"
     }
     
    @@ -47909,7 +47910,7 @@
    Fields
    Example
    {
       "address": EstimateAddressInput,
    -  "cart_id": "abc123",
    +  "cart_id": "xyz789",
       "shipping_method": ShippingMethodInput
     }
     
    @@ -48158,13 +48159,13 @@
    Fields
    Example
    {
       "code": "abc123",
    -  "is_visible": true,
    +  "is_visible": false,
       "payment_intent": "xyz789",
    -  "payment_source": "xyz789",
    +  "payment_source": "abc123",
       "sdk_params": [SDKParams],
       "sort_order": "abc123",
       "three_ds_mode": "OFF",
    -  "title": "abc123"
    +  "title": "xyz789"
     }
     
    @@ -48214,7 +48215,7 @@
    Fields
    Example
    {
       "payment_source": "abc123",
    -  "paypal_fastlane_token": "abc123"
    +  "paypal_fastlane_token": "xyz789"
     }
     
    @@ -48444,7 +48445,7 @@
    Fields
    Example
    -
    {"match": "abc123", "match_type": "FULL"}
    +                  
    {"match": "xyz789", "match_type": "FULL"}
     
    @@ -48547,7 +48548,7 @@
    Fields
    Example
    {
    -  "name": "abc123",
    +  "name": "xyz789",
       "type": "UNKNOWN_FILTER_RULE_TYPE",
       "conditions": [ConditionInput]
     }
    @@ -48657,8 +48658,8 @@ 
    Fields
    Example
    {
       "eq": "xyz789",
    -  "in": ["xyz789"],
    -  "match": "abc123"
    +  "in": ["abc123"],
    +  "match": "xyz789"
     }
     
    @@ -48779,19 +48780,19 @@
    Fields
    Example
    {
    -  "eq": "xyz789",
    -  "from": "xyz789",
    -  "gt": "abc123",
    +  "eq": "abc123",
    +  "from": "abc123",
    +  "gt": "xyz789",
       "gteq": "xyz789",
       "in": ["abc123"],
       "like": "xyz789",
    -  "lt": "abc123",
    -  "lteq": "abc123",
    -  "moreq": "abc123",
    -  "neq": "abc123",
    +  "lt": "xyz789",
    +  "lteq": "xyz789",
    +  "moreq": "xyz789",
    +  "neq": "xyz789",
       "nin": ["xyz789"],
       "notnull": "abc123",
    -  "null": "abc123",
    +  "null": "xyz789",
       "to": "abc123"
     }
     
    @@ -48850,8 +48851,8 @@
    Fields
    Example
    {
       "attribute": "xyz789",
    -  "frontendInput": "xyz789",
    -  "label": "abc123",
    +  "frontendInput": "abc123",
    +  "label": "xyz789",
       "numeric": true
     }
     
    @@ -48900,7 +48901,7 @@
    Fields
    Example
    {
       "amount": Money,
    -  "label": "abc123"
    +  "label": "xyz789"
     }
     
    @@ -48988,7 +48989,7 @@
    Description
    Example
    -
    123.45
    +                  
    987.65
     
    @@ -49069,7 +49070,7 @@
    Fields
    Example
    -
    {"customer_token": "xyz789"}
    +                  
    {"customer_token": "abc123"}
     
    @@ -49347,10 +49348,10 @@
    Fields
    Example
    {
       "attribute_id": 123,
    -  "uid": "4",
    +  "uid": 4,
       "value": 123.45,
       "website_id": 987,
    -  "website_value": 123.45
    +  "website_value": 987.65
     }
     
    @@ -49516,19 +49517,19 @@
    Example
    {
       "amount": Money,
       "available_gift_wrapping": [GiftWrapping],
    -  "backorder_message": "abc123",
    +  "backorder_message": "xyz789",
       "custom_attributes": [CustomAttribute],
       "customizable_options": [SelectedCustomizableOption],
       "discount": [Discount],
       "errors": [CartItemError],
       "gift_message": GiftMessage,
       "gift_wrapping": GiftWrapping,
    -  "is_available": true,
    +  "is_available": false,
       "is_salable": false,
    -  "max_qty": 987.65,
    +  "max_qty": 123.45,
       "message": "abc123",
    -  "min_qty": 987.65,
    -  "not_available_message": "xyz789",
    +  "min_qty": 123.45,
    +  "not_available_message": "abc123",
       "note_from_buyer": [ItemNote],
       "note_from_seller": [ItemNote],
       "prices": CartItemPrices,
    @@ -49536,9 +49537,9 @@ 
    Example
    "quantity": 987.65, "recipient_email": "abc123", "recipient_name": "abc123", - "sender_email": "xyz789", - "sender_name": "xyz789", - "uid": 4 + "sender_email": "abc123", + "sender_name": "abc123", + "uid": "4" }
    @@ -49621,7 +49622,7 @@
    Example
    "gift_card": GiftCardItem, "id": "4", "order_item": OrderItemInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, "product_sku": "xyz789", "quantity_refunded": 123.45 @@ -49707,10 +49708,10 @@
    Example
    "gift_card": GiftCardItem, "id": 4, "order_item": OrderItemInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, "product_sku": "xyz789", - "quantity_invoiced": 987.65 + "quantity_invoiced": 123.45 }
    @@ -49774,8 +49775,8 @@
    Example
    {
       "message": "abc123",
       "recipient_email": "xyz789",
    -  "recipient_name": "abc123",
    -  "sender_email": "xyz789",
    +  "recipient_name": "xyz789",
    +  "sender_email": "abc123",
       "sender_name": "abc123"
     }
     
    @@ -49852,7 +49853,7 @@
    Example
    "custom_giftcard_amount": Money, "message": "xyz789", "recipient_email": "abc123", - "recipient_name": "xyz789", + "recipient_name": "abc123", "sender_email": "xyz789", "sender_name": "abc123" } @@ -50018,20 +50019,20 @@
    Example
    "id": "4", "prices": OrderItemPrices, "product": ProductInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, - "product_sku": "abc123", + "product_sku": "xyz789", "product_type": "abc123", - "product_url_key": "abc123", + "product_url_key": "xyz789", "quantity_canceled": 123.45, "quantity_invoiced": 987.65, - "quantity_ordered": 123.45, + "quantity_ordered": 987.65, "quantity_refunded": 987.65, - "quantity_return_requested": 987.65, - "quantity_returned": 987.65, + "quantity_return_requested": 123.45, + "quantity_returned": 123.45, "quantity_shipped": 123.45, "selected_options": [OrderItemOption], - "status": "xyz789" + "status": "abc123" }
    @@ -50336,9 +50337,9 @@
    filters
    Example
    {
    -  "allow_message": false,
    +  "allow_message": true,
       "allow_open_amount": false,
    -  "canonical_url": "xyz789",
    +  "canonical_url": "abc123",
       "categories": [CategoryInterface],
       "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
    @@ -50351,41 +50352,41 @@ 
    Example
    "giftcard_amounts": [GiftCardAmounts], "giftcard_type": "VIRTUAL", "image": ProductImage, - "is_redeemable": false, + "is_redeemable": true, "is_returnable": "abc123", "lifetime": 123, - "manufacturer": 987, - "max_sale_qty": 987.65, + "manufacturer": 123, + "max_sale_qty": 123.45, "media_gallery": [MediaGalleryInterface], "message_max_length": 987, "meta_description": "xyz789", "meta_keyword": "abc123", "meta_title": "xyz789", "min_sale_qty": 123.45, - "name": "abc123", - "new_from_date": "xyz789", + "name": "xyz789", + "new_from_date": "abc123", "new_to_date": "xyz789", - "only_x_left_in_stock": 123.45, + "only_x_left_in_stock": 987.65, "open_amount_max": 123.45, "open_amount_min": 987.65, "options": [CustomizableOptionInterface], - "options_container": "abc123", + "options_container": "xyz789", "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], - "quantity": 987.65, + "quantity": 123.45, "related_products": [ProductInterface], "short_description": ComplexTextValue, "sku": "abc123", "small_image": ProductImage, - "special_price": 123.45, + "special_price": 987.65, "special_to_date": "xyz789", "stock_status": "IN_STOCK", "swatch_image": "abc123", "thumbnail": ProductImage, - "uid": "4", + "uid": 4, "upsell_products": [ProductInterface], - "url_key": "xyz789", + "url_key": "abc123", "weight": 987.65 }
    @@ -50458,8 +50459,8 @@
    Example
    "gift_card_options": GiftCardOptions, "product": ProductInterface, "quantity": 987.65, - "sku": "abc123", - "uid": "4" + "sku": "xyz789", + "uid": 4 }
    @@ -50530,10 +50531,10 @@
    Example
    "gift_card": GiftCardItem, "id": 4, "order_item": OrderItemInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, "product_sku": "abc123", - "quantity_shipped": 123.45 + "quantity_shipped": 987.65 } @@ -50662,13 +50663,13 @@
    Fields
    Example
    {
    -  "added_at": "abc123",
    +  "added_at": "xyz789",
       "customizable_options": [SelectedCustomizableOption],
       "description": "xyz789",
       "gift_card_options": GiftCardOptions,
    -  "id": "4",
    +  "id": 4,
       "product": ProductInterface,
    -  "quantity": 987.65
    +  "quantity": 123.45
     }
     
    @@ -50720,9 +50721,9 @@
    Fields
    Example
    {
    -  "from": "abc123",
    -  "message": "xyz789",
    -  "to": "abc123"
    +  "from": "xyz789",
    +  "message": "abc123",
    +  "to": "xyz789"
     }
     
    @@ -50777,9 +50778,9 @@
    Fields
    Example
    {
    -  "from": "xyz789",
    -  "message": "xyz789",
    -  "to": "abc123"
    +  "from": "abc123",
    +  "message": "abc123",
    +  "to": "xyz789"
     }
     
    @@ -50948,18 +50949,18 @@
    Fields
    Example
    {
    -  "created_at": "xyz789",
    +  "created_at": "abc123",
       "dynamic_attributes": [GiftRegistryDynamicAttribute],
       "event_name": "abc123",
       "items": [GiftRegistryItemInterface],
    -  "message": "abc123",
    +  "message": "xyz789",
       "owner_name": "abc123",
       "privacy_settings": "PRIVATE",
       "registrants": [GiftRegistryRegistrant],
       "shipping_address": CustomerAddress,
       "status": "ACTIVE",
       "type": GiftRegistryType,
    -  "uid": "4"
    +  "uid": 4
     }
     
    @@ -51012,10 +51013,10 @@
    Fields
    Example
    {
    -  "code": "4",
    +  "code": 4,
       "group": "EVENT_INFORMATION",
       "label": "xyz789",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -51142,7 +51143,7 @@
    Fields
    Example
    {
       "code": "4",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -51214,7 +51215,7 @@
    Example
    {
       "code": "4",
       "label": "abc123",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -51277,10 +51278,10 @@
    Fields
    Example
    {
    -  "attribute_group": "abc123",
    +  "attribute_group": "xyz789",
       "code": 4,
       "input_type": "abc123",
    -  "is_required": true,
    +  "is_required": false,
       "label": "abc123",
       "sort_order": 987
     }
    @@ -51367,7 +51368,7 @@ 
    Example
    "input_type": "abc123", "is_required": false, "label": "abc123", - "sort_order": 987 + "sort_order": 123 }
    @@ -51431,12 +51432,12 @@
    Fields
    Example
    {
    -  "created_at": "abc123",
    -  "note": "abc123",
    +  "created_at": "xyz789",
    +  "note": "xyz789",
       "product": ProductInterface,
    -  "quantity": 123.45,
    -  "quantity_fulfilled": 123.45,
    -  "uid": "4"
    +  "quantity": 987.65,
    +  "quantity_fulfilled": 987.65,
    +  "uid": 4
     }
     
    @@ -51518,7 +51519,7 @@
    Possible Types
    Example
    {
       "created_at": "xyz789",
    -  "note": "abc123",
    +  "note": "xyz789",
       "product": ProductInterface,
       "quantity": 987.65,
       "quantity_fulfilled": 123.45,
    @@ -51879,8 +51880,8 @@ 
    Example
    ], "email": "abc123", "firstname": "abc123", - "lastname": "xyz789", - "uid": "4" + "lastname": "abc123", + "uid": 4 }
    @@ -51928,9 +51929,9 @@
    Fields
    Example
    {
    -  "code": 4,
    +  "code": "4",
       "label": "xyz789",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -51998,10 +51999,10 @@
    Fields
    Example
    {
       "event_date": "abc123",
    -  "event_title": "xyz789",
    +  "event_title": "abc123",
       "gift_registry_uid": 4,
       "location": "abc123",
    -  "name": "xyz789",
    +  "name": "abc123",
       "type": "xyz789"
     }
     
    @@ -52059,7 +52060,7 @@
    Example
    {
       "address_data": CustomerAddressInput,
       "address_id": 4,
    -  "customer_address_uid": 4
    +  "customer_address_uid": "4"
     }
     
    @@ -52163,8 +52164,8 @@
    Example
    "dynamic_attributes_metadata": [ GiftRegistryDynamicAttributeMetadataInterface ], - "label": "abc123", - "uid": "4" + "label": "xyz789", + "uid": 4 } @@ -52221,7 +52222,7 @@
    Fields
    Example
    {
    -  "design": "abc123",
    +  "design": "xyz789",
       "image": GiftWrappingImage,
       "price": Money,
       "uid": "4"
    @@ -52271,8 +52272,8 @@ 
    Fields
    Example
    {
    -  "label": "abc123",
    -  "url": "xyz789"
    +  "label": "xyz789",
    +  "url": "abc123"
     }
     
    @@ -52320,9 +52321,9 @@
    Fields
    Example
    {
    -  "color": "xyz789",
    -  "height": 123,
    -  "type": "abc123"
    +  "color": "abc123",
    +  "height": 987,
    +  "type": "xyz789"
     }
     
    @@ -52401,14 +52402,14 @@
    Fields
    Example
    {
       "button_styles": GooglePayButtonStyles,
    -  "code": "abc123",
    -  "is_visible": true,
    +  "code": "xyz789",
    +  "is_visible": false,
       "payment_intent": "abc123",
    -  "payment_source": "xyz789",
    +  "payment_source": "abc123",
       "sdk_params": [SDKParams],
       "sort_order": "xyz789",
       "three_ds_mode": "OFF",
    -  "title": "abc123"
    +  "title": "xyz789"
     }
     
    @@ -52464,8 +52465,8 @@
    Fields
    Example
    {
       "payment_source": "xyz789",
    -  "payments_order_id": "xyz789",
    -  "paypal_order_id": "abc123"
    +  "payments_order_id": "abc123",
    +  "paypal_order_id": "xyz789"
     }
     
    @@ -52722,15 +52723,15 @@
    Example
    {
       "canonical_url": "abc123",
       "categories": [CategoryInterface],
    -  "country_of_manufacture": "abc123",
    +  "country_of_manufacture": "xyz789",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    -  "gift_message_available": false,
    +  "gift_message_available": true,
       "gift_wrapping_available": true,
       "gift_wrapping_price": Money,
       "image": ProductImage,
    -  "is_returnable": "xyz789",
    +  "is_returnable": "abc123",
       "items": [GroupedProductItem],
       "manufacturer": 123,
       "max_sale_qty": 123.45,
    @@ -52738,8 +52739,8 @@ 
    Example
    "meta_description": "abc123", "meta_keyword": "xyz789", "meta_title": "abc123", - "min_sale_qty": 123.45, - "name": "xyz789", + "min_sale_qty": 987.65, + "name": "abc123", "new_from_date": "xyz789", "new_to_date": "abc123", "only_x_left_in_stock": 123.45, @@ -52750,7 +52751,7 @@
    Example
    "quantity": 987.65, "related_products": [ProductInterface], "short_description": ComplexTextValue, - "sku": "xyz789", + "sku": "abc123", "small_image": ProductImage, "special_price": 123.45, "special_to_date": "xyz789", @@ -52760,7 +52761,7 @@
    Example
    "uid": "4", "upsell_products": [ProductInterface], "url_key": "abc123", - "weight": 123.45 + "weight": 987.65 }
    @@ -52813,9 +52814,9 @@
    Fields
    Example
    {
    -  "position": 123,
    +  "position": 987,
       "product": ProductInterface,
    -  "qty": 123.45
    +  "qty": 987.65
     }
     
    @@ -52886,9 +52887,9 @@
    Example
    "added_at": "xyz789", "customizable_options": [SelectedCustomizableOption], "description": "xyz789", - "id": "4", + "id": 4, "product": ProductInterface, - "quantity": 987.65 + "quantity": 123.45 }
    @@ -52937,7 +52938,7 @@
    Fields
    Example
    {
    -  "reason": "abc123",
    +  "reason": "xyz789",
       "token": "xyz789"
     }
     
    @@ -52993,9 +52994,9 @@
    Fields
    Example
    {
    -  "email": "xyz789",
    +  "email": "abc123",
       "lastname": "xyz789",
    -  "number": "xyz789"
    +  "number": "abc123"
     }
     
    @@ -53047,8 +53048,8 @@
    Fields
    Example
    {
    -  "attribute": "xyz789",
    -  "matched_words": ["xyz789"],
    +  "attribute": "abc123",
    +  "matched_words": ["abc123"],
       "value": "xyz789"
     }
     
    @@ -53118,10 +53119,10 @@
    Example
    {
       "created_at": "xyz789",
       "creator_name": "abc123",
    -  "creator_type": "xyz789",
    -  "item_id": 987,
    -  "note": "abc123",
    -  "product_name": "xyz789"
    +  "creator_type": "abc123",
    +  "item_id": 123,
    +  "note": "xyz789",
    +  "product_name": "abc123"
     }
     
    @@ -53212,12 +53213,12 @@
    Example
    "cc_vault_code": "xyz789", "code": "abc123", "is_vault_enabled": true, - "is_visible": true, + "is_visible": false, "payment_intent": "xyz789", "payment_source": "abc123", - "requires_card_details": false, + "requires_card_details": true, "sdk_params": [SDKParams], - "sort_order": "xyz789", + "sort_order": "abc123", "three_ds_mode": "OFF", "title": "xyz789" } @@ -53311,14 +53312,14 @@
    Fields
    Example
    {
       "cardBin": "abc123",
    -  "cardExpiryMonth": "xyz789",
    +  "cardExpiryMonth": "abc123",
       "cardExpiryYear": "abc123",
    -  "cardLast4": "xyz789",
    +  "cardLast4": "abc123",
       "holderName": "abc123",
    -  "is_active_payment_token_enabler": true,
    -  "payment_source": "abc123",
    -  "payments_order_id": "abc123",
    -  "paypal_order_id": "xyz789"
    +  "is_active_payment_token_enabler": false,
    +  "payment_source": "xyz789",
    +  "payments_order_id": "xyz789",
    +  "paypal_order_id": "abc123"
     }
     
    @@ -53547,7 +53548,7 @@
    Example
    {
       "code": "PRODUCT_NOT_FOUND",
       "message": "abc123",
    -  "quantity": 123.45
    +  "quantity": 987.65
     }
     
    @@ -53680,7 +53681,7 @@
    Example
    "custom_attributes": [CustomAttribute], "id": 4, "items": [InvoiceItemInterface], - "number": "xyz789", + "number": "abc123", "total": InvoiceTotal } @@ -53731,7 +53732,7 @@
    Fields
    Example
    {
       "custom_attributes": [CustomAttributeInput],
    -  "invoice_id": "abc123"
    +  "invoice_id": "xyz789"
     }
     
    @@ -53806,7 +53807,7 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "id": 4,
    +  "id": "4",
       "order_item": OrderItemInterface,
       "product_name": "abc123",
       "product_sale_price": Money,
    @@ -53984,7 +53985,7 @@ 
    Example
    "product_name": "xyz789", "product_sale_price": Money, "product_sku": "xyz789", - "quantity_invoiced": 123.45 + "quantity_invoiced": 987.65 }
    @@ -54149,7 +54150,7 @@
    Fields
    Example
    -
    {"is_email_available": false}
    +                  
    {"is_email_available": true}
     
    @@ -54229,7 +54230,7 @@
    Fields
    Example
    -
    {"is_role_name_available": true}
    +                  
    {"is_role_name_available": false}
     
    @@ -54309,7 +54310,7 @@
    Fields
    Example
    -
    {"is_email_available": true}
    +                  
    {"is_email_available": false}
     
    @@ -54354,7 +54355,7 @@
    Fields
    Example
    -
    {"type": "UNKNOWN_ISOPERATOR_TYPE", "value": true}
    +                  
    {"type": "UNKNOWN_ISOPERATOR_TYPE", "value": false}
     
    @@ -54442,7 +54443,7 @@
    Fields
    Example
    -
    {"isSubscribed": false, "message": "abc123"}
    +                  
    {"isSubscribed": true, "message": "abc123"}
     
    @@ -54513,13 +54514,13 @@
    Fields
    Example
    {
    -  "created_at": "abc123",
    -  "creator_id": 987,
    +  "created_at": "xyz789",
    +  "creator_id": 123,
       "creator_name": "xyz789",
       "creator_type": 123,
    -  "negotiable_quote_item_uid": "4",
    -  "note": "xyz789",
    -  "note_uid": "4"
    +  "negotiable_quote_item_uid": 4,
    +  "note": "abc123",
    +  "note_uid": 4
     }
     
    @@ -54637,9 +54638,9 @@
    Example
    {
       "price": Money,
       "product_name": "abc123",
    -  "product_sku": "xyz789",
    +  "product_sku": "abc123",
       "quantity": 123.45,
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -54709,7 +54710,7 @@
    Fields
    Example
    {
       "name": "abc123",
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -54765,8 +54766,8 @@
    Fields
    Example
    {
       "note": "xyz789",
    -  "quote_item_uid": 4,
    -  "quote_uid": 4
    +  "quote_item_uid": "4",
    +  "quote_uid": "4"
     }
     
    @@ -54856,9 +54857,9 @@
    Possible Types
    Example
    {
       "disabled": true,
    -  "label": "xyz789",
    +  "label": "abc123",
       "position": 123,
    -  "url": "abc123"
    +  "url": "xyz789"
     }
     
    @@ -54960,7 +54961,7 @@
    Fields
    Example
    -
    {"type": "abc123"}
    +                  
    {"type": "xyz789"}
     
    @@ -55002,7 +55003,7 @@
    Fields
    Example
    {
    -  "layout": "abc123",
    +  "layout": "xyz789",
       "logo": MessageStyleLogo
     }
     
    @@ -55246,7 +55247,7 @@
    Fields
    Example
    {
    -  "quote_item_uid": "4",
    +  "quote_item_uid": 4,
       "quote_uid": "4",
       "requisition_list_uid": "4"
     }
    @@ -55501,22 +55502,22 @@ 
    Example
    "created_at": "xyz789", "custom_attributes": [CustomAttribute], "email": "abc123", - "expiration_date": "abc123", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], - "is_virtual": false, + "is_virtual": true, "items": [CartItemInterface], "name": "abc123", "order": CustomerOrder, "prices": CartPrices, - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [NegotiableQuoteShippingAddress], "status": "SUBMITTED", "template_id": "4", - "template_name": "xyz789", - "total_quantity": 123.45, + "template_name": "abc123", + "total_quantity": 987.65, "uid": 4, - "updated_at": "xyz789" + "updated_at": "abc123" }
    @@ -55563,7 +55564,7 @@
    Fields
    Example
    {
    -  "code": "abc123",
    +  "code": "xyz789",
       "label": "xyz789"
     }
     
    @@ -55704,21 +55705,21 @@
    Fields
    Example
    {
       "city": "xyz789",
    -  "company": "abc123",
    -  "country_code": "abc123",
    +  "company": "xyz789",
    +  "country_code": "xyz789",
       "custom_attributes": [AttributeValueInput],
       "fax": "xyz789",
       "firstname": "abc123",
       "lastname": "abc123",
       "middlename": "abc123",
    -  "postcode": "xyz789",
    -  "prefix": "xyz789",
    -  "region": "abc123",
    +  "postcode": "abc123",
    +  "prefix": "abc123",
    +  "region": "xyz789",
       "region_id": 123,
    -  "save_in_address_book": true,
    +  "save_in_address_book": false,
       "street": ["xyz789"],
       "suffix": "xyz789",
    -  "telephone": "xyz789",
    +  "telephone": "abc123",
       "vat_id": "xyz789"
     }
     
    @@ -55860,22 +55861,22 @@
    Possible Types
    Example
    {
       "city": "xyz789",
    -  "company": "abc123",
    +  "company": "xyz789",
       "country": NegotiableQuoteAddressCountry,
       "custom_attributes": [AttributeValueInterface],
       "customer_address_uid": 4,
       "fax": "xyz789",
    -  "firstname": "abc123",
    -  "lastname": "xyz789",
    +  "firstname": "xyz789",
    +  "lastname": "abc123",
       "middlename": "xyz789",
       "postcode": "abc123",
       "prefix": "xyz789",
       "region": NegotiableQuoteAddressRegion,
       "street": ["xyz789"],
       "suffix": "abc123",
    -  "telephone": "xyz789",
    +  "telephone": "abc123",
       "uid": "4",
    -  "vat_id": "xyz789"
    +  "vat_id": "abc123"
     }
     
    @@ -55927,9 +55928,9 @@
    Fields
    Example
    {
    -  "code": "abc123",
    +  "code": "xyz789",
       "label": "abc123",
    -  "region_id": 987
    +  "region_id": 123
     }
     
    @@ -56047,22 +56048,22 @@
    Fields
    Example
    {
    -  "city": "abc123",
    +  "city": "xyz789",
       "company": "xyz789",
       "country": NegotiableQuoteAddressCountry,
       "custom_attributes": [AttributeValueInterface],
    -  "customer_address_uid": "4",
    +  "customer_address_uid": 4,
       "fax": "abc123",
    -  "firstname": "xyz789",
    +  "firstname": "abc123",
       "lastname": "xyz789",
       "middlename": "xyz789",
    -  "postcode": "xyz789",
    -  "prefix": "abc123",
    +  "postcode": "abc123",
    +  "prefix": "xyz789",
       "region": NegotiableQuoteAddressRegion,
    -  "street": ["abc123"],
    -  "suffix": "abc123",
    +  "street": ["xyz789"],
    +  "suffix": "xyz789",
       "telephone": "abc123",
    -  "uid": 4,
    +  "uid": "4",
       "vat_id": "xyz789"
     }
     
    @@ -56126,7 +56127,7 @@
    Example
    {
       "address": NegotiableQuoteAddressInput,
       "customer_address_uid": "4",
    -  "same_as_shipping": false,
    +  "same_as_shipping": true,
       "use_for_shipping": true
     }
     
    @@ -56196,7 +56197,7 @@
    Example
    {
       "attachments": [NegotiableQuoteCommentAttachment],
       "author": NegotiableQuoteUser,
    -  "created_at": "abc123",
    +  "created_at": "xyz789",
       "creator_type": "BUYER",
       "text": "xyz789",
       "uid": "4"
    @@ -56246,8 +56247,8 @@ 
    Fields
    Example
    {
    -  "name": "abc123",
    -  "url": "abc123"
    +  "name": "xyz789",
    +  "url": "xyz789"
     }
     
    @@ -56289,7 +56290,7 @@
    Fields
    Example
    -
    {"key": "xyz789"}
    +                  
    {"key": "abc123"}
     
    @@ -56383,7 +56384,7 @@
    Fields
    Example
    {
       "attachments": [NegotiableQuoteCommentAttachmentInput],
    -  "comment": "xyz789"
    +  "comment": "abc123"
     }
     
    @@ -56436,8 +56437,8 @@
    Fields
    Example
    {
       "new_value": "xyz789",
    -  "old_value": "xyz789",
    -  "title": "abc123"
    +  "old_value": "abc123",
    +  "title": "xyz789"
     }
     
    @@ -56669,7 +56670,7 @@
    Example
    "author": NegotiableQuoteUser, "change_type": "CREATED", "changes": NegotiableQuoteHistoryChanges, - "created_at": "abc123", + "created_at": "xyz789", "item_note": HistoryItemNoteData, "uid": "4" } @@ -56777,8 +56778,8 @@
    Fields
    Example
    {
    -  "new_expiration": "xyz789",
    -  "old_expiration": "abc123"
    +  "new_expiration": "abc123",
    +  "old_expiration": "xyz789"
     }
     
    @@ -57048,7 +57049,7 @@
    Fields
    Example
    -
    {"quantity": 987.65, "quote_item_uid": 4}
    +                  
    {"quantity": 987.65, "quote_item_uid": "4"}
     
    @@ -57097,7 +57098,7 @@
    Fields
    Example
    {
       "code": "abc123",
    -  "purchase_order_number": "xyz789"
    +  "purchase_order_number": "abc123"
     }
     
    @@ -57155,8 +57156,8 @@
    Fields
    Example
    {
       "document_identifier": "xyz789",
    -  "document_name": "abc123",
    -  "link_id": "4",
    +  "document_name": "xyz789",
    +  "link_id": 4,
       "reference_document_url": "xyz789"
     }
     
    @@ -57291,19 +57292,19 @@
    Example
    "country": NegotiableQuoteAddressCountry, "custom_attributes": [AttributeValueInterface], "customer_address_uid": 4, - "fax": "abc123", + "fax": "xyz789", "firstname": "abc123", "lastname": "abc123", - "middlename": "abc123", - "postcode": "abc123", - "prefix": "abc123", + "middlename": "xyz789", + "postcode": "xyz789", + "prefix": "xyz789", "region": NegotiableQuoteAddressRegion, "selected_shipping_method": SelectedShippingMethod, "street": ["xyz789"], - "suffix": "xyz789", - "telephone": "xyz789", + "suffix": "abc123", + "telephone": "abc123", "uid": 4, - "vat_id": "xyz789" + "vat_id": "abc123" }
    @@ -57700,14 +57701,14 @@
    Example
    {
       "buyer": NegotiableQuoteUser,
       "comments": [NegotiableQuoteComment],
    -  "created_at": "abc123",
    +  "created_at": "xyz789",
       "expiration_date": "xyz789",
       "history": [NegotiableQuoteHistoryEntry],
       "historyV2": [NegotiableQuoteTemplateHistoryEntry],
    -  "is_min_max_qty_used": false,
    -  "is_virtual": true,
    +  "is_min_max_qty_used": true,
    +  "is_virtual": false,
       "items": [CartItemInterface],
    -  "max_order_commitment": 123,
    +  "max_order_commitment": 987,
       "min_order_commitment": 123,
       "name": "xyz789",
       "notifications": [QuoteTemplateNotificationMessage],
    @@ -57715,13 +57716,13 @@ 
    Example
    "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "abc123", + "sales_rep_name": "xyz789", "shipping_addresses": [NegotiableQuoteShippingAddress], "status": "xyz789", "template_id": "4", "total_quantity": 987.65, - "uid": "4", - "updated_at": "xyz789" + "uid": 4, + "updated_at": "abc123" }
    @@ -57909,22 +57910,22 @@
    Fields
    Example
    {
       "activated_at": "abc123",
    -  "company_name": "abc123",
    -  "created_at": "abc123",
    -  "expiration_date": "abc123",
    -  "is_min_max_qty_used": true,
    +  "company_name": "xyz789",
    +  "created_at": "xyz789",
    +  "expiration_date": "xyz789",
    +  "is_min_max_qty_used": false,
       "last_ordered_at": "xyz789",
    -  "last_shared_at": "abc123",
    -  "max_order_commitment": 987,
    +  "last_shared_at": "xyz789",
    +  "max_order_commitment": 123,
       "min_negotiated_grand_total": 123.45,
       "min_order_commitment": 987,
    -  "name": "abc123",
    +  "name": "xyz789",
       "orders_placed": 987,
       "prices": CartPrices,
       "sales_rep_name": "xyz789",
    -  "state": "abc123",
    +  "state": "xyz789",
       "status": "abc123",
    -  "submitted_by": "xyz789",
    +  "submitted_by": "abc123",
       "template_id": "4",
       "uid": "4",
       "updated_at": "abc123"
    @@ -58064,7 +58065,7 @@ 
    Example
    "author": NegotiableQuoteUser, "change_type": "CREATED", "changes": NegotiableQuoteTemplateHistoryChanges, - "created_at": "abc123", + "created_at": "xyz789", "uid": 4 }
    @@ -58112,7 +58113,7 @@
    Fields
    Example
    {
    -  "new_status": "abc123",
    +  "new_status": "xyz789",
       "old_status": "abc123"
     }
     
    @@ -58213,7 +58214,7 @@
    Fields
    Example
    -
    {"item_id": 4, "max_qty": 987.65, "min_qty": 987.65, "quantity": 987.65}
    +                  
    {"item_id": 4, "max_qty": 123.45, "min_qty": 123.45, "quantity": 123.45}
     
    @@ -58273,10 +58274,10 @@
    Fields
    Example
    {
    -  "document_identifier": "abc123",
    -  "document_name": "xyz789",
    +  "document_identifier": "xyz789",
    +  "document_name": "abc123",
       "link_id": "4",
    -  "reference_document_url": "xyz789"
    +  "reference_document_url": "abc123"
     }
     
    @@ -58577,7 +58578,7 @@
    Fields
    Example
    -
    {"quote_uid": 4}
    +                  
    {"quote_uid": "4"}
     
    @@ -58623,7 +58624,7 @@
    Fields
    Example
    {
    -  "firstname": "abc123",
    +  "firstname": "xyz789",
       "lastname": "abc123"
     }
     
    @@ -58684,7 +58685,7 @@
    Example
    "items": [NegotiableQuote], "page_info": SearchResultPageInfo, "sort_fields": SortFields, - "total_count": 987 + "total_count": 123 }
    @@ -58862,7 +58863,7 @@
    Fields
    Example
    {
    -  "backend_integration_url": "xyz789",
    +  "backend_integration_url": "abc123",
       "custom_config": [CustomConfigKeyValue]
     }
     
    @@ -58905,7 +58906,7 @@
    Fields
    Example
    -
    {"template_id": 4}
    +                  
    {"template_id": "4"}
     
    @@ -59202,22 +59203,22 @@
    attributeCodes
    Example
    {
    -  "city": "abc123",
    +  "city": "xyz789",
       "company": "abc123",
       "country_code": "AF",
       "custom_attributesV2": [AttributeValueInterface],
       "fax": "xyz789",
       "firstname": "xyz789",
    -  "lastname": "xyz789",
    -  "middlename": "abc123",
    +  "lastname": "abc123",
    +  "middlename": "xyz789",
       "postcode": "abc123",
       "prefix": "abc123",
       "region": "xyz789",
    -  "region_id": "4",
    -  "street": ["abc123"],
    -  "suffix": "xyz789",
    -  "telephone": "abc123",
    -  "vat_id": "xyz789"
    +  "region_id": 4,
    +  "street": ["xyz789"],
    +  "suffix": "abc123",
    +  "telephone": "xyz789",
    +  "vat_id": "abc123"
     }
     
    @@ -59275,11 +59276,11 @@
    Fields
    Example
    {
    -  "firstname": "xyz789",
    -  "lastname": "abc123",
    +  "firstname": "abc123",
    +  "lastname": "xyz789",
       "middlename": "abc123",
       "prefix": "abc123",
    -  "suffix": "xyz789"
    +  "suffix": "abc123"
     }
     
    @@ -59430,27 +59431,27 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "eligible_for_return": false,
    +  "eligible_for_return": true,
       "entered_options": [OrderItemOption],
       "gift_message": GiftMessage,
       "gift_wrapping": GiftWrapping,
    -  "id": 4,
    +  "id": "4",
       "prices": OrderItemPrices,
       "product": ProductInterface,
    -  "product_name": "xyz789",
    +  "product_name": "abc123",
       "product_sale_price": Money,
    -  "product_sku": "xyz789",
    +  "product_sku": "abc123",
       "product_type": "abc123",
    -  "product_url_key": "abc123",
    +  "product_url_key": "xyz789",
       "quantity_canceled": 987.65,
    -  "quantity_invoiced": 123.45,
    +  "quantity_invoiced": 987.65,
       "quantity_ordered": 987.65,
       "quantity_refunded": 123.45,
       "quantity_return_requested": 987.65,
       "quantity_returned": 987.65,
    -  "quantity_shipped": 987.65,
    +  "quantity_shipped": 123.45,
       "selected_options": [OrderItemOption],
    -  "status": "abc123"
    +  "status": "xyz789"
     }
     
    @@ -59642,25 +59643,25 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "eligible_for_return": false,
    +  "eligible_for_return": true,
       "entered_options": [OrderItemOption],
       "gift_message": GiftMessage,
       "gift_wrapping": GiftWrapping,
    -  "id": 4,
    +  "id": "4",
       "prices": OrderItemPrices,
       "product": ProductInterface,
       "product_name": "xyz789",
       "product_sale_price": Money,
    -  "product_sku": "abc123",
    +  "product_sku": "xyz789",
       "product_type": "xyz789",
    -  "product_url_key": "xyz789",
    -  "quantity_canceled": 123.45,
    +  "product_url_key": "abc123",
    +  "quantity_canceled": 987.65,
       "quantity_invoiced": 123.45,
    -  "quantity_ordered": 123.45,
    +  "quantity_ordered": 987.65,
       "quantity_refunded": 123.45,
    -  "quantity_return_requested": 123.45,
    -  "quantity_returned": 123.45,
    -  "quantity_shipped": 123.45,
    +  "quantity_return_requested": 987.65,
    +  "quantity_returned": 987.65,
    +  "quantity_shipped": 987.65,
       "selected_options": [OrderItemOption],
       "status": "xyz789"
     }
    @@ -59709,7 +59710,7 @@ 
    Fields
    Example
    {
    -  "label": "abc123",
    +  "label": "xyz789",
       "value": "abc123"
     }
     
    @@ -59926,9 +59927,9 @@
    Fields
    Example
    {
       "comments": [SalesCommentItem],
    -  "id": "4",
    +  "id": 4,
       "items": [ShipmentItemInterface],
    -  "number": "abc123",
    +  "number": "xyz789",
       "tracking": [ShipmentTracking]
     }
     
    @@ -60142,7 +60143,7 @@
    Fields
    Example
    -
    {"currentPage": 123, "pageSize": 987, "totalPages": 987}
    +                  
    {"currentPage": 123, "pageSize": 987, "totalPages": 123}
     
    @@ -60268,8 +60269,8 @@
    Fields
    Example
    {
    -  "key": "abc123",
    -  "value": "abc123"
    +  "key": "xyz789",
    +  "value": "xyz789"
     }
     
    @@ -60716,7 +60717,7 @@
    Fields
    Example
    {
    -  "code": "abc123",
    +  "code": "xyz789",
       "params": [SDKParams]
     }
     
    @@ -60893,7 +60894,7 @@
    Example
    {
       "details": "xyz789",
       "payment_method_code": "xyz789",
    -  "public_hash": "abc123",
    +  "public_hash": "xyz789",
       "type": "card"
     }
     
    @@ -61019,7 +61020,7 @@
    Possible Types
    Example
    -
    {"weight": 987.65}
    +                  
    {"weight": 123.45}
     
    @@ -61148,18 +61149,18 @@
    Example
    "city": "abc123", "contact_name": "xyz789", "country_id": "xyz789", - "description": "abc123", - "email": "abc123", - "fax": "abc123", + "description": "xyz789", + "email": "xyz789", + "fax": "xyz789", "latitude": 123.45, "longitude": 123.45, "name": "xyz789", - "phone": "abc123", - "pickup_location_code": "abc123", - "postcode": "abc123", + "phone": "xyz789", + "pickup_location_code": "xyz789", + "postcode": "xyz789", "region": "abc123", "region_id": 987, - "street": "xyz789" + "street": "abc123" }
    @@ -61453,7 +61454,7 @@
    Example
    {
       "items": [PickupLocation],
       "page_info": SearchResultPageInfo,
    -  "total_count": 123
    +  "total_count": 987
     }
     
    @@ -61630,7 +61631,7 @@
    Fields
    Example
    {
       "code": "CART_NOT_FOUND",
    -  "message": "xyz789"
    +  "message": "abc123"
     }
     
    @@ -61738,7 +61739,7 @@
    Fields
    Example
    -
    {"purchase_order_uid": 4}
    +                  
    {"purchase_order_uid": "4"}
     
    @@ -61819,7 +61820,7 @@
    Fields
    Example
    -
    {"cart_id": "abc123"}
    +                  
    {"cart_id": "xyz789"}
     
    @@ -61908,7 +61909,7 @@
    Fields
    Example
    -
    {"cart_id": "xyz789"}
    +                  
    {"cart_id": "abc123"}
     
    @@ -62094,7 +62095,7 @@
    Example
    {
       "discount_percentage": 123.45,
       "main_final_price": 123.45,
    -  "main_price": 987.65
    +  "main_price": 123.45
     }
     
    @@ -62324,7 +62325,7 @@
    Fields
    Example
    -
    {"sku": "xyz789"}
    +                  
    {"sku": "abc123"}
     
    @@ -62367,7 +62368,7 @@
    Fields
    Example
    -
    {"message": "xyz789", "success": true}
    +                  
    {"message": "abc123", "success": true}
     
    @@ -62468,9 +62469,9 @@
    Fields
    Example
    {
       "attribute_type": "abc123",
    -  "code": "4",
    -  "url": "abc123",
    -  "value": "abc123"
    +  "code": 4,
    +  "url": "xyz789",
    +  "value": "xyz789"
     }
     
    @@ -62564,7 +62565,7 @@
    Fields
    Example
    -
    {"amount_off": 123.45, "percent_off": 123.45}
    +                  
    {"amount_off": 123.45, "percent_off": 987.65}
     
    @@ -62620,10 +62621,10 @@
    Fields
    Example
    {
    -  "disabled": true,
    +  "disabled": false,
       "label": "xyz789",
       "position": 987,
    -  "url": "abc123"
    +  "url": "xyz789"
     }
     
    @@ -62999,43 +63000,43 @@
    Possible Types
    Example
    {
    -  "canonical_url": "abc123",
    +  "canonical_url": "xyz789",
       "categories": [CategoryInterface],
    -  "country_of_manufacture": "abc123",
    +  "country_of_manufacture": "xyz789",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
       "gift_message_available": false,
    -  "gift_wrapping_available": false,
    +  "gift_wrapping_available": true,
       "gift_wrapping_price": Money,
       "image": ProductImage,
       "is_returnable": "xyz789",
       "manufacturer": 123,
    -  "max_sale_qty": 123.45,
    +  "max_sale_qty": 987.65,
       "media_gallery": [MediaGalleryInterface],
       "meta_description": "abc123",
    -  "meta_keyword": "abc123",
    +  "meta_keyword": "xyz789",
       "meta_title": "xyz789",
       "min_sale_qty": 123.45,
    -  "name": "xyz789",
    -  "new_from_date": "xyz789",
    -  "new_to_date": "xyz789",
    +  "name": "abc123",
    +  "new_from_date": "abc123",
    +  "new_to_date": "abc123",
       "only_x_left_in_stock": 987.65,
       "options_container": "xyz789",
       "price_range": PriceRange,
       "price_tiers": [TierPrice],
       "product_links": [ProductLinksInterface],
    -  "quantity": 987.65,
    +  "quantity": 123.45,
       "related_products": [ProductInterface],
       "short_description": ComplexTextValue,
       "sku": "xyz789",
       "small_image": ProductImage,
       "special_price": 987.65,
    -  "special_to_date": "xyz789",
    +  "special_to_date": "abc123",
       "stock_status": "IN_STOCK",
    -  "swatch_image": "xyz789",
    +  "swatch_image": "abc123",
       "thumbnail": ProductImage,
    -  "uid": "4",
    +  "uid": 4,
       "upsell_products": [ProductInterface],
       "url_key": "abc123"
     }
    @@ -63102,8 +63103,8 @@ 
    Example
    "link_type": "abc123", "linked_product_sku": "xyz789", "linked_product_type": "xyz789", - "position": 123, - "sku": "xyz789" + "position": 987, + "sku": "abc123" }
    @@ -63183,9 +63184,9 @@
    Possible Types
    Example
    {
       "link_type": "xyz789",
    -  "linked_product_sku": "xyz789",
    +  "linked_product_sku": "abc123",
       "linked_product_type": "abc123",
    -  "position": 987,
    +  "position": 123,
       "sku": "xyz789"
     }
     
    @@ -63238,7 +63239,7 @@
    Fields
    Example
    {
    -  "asset_id": "xyz789",
    +  "asset_id": "abc123",
       "media_type": "xyz789",
       "media_url": "xyz789"
     }
    @@ -63294,7 +63295,7 @@ 
    Example
    {
       "media_type": "abc123",
       "video_asset_id": "abc123",
    -  "video_media_url": "abc123"
    +  "video_media_url": "xyz789"
     }
     
    @@ -63361,11 +63362,11 @@
    Fields
    Example
    {
    -  "media_type": "abc123",
    +  "media_type": "xyz789",
       "video_description": "abc123",
    -  "video_metadata": "abc123",
    -  "video_provider": "xyz789",
    -  "video_title": "abc123",
    +  "video_metadata": "xyz789",
    +  "video_provider": "abc123",
    +  "video_title": "xyz789",
       "video_url": "abc123"
     }
     
    @@ -63556,7 +63557,7 @@
    Example
    "items": [ProductSearchItem], "page_info": SearchResultPageInfo, "related_terms": ["abc123"], - "suggestions": ["abc123"], + "suggestions": ["xyz789"], "total_count": 987, "warnings": [ProductSearchWarning] } @@ -63606,7 +63607,7 @@
    Fields
    Example
    -
    {"attribute": "abc123", "direction": "ASC"}
    +                  
    {"attribute": "xyz789", "direction": "ASC"}
     
    @@ -63764,8 +63765,8 @@
    Fields
    Example
    {
    -  "disabled": true,
    -  "label": "abc123",
    +  "disabled": false,
    +  "label": "xyz789",
       "position": 987,
       "url": "abc123",
       "video_content": ProductMediaGalleryEntriesVideoContent
    @@ -64010,25 +64011,25 @@ 
    Example
    "inStock": true, "lowStock": true, "attributes": [ProductViewAttribute], - "description": "abc123", - "id": 4, + "description": "xyz789", + "id": "4", "images": [ProductViewImage], "videos": [ProductViewVideo], "lastModifiedAt": "2007-12-03T10:15:30Z", - "metaDescription": "xyz789", + "metaDescription": "abc123", "metaKeyword": "xyz789", "metaTitle": "xyz789", - "name": "abc123", + "name": "xyz789", "shortDescription": "abc123", "inputOptions": [ProductViewInputOption], "sku": "abc123", "externalId": "abc123", "url": "xyz789", - "urlKey": "abc123", + "urlKey": "xyz789", "links": [ProductViewLink], "categories": [CategoryProductView], - "queryType": "xyz789", - "visibility": "xyz789" + "queryType": "abc123", + "visibility": "abc123" }
    @@ -64087,7 +64088,7 @@
    Example
    {
       "label": "abc123",
       "name": "xyz789",
    -  "roles": ["abc123"],
    +  "roles": ["xyz789"],
       "value": {}
     }
     
    @@ -65366,8 +65367,8 @@
    Fields
    Example
    {
       "label": "abc123",
    -  "roles": ["xyz789"],
    -  "url": "xyz789"
    +  "roles": ["abc123"],
    +  "url": "abc123"
     }
     
    @@ -65455,15 +65456,15 @@
    Fields
    Example
    {
       "id": "4",
    -  "title": "xyz789",
    +  "title": "abc123",
       "required": true,
    -  "type": "xyz789",
    -  "markupAmount": 987.65,
    -  "suffix": "xyz789",
    +  "type": "abc123",
    +  "markupAmount": 123.45,
    +  "suffix": "abc123",
       "sortOrder": 987,
       "range": ProductViewInputOptionRange,
       "imageSize": ProductViewInputOptionImageSize,
    -  "fileExtensions": "abc123"
    +  "fileExtensions": "xyz789"
     }
     
    @@ -65554,7 +65555,7 @@
    Fields
    Example
    -
    {"from": 987.65, "to": 123.45}
    +                  
    {"from": 123.45, "to": 123.45}
     
    @@ -65647,7 +65648,7 @@
    Fields
    Example
    -
    {"currency": "AED", "value": 123.45}
    +                  
    {"currency": "AED", "value": 987.65}
     
    @@ -65708,10 +65709,10 @@
    Fields
    Example
    {
    -  "id": 4,
    +  "id": "4",
       "multi": true,
       "required": true,
    -  "title": "xyz789",
    +  "title": "abc123",
       "values": [ProductViewOptionValue]
     }
     
    @@ -65792,7 +65793,7 @@
    Possible Types
    Example
    {
       "id": "4",
    -  "title": "xyz789",
    +  "title": "abc123",
       "inStock": false
     }
     
    @@ -65846,8 +65847,8 @@
    Fields
    Example
    {
       "id": "4",
    -  "title": "abc123",
    -  "inStock": false
    +  "title": "xyz789",
    +  "inStock": true
     }
     
    @@ -65917,8 +65918,8 @@
    Example
    "id": "4", "isDefault": false, "product": SimpleProductView, - "quantity": 987.65, - "title": "xyz789", + "quantity": 123.45, + "title": "abc123", "inStock": false }
    @@ -65982,7 +65983,7 @@
    Fields
    Example
    {
       "id": "4",
    -  "title": "abc123",
    +  "title": "xyz789",
       "type": "TEXT",
       "value": "abc123",
       "inStock": true
    @@ -66045,7 +66046,7 @@ 
    Example
    "final": Price, "regular": Price, "tiers": [ProductViewTierPrice], - "roles": ["xyz789"] + "roles": ["abc123"] }
    @@ -66267,7 +66268,7 @@
    Fields
    Example
    -
    {"gte": 987.65, "lt": 123.45}
    +                  
    {"gte": 123.45, "lt": 123.45}
     
    @@ -66313,7 +66314,7 @@
    Fields
    Example
    {
    -  "selections": ["abc123"],
    +  "selections": ["xyz789"],
       "product": ProductView
     }
     
    @@ -66421,7 +66422,7 @@
    Example
    {
       "preview": ProductViewImage,
       "url": "xyz789",
    -  "description": "abc123",
    +  "description": "xyz789",
       "title": "abc123"
     }
     
    @@ -66474,7 +66475,7 @@
    Fields
    Example
    {
       "date": "2007-12-03T10:15:30Z",
    -  "items": ["xyz789"]
    +  "items": ["abc123"]
     }
     
    @@ -66581,7 +66582,7 @@
    Example
    "order": CustomerOrder, "quote": Cart, "status": "PENDING", - "uid": 4, + "uid": "4", "updated_at": "abc123" }
    @@ -66694,7 +66695,7 @@
    Fields
    Example
    -
    {"message": "abc123", "type": "NOT_FOUND"}
    +                  
    {"message": "xyz789", "type": "NOT_FOUND"}
     
    @@ -66755,7 +66756,7 @@
    Fields
    Example
    {
    -  "message": "abc123",
    +  "message": "xyz789",
       "name": "xyz789",
       "role": "abc123",
       "status": "PENDING",
    @@ -66902,12 +66903,12 @@ 
    Example
    "approver_roles": [CompanyRole], "condition": PurchaseOrderApprovalRuleConditionInterface, "created_at": "abc123", - "created_by": "xyz789", - "description": "xyz789", + "created_by": "abc123", + "description": "abc123", "name": "xyz789", "status": "ENABLED", - "uid": "4", - "updated_at": "xyz789" + "uid": 4, + "updated_at": "abc123" }
    @@ -67138,7 +67139,7 @@
    Fields
    Example
    -
    {"attribute": "GRAND_TOTAL", "operator": "MORE_THAN", "quantity": 123}
    +                  
    {"attribute": "GRAND_TOTAL", "operator": "MORE_THAN", "quantity": 987}
     
    @@ -67210,10 +67211,10 @@
    Fields
    Example
    {
    -  "applies_to": ["4"],
    -  "approvers": ["4"],
    +  "applies_to": [4],
    +  "approvers": [4],
       "condition": CreatePurchaseOrderApprovalRuleConditionInput,
    -  "description": "xyz789",
    +  "description": "abc123",
       "name": "xyz789",
       "status": "ENABLED"
     }
    @@ -67478,9 +67479,9 @@ 
    Fields
    Example
    {
       "author": Customer,
    -  "created_at": "abc123",
    -  "text": "xyz789",
    -  "uid": 4
    +  "created_at": "xyz789",
    +  "text": "abc123",
    +  "uid": "4"
     }
     
    @@ -67604,7 +67605,7 @@
    Fields
    Example
    {
       "activity": "abc123",
    -  "created_at": "xyz789",
    +  "created_at": "abc123",
       "message": "xyz789",
       "uid": 4
     }
    @@ -67654,7 +67655,7 @@ 
    Fields
    Example
    {
       "events": [PurchaseOrderApprovalFlowEvent],
    -  "rule_name": "xyz789"
    +  "rule_name": "abc123"
     }
     
    @@ -67802,7 +67803,7 @@
    Example
    {
       "items": [PurchaseOrder],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -67960,7 +67961,7 @@
    Example
    {
       "company_purchase_orders": true,
       "created_date": FilterRangeTypeInput,
    -  "my_approvals": false,
    +  "my_approvals": true,
       "require_my_approval": true,
       "status": "PENDING"
     }
    @@ -68007,7 +68008,7 @@ 
    Fields
    Example
    {
    -  "customerGroup": "xyz789",
    +  "customerGroup": "abc123",
       "userViewHistory": [ViewHistoryInput]
     }
     
    @@ -68166,8 +68167,8 @@
    Fields
    Example
    {
    -  "item_id": 4,
    -  "item_uid": "4",
    +  "item_id": "4",
    +  "item_uid": 4,
       "note": "xyz789",
       "templateId": "4"
     }
    @@ -68217,7 +68218,7 @@ 
    Fields
    Example
    {
       "message": "abc123",
    -  "type": "abc123"
    +  "type": "xyz789"
     }
     
    @@ -68275,9 +68276,9 @@
    Fields
    Example
    {
       "count": 987,
    -  "from": 987.65,
    -  "title": "abc123",
    -  "to": 123.45
    +  "from": 123.45,
    +  "title": "xyz789",
    +  "to": 987.65
     }
     
    @@ -68427,7 +68428,7 @@
    Fields
    Example
    -
    {"from": 987.65, "to": 123.45}
    +                  
    {"from": 987.65, "to": 987.65}
     
    @@ -68470,7 +68471,7 @@
    Fields
    Example
    {
       "configurations": ReCaptchaConfiguration,
    -  "is_enabled": true
    +  "is_enabled": false
     }
     
    @@ -68554,8 +68555,8 @@
    Example
    "re_captcha_type": "INVISIBLE", "technical_failure_message": "abc123", "theme": "xyz789", - "validation_failure_message": "xyz789", - "website_key": "xyz789" + "validation_failure_message": "abc123", + "website_key": "abc123" }
    @@ -68633,13 +68634,13 @@
    Fields
    Example
    {
       "badge_position": "abc123",
    -  "failure_message": "abc123",
    +  "failure_message": "xyz789",
       "forms": ["PLACE_ORDER"],
    -  "is_enabled": false,
    -  "language_code": "xyz789",
    +  "is_enabled": true,
    +  "language_code": "abc123",
       "minimum_score": 987.65,
    -  "theme": "xyz789",
    -  "website_key": "abc123"
    +  "theme": "abc123",
    +  "website_key": "xyz789"
     }
     
    @@ -68693,7 +68694,7 @@
    Example
    {
       "configurations": ReCaptchaConfiguration,
       "form_type": "PLACE_ORDER",
    -  "is_enabled": false
    +  "is_enabled": true
     }
     
    @@ -68945,12 +68946,12 @@
    Example
    "displayOrder": 123, "pageType": "xyz789", "productsView": [ProductView], - "storefrontLabel": "xyz789", - "totalProducts": 123, + "storefrontLabel": "abc123", + "totalProducts": 987, "typeId": "abc123", - "unitId": "abc123", - "unitName": "xyz789", - "userError": "abc123" + "unitId": "xyz789", + "unitName": "abc123", + "userError": "xyz789" }
    @@ -69043,9 +69044,9 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    +  "code": "abc123",
       "id": 123,
    -  "name": "xyz789"
    +  "name": "abc123"
     }
     
    @@ -69225,8 +69226,8 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    -  "gift_card_code": "abc123"
    +  "cart_id": "abc123",
    +  "gift_card_code": "xyz789"
     }
     
    @@ -69347,7 +69348,7 @@
    Fields
    Example
    -
    {"success": true}
    +                  
    {"success": false}
     
    @@ -69435,7 +69436,7 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    +  "cart_id": "abc123",
       "cart_item_uid": "4"
     }
     
    @@ -69524,7 +69525,7 @@
    Fields
    Example
    -
    {"quote_item_uids": [4], "quote_uid": "4"}
    +                  
    {"quote_item_uids": ["4"], "quote_uid": 4}
     
    @@ -69611,7 +69612,7 @@
    Fields
    Example
    -
    {"item_uids": [4], "template_id": "4"}
    +                  
    {"item_uids": [4], "template_id": 4}
     
    @@ -69658,10 +69659,7 @@
    Fields
    Example
    -
    {
    -  "products": ["4"],
    -  "uid": "4"
    -}
    +                  
    {"products": [4], "uid": "4"}
     
    @@ -69750,7 +69748,7 @@
    Fields
    Example
    -
    {"return_shipping_tracking_uid": "4"}
    +                  
    {"return_shipping_tracking_uid": 4}
     
    @@ -69965,9 +69963,9 @@
    Fields
    Example
    {
    -  "quote_comment": "abc123",
    -  "quote_name": "abc123",
    -  "quote_uid": 4
    +  "quote_comment": "xyz789",
    +  "quote_name": "xyz789",
    +  "quote_uid": "4"
     }
     
    @@ -70117,7 +70115,7 @@
    Fields
    Example
    {
       "comment_text": "abc123",
    -  "contact_email": "abc123",
    +  "contact_email": "xyz789",
       "items": [RequestReturnItemInput],
       "token": "abc123"
     }
    @@ -70183,7 +70181,7 @@ 
    Example
    "cart_id": "4", "comment": NegotiableQuoteCommentInput, "is_draft": false, - "quote_name": "abc123" + "quote_name": "xyz789" }
    @@ -70325,8 +70323,8 @@
    Fields
    Example
    {
    -  "comment_text": "xyz789",
    -  "contact_email": "xyz789",
    +  "comment_text": "abc123",
    +  "contact_email": "abc123",
       "items": [RequestReturnItemInput],
       "order_uid": 4
     }
    @@ -70552,8 +70550,8 @@ 
    Example
    "description": "xyz789", "items": RequistionListItems, "items_count": 987, - "name": "xyz789", - "uid": "4", + "name": "abc123", + "uid": 4, "updated_at": "xyz789" }
    @@ -70713,7 +70711,7 @@
    Example
    "product": ProductInterface, "quantity": 123.45, "sku": "abc123", - "uid": "4" + "uid": 4 }
    @@ -70782,9 +70780,9 @@
    Example
    {
       "entered_options": [EnteredOptionInput],
       "parent_sku": "abc123",
    -  "quantity": 987.65,
    -  "selected_options": ["abc123"],
    -  "sku": "abc123"
    +  "quantity": 123.45,
    +  "selected_options": ["xyz789"],
    +  "sku": "xyz789"
     }
     
    @@ -71077,10 +71075,10 @@
    Example
    {
       "available_shipping_carriers": [ReturnShippingCarrier],
       "comments": [ReturnComment],
    -  "created_at": "xyz789",
    +  "created_at": "abc123",
       "customer": ReturnCustomer,
       "items": [ReturnItem],
    -  "number": "abc123",
    +  "number": "xyz789",
       "order": CustomerOrder,
       "shipping": ReturnShipping,
       "status": "PENDING",
    @@ -71142,9 +71140,9 @@ 
    Fields
    Example
    {
       "author_name": "xyz789",
    -  "created_at": "abc123",
    +  "created_at": "xyz789",
       "text": "abc123",
    -  "uid": "4"
    +  "uid": 4
     }
     
    @@ -71197,8 +71195,8 @@
    Fields
    Example
    {
       "email": "abc123",
    -  "firstname": "abc123",
    -  "lastname": "xyz789"
    +  "firstname": "xyz789",
    +  "lastname": "abc123"
     }
     
    @@ -71267,8 +71265,8 @@
    Example
    {
       "custom_attributesV2": [AttributeValueInterface],
       "order_item": OrderItemInterface,
    -  "quantity": 987.65,
    -  "request_quantity": 987.65,
    +  "quantity": 123.45,
    +  "request_quantity": 123.45,
       "status": "PENDING",
       "uid": "4"
     }
    @@ -71378,12 +71376,12 @@ 
    Example
    "frontend_class": "xyz789", "frontend_input": "BOOLEAN", "input_filter": "NONE", - "is_required": true, - "is_unique": true, + "is_required": false, + "is_unique": false, "label": "xyz789", "multiline_count": 123, "options": [CustomAttributeOptionInterface], - "sort_order": 987, + "sort_order": 123, "validate_rules": [ValidationRule] }
    @@ -71591,12 +71589,12 @@
    Fields
    Example
    {
       "city": "xyz789",
    -  "contact_name": "xyz789",
    +  "contact_name": "abc123",
       "country": Country,
       "postcode": "xyz789",
       "region": Region,
       "street": ["xyz789"],
    -  "telephone": "abc123"
    +  "telephone": "xyz789"
     }
     
    @@ -71642,7 +71640,10 @@
    Fields
    Example
    -
    {"label": "abc123", "uid": 4}
    +                  
    {
    +  "label": "abc123",
    +  "uid": "4"
    +}
     
    @@ -71747,7 +71748,7 @@
    Fields
    Example
    -
    {"text": "xyz789", "type": "INFORMATION"}
    +                  
    {"text": "abc123", "type": "INFORMATION"}
     
    @@ -71967,7 +71968,7 @@
    Example
    {
       "items": [Return],
       "page_info": SearchResultPageInfo,
    -  "total_count": 123
    +  "total_count": 987
     }
     
    @@ -72167,8 +72168,8 @@
    Example
    {
       "balance": RewardPointsAmount,
       "change_reason": "xyz789",
    -  "date": "xyz789",
    -  "points_change": 123.45
    +  "date": "abc123",
    +  "points_change": 987.65
     }
     
    @@ -72501,7 +72502,7 @@
    Fields
    Example
    -
    {"count": 123, "id": 4, "title": "abc123"}
    +                  
    {"count": 987, "id": 4, "title": "xyz789"}
     
    @@ -72683,12 +72684,12 @@
    Fields
    Example
    {
    -  "attribute": "abc123",
    +  "attribute": "xyz789",
       "contains": "abc123",
    -  "eq": "xyz789",
    +  "eq": "abc123",
       "in": ["abc123"],
       "range": SearchRangeInput,
    -  "startsWith": "abc123"
    +  "startsWith": "xyz789"
     }
     
    @@ -72736,7 +72737,7 @@
    Fields
    Example
    -
    {"from": 123.45, "to": 987.65}
    +                  
    {"from": 123.45, "to": 123.45}
     
    @@ -72786,7 +72787,7 @@
    Fields
    Example
    -
    {"current_page": 123, "page_size": 123, "total_pages": 123}
    +                  
    {"current_page": 987, "page_size": 123, "total_pages": 123}
     
    @@ -72842,8 +72843,8 @@
    Fields
    Example
    {
    -  "label": "xyz789",
    -  "type": "abc123",
    +  "label": "abc123",
    +  "type": "xyz789",
       "uid": "4",
       "values": [SelectedBundleOptionValue]
     }
    @@ -72910,7 +72911,7 @@ 
    Example
    "label": "abc123", "original_price": Money, "priceV2": Money, - "quantity": 987.65, + "quantity": 123.45, "uid": 4 }
    @@ -72968,9 +72969,9 @@
    Fields
    Example
    {
    -  "configurable_product_option_uid": "4",
    -  "configurable_product_option_value_uid": 4,
    -  "option_label": "abc123",
    +  "configurable_product_option_uid": 4,
    +  "configurable_product_option_value_uid": "4",
    +  "option_label": "xyz789",
       "value_label": "abc123"
     }
     
    @@ -73020,7 +73021,7 @@
    Fields
    Example
    {
    -  "attribute_code": "xyz789",
    +  "attribute_code": "abc123",
       "value": "abc123"
     }
     
    @@ -73088,11 +73089,11 @@
    Fields
    Example
    {
    -  "customizable_option_uid": "4",
    -  "is_required": false,
    -  "label": "abc123",
    -  "sort_order": 987,
    -  "type": "abc123",
    +  "customizable_option_uid": 4,
    +  "is_required": true,
    +  "label": "xyz789",
    +  "sort_order": 123,
    +  "type": "xyz789",
       "values": [SelectedCustomizableOptionValue]
     }
     
    @@ -73153,7 +73154,7 @@
    Example
    "customizable_option_value_uid": 4, "label": "xyz789", "price": CartItemSelectedOptionValuePrice, - "value": "xyz789" + "value": "abc123" }
    @@ -73210,10 +73211,10 @@
    Fields
    Example
    {
    -  "code": "abc123",
    +  "code": "xyz789",
       "oope_payment_method_config": OopePaymentMethodConfig,
    -  "purchase_order_number": "abc123",
    -  "title": "abc123"
    +  "purchase_order_number": "xyz789",
    +  "title": "xyz789"
     }
     
    @@ -73295,7 +73296,7 @@
    Example
    "carrier_code": "abc123", "carrier_title": "abc123", "method_code": "abc123", - "method_title": "abc123", + "method_title": "xyz789", "price_excl_tax": Money, "price_incl_tax": Money } @@ -73345,7 +73346,10 @@
    Fields
    Example
    -
    {"comment": NegotiableQuoteCommentInput, "quote_uid": 4}
    +                  
    {
    +  "comment": NegotiableQuoteCommentInput,
    +  "quote_uid": "4"
    +}
     
    @@ -73520,7 +73524,7 @@
    Fields
    Example
    -
    {"error": "abc123", "success": true}
    +                  
    {"error": "xyz789", "success": true}
     
    @@ -73567,7 +73571,10 @@
    Fields
    Example
    -
    {"custom_attributes": [CustomAttributeInput], "id": 4}
    +                  
    {
    +  "custom_attributes": [CustomAttributeInput],
    +  "id": "4"
    +}
     
    @@ -73763,10 +73770,10 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    +  "cart_id": "abc123",
       "gift_message": GiftMessageInput,
    -  "gift_receipt_included": false,
    -  "gift_wrapping_id": "4",
    +  "gift_receipt_included": true,
    +  "gift_wrapping_id": 4,
       "printed_card_included": false
     }
     
    @@ -73856,8 +73863,8 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    -  "email": "xyz789"
    +  "cart_id": "abc123",
    +  "email": "abc123"
     }
     
    @@ -73987,7 +73994,7 @@
    Fields
    Example
    {
       "billing_address": NegotiableQuoteBillingAddressInput,
    -  "quote_uid": "4"
    +  "quote_uid": 4
     }
     
    @@ -74077,7 +74084,7 @@
    Fields
    Example
    {
       "payment_method": NegotiableQuotePaymentMethodInput,
    -  "quote_uid": 4
    +  "quote_uid": "4"
     }
     
    @@ -74258,7 +74265,7 @@
    Fields
    Example
    {
    -  "quote_uid": 4,
    +  "quote_uid": "4",
       "shipping_methods": [ShippingMethodInput]
     }
     
    @@ -74349,7 +74356,7 @@
    Fields
    Example
    {
       "shipping_address": NegotiableQuoteTemplateShippingAddressInput,
    -  "template_id": 4
    +  "template_id": "4"
     }
     
    @@ -74398,7 +74405,7 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    +  "cart_id": "xyz789",
       "payment_method": PaymentMethodInput
     }
     
    @@ -74488,7 +74495,7 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    +  "cart_id": "abc123",
       "shipping_addresses": [ShippingAddressInput]
     }
     
    @@ -74758,8 +74765,8 @@
    Fields
    Example
    {
    -  "message": "xyz789",
    -  "name": "abc123"
    +  "message": "abc123",
    +  "name": "xyz789"
     }
     
    @@ -74807,10 +74814,7 @@
    Fields
    Example
    -
    {
    -  "customerUids": ["4"],
    -  "requisitionListUid": 4
    -}
    +                  
    {"customerUids": [4], "requisitionListUid": 4}
     
    @@ -74856,7 +74860,7 @@
    Fields
    Example
    {
    -  "sent_count": 123,
    +  "sent_count": 987,
       "user_errors": [ShareRequisitionListUserError]
     }
     
    @@ -74945,7 +74949,7 @@
    Fields
    Example
    {
       "code": "MAX_RECIPIENTS_EXCEEDED",
    -  "message": "abc123"
    +  "message": "xyz789"
     }
     
    @@ -75056,7 +75060,7 @@
    Fields
    Example
    {
       "requisition_list": RequisitionList,
    -  "sender_name": "abc123"
    +  "sender_name": "xyz789"
     }
     
    @@ -75168,12 +75172,12 @@
    Fields
    Example
    {
    -  "id": "4",
    +  "id": 4,
       "order_item": OrderItemInterface,
       "product_name": "xyz789",
       "product_sale_price": Money,
       "product_sku": "abc123",
    -  "quantity_shipped": 123.45
    +  "quantity_shipped": 987.65
     }
     
    @@ -75267,12 +75271,12 @@
    Possible Types
    Example
    {
    -  "id": "4",
    +  "id": 4,
       "order_item": OrderItemInterface,
    -  "product_name": "xyz789",
    +  "product_name": "abc123",
       "product_sale_price": Money,
       "product_sku": "abc123",
    -  "quantity_shipped": 987.65
    +  "quantity_shipped": 123.45
     }
     
    @@ -75330,9 +75334,9 @@
    Fields
    Example
    {
       "carrier": "xyz789",
    -  "number": "xyz789",
    -  "title": "abc123",
    -  "tracking_url": "xyz789"
    +  "number": "abc123",
    +  "title": "xyz789",
    +  "tracking_url": "abc123"
     }
     
    @@ -75381,8 +75385,8 @@
    Fields
    Example
    {
    -  "key": "abc123",
    -  "value": "xyz789"
    +  "key": "xyz789",
    +  "value": "abc123"
     }
     
    @@ -75451,9 +75455,9 @@
    Example
    {
       "address": CartAddressInput,
       "customer_address_id": 123,
    -  "customer_address_uid": "4",
    -  "customer_notes": "xyz789",
    -  "pickup_location_code": "xyz789"
    +  "customer_address_uid": 4,
    +  "customer_notes": "abc123",
    +  "pickup_location_code": "abc123"
     }
     
    @@ -75614,25 +75618,25 @@
    Example
    {
       "available_shipping_methods": [AvailableShippingMethod],
       "cart_items_v2": [CartItemInterface],
    -  "city": "xyz789",
    -  "company": "xyz789",
    +  "city": "abc123",
    +  "company": "abc123",
       "country": CartAddressCountry,
       "custom_attributes": [AttributeValueInterface],
       "customer_address_uid": 4,
       "customer_notes": "xyz789",
       "fax": "abc123",
       "firstname": "xyz789",
    -  "id": 987,
    -  "lastname": "abc123",
    +  "id": 123,
    +  "lastname": "xyz789",
       "middlename": "xyz789",
       "pickup_location_code": "abc123",
    -  "postcode": "xyz789",
    -  "prefix": "xyz789",
    +  "postcode": "abc123",
    +  "prefix": "abc123",
       "region": CartAddressRegion,
       "same_as_billing": true,
       "selected_shipping_method": SelectedShippingMethod,
       "street": ["abc123"],
    -  "suffix": "abc123",
    +  "suffix": "xyz789",
       "telephone": "abc123",
       "uid": 4,
       "vat_id": "xyz789"
    @@ -75791,7 +75795,7 @@ 
    Fields
    Example
    {
       "carrier_code": "xyz789",
    -  "method_code": "abc123"
    +  "method_code": "xyz789"
     }
     
    @@ -75926,7 +75930,7 @@
    Fields
    Example
    {
       "available_gift_wrapping": [GiftWrapping],
    -  "backorder_message": "abc123",
    +  "backorder_message": "xyz789",
       "custom_attributes": [CustomAttribute],
       "customizable_options": [SelectedCustomizableOption],
       "discount": [Discount],
    @@ -75935,14 +75939,14 @@ 
    Example
    "gift_wrapping": GiftWrapping, "is_available": true, "is_salable": true, - "max_qty": 123.45, + "max_qty": 987.65, "min_qty": 123.45, - "not_available_message": "xyz789", + "not_available_message": "abc123", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 123.45, + "quantity": 987.65, "uid": "4" }
    @@ -76198,30 +76202,30 @@
    filters
    Example
    {
    -  "canonical_url": "xyz789",
    +  "canonical_url": "abc123",
       "categories": [CategoryInterface],
       "country_of_manufacture": "xyz789",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    -  "gift_message_available": true,
    -  "gift_wrapping_available": false,
    +  "gift_message_available": false,
    +  "gift_wrapping_available": true,
       "gift_wrapping_price": Money,
       "image": ProductImage,
    -  "is_returnable": "abc123",
    +  "is_returnable": "xyz789",
       "manufacturer": 123,
    -  "max_sale_qty": 123.45,
    +  "max_sale_qty": 987.65,
       "media_gallery": [MediaGalleryInterface],
    -  "meta_description": "abc123",
    +  "meta_description": "xyz789",
       "meta_keyword": "xyz789",
    -  "meta_title": "abc123",
    -  "min_sale_qty": 123.45,
    -  "name": "abc123",
    +  "meta_title": "xyz789",
    +  "min_sale_qty": 987.65,
    +  "name": "xyz789",
       "new_from_date": "xyz789",
    -  "new_to_date": "abc123",
    -  "only_x_left_in_stock": 987.65,
    +  "new_to_date": "xyz789",
    +  "only_x_left_in_stock": 123.45,
       "options": [CustomizableOptionInterface],
    -  "options_container": "xyz789",
    +  "options_container": "abc123",
       "price_range": PriceRange,
       "price_tiers": [TierPrice],
       "product_links": [ProductLinksInterface],
    @@ -76230,15 +76234,15 @@ 
    Example
    "short_description": ComplexTextValue, "sku": "xyz789", "small_image": ProductImage, - "special_price": 123.45, - "special_to_date": "abc123", + "special_price": 987.65, + "special_to_date": "xyz789", "stock_status": "IN_STOCK", "swatch_image": "xyz789", "thumbnail": ProductImage, - "uid": "4", + "uid": 4, "upsell_products": [ProductInterface], - "url_key": "abc123", - "weight": 123.45 + "url_key": "xyz789", + "weight": 987.65 }
    @@ -76462,29 +76466,29 @@
    family<
    Example
    {
       "addToCartAllowed": true,
    -  "inStock": false,
    +  "inStock": true,
       "lowStock": false,
       "attributes": [ProductViewAttribute],
    -  "description": "abc123",
    -  "id": 4,
    +  "description": "xyz789",
    +  "id": "4",
       "images": [ProductViewImage],
       "videos": [ProductViewVideo],
       "inputOptions": [ProductViewInputOption],
       "lastModifiedAt": "2007-12-03T10:15:30Z",
    -  "metaDescription": "xyz789",
    +  "metaDescription": "abc123",
       "metaKeyword": "xyz789",
    -  "metaTitle": "abc123",
    +  "metaTitle": "xyz789",
       "name": "xyz789",
       "price": ProductViewPrice,
       "shortDescription": "abc123",
    -  "sku": "xyz789",
    -  "externalId": "xyz789",
    -  "url": "abc123",
    +  "sku": "abc123",
    +  "externalId": "abc123",
    +  "url": "xyz789",
       "urlKey": "abc123",
       "links": [ProductViewLink],
       "categories": [CategoryProductView],
    -  "queryType": "abc123",
    -  "visibility": "abc123"
    +  "queryType": "xyz789",
    +  "visibility": "xyz789"
     }
     
    @@ -76619,12 +76623,12 @@
    Fields
    Example
    {
    -  "added_at": "xyz789",
    +  "added_at": "abc123",
       "customizable_options": [SelectedCustomizableOption],
       "description": "xyz789",
       "id": 4,
       "product": ProductInterface,
    -  "quantity": 987.65
    +  "quantity": 123.45
     }
     
    @@ -76771,14 +76775,14 @@
    Example
    {
       "app_switch_when_available": true,
       "button_styles": ButtonStyles,
    -  "code": "abc123",
    +  "code": "xyz789",
       "display_message": false,
       "display_venmo": false,
    -  "is_visible": true,
    +  "is_visible": false,
       "message_styles": MessageStyles,
       "payment_intent": "abc123",
       "sdk_params": [SDKParams],
    -  "sort_order": "abc123",
    +  "sort_order": "xyz789",
       "title": "abc123"
     }
     
    @@ -76876,7 +76880,7 @@
    Fields
    Example
    {
       "label": "xyz789",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -76923,7 +76927,7 @@
    Fields
    Example
    {
    -  "default": "xyz789",
    +  "default": "abc123",
       "options": [SortField]
     }
     
    @@ -77247,8 +77251,8 @@
    Fields
    Example
    {
    -  "attribute": "xyz789",
    -  "frontendInput": "xyz789",
    +  "attribute": "abc123",
    +  "frontendInput": "abc123",
       "label": "abc123",
       "numeric": true
     }
    @@ -77302,9 +77306,9 @@ 
    Fields
    Example
    {
    -  "max": 123.45,
    +  "max": 987.65,
       "min": 987.65,
    -  "title": "xyz789"
    +  "title": "abc123"
     }
     
    @@ -78071,97 +78075,97 @@
    Fields
    Example
    {
    -  "allow_company_registration": true,
    -  "allow_gift_receipt": "xyz789",
    -  "allow_gift_wrapping_on_order": "abc123",
    +  "allow_company_registration": false,
    +  "allow_gift_receipt": "abc123",
    +  "allow_gift_wrapping_on_order": "xyz789",
       "allow_gift_wrapping_on_order_items": "xyz789",
       "allow_items": "xyz789",
       "allow_order": "xyz789",
    -  "allow_printed_card": "xyz789",
    -  "autocomplete_on_storefront": true,
    +  "allow_printed_card": "abc123",
    +  "autocomplete_on_storefront": false,
       "base_currency_code": "abc123",
       "base_link_url": "abc123",
       "base_media_url": "xyz789",
    -  "base_static_url": "abc123",
    +  "base_static_url": "xyz789",
       "base_url": "abc123",
    -  "cart_expires_in_days": 987,
    +  "cart_expires_in_days": 123,
       "cart_gift_wrapping": "xyz789",
    -  "cart_merge_preference": "abc123",
    +  "cart_merge_preference": "xyz789",
       "cart_printed_card": "abc123",
    -  "cart_summary_display_quantity": 123,
    +  "cart_summary_display_quantity": 987,
       "catalog_default_sort_by": "abc123",
       "category_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS",
       "category_url_suffix": "xyz789",
       "check_money_order_enable_for_specific_countries": true,
    -  "check_money_order_enabled": true,
    +  "check_money_order_enabled": false,
       "check_money_order_make_check_payable_to": "xyz789",
    -  "check_money_order_max_order_total": "abc123",
    -  "check_money_order_min_order_total": "abc123",
    -  "check_money_order_new_order_status": "abc123",
    +  "check_money_order_max_order_total": "xyz789",
    +  "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": "abc123",
    +  "check_money_order_send_check_to": "xyz789",
       "check_money_order_sort_order": 987,
    -  "check_money_order_title": "abc123",
    +  "check_money_order_title": "xyz789",
       "company_credit_enabled": false,
       "company_enabled": false,
       "configurable_product_image": "ITSELF",
       "configurable_thumbnail_source": "xyz789",
    -  "contact_enabled": false,
    -  "countries_with_required_region": "xyz789",
    +  "contact_enabled": true,
    +  "countries_with_required_region": "abc123",
       "create_account_confirmation": false,
    -  "customer_access_token_lifetime": 987.65,
    -  "default_country": "xyz789",
    -  "default_display_currency_code": "abc123",
    +  "customer_access_token_lifetime": 123.45,
    +  "default_country": "abc123",
    +  "default_display_currency_code": "xyz789",
       "display_product_prices_in_catalog": 123,
       "display_shipping_prices": 123,
       "display_state_if_optional": false,
       "enable_multiple_wishlists": "abc123",
    -  "fixed_product_taxes_apply_tax_to_fpt": false,
    -  "fixed_product_taxes_display_prices_in_emails": 123,
    +  "fixed_product_taxes_apply_tax_to_fpt": true,
    +  "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": 123,
       "fixed_product_taxes_display_prices_on_product_view_page": 987,
       "fixed_product_taxes_enable": true,
    -  "fixed_product_taxes_include_fpt_in_subtotal": true,
    +  "fixed_product_taxes_include_fpt_in_subtotal": false,
       "graphql_share_customer_group": false,
       "grid_per_page": 987,
       "grid_per_page_values": "xyz789",
       "grouped_product_image": "ITSELF",
       "is_checkout_agreements_enabled": false,
    -  "is_default_store": false,
    +  "is_default_store": true,
       "is_default_store_group": true,
    -  "is_guest_checkout_enabled": true,
    -  "is_negotiable_quote_active": true,
    -  "is_one_page_checkout_enabled": true,
    -  "is_requisition_list_active": "abc123",
    +  "is_guest_checkout_enabled": false,
    +  "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": "abc123",
    +  "list_per_page": 123,
    +  "list_per_page_values": "xyz789",
       "locale": "abc123",
    -  "magento_reward_general_is_enabled": "abc123",
    -  "magento_reward_general_is_enabled_on_front": "xyz789",
    +  "magento_reward_general_is_enabled": "xyz789",
    +  "magento_reward_general_is_enabled_on_front": "abc123",
       "magento_reward_general_min_points_balance": "xyz789",
    -  "magento_reward_general_publish_history": "abc123",
    -  "magento_reward_points_invitation_customer": "abc123",
    +  "magento_reward_general_publish_history": "xyz789",
    +  "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": "xyz789",
    -  "magento_reward_points_newsletter": "xyz789",
    -  "magento_reward_points_order": "abc123",
    -  "magento_reward_points_register": "abc123",
    +  "magento_reward_points_newsletter": "abc123",
    +  "magento_reward_points_order": "xyz789",
    +  "magento_reward_points_register": "xyz789",
       "magento_reward_points_review": "xyz789",
       "magento_reward_points_review_limit": "abc123",
       "magento_wishlist_general_is_enabled": "xyz789",
       "max_items_in_order_summary": 987,
    -  "maximum_number_of_wishlists": "abc123",
    +  "maximum_number_of_wishlists": "xyz789",
       "minicart_display": false,
       "minicart_max_items": 987,
       "minimum_password_length": "abc123",
       "newsletter_enabled": true,
       "optional_zip_countries": "xyz789",
    -  "order_cancellation_enabled": true,
    +  "order_cancellation_enabled": false,
       "order_cancellation_reasons": [CancellationReason],
    -  "orders_invoices_credit_memos_display_full_summary": false,
    +  "orders_invoices_credit_memos_display_full_summary": true,
       "orders_invoices_credit_memos_display_grandtotal": false,
       "orders_invoices_credit_memos_display_price": 987,
       "orders_invoices_credit_memos_display_shipping_amount": 123,
    @@ -78172,51 +78176,51 @@ 
    Example
    "product_url_suffix": "abc123", "quickorder_active": true, "quote_minimum_amount": 987.65, - "quote_minimum_amount_message": "xyz789", - "required_character_classes_number": "abc123", - "requisition_list_share_link_validity_days": 123, + "quote_minimum_amount_message": "abc123", + "required_character_classes_number": "xyz789", + "requisition_list_share_link_validity_days": 987, "requisition_list_share_max_recipients": 123, "requisition_list_share_storefront_path": "abc123", - "requisition_list_sharing_enabled": true, + "requisition_list_sharing_enabled": false, "returns_enabled": "abc123", "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_link_url": "xyz789", "secure_base_media_url": "xyz789", - "secure_base_static_url": "xyz789", - "secure_base_url": "abc123", - "share_active_segments": false, + "secure_base_static_url": "abc123", + "secure_base_url": "xyz789", + "share_active_segments": true, "share_applied_cart_rule": false, - "shopping_assistance_checkbox_title": "abc123", - "shopping_assistance_checkbox_tooltip": "xyz789", + "shopping_assistance_checkbox_title": "xyz789", + "shopping_assistance_checkbox_tooltip": "abc123", "shopping_assistance_enabled": false, - "shopping_cart_display_full_summary": true, - "shopping_cart_display_grand_total": false, - "shopping_cart_display_price": 123, + "shopping_cart_display_full_summary": false, + "shopping_cart_display_grand_total": true, + "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": "xyz789", + "shopping_cart_display_zero_tax": true, + "store_code": "4", + "store_group_code": "4", + "store_group_name": "abc123", "store_name": "xyz789", - "store_sort_order": 987, - "timezone": "xyz789", + "store_sort_order": 123, + "timezone": "abc123", "title_separator": "abc123", "use_store_in_url": true, - "website_code": 4, + "website_code": "4", "website_name": "xyz789", "weight_unit": "xyz789", - "zero_subtotal_enable_for_specific_countries": true, + "zero_subtotal_enable_for_specific_countries": false, "zero_subtotal_enabled": true, - "zero_subtotal_new_order_status": "xyz789", - "zero_subtotal_payment_action": "xyz789", - "zero_subtotal_payment_from_specific_countries": "abc123", - "zero_subtotal_sort_order": 987, - "zero_subtotal_title": "abc123" + "zero_subtotal_new_order_status": "abc123", + "zero_subtotal_payment_action": "abc123", + "zero_subtotal_payment_from_specific_countries": "xyz789", + "zero_subtotal_sort_order": 123, + "zero_subtotal_title": "xyz789" }
    @@ -78410,12 +78414,12 @@
    Example
    "attachments": [NegotiableQuoteCommentAttachmentInput], "comment": "xyz789", "max_order_commitment": 123, - "min_order_commitment": 987, - "name": "abc123", + "min_order_commitment": 123, + "name": "xyz789", "reference_document_links": [ NegotiableQuoteTemplateReferenceDocumentLinkInput ], - "template_id": 4 + "template_id": "4" }
    @@ -78566,7 +78570,7 @@
    Fields
    Example
    -
    {"depth": 123, "startLevel": 123}
    +                  
    {"depth": 123, "startLevel": 987}
     
    @@ -78955,8 +78959,8 @@
    Fields
    Example
    {
       "amount": Money,
    -  "rate": 987.65,
    -  "title": "abc123"
    +  "rate": 123.45,
    +  "title": "xyz789"
     }
     
    @@ -79324,11 +79328,11 @@
    Fields
    Example
    {
    -  "unitName": "xyz789",
    +  "unitName": "abc123",
       "storefrontLabel": "xyz789",
    -  "pagePlacement": "xyz789",
    +  "pagePlacement": "abc123",
       "displayNumber": 987,
    -  "pageType": "xyz789",
    +  "pageType": "abc123",
       "unitStatus": "xyz789",
       "typeId": "abc123",
       "filterRules": [FilterRuleInput]
    @@ -79705,8 +79709,8 @@ 
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "event_name": "xyz789", - "message": "abc123", + "event_name": "abc123", + "message": "xyz789", "privacy_settings": "PRIVATE", "shipping_address": GiftRegistryShippingAddressInput, "status": "ACTIVE" @@ -79764,9 +79768,9 @@
    Fields
    Example
    {
    -  "gift_registry_item_uid": "4",
    -  "note": "xyz789",
    -  "quantity": 987.65
    +  "gift_registry_item_uid": 4,
    +  "note": "abc123",
    +  "quantity": 123.45
     }
     
    @@ -79916,10 +79920,10 @@
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "email": "xyz789", + "email": "abc123", "firstname": "xyz789", - "gift_registry_registrant_uid": 4, - "lastname": "xyz789" + "gift_registry_registrant_uid": "4", + "lastname": "abc123" }
    @@ -80266,13 +80270,13 @@
    Fields
    Example
    {
    -  "applies_to": [4],
    -  "approvers": [4],
    +  "applies_to": ["4"],
    +  "approvers": ["4"],
       "condition": CreatePurchaseOrderApprovalRuleConditionInput,
       "description": "xyz789",
    -  "name": "xyz789",
    +  "name": "abc123",
       "status": "ENABLED",
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -80322,7 +80326,7 @@
    Fields
    Example
    {
       "description": "xyz789",
    -  "name": "abc123"
    +  "name": "xyz789"
     }
     
    @@ -80519,7 +80523,7 @@
    Fields
    Example
    {
       "name": "abc123",
    -  "uid": 4,
    +  "uid": "4",
       "visibility": "PUBLIC"
     }
     
    @@ -80575,7 +80579,7 @@
    Fields
    Example
    {
    -  "currentPage": 123,
    +  "currentPage": 987,
       "pageSize": 123,
       "sort": [CompaniesSortInput]
     }
    @@ -80671,7 +80675,7 @@ 
    Fields
    Example
    -
    {"message": "abc123", "type": "NOT_FOUND"}
    +                  
    {"message": "xyz789", "type": "NOT_FOUND"}
     
    @@ -80778,7 +80782,7 @@
    Fields
    Example
    -
    {"purchase_order_uids": ["4"]}
    +                  
    {"purchase_order_uids": [4]}
     
    @@ -81059,7 +81063,7 @@
    Fields
    Example
    {
    -  "is_vault_enabled": true,
    +  "is_vault_enabled": false,
       "sdk_params": [SDKParams],
       "three_ds_mode": "OFF"
     }
    @@ -81123,7 +81127,7 @@ 
    Fields
    Example
    {
       "payment_source": "abc123",
    -  "payments_order_id": "abc123",
    +  "payments_order_id": "xyz789",
       "paypal_order_id": "abc123",
       "public_hash": "xyz789"
     }
    @@ -81218,7 +81222,7 @@ 
    Fields
    Example
    {
       "date": "2007-12-03T10:15:30Z",
    -  "sku": "abc123"
    +  "sku": "xyz789"
     }
     
    @@ -81270,7 +81274,7 @@
    Fields
    Example
    {
       "dateTime": "2007-12-03T10:15:30Z",
    -  "sku": "abc123"
    +  "sku": "xyz789"
     }
     
    @@ -81389,7 +81393,7 @@
    Fields
    Example
    {
    -  "backorder_message": "xyz789",
    +  "backorder_message": "abc123",
       "custom_attributes": [CustomAttribute],
       "customizable_options": [SelectedCustomizableOption],
       "discount": [Discount],
    @@ -81397,14 +81401,14 @@ 
    Example
    "is_available": false, "is_salable": true, "max_qty": 987.65, - "min_qty": 987.65, + "min_qty": 123.45, "not_available_message": "abc123", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 123.45, - "uid": 4 + "quantity": 987.65, + "uid": "4" }
    @@ -81656,26 +81660,26 @@
    Example
    {
       "canonical_url": "abc123",
       "categories": [CategoryInterface],
    -  "country_of_manufacture": "xyz789",
    +  "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    -  "gift_message_available": true,
    +  "gift_message_available": false,
       "gift_wrapping_available": true,
       "gift_wrapping_price": Money,
       "image": ProductImage,
       "is_returnable": "xyz789",
       "manufacturer": 123,
    -  "max_sale_qty": 987.65,
    +  "max_sale_qty": 123.45,
       "media_gallery": [MediaGalleryInterface],
    -  "meta_description": "abc123",
    -  "meta_keyword": "xyz789",
    -  "meta_title": "abc123",
    +  "meta_description": "xyz789",
    +  "meta_keyword": "abc123",
    +  "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,
    +  "new_to_date": "abc123",
    +  "only_x_left_in_stock": 123.45,
       "options": [CustomizableOptionInterface],
       "options_container": "abc123",
       "price_range": PriceRange,
    @@ -81691,7 +81695,7 @@ 
    Example
    "stock_status": "IN_STOCK", "swatch_image": "abc123", "thumbnail": ProductImage, - "uid": "4", + "uid": 4, "upsell_products": [ProductInterface], "url_key": "xyz789" } @@ -81833,7 +81837,7 @@
    Example
    "description": "xyz789", "id": 4, "product": ProductInterface, - "quantity": 123.45 + "quantity": 987.65 }
    @@ -81881,7 +81885,7 @@
    Fields
    Example
    {
       "code": "PRODUCT_NOT_FOUND",
    -  "message": "abc123"
    +  "message": "xyz789"
     }
     
    @@ -82022,8 +82026,8 @@
    Example
    "id": "4", "items_count": 987, "items_v2": WishlistItems, - "name": "xyz789", - "sharing_code": "xyz789", + "name": "abc123", + "sharing_code": "abc123", "updated_at": "abc123", "visibility": "PUBLIC" } @@ -82085,7 +82089,7 @@
    Example
    "code": "PRODUCT_NOT_FOUND", "message": "xyz789", "wishlistId": 4, - "wishlistItemId": 4 + "wishlistItemId": "4" }
    @@ -82204,7 +82208,7 @@
    Fields
    Example
    {
    -  "quantity": 987.65,
    +  "quantity": 123.45,
       "wishlist_item_id": "4"
     }
     
    @@ -82393,10 +82397,10 @@
    Example
    {
       "added_at": "abc123",
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "abc123",
    -  "id": "4",
    +  "description": "xyz789",
    +  "id": 4,
       "product": ProductInterface,
    -  "quantity": 123.45
    +  "quantity": 987.65
     }
     
    @@ -82444,10 +82448,7 @@
    Fields
    Example
    -
    {
    -  "quantity": 987.65,
    -  "wishlist_item_id": "4"
    -}
    +                  
    {"quantity": 123.45, "wishlist_item_id": 4}
     
    @@ -82513,11 +82514,11 @@
    Fields
    Example
    {
    -  "description": "xyz789",
    +  "description": "abc123",
       "entered_options": [EnteredOptionInput],
    -  "quantity": 987.65,
    -  "selected_options": ["4"],
    -  "wishlist_item_id": "4"
    +  "quantity": 123.45,
    +  "selected_options": [4],
    +  "wishlist_item_id": 4
     }
     
    @@ -82659,7 +82660,7 @@
    Fields
    Example
    {
    -  "key": "abc123",
    +  "key": "xyz789",
       "media_resource_type": "NEGOTIABLE_QUOTE_ATTACHMENT"
     }
     
    @@ -82708,7 +82709,7 @@
    Fields
    Example
    {
    -  "key": "xyz789",
    +  "key": "abc123",
       "message": "xyz789",
       "success": true
     }
    @@ -82755,7 +82756,7 @@ 
    Fields
    Example
    {
    -  "key": "abc123",
    +  "key": "xyz789",
       "media_resource_type": "NEGOTIABLE_QUOTE_ATTACHMENT"
     }
     
    @@ -82805,8 +82806,8 @@
    Fields
    Example
    {
       "expires_at": "xyz789",
    -  "key": "xyz789",
    -  "upload_url": "xyz789"
    +  "key": "abc123",
    +  "upload_url": "abc123"
     }
     
    From ab18533c1784dae43ebc587318d4dab04e6ba6a3 Mon Sep 17 00:00:00 2001 From: Jared Hoover Date: Mon, 1 Jun 2026 13:30:46 -0500 Subject: [PATCH 5/9] add v2 catalog to filter --- spectaql/metadata-saas.json | 62 + static/graphql-api/saas/index.html | 4309 +++++++++++----------------- 2 files changed, 1729 insertions(+), 2642 deletions(-) diff --git a/spectaql/metadata-saas.json b/spectaql/metadata-saas.json index 3bc9fdf15..752a92e14 100644 --- a/spectaql/metadata-saas.json +++ b/spectaql/metadata-saas.json @@ -6,6 +6,26 @@ "documentation": { "undocumented": true } + }, + "categoryTree": { + "documentation": { + "undocumented": true + } + }, + "navigation": { + "documentation": { + "undocumented": true + } + }, + "searchCategory": { + "documentation": { + "undocumented": true + } + }, + "recommendationsByUnitIds": { + "documentation": { + "undocumented": true + } } } }, @@ -42,6 +62,41 @@ "documentation": { "undocumented": true } + }, + "CategoryTreeView": { + "documentation": { + "undocumented": true + } + }, + "CategoryNavigationView": { + "documentation": { + "undocumented": true + } + }, + "CategoryProductView": { + "documentation": { + "undocumented": true + } + }, + "SearchCategoryResultPage": { + "documentation": { + "undocumented": true + } + }, + "CategoryMetaTags": { + "documentation": { + "undocumented": true + } + }, + "CategoryImage": { + "documentation": { + "undocumented": true + } + }, + "PageInfo": { + "documentation": { + "undocumented": true + } } }, "INPUT_OBJECT": { @@ -50,5 +105,12 @@ "undocumented": true } } + }, + "INTERFACE": { + "CategoryViewV2": { + "documentation": { + "undocumented": true + } + } } } diff --git a/static/graphql-api/saas/index.html b/static/graphql-api/saas/index.html index 3650e6890..343f70928 100644 --- a/static/graphql-api/saas/index.html +++ b/static/graphql-api/saas/index.html @@ -43,7 +43,6 @@
  • CatalogAttributeMetadata
  • CategoryBucket
  • CategoryBucketInterface
  • -
  • CategoryImage
  • CategoryInterface
  • -
  • CategoryMetaTags
  • -
  • CategoryNavigationView
  • -
  • CategoryProductView
  • CategoryTree
  • -
  • CategoryTreeView
  • CategoryView
  • CategoryViewInterface
  • -
  • CategoryViewV2
  • CheckoutAgreement
  • CheckoutAgreementMode
  • CheckoutUserInputError
  • @@ -807,7 +797,6 @@
  • OrderShipment
  • OrderTokenInput
  • OrderTotal
  • -
  • PageInfo
  • PageType
  • PaymentAttributeInput
  • PaymentConfigItem
  • @@ -996,7 +985,6 @@
  • SalesCommentItem
  • ScalarBucket
  • ScopeTypeEnum
  • -
  • SearchCategoryResultPage
  • SearchClauseInput
  • SearchRangeInput
  • SearchResultPageInfo
  • @@ -1620,54 +1608,54 @@
    Response
    "data": { "availableStores": [ { - "allow_company_registration": false, - "allow_gift_receipt": "xyz789", - "allow_gift_wrapping_on_order": "xyz789", - "allow_gift_wrapping_on_order_items": "abc123", - "allow_items": "xyz789", + "allow_company_registration": true, + "allow_gift_receipt": "abc123", + "allow_gift_wrapping_on_order": "abc123", + "allow_gift_wrapping_on_order_items": "xyz789", + "allow_items": "abc123", "allow_order": "xyz789", "allow_printed_card": "abc123", "autocomplete_on_storefront": false, - "base_currency_code": "xyz789", + "base_currency_code": "abc123", "base_link_url": "abc123", "base_media_url": "abc123", "base_static_url": "xyz789", - "base_url": "abc123", + "base_url": "xyz789", "cart_expires_in_days": 123, "cart_gift_wrapping": "xyz789", - "cart_merge_preference": "xyz789", + "cart_merge_preference": "abc123", "cart_printed_card": "xyz789", - "cart_summary_display_quantity": 123, + "cart_summary_display_quantity": 987, "catalog_default_sort_by": "abc123", "category_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", "category_url_suffix": "abc123", - "check_money_order_enable_for_specific_countries": true, - "check_money_order_enabled": true, - "check_money_order_make_check_payable_to": "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": "xyz789", "check_money_order_min_order_total": "abc123", - "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_new_order_status": "abc123", + "check_money_order_payment_from_specific_countries": "abc123", + "check_money_order_send_check_to": "abc123", "check_money_order_sort_order": 987, - "check_money_order_title": "xyz789", - "company_credit_enabled": false, + "check_money_order_title": "abc123", + "company_credit_enabled": true, "company_enabled": false, "configurable_product_image": "ITSELF", - "configurable_thumbnail_source": "xyz789", - "contact_enabled": true, + "configurable_thumbnail_source": "abc123", + "contact_enabled": false, "countries_with_required_region": "abc123", "create_account_confirmation": true, "customer_access_token_lifetime": 987.65, - "default_country": "abc123", + "default_country": "xyz789", "default_display_currency_code": "xyz789", - "display_product_prices_in_catalog": 123, - "display_shipping_prices": 987, - "display_state_if_optional": true, + "display_product_prices_in_catalog": 987, + "display_shipping_prices": 123, + "display_state_if_optional": false, "enable_multiple_wishlists": "xyz789", - "fixed_product_taxes_apply_tax_to_fpt": true, - "fixed_product_taxes_display_prices_in_emails": 123, - "fixed_product_taxes_display_prices_in_product_lists": 987, + "fixed_product_taxes_apply_tax_to_fpt": false, + "fixed_product_taxes_display_prices_in_emails": 987, + "fixed_product_taxes_display_prices_in_product_lists": 123, "fixed_product_taxes_display_prices_in_sales_modules": 123, "fixed_product_taxes_display_prices_on_product_view_page": 123, "fixed_product_taxes_enable": false, @@ -1677,97 +1665,97 @@
    Response
    "grid_per_page_values": "abc123", "grouped_product_image": "ITSELF", "is_checkout_agreements_enabled": true, - "is_default_store": true, - "is_default_store_group": false, - "is_guest_checkout_enabled": true, + "is_default_store": false, + "is_default_store_group": true, + "is_guest_checkout_enabled": false, "is_negotiable_quote_active": true, "is_one_page_checkout_enabled": true, - "is_requisition_list_active": "xyz789", + "is_requisition_list_active": "abc123", "list_mode": "abc123", "list_per_page": 123, - "list_per_page_values": "xyz789", - "locale": "xyz789", - "magento_reward_general_is_enabled": "xyz789", + "list_per_page_values": "abc123", + "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": "xyz789", - "magento_reward_points_invitation_customer": "xyz789", - "magento_reward_points_invitation_customer_limit": "abc123", + "magento_reward_general_publish_history": "abc123", + "magento_reward_points_invitation_customer": "abc123", + "magento_reward_points_invitation_customer_limit": "xyz789", "magento_reward_points_invitation_order": "abc123", "magento_reward_points_invitation_order_limit": "xyz789", "magento_reward_points_newsletter": "xyz789", - "magento_reward_points_order": "abc123", - "magento_reward_points_register": "xyz789", - "magento_reward_points_review": "xyz789", - "magento_reward_points_review_limit": "abc123", + "magento_reward_points_order": "xyz789", + "magento_reward_points_register": "abc123", + "magento_reward_points_review": "abc123", + "magento_reward_points_review_limit": "xyz789", "magento_wishlist_general_is_enabled": "xyz789", - "max_items_in_order_summary": 987, - "maximum_number_of_wishlists": "abc123", + "max_items_in_order_summary": 123, + "maximum_number_of_wishlists": "xyz789", "minicart_display": true, "minicart_max_items": 123, "minimum_password_length": "abc123", - "newsletter_enabled": false, - "optional_zip_countries": "abc123", - "order_cancellation_enabled": true, + "newsletter_enabled": true, + "optional_zip_countries": "xyz789", + "order_cancellation_enabled": false, "order_cancellation_reasons": [ CancellationReason ], "orders_invoices_credit_memos_display_full_summary": false, - "orders_invoices_credit_memos_display_grandtotal": true, - "orders_invoices_credit_memos_display_price": 987, - "orders_invoices_credit_memos_display_shipping_amount": 987, - "orders_invoices_credit_memos_display_subtotal": 987, + "orders_invoices_credit_memos_display_grandtotal": false, + "orders_invoices_credit_memos_display_price": 123, + "orders_invoices_credit_memos_display_shipping_amount": 123, + "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", + "product_url_suffix": "xyz789", "quickorder_active": false, "quote_minimum_amount": 123.45, "quote_minimum_amount_message": "xyz789", - "required_character_classes_number": "xyz789", + "required_character_classes_number": "abc123", "requisition_list_share_link_validity_days": 123, - "requisition_list_share_max_recipients": 987, + "requisition_list_share_max_recipients": 123, "requisition_list_share_storefront_path": "abc123", "requisition_list_sharing_enabled": true, "returns_enabled": "abc123", "root_category_uid": 4, "sales_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", - "sales_gift_wrapping": "abc123", + "sales_gift_wrapping": "xyz789", "sales_printed_card": "abc123", - "secure_base_link_url": "abc123", - "secure_base_media_url": "abc123", + "secure_base_link_url": "xyz789", + "secure_base_media_url": "xyz789", "secure_base_static_url": "xyz789", "secure_base_url": "abc123", - "share_active_segments": false, - "share_applied_cart_rule": false, + "share_active_segments": true, + "share_applied_cart_rule": true, "shopping_assistance_checkbox_title": "abc123", - "shopping_assistance_checkbox_tooltip": "xyz789", - "shopping_assistance_enabled": false, - "shopping_cart_display_full_summary": true, + "shopping_assistance_checkbox_tooltip": "abc123", + "shopping_assistance_enabled": true, + "shopping_cart_display_full_summary": false, "shopping_cart_display_grand_total": false, - "shopping_cart_display_price": 123, - "shopping_cart_display_shipping": 123, - "shopping_cart_display_subtotal": 123, + "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, + "shopping_cart_display_zero_tax": true, "store_code": "4", "store_group_code": "4", - "store_group_name": "abc123", + "store_group_name": "xyz789", "store_name": "abc123", "store_sort_order": 123, "timezone": "abc123", - "title_separator": "abc123", - "use_store_in_url": false, + "title_separator": "xyz789", + "use_store_in_url": true, "website_code": 4, - "website_name": "abc123", + "website_name": "xyz789", "weight_unit": "abc123", - "zero_subtotal_enable_for_specific_countries": false, - "zero_subtotal_enabled": false, + "zero_subtotal_enable_for_specific_countries": true, + "zero_subtotal_enabled": true, "zero_subtotal_new_order_status": "xyz789", - "zero_subtotal_payment_action": "xyz789", - "zero_subtotal_payment_from_specific_countries": "xyz789", - "zero_subtotal_sort_order": 987, - "zero_subtotal_title": "xyz789" + "zero_subtotal_payment_action": "abc123", + "zero_subtotal_payment_from_specific_countries": "abc123", + "zero_subtotal_sort_order": 123, + "zero_subtotal_title": "abc123" } ] } @@ -1901,7 +1889,7 @@
    Response
    ], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "abc123", + "email": "xyz789", "gift_message": GiftMessage, "gift_receipt_included": false, "gift_wrapping": GiftWrapping, @@ -1913,7 +1901,7 @@
    Response
    "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], - "total_quantity": 123.45 + "total_quantity": 987.65 } } } @@ -2019,8 +2007,8 @@
    Query
    Variables
    {
    -  "ids": ["abc123"],
    -  "roles": ["xyz789"],
    +  "ids": ["xyz789"],
    +  "roles": ["abc123"],
       "subtree": Subtree
     }
     
    @@ -2031,141 +2019,24 @@
    Response
    "data": { "categories": [ { - "availableSortBy": ["abc123"], + "availableSortBy": ["xyz789"], "children": ["abc123"], "defaultSortBy": "abc123", - "id": 4, + "id": "4", "level": 123, "name": "abc123", "parentId": "xyz789", - "position": 987, - "path": "abc123", + "position": 123, + "path": "xyz789", "roles": ["abc123"], "urlKey": "abc123", "urlPath": "xyz789", - "count": 987, + "count": 123, "title": "abc123" } ] } } -
    -
    -
    - back to top - -
    -
    -
    - Queries -
    -

    - categoryTree -

    -
    -
    -
    -
    Description
    -

    Retrieves category tree nodes, optionally filtered by family, slugs and limited by depth.

    -
    -
    -
    -
    -
    -
    -
    Response
    -

    Returns [CategoryTreeView] -

    -
    -
    -
    Arguments
    - - - - - - - - - - - - - - - - - - - - - -
    NameDescription
    - family - String - The product family to retrieve the category tree for. Ex: clothing, electronics, books
    - slugs - [String!] - The slugs of the categories to retrieve the category tree for. Ex: men/clothing/shorts
    - depth - Int - The depth of the category tree to retrieve. When used without an initial slug, it will specify the maximum level allowed for a category. When used with a starting slug, it specifies depth from that slug, counting the slug itself as level 1.
    -
    -
    -
    -

    Example

    -
    -
    Query
    -
    query categoryTree(
    -  $family: String,
    -  $slugs: [String!],
    -  $depth: Int
    -) {
    -  categoryTree(
    -    family: $family,
    -    slugs: $slugs,
    -    depth: $depth
    -  ) {
    -    slug
    -    name
    -    description
    -    metaTags {
    -      ...CategoryMetaTagsFragment
    -    }
    -    images {
    -      ...CategoryImageFragment
    -    }
    -    level
    -    parentSlug
    -    childrenSlugs
    -  }
    -}
    -
    -
    -
    -
    Variables
    -
    {
    -  "family": "abc123",
    -  "slugs": ["xyz789"],
    -  "depth": 123
    -}
    -
    -
    -
    -
    Response
    -
    {
    -  "data": {
    -    "categoryTree": [
    -      {
    -        "slug": "xyz789",
    -        "name": "xyz789",
    -        "description": "abc123",
    -        "metaTags": CategoryMetaTags,
    -        "images": [CategoryImage],
    -        "level": 123,
    -        "parentSlug": "xyz789",
    -        "childrenSlugs": ["xyz789"]
    -      }
    -    ]
    -  }
    -}
     
    @@ -2220,11 +2091,11 @@
    Response
    { "agreement_id": 987, "checkbox_text": "abc123", - "content": "xyz789", + "content": "abc123", "content_height": "xyz789", - "is_html": true, + "is_html": false, "mode": "AUTO", - "name": "xyz789" + "name": "abc123" } ] } @@ -2386,13 +2257,13 @@
    Response
    "credit": CompanyCredit, "credit_history": CompanyCreditHistory, "custom_attributes": [CustomAttribute], - "email": "abc123", + "email": "xyz789", "id": "4", "legal_address": CompanyLegalAddress, - "legal_name": "abc123", + "legal_name": "xyz789", "name": "xyz789", - "payment_methods": ["abc123"], - "reseller_id": "abc123", + "payment_methods": ["xyz789"], + "reseller_id": "xyz789", "role": CompanyRole, "roles": CompanyRoles, "sales_representative": CompanySalesRepresentative, @@ -2473,7 +2344,7 @@
    Query
    Variables
    -
    {"uid": 4}
    +                  
    {"uid": "4"}
     
    @@ -2542,10 +2413,10 @@
    Response
    "countries": [ { "available_regions": [Region], - "full_name_english": "xyz789", - "full_name_locale": "abc123", + "full_name_english": "abc123", + "full_name_locale": "xyz789", "id": "abc123", - "three_letter_abbreviation": "xyz789", + "three_letter_abbreviation": "abc123", "two_letter_abbreviation": "xyz789" } ] @@ -2620,7 +2491,7 @@
    Query
    Variables
    -
    {"id": "abc123"}
    +                  
    {"id": "xyz789"}
     
    @@ -2630,8 +2501,8 @@
    Response
    "country": { "available_regions": [Region], "full_name_english": "abc123", - "full_name_locale": "xyz789", - "id": "xyz789", + "full_name_locale": "abc123", + "id": "abc123", "three_letter_abbreviation": "xyz789", "two_letter_abbreviation": "xyz789" } @@ -2690,10 +2561,10 @@
    Response
    "data": { "currency": { "available_currency_codes": [ - "abc123" + "xyz789" ], "base_currency_code": "abc123", - "base_currency_symbol": "abc123", + "base_currency_symbol": "xyz789", "default_display_currency_code": "xyz789", "default_display_currency_symbol": "abc123", "exchange_rates": [ExchangeRate] @@ -2935,28 +2806,28 @@
    Response
    "created_at": "xyz789", "custom_attributes": [AttributeValueInterface], "date_of_birth": "xyz789", - "default_billing": "xyz789", - "default_shipping": "abc123", - "email": "abc123", + "default_billing": "abc123", + "default_shipping": "xyz789", + "email": "xyz789", "firstname": "abc123", "gender": 987, "gift_registries": [GiftRegistry], "gift_registry": GiftRegistry, "group": CustomerGroupStorefront, - "id": 4, + "id": "4", "is_subscribed": true, - "job_title": "xyz789", - "lastname": "abc123", + "job_title": "abc123", + "lastname": "xyz789", "middlename": "xyz789", "orders": CustomerOrders, - "prefix": "xyz789", + "prefix": "abc123", "purchase_order": PurchaseOrder, "purchase_order_approval_rule": PurchaseOrderApprovalRule, "purchase_order_approval_rule_metadata": PurchaseOrderApprovalRuleMetadata, "purchase_order_approval_rules": PurchaseOrderApprovalRules, "purchase_orders": PurchaseOrders, "purchase_orders_enabled": true, - "quote_enabled": true, + "quote_enabled": false, "requisition_lists": RequisitionLists, "return": Return, "returns": Returns, @@ -3080,7 +2951,7 @@
    Response
    ], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "xyz789", + "email": "abc123", "gift_message": GiftMessage, "gift_receipt_included": true, "gift_wrapping": GiftWrapping, @@ -3300,12 +3171,16 @@
    Query
    Variables
    -
    {"cartId": "xyz789"}
    +                  
    {"cartId": "abc123"}
     
    Response
    -
    {"data": {"customerSegments": [{"uid": 4}]}}
    +                  
    {
    +  "data": {
    +    "customerSegments": [{"uid": "4"}]
    +  }
    +}
     
    @@ -3487,9 +3362,9 @@
    Response
    "data": { "getPaymentOrder": { "id": "abc123", - "mp_order_id": "xyz789", + "mp_order_id": "abc123", "payment_source_details": PaymentSourceDetails, - "status": "xyz789" + "status": "abc123" } } } @@ -3691,7 +3566,7 @@
    Response
    "data": { "giftCardAccount": { "balance": Money, - "code": "xyz789", + "code": "abc123", "expiration_date": "xyz789" } } @@ -3786,14 +3661,14 @@
    Response
    {
       "data": {
         "giftRegistry": {
    -      "created_at": "abc123",
    +      "created_at": "xyz789",
           "dynamic_attributes": [
             GiftRegistryDynamicAttribute
           ],
           "event_name": "xyz789",
           "items": [GiftRegistryItemInterface],
    -      "message": "xyz789",
    -      "owner_name": "xyz789",
    +      "message": "abc123",
    +      "owner_name": "abc123",
           "privacy_settings": "PRIVATE",
           "registrants": [GiftRegistryRegistrant],
           "shipping_address": CustomerAddress,
    @@ -3878,10 +3753,10 @@ 
    Response
    "data": { "giftRegistryEmailSearch": [ { - "event_date": "abc123", + "event_date": "xyz789", "event_title": "abc123", - "gift_registry_uid": 4, - "location": "abc123", + "gift_registry_uid": "4", + "location": "xyz789", "name": "xyz789", "type": "xyz789" } @@ -3964,11 +3839,11 @@
    Response
    "giftRegistryIdSearch": [ { "event_date": "abc123", - "event_title": "xyz789", - "gift_registry_uid": 4, + "event_title": "abc123", + "gift_registry_uid": "4", "location": "abc123", "name": "xyz789", - "type": "xyz789" + "type": "abc123" } ] } @@ -4061,7 +3936,7 @@
    Query
    Variables
    {
       "firstName": "xyz789",
    -  "lastName": "abc123",
    +  "lastName": "xyz789",
       "giftRegistryTypeUid": 4
     }
     
    @@ -4073,11 +3948,11 @@
    Response
    "giftRegistryTypeSearch": [ { "event_date": "xyz789", - "event_title": "xyz789", - "gift_registry_uid": 4, + "event_title": "abc123", + "gift_registry_uid": "4", "location": "xyz789", - "name": "xyz789", - "type": "xyz789" + "name": "abc123", + "type": "abc123" } ] } @@ -4278,7 +4153,7 @@
    Response
    {
       "data": {
         "guestOrder": {
    -      "admin_assisted_order": 987,
    +      "admin_assisted_order": 123,
           "applied_coupons": [AppliedCoupon],
           "applied_gift_cards": [ApplyGiftCardToOrder],
           "available_actions": ["REORDER"],
    @@ -4290,7 +4165,7 @@ 
    Response
    "customer_info": OrderCustomerInfo, "email": "xyz789", "gift_message": GiftMessage, - "gift_receipt_included": true, + "gift_receipt_included": false, "gift_wrapping": GiftWrapping, "id": "4", "invoices": [Invoice], @@ -4298,16 +4173,16 @@
    Response
    "items": [OrderItemInterface], "items_eligible_for_return": [OrderItemInterface], "negotiable_quote": NegotiableQuote, - "number": "abc123", + "number": "xyz789", "order_date": "abc123", "order_status_change_date": "abc123", "payment_methods": [OrderPaymentMethod], - "printed_card_included": false, + "printed_card_included": true, "returns": Returns, "shipments": [OrderShipment], "shipping_address": OrderAddress, - "shipping_method": "xyz789", - "status": "abc123", + "shipping_method": "abc123", + "status": "xyz789", "token": "xyz789", "total": OrderTotal } @@ -4464,14 +4339,14 @@
    Response
    "gift_message": GiftMessage, "gift_receipt_included": true, "gift_wrapping": GiftWrapping, - "id": "4", + "id": 4, "invoices": [Invoice], - "is_virtual": false, + "is_virtual": true, "items": [OrderItemInterface], "items_eligible_for_return": [OrderItemInterface], "negotiable_quote": NegotiableQuote, - "number": "xyz789", - "order_date": "xyz789", + "number": "abc123", + "order_date": "abc123", "order_status_change_date": "abc123", "payment_methods": [OrderPaymentMethod], "printed_card_included": true, @@ -4479,7 +4354,7 @@
    Response
    "shipments": [OrderShipment], "shipping_address": OrderAddress, "shipping_method": "abc123", - "status": "abc123", + "status": "xyz789", "token": "abc123", "total": OrderTotal } @@ -4552,7 +4427,7 @@
    Variables
    Response
    -
    {"data": {"isCompanyAdminEmailAvailable": {"is_email_available": true}}}
    +                  
    {"data": {"isCompanyAdminEmailAvailable": {"is_email_available": false}}}
     
    @@ -4615,12 +4490,12 @@
    Query
    Variables
    -
    {"email": "abc123"}
    +                  
    {"email": "xyz789"}
     
    Response
    -
    {"data": {"isCompanyEmailAvailable": {"is_email_available": true}}}
    +                  
    {"data": {"isCompanyEmailAvailable": {"is_email_available": false}}}
     
    @@ -4756,7 +4631,7 @@
    Variables
    Response
    -
    {"data": {"isCompanyUserEmailAvailable": {"is_email_available": false}}}
    +                  
    {"data": {"isCompanyUserEmailAvailable": {"is_email_available": true}}}
     
    @@ -4976,87 +4851,6 @@
    Response
    } } } -
    - - - back to top - -
    -
    -
    - Queries -
    -

    - navigation -

    -
    -
    -
    -
    Description
    -

    Retrieves the navigation tree for a given product family.

    -
    -
    -
    -
    -
    -
    -
    Response
    -

    Returns [CategoryNavigationView] -

    -
    -
    -
    Arguments
    - - - - - - - - - - - - - -
    NameDescription
    - family - String! - The product family to retrieve the navigation tree for. For example, clothing, electronics or books
    -
    -
    -
    -

    Example

    -
    -
    Query
    -
    query navigation($family: String!) {
    -  navigation(family: $family) {
    -    slug
    -    name
    -    children {
    -      ...CategoryNavigationViewFragment
    -    }
    -  }
    -}
    -
    -
    -
    -
    Variables
    -
    {"family": "abc123"}
    -
    -
    -
    -
    Response
    -
    {
    -  "data": {
    -    "navigation": [
    -      {
    -        "slug": "xyz789",
    -        "name": "abc123",
    -        "children": [CategoryNavigationView]
    -      }
    -    ]
    -  }
    -}
     
    @@ -5179,25 +4973,25 @@
    Response
    "comments": [NegotiableQuoteComment], "created_at": "xyz789", "custom_attributes": [CustomAttribute], - "email": "xyz789", - "expiration_date": "xyz789", + "email": "abc123", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], - "is_virtual": false, + "is_virtual": true, "items": [CartItemInterface], - "name": "abc123", + "name": "xyz789", "order": CustomerOrder, "prices": CartPrices, - "sales_rep_name": "abc123", + "sales_rep_name": "xyz789", "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ NegotiableQuoteShippingAddress ], "status": "SUBMITTED", - "template_id": "4", - "template_name": "xyz789", - "total_quantity": 987.65, - "uid": "4", - "updated_at": "xyz789" + "template_id": 4, + "template_name": "abc123", + "total_quantity": 123.45, + "uid": 4, + "updated_at": "abc123" } } } @@ -5316,12 +5110,12 @@
    Response
    "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": true, + "is_min_max_qty_used": false, "is_virtual": false, "items": [CartItemInterface], - "max_order_commitment": 987, + "max_order_commitment": 123, "min_order_commitment": 987, - "name": "abc123", + "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ @@ -5331,11 +5125,11 @@
    Response
    "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "xyz789", + "status": "abc123", "template_id": "4", "total_quantity": 123.45, - "uid": "4", - "updated_at": "abc123" + "uid": 4, + "updated_at": "xyz789" } } } @@ -5453,7 +5247,7 @@
    Response
    "items": [NegotiableQuoteTemplateGridItem], "page_info": SearchResultPageInfo, "sort_fields": SortFields, - "total_count": 123 + "total_count": 987 } } } @@ -5846,7 +5640,7 @@
    Response
    "page_info": SearchResultPageInfo, "related_terms": ["abc123"], "suggestions": ["xyz789"], - "total_count": 123, + "total_count": 987, "warnings": [ProductSearchWarning] } } @@ -5935,9 +5729,6 @@
    Query
    links { ...ProductViewLinkFragment } - categories { - ...CategoryProductViewFragment - } queryType visibility } @@ -5946,7 +5737,7 @@
    Query
    Variables
    -
    {"skus": ["xyz789"]}
    +                  
    {"skus": ["abc123"]}
     
    @@ -5959,8 +5750,8 @@
    Response
    "inStock": true, "lowStock": false, "attributes": [ProductViewAttribute], - "description": "abc123", - "id": "4", + "description": "xyz789", + "id": 4, "images": [ProductViewImage], "videos": [ProductViewVideo], "lastModifiedAt": "2007-12-03T10:15:30Z", @@ -5968,16 +5759,15 @@
    Response
    "metaKeyword": "abc123", "metaTitle": "xyz789", "name": "xyz789", - "shortDescription": "xyz789", + "shortDescription": "abc123", "inputOptions": [ProductViewInputOption], "sku": "abc123", - "externalId": "xyz789", + "externalId": "abc123", "url": "abc123", "urlKey": "abc123", "links": [ProductViewLink], - "categories": [CategoryProductView], - "queryType": "abc123", - "visibility": "xyz789" + "queryType": "xyz789", + "visibility": "abc123" } ] } @@ -6129,7 +5919,7 @@
    Response
    { "configurations": ReCaptchaConfiguration, "form_type": "PLACE_ORDER", - "is_enabled": true + "is_enabled": false } ] } @@ -6187,13 +5977,13 @@
    Response
    "data": { "recaptchaV3Config": { "badge_position": "xyz789", - "failure_message": "xyz789", + "failure_message": "abc123", "forms": ["PLACE_ORDER"], "is_enabled": true, "language_code": "xyz789", - "minimum_score": 123.45, - "theme": "abc123", - "website_key": "xyz789" + "minimum_score": 987.65, + "theme": "xyz789", + "website_key": "abc123" } } } @@ -6322,9 +6112,9 @@
    Query
    Variables
    {
    -  "cartSkus": ["xyz789"],
    +  "cartSkus": ["abc123"],
       "category": "abc123",
    -  "currentSku": "xyz789",
    +  "currentSku": "abc123",
       "currentProduct": CurrentProductInput,
       "pageType": "CMS",
       "userPurchaseHistory": [PurchaseHistory],
    @@ -6339,127 +6129,7 @@ 
    Response
    "data": { "recommendations": { "results": [RecommendationUnit], - "totalResults": 123 - } - } -} -
    -
    -
    - back to top - -
    -
    -
    - Queries -
    -

    - recommendationsByUnitIds -

    -
    -
    -
    -
    Response
    -

    Returns a Recommendations -

    -
    -
    -
    Arguments
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescription
    - unitIds - [String!]! - List unit IDs of preconfigured units
    - currentSku - String - SKU of the product currently being viewed on PDP
    - currentProduct - CurrentProductInput - Current product context from PDP (SKU, price, category, etc.)
    - userPurchaseHistory - [PurchaseHistory] - User purchase history with timestamp
    - userViewHistory - [ViewHistory] - User view history with timestamp
    - cartSkus - [String] - SKUs of products in the cart
    -
    -
    -
    -

    Example

    -
    -
    Query
    -
    query recommendationsByUnitIds(
    -  $unitIds: [String!]!,
    -  $currentSku: String,
    -  $currentProduct: CurrentProductInput,
    -  $userPurchaseHistory: [PurchaseHistory],
    -  $userViewHistory: [ViewHistory],
    -  $cartSkus: [String]
    -) {
    -  recommendationsByUnitIds(
    -    unitIds: $unitIds,
    -    currentSku: $currentSku,
    -    currentProduct: $currentProduct,
    -    userPurchaseHistory: $userPurchaseHistory,
    -    userViewHistory: $userViewHistory,
    -    cartSkus: $cartSkus
    -  ) {
    -    results {
    -      ...RecommendationUnitFragment
    -    }
    -    totalResults
    -  }
    -}
    -
    -
    -
    -
    Variables
    -
    {
    -  "unitIds": ["abc123"],
    -  "currentSku": "xyz789",
    -  "currentProduct": CurrentProductInput,
    -  "userPurchaseHistory": [PurchaseHistory],
    -  "userViewHistory": [ViewHistory],
    -  "cartSkus": ["abc123"]
    -}
    -
    -
    -
    -
    Response
    -
    {
    -  "data": {
    -    "recommendationsByUnitIds": {
    -      "results": [RecommendationUnit],
    -      "totalResults": 123
    +      "totalResults": 987
         }
       }
     }
    @@ -6559,9 +6229,6 @@ 
    Query
    links { ...ProductViewLinkFragment } - categories { - ...CategoryProductViewFragment - } queryType visibility } @@ -6571,8 +6238,8 @@
    Query
    Variables
    {
    -  "optionIds": ["xyz789"],
    -  "sku": "abc123"
    +  "optionIds": ["abc123"],
    +  "sku": "xyz789"
     }
     
    @@ -6581,143 +6248,28 @@
    Response
    {
       "data": {
         "refineProduct": {
    -      "addToCartAllowed": false,
    -      "inStock": true,
    -      "lowStock": false,
    +      "addToCartAllowed": true,
    +      "inStock": false,
    +      "lowStock": true,
           "attributes": [ProductViewAttribute],
           "description": "xyz789",
           "id": "4",
           "images": [ProductViewImage],
           "videos": [ProductViewVideo],
           "lastModifiedAt": "2007-12-03T10:15:30Z",
    -      "metaDescription": "abc123",
    -      "metaKeyword": "abc123",
    -      "metaTitle": "abc123",
    -      "name": "abc123",
    +      "metaDescription": "xyz789",
    +      "metaKeyword": "xyz789",
    +      "metaTitle": "xyz789",
    +      "name": "xyz789",
           "shortDescription": "abc123",
           "inputOptions": [ProductViewInputOption],
           "sku": "xyz789",
           "externalId": "xyz789",
    -      "url": "xyz789",
    +      "url": "abc123",
           "urlKey": "abc123",
           "links": [ProductViewLink],
    -      "categories": [CategoryProductView],
           "queryType": "xyz789",
    -      "visibility": "abc123"
    -    }
    -  }
    -}
    -
    -
    -
    - back to top -
    -
    -
    -
    - Queries -
    -

    - searchCategory -

    -
    -
    -
    -
    Description
    -

    Search for categories by name with optional filtering and pagination. Results are returned in alphabetical order by category name.

    -
    -
    -
    -
    -
    -
    -
    Response
    -

    Returns a SearchCategoryResultPage -

    -
    -
    -
    Arguments
    - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescription
    - searchTerm - String! - The search term to match against category names.
    - family - String - Optional product family filter to limit search results. For example, clothing, electronics or books.
    - pageSize - Int - The number of results to return per page (default: 20). Default = 20
    - currentPage - Int - The page number to retrieve (1-based indexing, default: 1). Default = 1
    -
    -
    -
    -

    Example

    -
    -
    Query
    -
    query searchCategory(
    -  $searchTerm: String!,
    -  $family: String,
    -  $pageSize: Int,
    -  $currentPage: Int
    -) {
    -  searchCategory(
    -    searchTerm: $searchTerm,
    -    family: $family,
    -    pageSize: $pageSize,
    -    currentPage: $currentPage
    -  ) {
    -    items {
    -      ...CategoryTreeViewFragment
    -    }
    -    totalCount
    -    pageInfo {
    -      ...PageInfoFragment
    -    }
    -  }
    -}
    -
    -
    -
    -
    Variables
    -
    {
    -  "searchTerm": "xyz789",
    -  "family": "xyz789",
    -  "pageSize": 20,
    -  "currentPage": 1
    -}
    -
    -
    -
    -
    Response
    -
    {
    -  "data": {
    -    "searchCategory": {
    -      "items": [CategoryTreeView],
    -      "totalCount": 987,
    -      "pageInfo": PageInfo
    +      "visibility": "xyz789"
         }
       }
     }
    @@ -6794,7 +6346,7 @@ 
    Response
    "data": { "sharedRequisitionList": { "requisition_list": RequisitionList, - "sender_name": "abc123" + "sender_name": "xyz789" } } } @@ -6992,111 +6544,111 @@
    Response
    {
       "data": {
         "storeConfig": {
    -      "allow_company_registration": false,
    -      "allow_gift_receipt": "xyz789",
    -      "allow_gift_wrapping_on_order": "xyz789",
    +      "allow_company_registration": true,
    +      "allow_gift_receipt": "abc123",
    +      "allow_gift_wrapping_on_order": "abc123",
           "allow_gift_wrapping_on_order_items": "xyz789",
           "allow_items": "xyz789",
    -      "allow_order": "xyz789",
    -      "allow_printed_card": "xyz789",
    -      "autocomplete_on_storefront": true,
    -      "base_currency_code": "xyz789",
    +      "allow_order": "abc123",
    +      "allow_printed_card": "abc123",
    +      "autocomplete_on_storefront": false,
    +      "base_currency_code": "abc123",
           "base_link_url": "abc123",
           "base_media_url": "abc123",
    -      "base_static_url": "abc123",
    +      "base_static_url": "xyz789",
           "base_url": "xyz789",
           "cart_expires_in_days": 123,
           "cart_gift_wrapping": "abc123",
    -      "cart_merge_preference": "abc123",
    +      "cart_merge_preference": "xyz789",
           "cart_printed_card": "xyz789",
    -      "cart_summary_display_quantity": 987,
    -      "catalog_default_sort_by": "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": true,
    -      "check_money_order_make_check_payable_to": "abc123",
    -      "check_money_order_max_order_total": "xyz789",
    +      "check_money_order_make_check_payable_to": "xyz789",
    +      "check_money_order_max_order_total": "abc123",
           "check_money_order_min_order_total": "xyz789",
    -      "check_money_order_new_order_status": "xyz789",
    +      "check_money_order_new_order_status": "abc123",
           "check_money_order_payment_from_specific_countries": "xyz789",
    -      "check_money_order_send_check_to": "xyz789",
    -      "check_money_order_sort_order": 123,
    -      "check_money_order_title": "abc123",
    -      "company_credit_enabled": false,
    -      "company_enabled": false,
    +      "check_money_order_send_check_to": "abc123",
    +      "check_money_order_sort_order": 987,
    +      "check_money_order_title": "xyz789",
    +      "company_credit_enabled": true,
    +      "company_enabled": true,
           "configurable_product_image": "ITSELF",
    -      "configurable_thumbnail_source": "abc123",
    -      "contact_enabled": false,
    +      "configurable_thumbnail_source": "xyz789",
    +      "contact_enabled": true,
           "countries_with_required_region": "xyz789",
    -      "create_account_confirmation": false,
    +      "create_account_confirmation": true,
           "customer_access_token_lifetime": 987.65,
           "default_country": "abc123",
           "default_display_currency_code": "xyz789",
    -      "display_product_prices_in_catalog": 987,
    +      "display_product_prices_in_catalog": 123,
           "display_shipping_prices": 123,
           "display_state_if_optional": true,
           "enable_multiple_wishlists": "abc123",
           "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": 123,
    +      "fixed_product_taxes_display_prices_in_emails": 123,
    +      "fixed_product_taxes_display_prices_in_product_lists": 123,
    +      "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": false,
    +      "fixed_product_taxes_enable": true,
    +      "fixed_product_taxes_include_fpt_in_subtotal": true,
           "graphql_share_customer_group": false,
           "grid_per_page": 123,
           "grid_per_page_values": "xyz789",
           "grouped_product_image": "ITSELF",
           "is_checkout_agreements_enabled": true,
    -      "is_default_store": true,
    +      "is_default_store": false,
           "is_default_store_group": false,
           "is_guest_checkout_enabled": false,
           "is_negotiable_quote_active": false,
    -      "is_one_page_checkout_enabled": true,
    -      "is_requisition_list_active": "xyz789",
    +      "is_one_page_checkout_enabled": false,
    +      "is_requisition_list_active": "abc123",
           "list_mode": "xyz789",
    -      "list_per_page": 987,
    -      "list_per_page_values": "xyz789",
    +      "list_per_page": 123,
    +      "list_per_page_values": "abc123",
           "locale": "xyz789",
           "magento_reward_general_is_enabled": "xyz789",
    -      "magento_reward_general_is_enabled_on_front": "xyz789",
    -      "magento_reward_general_min_points_balance": "abc123",
    +      "magento_reward_general_is_enabled_on_front": "abc123",
    +      "magento_reward_general_min_points_balance": "xyz789",
           "magento_reward_general_publish_history": "xyz789",
           "magento_reward_points_invitation_customer": "abc123",
           "magento_reward_points_invitation_customer_limit": "abc123",
    -      "magento_reward_points_invitation_order": "abc123",
    +      "magento_reward_points_invitation_order": "xyz789",
           "magento_reward_points_invitation_order_limit": "abc123",
    -      "magento_reward_points_newsletter": "xyz789",
    -      "magento_reward_points_order": "abc123",
    -      "magento_reward_points_register": "abc123",
    +      "magento_reward_points_newsletter": "abc123",
    +      "magento_reward_points_order": "xyz789",
    +      "magento_reward_points_register": "xyz789",
           "magento_reward_points_review": "abc123",
           "magento_reward_points_review_limit": "abc123",
           "magento_wishlist_general_is_enabled": "abc123",
    -      "max_items_in_order_summary": 987,
    -      "maximum_number_of_wishlists": "xyz789",
    -      "minicart_display": true,
    -      "minicart_max_items": 123,
    +      "max_items_in_order_summary": 123,
    +      "maximum_number_of_wishlists": "abc123",
    +      "minicart_display": false,
    +      "minicart_max_items": 987,
           "minimum_password_length": "xyz789",
    -      "newsletter_enabled": false,
    -      "optional_zip_countries": "xyz789",
    -      "order_cancellation_enabled": true,
    +      "newsletter_enabled": true,
    +      "optional_zip_countries": "abc123",
    +      "order_cancellation_enabled": false,
           "order_cancellation_reasons": [CancellationReason],
    -      "orders_invoices_credit_memos_display_full_summary": false,
    +      "orders_invoices_credit_memos_display_full_summary": true,
           "orders_invoices_credit_memos_display_grandtotal": true,
           "orders_invoices_credit_memos_display_price": 987,
           "orders_invoices_credit_memos_display_shipping_amount": 987,
           "orders_invoices_credit_memos_display_subtotal": 123,
    -      "orders_invoices_credit_memos_display_zero_tax": true,
    +      "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": "xyz789",
           "quickorder_active": false,
    -      "quote_minimum_amount": 987.65,
    -      "quote_minimum_amount_message": "abc123",
    +      "quote_minimum_amount": 123.45,
    +      "quote_minimum_amount_message": "xyz789",
           "required_character_classes_number": "xyz789",
           "requisition_list_share_link_validity_days": 123,
    -      "requisition_list_share_max_recipients": 123,
    +      "requisition_list_share_max_recipients": 987,
           "requisition_list_share_storefront_path": "xyz789",
           "requisition_list_sharing_enabled": true,
           "returns_enabled": "abc123",
    @@ -7104,39 +6656,39 @@ 
    Response
    "sales_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", "sales_gift_wrapping": "abc123", "sales_printed_card": "xyz789", - "secure_base_link_url": "xyz789", - "secure_base_media_url": "xyz789", + "secure_base_link_url": "abc123", + "secure_base_media_url": "abc123", "secure_base_static_url": "xyz789", - "secure_base_url": "xyz789", + "secure_base_url": "abc123", "share_active_segments": false, - "share_applied_cart_rule": true, + "share_applied_cart_rule": false, "shopping_assistance_checkbox_title": "xyz789", - "shopping_assistance_checkbox_tooltip": "abc123", + "shopping_assistance_checkbox_tooltip": "xyz789", "shopping_assistance_enabled": true, "shopping_cart_display_full_summary": false, - "shopping_cart_display_grand_total": true, + "shopping_cart_display_grand_total": false, "shopping_cart_display_price": 123, - "shopping_cart_display_shipping": 987, - "shopping_cart_display_subtotal": 987, + "shopping_cart_display_shipping": 123, + "shopping_cart_display_subtotal": 123, "shopping_cart_display_tax_gift_wrapping": "DISPLAY_EXCLUDING_TAX", "shopping_cart_display_zero_tax": true, "store_code": "4", - "store_group_code": 4, - "store_group_name": "xyz789", + "store_group_code": "4", + "store_group_name": "abc123", "store_name": "xyz789", - "store_sort_order": 987, + "store_sort_order": 123, "timezone": "abc123", - "title_separator": "abc123", + "title_separator": "xyz789", "use_store_in_url": true, "website_code": 4, - "website_name": "xyz789", - "weight_unit": "xyz789", - "zero_subtotal_enable_for_specific_countries": false, + "website_name": "abc123", + "weight_unit": "abc123", + "zero_subtotal_enable_for_specific_countries": true, "zero_subtotal_enabled": false, "zero_subtotal_new_order_status": "abc123", "zero_subtotal_payment_action": "abc123", "zero_subtotal_payment_from_specific_countries": "abc123", - "zero_subtotal_sort_order": 987, + "zero_subtotal_sort_order": 123, "zero_subtotal_title": "abc123" } } @@ -7227,9 +6779,9 @@
    Query
    Variables
    {
       "sku": "abc123",
    -  "optionIds": ["xyz789"],
    -  "pageSize": 987,
    -  "cursor": "xyz789"
    +  "optionIds": ["abc123"],
    +  "pageSize": 123,
    +  "cursor": "abc123"
     }
     
    @@ -7239,7 +6791,7 @@
    Response
    "data": { "variants": { "variants": [ProductViewVariant], - "cursor": "abc123" + "cursor": "xyz789" } } } @@ -7423,26 +6975,26 @@
    Response
    "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": true, - "is_virtual": true, + "is_min_max_qty_used": false, + "is_virtual": false, "items": [CartItemInterface], "max_order_commitment": 987, "min_order_commitment": 123, - "name": "abc123", + "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "xyz789", + "status": "abc123", "template_id": "4", - "total_quantity": 123.45, - "uid": "4", - "updated_at": "abc123" + "total_quantity": 987.65, + "uid": 4, + "updated_at": "xyz789" } } } @@ -7595,7 +7147,7 @@
    Query
    Variables
    {
    -  "giftRegistryUid": 4,
    +  "giftRegistryUid": "4",
       "registrants": [AddGiftRegistryRegistrantInput]
     }
     
    @@ -7688,7 +7240,7 @@
    Query
    Variables
    {
    -  "cartId": "xyz789",
    +  "cartId": "abc123",
       "cartItems": [CartItemInput]
     }
     
    @@ -7782,7 +7334,7 @@
    Response
    "attributes": [ComparableAttribute], "item_count": 123, "items": [ComparableItem], - "uid": 4 + "uid": "4" } } } @@ -7941,7 +7493,7 @@
    Query
    Variables
    {
    -  "requisitionListUid": 4,
    +  "requisitionListUid": "4",
       "requisitionListItems": [RequisitionListItemsInput]
     }
     
    @@ -8033,7 +7585,10 @@
    Query
    Variables
    -
    {"wishlistId": 4, "wishlistItems": [WishlistItemInput]}
    +                  
    {
    +  "wishlistId": "4",
    +  "wishlistItems": [WishlistItemInput]
    +}
     
    @@ -8281,10 +7836,7 @@
    Query
    Variables
    -
    {
    -  "requisitionListUid": "4",
    -  "requisitionListItemUids": [4]
    -}
    +                  
    {"requisitionListUid": 4, "requisitionListItemUids": [4]}
     
    @@ -8296,7 +7848,7 @@
    Response
    AddRequisitionListItemToCartUserError ], "cart": Cart, - "status": true + "status": false } } } @@ -8527,7 +8079,7 @@
    Query
    Variables
    -
    {"wishlistId": "4", "wishlistItemIds": [4]}
    +                  
    {"wishlistId": 4, "wishlistItemIds": [4]}
     
    @@ -8538,7 +8090,7 @@
    Response
    "add_wishlist_items_to_cart_user_errors": [ WishlistCartUserInputError ], - "status": false, + "status": true, "wishlist": Wishlist } } @@ -9253,7 +8805,7 @@
    Response
    "custom_attributes": [CustomAttribute], "email": "abc123", "gift_message": GiftMessage, - "gift_receipt_included": true, + "gift_receipt_included": false, "gift_wrapping": GiftWrapping, "id": 4, "is_virtual": true, @@ -9377,16 +8929,16 @@
    Response
    "cancelNegotiableQuoteTemplate": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", - "expiration_date": "abc123", + "created_at": "xyz789", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": false, + "is_min_max_qty_used": true, "is_virtual": false, "items": [CartItemInterface], - "max_order_commitment": 123, + "max_order_commitment": 987, "min_order_commitment": 123, - "name": "abc123", + "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ @@ -9398,9 +8950,9 @@
    Response
    ], "status": "xyz789", "template_id": 4, - "total_quantity": 123.45, + "total_quantity": 987.65, "uid": 4, - "updated_at": "abc123" + "updated_at": "xyz789" } } } @@ -9480,7 +9032,7 @@
    Response
    {
       "data": {
         "cancelOrder": {
    -      "error": "abc123",
    +      "error": "xyz789",
           "errorV2": CancelOrderError,
           "order": CustomerOrder
         }
    @@ -9740,7 +9292,7 @@ 
    Query
    Variables
    {
       "currentPassword": "abc123",
    -  "newPassword": "xyz789"
    +  "newPassword": "abc123"
     }
     
    @@ -9752,17 +9304,17 @@
    Response
    "addresses": [CustomerAddress], "addressesV2": CustomerAddresses, "admin_assistance_actions": AdminAssistanceActions, - "allow_remote_shopping_assistance": false, + "allow_remote_shopping_assistance": true, "companies": UserCompaniesOutput, "company_hierarchy": [CompanyHierarchy], "compare_list": CompareList, "confirmation_status": "ACCOUNT_CONFIRMED", "created_at": "xyz789", "custom_attributes": [AttributeValueInterface], - "date_of_birth": "abc123", - "default_billing": "abc123", - "default_shipping": "xyz789", - "email": "xyz789", + "date_of_birth": "xyz789", + "default_billing": "xyz789", + "default_shipping": "abc123", + "email": "abc123", "firstname": "xyz789", "gender": 123, "gift_registries": [GiftRegistry], @@ -9770,18 +9322,18 @@
    Response
    "group": CustomerGroupStorefront, "id": "4", "is_subscribed": true, - "job_title": "abc123", - "lastname": "xyz789", + "job_title": "xyz789", + "lastname": "abc123", "middlename": "xyz789", "orders": CustomerOrders, - "prefix": "xyz789", + "prefix": "abc123", "purchase_order": PurchaseOrder, "purchase_order_approval_rule": PurchaseOrderApprovalRule, "purchase_order_approval_rule_metadata": PurchaseOrderApprovalRuleMetadata, "purchase_order_approval_rules": PurchaseOrderApprovalRules, "purchase_orders": PurchaseOrders, "purchase_orders_enabled": true, - "quote_enabled": false, + "quote_enabled": true, "requisition_lists": RequisitionLists, "return": Return, "returns": Returns, @@ -9790,9 +9342,9 @@
    Response
    "segments": [CustomerSegmentStorefront], "status": "ACTIVE", "store_credit": CustomerStoreCredit, - "structure_id": "4", + "structure_id": 4, "suffix": "xyz789", - "taxvat": "abc123", + "taxvat": "xyz789", "team": CompanyTeam, "telephone": "xyz789", "wishlist_v2": Wishlist, @@ -10196,7 +9748,7 @@
    Response
    {
       "data": {
         "confirmCancelOrder": {
    -      "error": "abc123",
    +      "error": "xyz789",
           "errorV2": CancelOrderError,
           "order": CustomerOrder
         }
    @@ -10607,7 +10159,7 @@ 
    Query
    Variables
    {
    -  "sourceWishlistUid": 4,
    +  "sourceWishlistUid": "4",
       "destinationWishlistUid": "4",
       "wishlistItems": [WishlistItemCopyInput]
     }
    @@ -10982,9 +10534,9 @@ 
    Response
    "data": { "createCompareList": { "attributes": [ComparableAttribute], - "item_count": 987, + "item_count": 123, "items": [ComparableItem], - "uid": 4 + "uid": "4" } } } @@ -11085,25 +10637,25 @@
    Response
    "data": { "createCustomerAddress": { "city": "abc123", - "company": "xyz789", + "company": "abc123", "country_code": "AF", "custom_attributesV2": [AttributeValueInterface], - "default_billing": true, + "default_billing": false, "default_shipping": false, "extension_attributes": [CustomerAddressAttribute], - "fax": "xyz789", + "fax": "abc123", "firstname": "xyz789", "id": 123, "lastname": "abc123", "middlename": "xyz789", "postcode": "xyz789", - "prefix": "abc123", + "prefix": "xyz789", "region": CustomerAddressRegion, - "region_id": 123, + "region_id": 987, "street": ["xyz789"], "suffix": "abc123", "telephone": "abc123", - "uid": 4, + "uid": "4", "vat_id": "xyz789" } } @@ -11394,10 +10946,10 @@
    Response
    "data": { "createPaymentOrder": { "amount": 123.45, - "currency_code": "abc123", - "id": "xyz789", + "currency_code": "xyz789", + "id": "abc123", "mp_order_id": "xyz789", - "status": "abc123" + "status": "xyz789" } } } @@ -11489,13 +11041,13 @@
    Response
    "applies_to_roles": [CompanyRole], "approver_roles": [CompanyRole], "condition": PurchaseOrderApprovalRuleConditionInterface, - "created_at": "abc123", + "created_at": "xyz789", "created_by": "xyz789", "description": "xyz789", "name": "xyz789", "status": "ENABLED", - "uid": "4", - "updated_at": "abc123" + "uid": 4, + "updated_at": "xyz789" } } } @@ -11861,7 +11413,7 @@
    Variables
    Response
    -
    {"data": {"deleteCompanyRole": {"success": false}}}
    +                  
    {"data": {"deleteCompanyRole": {"success": true}}}
     
    @@ -11924,7 +11476,7 @@
    Query
    Variables
    -
    {"id": "4"}
    +                  
    {"id": 4}
     
    @@ -11997,7 +11549,7 @@
    Variables
    Response
    -
    {"data": {"deleteCompanyUserV2": {"success": true}}}
    +                  
    {"data": {"deleteCompanyUserV2": {"success": false}}}
     
    @@ -12064,7 +11616,7 @@
    Variables
    Response
    -
    {"data": {"deleteCompareList": {"result": true}}}
    +                  
    {"data": {"deleteCompareList": {"result": false}}}
     
    @@ -12105,7 +11657,7 @@
    Query
    Response
    -
    {"data": {"deleteCustomer": true}}
    +                  
    {"data": {"deleteCustomer": false}}
     
    @@ -12172,7 +11724,7 @@
    Query
    Variables
    -
    {"id": 123}
    +                  
    {"id": 987}
     
    @@ -12237,12 +11789,12 @@
    Query
    Variables
    -
    {"uid": "4"}
    +                  
    {"uid": 4}
     
    Response
    -
    {"data": {"deleteCustomerAddressV2": true}}
    +                  
    {"data": {"deleteCustomerAddressV2": false}}
     
    @@ -12307,7 +11859,7 @@
    Variables
    Response
    -
    {"data": {"deleteNegotiableQuoteTemplate": true}}
    +                  
    {"data": {"deleteNegotiableQuoteTemplate": false}}
     
    @@ -12460,7 +12012,7 @@
    Query
    Variables
    -
    {"public_hash": "xyz789"}
    +                  
    {"public_hash": "abc123"}
     
    @@ -12469,7 +12021,7 @@
    Response
    "data": { "deletePaymentToken": { "customerPaymentTokens": CustomerPaymentTokens, - "result": true + "result": false } } } @@ -12622,7 +12174,7 @@
    Response
    "data": { "deleteRequisitionList": { "requisition_lists": RequisitionLists, - "status": false + "status": true } } } @@ -12780,7 +12332,7 @@
    Query
    Variables
    -
    {"wishlistId": "4"}
    +                  
    {"wishlistId": 4}
     
    @@ -12788,7 +12340,7 @@
    Response
    {
       "data": {
         "deleteWishlist": {
    -      "status": false,
    +      "status": true,
           "wishlists": [Wishlist]
         }
       }
    @@ -12955,10 +12507,10 @@ 
    Response
    { "additional_data": [ShippingAdditionalData], "amount": Money, - "available": true, + "available": false, "carrier_code": "xyz789", "carrier_title": "xyz789", - "error_message": "abc123", + "error_message": "xyz789", "method_code": "abc123", "method_title": "xyz789", "price_excl_tax": Money, @@ -13109,7 +12661,7 @@
    Response
    "data": { "exchangeExternalCustomerToken": { "customer": Customer, - "token": "abc123" + "token": "xyz789" } } } @@ -13265,7 +12817,7 @@
    Response
    {
       "data": {
         "finishUpload": {
    -      "key": "xyz789",
    +      "key": "abc123",
           "message": "xyz789",
           "success": false
         }
    @@ -13346,7 +12898,7 @@ 
    Query
    Variables
    {
       "email": "xyz789",
    -  "password": "xyz789"
    +  "password": "abc123"
     }
     
    @@ -13498,7 +13050,13 @@
    Variables
    Response
    -
    {"data": {"generateNegotiableQuoteFromTemplate": {"negotiable_quote_uid": 4}}}
    +                  
    {
    +  "data": {
    +    "generateNegotiableQuoteFromTemplate": {
    +      "negotiable_quote_uid": "4"
    +    }
    +  }
    +}
     
    @@ -13565,7 +13123,7 @@
    Query
    Variables
    -
    {"token": "abc123"}
    +                  
    {"token": "xyz789"}
     
    @@ -13642,9 +13200,9 @@
    Response
    {
       "data": {
         "initiateUpload": {
    -      "expires_at": "abc123",
    -      "key": "abc123",
    -      "upload_url": "xyz789"
    +      "expires_at": "xyz789",
    +      "key": "xyz789",
    +      "upload_url": "abc123"
         }
       }
     }
    @@ -13772,8 +13330,8 @@ 
    Query
    Variables
    {
    -  "source_cart_id": "abc123",
    -  "destination_cart_id": "abc123"
    +  "source_cart_id": "xyz789",
    +  "destination_cart_id": "xyz789"
     }
     
    @@ -13792,19 +13350,19 @@
    Response
    ], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "xyz789", + "email": "abc123", "gift_message": GiftMessage, - "gift_receipt_included": true, + "gift_receipt_included": false, "gift_wrapping": GiftWrapping, "id": 4, - "is_virtual": false, + "is_virtual": true, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": true, + "printed_card_included": false, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], - "total_quantity": 987.65 + "total_quantity": 123.45 } } } @@ -13887,7 +13445,10 @@
    Query
    Variables
    -
    {"cartUid": 4, "giftRegistryUid": 4}
    +                  
    {
    +  "cartUid": "4",
    +  "giftRegistryUid": "4"
    +}
     
    @@ -13988,8 +13549,8 @@
    Query
    Variables
    {
    -  "sourceRequisitionListUid": "4",
    -  "destinationRequisitionListUid": 4,
    +  "sourceRequisitionListUid": 4,
    +  "destinationRequisitionListUid": "4",
       "requisitionListItem": MoveItemsBetweenRequisitionListsInput
     }
     
    @@ -14170,7 +13731,7 @@
    Query
    Variables
    {
       "sourceWishlistUid": 4,
    -  "destinationWishlistUid": "4",
    +  "destinationWishlistUid": 4,
       "wishlistItems": [WishlistItemMoveInput]
     }
     
    @@ -14296,14 +13857,14 @@
    Response
    "openNegotiableQuoteTemplate": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "xyz789", + "created_at": "abc123", "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": true, + "is_min_max_qty_used": false, "is_virtual": true, "items": [CartItemInterface], - "max_order_commitment": 123, + "max_order_commitment": 987, "min_order_commitment": 123, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], @@ -14311,15 +13872,15 @@
    Response
    "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "abc123", + "sales_rep_name": "xyz789", "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", + "status": "xyz789", "template_id": 4, "total_quantity": 987.65, - "uid": "4", - "updated_at": "abc123" + "uid": 4, + "updated_at": "xyz789" } } } @@ -15134,7 +14695,7 @@
    Query
    Variables
    -
    {"giftRegistryUid": 4}
    +                  
    {"giftRegistryUid": "4"}
     
    @@ -15576,7 +15137,7 @@
    Response
    "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": true, - "is_virtual": false, + "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 987, "min_order_commitment": 987, @@ -15590,11 +15151,11 @@
    Response
    "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "xyz789", - "template_id": 4, - "total_quantity": 123.45, - "uid": "4", - "updated_at": "abc123" + "status": "abc123", + "template_id": "4", + "total_quantity": 987.65, + "uid": 4, + "updated_at": "xyz789" } } } @@ -15675,9 +15236,9 @@
    Response
    "data": { "removeProductsFromCompareList": { "attributes": [ComparableAttribute], - "item_count": 123, + "item_count": 987, "items": [ComparableItem], - "uid": "4" + "uid": 4 } } } @@ -15759,10 +15320,7 @@
    Query
    Variables
    -
    {
    -  "wishlistId": "4",
    -  "wishlistItemsIds": ["4"]
    -}
    +                  
    {"wishlistId": 4, "wishlistItemsIds": ["4"]}
     
    @@ -15908,7 +15466,7 @@
    Query
    Variables
    -
    {"cartId": "4"}
    +                  
    {"cartId": 4}
     
    @@ -16123,7 +15681,7 @@
    Query
    Variables
    -
    {"orderNumber": "abc123"}
    +                  
    {"orderNumber": "xyz789"}
     
    @@ -16212,7 +15770,7 @@
    Response
    {
       "data": {
         "requestGuestOrderCancel": {
    -      "error": "abc123",
    +      "error": "xyz789",
           "errorV2": CancelOrderError,
           "order": CustomerOrder
         }
    @@ -16472,14 +16030,14 @@ 
    Response
    "requestNegotiableQuoteTemplateFromQuote": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", - "expiration_date": "abc123", + "created_at": "xyz789", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": true, - "is_virtual": true, + "is_min_max_qty_used": false, + "is_virtual": false, "items": [CartItemInterface], - "max_order_commitment": 987, + "max_order_commitment": 123, "min_order_commitment": 123, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], @@ -16487,12 +16045,12 @@
    Response
    "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "abc123", + "sales_rep_name": "xyz789", "shipping_addresses": [ NegotiableQuoteShippingAddress ], "status": "xyz789", - "template_id": 4, + "template_id": "4", "total_quantity": 123.45, "uid": "4", "updated_at": "xyz789" @@ -16563,7 +16121,7 @@
    Variables
    Response
    -
    {"data": {"requestPasswordResetEmail": true}}
    +                  
    {"data": {"requestPasswordResetEmail": false}}
     
    @@ -16702,12 +16260,12 @@
    Query
    Variables
    -
    {"email": "xyz789"}
    +                  
    {"email": "abc123"}
     
    Response
    -
    {"data": {"resendConfirmationEmail": true}}
    +                  
    {"data": {"resendConfirmationEmail": false}}
     
    @@ -16789,7 +16347,7 @@
    Query
    Variables
    {
       "email": "xyz789",
    -  "resetPasswordToken": "xyz789",
    +  "resetPasswordToken": "abc123",
       "newPassword": "xyz789"
     }
     
    @@ -18275,7 +17833,7 @@
    Response
    "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": true, - "is_virtual": false, + "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 123, "min_order_commitment": 987, @@ -18285,15 +17843,15 @@
    Response
    "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "abc123", + "sales_rep_name": "xyz789", "shipping_addresses": [ NegotiableQuoteShippingAddress ], "status": "xyz789", - "template_id": "4", - "total_quantity": 123.45, + "template_id": 4, + "total_quantity": 987.65, "uid": 4, - "updated_at": "xyz789" + "updated_at": "abc123" } } } @@ -18477,15 +18035,15 @@
    Response
    "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], "created_at": "abc123", - "expiration_date": "abc123", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": false, + "is_min_max_qty_used": true, "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 123, "min_order_commitment": 987, - "name": "xyz789", + "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ @@ -18497,9 +18055,9 @@
    Response
    ], "status": "abc123", "template_id": 4, - "total_quantity": 987.65, + "total_quantity": 123.45, "uid": 4, - "updated_at": "abc123" + "updated_at": "xyz789" } } } @@ -18618,25 +18176,25 @@
    Response
    "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": true, - "is_virtual": false, + "is_virtual": true, "items": [CartItemInterface], - "max_order_commitment": 987, - "min_order_commitment": 987, + "max_order_commitment": 123, + "min_order_commitment": 123, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "abc123", + "sales_rep_name": "xyz789", "shipping_addresses": [ NegotiableQuoteShippingAddress ], "status": "xyz789", "template_id": "4", - "total_quantity": 123.45, - "uid": 4, - "updated_at": "xyz789" + "total_quantity": 987.65, + "uid": "4", + "updated_at": "abc123" } } } @@ -18860,7 +18418,7 @@
    Query
    Variables
    {
    -  "giftRegistryUid": 4,
    +  "giftRegistryUid": "4",
       "sender": ShareGiftRegistrySenderInput,
       "invitees": [ShareGiftRegistryInviteeInput]
     }
    @@ -18942,7 +18500,7 @@ 
    Response
    {
       "data": {
         "shareRequisitionListByEmail": {
    -      "sent_count": 123,
    +      "sent_count": 987,
           "user_errors": [ShareRequisitionListUserError]
         }
       }
    @@ -19131,14 +18689,14 @@ 
    Response
    "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], "created_at": "abc123", - "expiration_date": "xyz789", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": false, "is_virtual": false, "items": [CartItemInterface], "max_order_commitment": 987, - "min_order_commitment": 987, + "min_order_commitment": 123, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, @@ -19149,11 +18707,11 @@
    Response
    "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", - "template_id": "4", + "status": "xyz789", + "template_id": 4, "total_quantity": 987.65, "uid": "4", - "updated_at": "abc123" + "updated_at": "xyz789" } } } @@ -19296,7 +18854,7 @@
    Response
    "data": { "subscribeProductAlertPrice": { "message": "abc123", - "success": true + "success": false } } } @@ -19371,8 +18929,8 @@
    Response
    {
       "data": {
         "subscribeProductAlertStock": {
    -      "message": "xyz789",
    -      "success": false
    +      "message": "abc123",
    +      "success": true
         }
       }
     }
    @@ -19638,7 +19196,7 @@ 
    Response
    {
       "data": {
         "unsubscribeProductAlertPriceAll": {
    -      "message": "xyz789",
    +      "message": "abc123",
           "success": false
         }
       }
    @@ -19714,8 +19272,8 @@ 
    Response
    {
       "data": {
         "unsubscribeProductAlertStock": {
    -      "message": "abc123",
    -      "success": true
    +      "message": "xyz789",
    +      "success": false
         }
       }
     }
    @@ -19766,7 +19324,7 @@ 
    Response
    "data": { "unsubscribeProductAlertStockAll": { "message": "xyz789", - "success": false + "success": true } } } @@ -20317,23 +19875,23 @@
    Response
    "company": "xyz789", "country_code": "AF", "custom_attributesV2": [AttributeValueInterface], - "default_billing": true, - "default_shipping": false, + "default_billing": false, + "default_shipping": true, "extension_attributes": [CustomerAddressAttribute], - "fax": "xyz789", - "firstname": "xyz789", + "fax": "abc123", + "firstname": "abc123", "id": 987, "lastname": "xyz789", "middlename": "xyz789", "postcode": "xyz789", - "prefix": "abc123", + "prefix": "xyz789", "region": CustomerAddressRegion, - "region_id": 987, + "region_id": 123, "street": ["xyz789"], "suffix": "abc123", "telephone": "xyz789", "uid": 4, - "vat_id": "abc123" + "vat_id": "xyz789" } } } @@ -20448,24 +20006,24 @@
    Response
    "data": { "updateCustomerAddressV2": { "city": "xyz789", - "company": "abc123", + "company": "xyz789", "country_code": "AF", "custom_attributesV2": [AttributeValueInterface], - "default_billing": false, - "default_shipping": false, + "default_billing": true, + "default_shipping": true, "extension_attributes": [CustomerAddressAttribute], "fax": "xyz789", - "firstname": "abc123", + "firstname": "xyz789", "id": 987, "lastname": "abc123", - "middlename": "abc123", - "postcode": "abc123", + "middlename": "xyz789", + "postcode": "xyz789", "prefix": "abc123", "region": CustomerAddressRegion, - "region_id": 987, + "region_id": 123, "street": ["abc123"], - "suffix": "xyz789", - "telephone": "xyz789", + "suffix": "abc123", + "telephone": "abc123", "uid": "4", "vat_id": "abc123" } @@ -20700,7 +20258,7 @@
    Query
    Variables
    {
    -  "giftRegistryUid": "4",
    +  "giftRegistryUid": 4,
       "giftRegistry": UpdateGiftRegistryInput
     }
     
    @@ -20788,7 +20346,7 @@
    Query
    Variables
    {
    -  "giftRegistryUid": "4",
    +  "giftRegistryUid": 4,
       "items": [UpdateGiftRegistryItemInput]
     }
     
    @@ -20878,7 +20436,7 @@
    Query
    Variables
    {
    -  "giftRegistryUid": "4",
    +  "giftRegistryUid": 4,
       "registrants": [UpdateGiftRegistryRegistrantInput]
     }
     
    @@ -21224,13 +20782,13 @@
    Response
    "applies_to_roles": [CompanyRole], "approver_roles": [CompanyRole], "condition": PurchaseOrderApprovalRuleConditionInterface, - "created_at": "xyz789", + "created_at": "abc123", "created_by": "abc123", "description": "xyz789", "name": "abc123", "status": "ENABLED", - "uid": "4", - "updated_at": "abc123" + "uid": 4, + "updated_at": "xyz789" } } } @@ -21311,7 +20869,7 @@
    Query
    Variables
    {
    -  "requisitionListUid": "4",
    +  "requisitionListUid": 4,
       "input": UpdateRequisitionListInput
     }
     
    @@ -21401,7 +20959,7 @@
    Query
    Variables
    {
    -  "requisitionListUid": "4",
    +  "requisitionListUid": 4,
       "requisitionListItems": [
         UpdateRequisitionListItemsInput
       ]
    @@ -21501,8 +21059,8 @@ 
    Query
    Variables
    {
    -  "wishlistId": 4,
    -  "name": "abc123",
    +  "wishlistId": "4",
    +  "name": "xyz789",
       "visibility": "PUBLIC"
     }
     
    @@ -21512,8 +21070,8 @@
    Response
    {
       "data": {
         "updateWishlist": {
    -      "name": "xyz789",
    -      "uid": 4,
    +      "name": "abc123",
    +      "uid": "4",
           "visibility": "PUBLIC"
         }
       }
    @@ -21720,7 +21278,7 @@ 
    Fields
    Example
    {
    -  "cart_id": "abc123",
    +  "cart_id": "xyz789",
       "cart_items": [DownloadableProductCartItemInput]
     }
     
    @@ -21826,8 +21384,8 @@
    Example
    GiftRegistryDynamicAttributeInput ], "email": "xyz789", - "firstname": "abc123", - "lastname": "abc123" + "firstname": "xyz789", + "lastname": "xyz789" }
    @@ -22150,8 +21708,8 @@
    Fields
    Example
    {
    -  "comment": "xyz789",
    -  "purchase_order_uid": 4
    +  "comment": "abc123",
    +  "purchase_order_uid": "4"
     }
     
    @@ -22247,7 +21805,7 @@
    Fields
    Example
    {
       "cart_id": "abc123",
    -  "purchase_order_uid": "4",
    +  "purchase_order_uid": 4,
       "replace_existing_cart_items": false
     }
     
    @@ -22295,7 +21853,7 @@
    Fields
    Example
    {
    -  "message": "abc123",
    +  "message": "xyz789",
       "type": "OUT_OF_STOCK"
     }
     
    @@ -22459,7 +22017,7 @@
    Fields
    Example
    -
    {"comment_text": "xyz789", "return_uid": 4}
    +                  
    {"comment_text": "abc123", "return_uid": 4}
     
    @@ -22553,8 +22111,8 @@
    Fields
    Example
    {
    -  "carrier_uid": 4,
    -  "return_uid": "4",
    +  "carrier_uid": "4",
    +  "return_uid": 4,
       "tracking_number": "xyz789"
     }
     
    @@ -22658,7 +22216,7 @@
    Example
    "add_wishlist_items_to_cart_user_errors": [ WishlistCartUserInputError ], - "status": false, + "status": true, "wishlist": Wishlist }
    @@ -22712,7 +22270,7 @@
    Fields
    Example
    {
       "action": "xyz789",
    -  "date": "abc123",
    +  "date": "xyz789",
       "details": "abc123"
     }
     
    @@ -22767,7 +22325,7 @@
    Example
    {
       "items": [AdminAssistanceAction],
       "page_info": SearchResultPageInfo,
    -  "total_count": 123
    +  "total_count": 987
     }
     
    @@ -22826,7 +22384,7 @@
    Example
    {
       "attribute": "abc123",
       "buckets": [Bucket],
    -  "title": "abc123",
    +  "title": "xyz789",
       "type": "INTELLIGENT"
     }
     
    @@ -22958,9 +22516,9 @@
    Example
    {
       "button_styles": ButtonStyles,
       "code": "abc123",
    -  "is_visible": true,
    +  "is_visible": false,
       "payment_intent": "xyz789",
    -  "payment_source": "xyz789",
    +  "payment_source": "abc123",
       "sdk_params": [SDKParams],
       "sort_order": "abc123",
       "title": "abc123"
    @@ -23020,7 +22578,7 @@ 
    Example
    {
       "payment_source": "xyz789",
       "payments_order_id": "xyz789",
    -  "paypal_order_id": "xyz789"
    +  "paypal_order_id": "abc123"
     }
     
    @@ -23061,7 +22619,7 @@
    Fields
    Example
    -
    {"code": "xyz789"}
    +                  
    {"code": "abc123"}
     
    @@ -23118,9 +22676,9 @@
    Fields
    Example
    {
       "applied_balance": Money,
    -  "code": "xyz789",
    +  "code": "abc123",
       "current_balance": Money,
    -  "expiration_date": "xyz789"
    +  "expiration_date": "abc123"
     }
     
    @@ -23174,7 +22732,7 @@
    Example
    {
       "action_type": "BOOST",
       "rule_id": "xyz789",
    -  "rule_name": "abc123"
    +  "rule_name": "xyz789"
     }
     
    @@ -23478,7 +23036,7 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    +  "cart_id": "abc123",
       "coupon_codes": ["abc123"],
       "type": "APPEND"
     }
    @@ -23529,7 +23087,7 @@ 
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    +  "cart_id": "abc123",
       "gift_card_code": "xyz789"
     }
     
    @@ -23700,7 +23258,7 @@
    Fields
    Example
    -
    {"cart_id": "abc123"}
    +                  
    {"cart_id": "xyz789"}
     
    @@ -23787,7 +23345,7 @@
    Fields
    Example
    -
    {"radius": 987, "search_term": "abc123"}
    +                  
    {"radius": 123, "search_term": "abc123"}
     
    @@ -23850,9 +23408,9 @@
    Example
    {
       "asset_image": ProductMediaGalleryEntriesAssetImage,
       "disabled": false,
    -  "label": "xyz789",
    -  "position": 123,
    -  "url": "xyz789"
    +  "label": "abc123",
    +  "position": 987,
    +  "url": "abc123"
     }
     
    @@ -23915,7 +23473,7 @@
    Fields
    Example
    {
       "asset_video": ProductMediaGalleryEntriesAssetVideo,
    -  "disabled": true,
    +  "disabled": false,
       "label": "xyz789",
       "position": 987,
       "url": "xyz789"
    @@ -23967,8 +23525,8 @@ 
    Fields
    Example
    {
    -  "child_company_id": 4,
    -  "parent_company_id": "4"
    +  "child_company_id": "4",
    +  "parent_company_id": 4
     }
     
    @@ -24054,7 +23612,7 @@
    Fields
    Example
    -
    {"compare_list": CompareList, "result": false}
    +                  
    {"compare_list": CompareList, "result": true}
     
    @@ -24176,9 +23734,9 @@
    Fields
    Example
    {
    -  "attribute_type": "xyz789",
    +  "attribute_type": "abc123",
       "code": 4,
    -  "url": "xyz789",
    +  "url": "abc123",
       "value": "abc123"
     }
     
    @@ -24292,14 +23850,14 @@
    Example
    "is_filterable": false, "is_filterable_in_search": false, "is_html_allowed_on_front": true, - "is_searchable": false, - "is_used_for_customer_segment": false, + "is_searchable": true, + "is_used_for_customer_segment": true, "is_used_for_price_rules": true, - "is_used_for_promo_rules": true, + "is_used_for_promo_rules": false, "is_visible_in_advanced_search": true, - "is_visible_on_front": false, - "is_wysiwyg_enabled": true, - "used_in_product_listing": true + "is_visible_on_front": true, + "is_wysiwyg_enabled": false, + "used_in_product_listing": false }
    @@ -24499,10 +24057,10 @@
    Fields
    Example
    {
    -  "attribute_type": "abc123",
    -  "code": 4,
    +  "attribute_type": "xyz789",
    +  "code": "4",
       "url": "xyz789",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -24551,7 +24109,7 @@
    Fields
    Example
    {
    -  "attribute_code": "abc123",
    +  "attribute_code": "xyz789",
       "entity_type": "abc123"
     }
     
    @@ -24594,7 +24152,7 @@
    Fields
    Example
    -
    {"value": "abc123"}
    +                  
    {"value": "xyz789"}
     
    @@ -24678,10 +24236,10 @@
    Example
    "code": 4, "default_value": "abc123", "entity_type": "CATALOG_PRODUCT", - "frontend_class": "xyz789", + "frontend_class": "abc123", "frontend_input": "BOOLEAN", "is_required": true, - "is_unique": true, + "is_unique": false, "label": "abc123", "options": [CustomAttributeOptionInterface] } @@ -24730,7 +24288,7 @@
    Fields
    Example
    {
    -  "message": "xyz789",
    +  "message": "abc123",
       "type": "ENTITY_NOT_FOUND"
     }
     
    @@ -24892,7 +24450,7 @@
    Example
    {
       "is_default": false,
       "label": "xyz789",
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -24936,7 +24494,7 @@
    Fields
    Example
    {
       "label": "abc123",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -24996,7 +24554,7 @@
    Possible Types
    Example
    {
    -  "label": "abc123",
    +  "label": "xyz789",
       "value": "abc123"
     }
     
    @@ -25047,7 +24605,7 @@
    Fields
    Example
    {
       "attribute_type": "abc123",
    -  "code": 4,
    +  "code": "4",
       "selected_options": [AttributeSelectedOptionInterface]
     }
     
    @@ -25155,7 +24713,7 @@
    Example
    {
       "attribute_code": "xyz789",
       "selected_options": [AttributeInputSelectedOption],
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -25431,7 +24989,7 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    +  "code": "abc123",
       "is_deferred": false,
       "oope_payment_method_config": OopePaymentMethodConfig,
       "title": "xyz789"
    @@ -25729,9 +25287,9 @@ 
    Example
    "address_line_1": "xyz789", "address_line_2": "abc123", "city": "abc123", - "country_code": "abc123", + "country_code": "xyz789", "postal_code": "abc123", - "region": "abc123" + "region": "xyz789" }
    @@ -25863,19 +25421,19 @@
    Example
    "company": "abc123", "country": CartAddressCountry, "custom_attributes": [AttributeValueInterface], - "customer_address_uid": 4, - "fax": "abc123", - "firstname": "abc123", + "customer_address_uid": "4", + "fax": "xyz789", + "firstname": "xyz789", "id": 123, "lastname": "abc123", - "middlename": "xyz789", - "postcode": "abc123", + "middlename": "abc123", + "postcode": "xyz789", "prefix": "xyz789", "region": CartAddressRegion, "street": ["abc123"], - "suffix": "xyz789", + "suffix": "abc123", "telephone": "abc123", - "uid": 4, + "uid": "4", "vat_id": "xyz789" }
    @@ -25897,6 +25455,11 @@
    Description
    +
    +
    Example
    +
    true
    +
    +
    back to top @@ -25955,11 +25518,11 @@
    Fields
    Example
    {
    -  "category_level": 987,
    -  "category_name": "abc123",
    -  "category_uid": 4,
    +  "category_level": 123,
    +  "category_name": "xyz789",
    +  "category_uid": "4",
       "category_url_key": "xyz789",
    -  "category_url_path": "xyz789"
    +  "category_url_path": "abc123"
     }
     
    @@ -26037,7 +25600,7 @@
    Possible Types
    Example
    -
    {"title": "abc123"}
    +                  
    {"title": "xyz789"}
     
    @@ -26186,15 +25749,15 @@
    Example
    "gift_wrapping": GiftWrapping, "is_available": false, "is_salable": false, - "max_qty": 123.45, + "max_qty": 987.65, "min_qty": 123.45, - "not_available_message": "abc123", + "not_available_message": "xyz789", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 123.45, - "uid": "4" + "quantity": 987.65, + "uid": 4 }
    @@ -26279,11 +25842,11 @@
    Example
    "bundle_options": [ItemSelectedBundleOption], "custom_attributes": [CustomAttribute], "discounts": [Discount], - "id": 4, + "id": "4", "order_item": OrderItemInterface, "product_name": "abc123", "product_sale_price": Money, - "product_sku": "abc123", + "product_sku": "xyz789", "quantity_refunded": 987.65 }
    @@ -26371,10 +25934,10 @@
    Example
    "discounts": [Discount], "id": "4", "order_item": OrderItemInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, - "product_sku": "xyz789", - "quantity_invoiced": 987.65 + "product_sku": "abc123", + "quantity_invoiced": 123.45 }
    @@ -26454,9 +26017,9 @@
    Example
    "options": [BundleItemOption], "position": 123, "price_range": PriceRange, - "required": false, - "sku": "abc123", - "title": "xyz789", + "required": true, + "sku": "xyz789", + "title": "abc123", "type": "abc123", "uid": "4" } @@ -26542,9 +26105,9 @@
    Example
    {
       "can_change_quantity": false,
       "is_default": true,
    -  "label": "xyz789",
    -  "position": 987,
    -  "price": 987.65,
    +  "label": "abc123",
    +  "position": 123,
    +  "price": 123.45,
       "price_type": "FIXED",
       "product": ProductInterface,
       "quantity": 987.65,
    @@ -26722,16 +26285,16 @@ 
    Example
    "parent_sku": "abc123", "prices": OrderItemPrices, "product": ProductInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, "product_sku": "abc123", "product_type": "xyz789", - "product_url_key": "abc123", + "product_url_key": "xyz789", "quantity_canceled": 123.45, - "quantity_invoiced": 987.65, + "quantity_invoiced": 123.45, "quantity_ordered": 987.65, - "quantity_refunded": 123.45, - "quantity_return_requested": 987.65, + "quantity_refunded": 987.65, + "quantity_return_requested": 123.45, "quantity_returned": 123.45, "quantity_shipped": 123.45, "selected_options": [OrderItemOption], @@ -27032,7 +26595,7 @@
    Example
    "custom_attributesV2": ProductCustomAttributes, "description": ComplexTextValue, "dynamic_price": false, - "dynamic_sku": true, + "dynamic_sku": false, "dynamic_weight": true, "gift_message_available": false, "gift_wrapping_available": false, @@ -27041,37 +26604,37 @@
    Example
    "is_returnable": "abc123", "items": [BundleItem], "manufacturer": 987, - "max_sale_qty": 123.45, + "max_sale_qty": 987.65, "media_gallery": [MediaGalleryInterface], "meta_description": "xyz789", - "meta_keyword": "abc123", - "meta_title": "xyz789", + "meta_keyword": "xyz789", + "meta_title": "abc123", "min_sale_qty": 123.45, "name": "abc123", - "new_from_date": "abc123", - "new_to_date": "abc123", + "new_from_date": "xyz789", + "new_to_date": "xyz789", "only_x_left_in_stock": 987.65, "options": [CustomizableOptionInterface], - "options_container": "xyz789", + "options_container": "abc123", "price_details": PriceDetails, "price_range": PriceRange, "price_tiers": [TierPrice], "price_view": "PRICE_RANGE", "product_links": [ProductLinksInterface], - "quantity": 123.45, + "quantity": 987.65, "related_products": [ProductInterface], "ship_bundle_items": "TOGETHER", "short_description": ComplexTextValue, - "sku": "abc123", + "sku": "xyz789", "small_image": ProductImage, "special_price": 123.45, - "special_to_date": "abc123", + "special_to_date": "xyz789", "stock_status": "IN_STOCK", "swatch_image": "xyz789", "thumbnail": ProductImage, "uid": "4", "upsell_products": [ProductInterface], - "url_key": "abc123", + "url_key": "xyz789", "weight": 987.65 }
    @@ -27142,9 +26705,9 @@
    Example
    "bundle_options": [SelectedBundleOption], "customizable_options": [SelectedCustomizableOption], "product": ProductInterface, - "quantity": 123.45, + "quantity": 987.65, "sku": "abc123", - "uid": "4" + "uid": 4 }
    @@ -27217,11 +26780,11 @@
    Fields
    Example
    {
       "bundle_options": [ItemSelectedBundleOption],
    -  "id": 4,
    +  "id": "4",
       "order_item": OrderItemInterface,
    -  "product_name": "xyz789",
    +  "product_name": "abc123",
       "product_sale_price": Money,
    -  "product_sku": "xyz789",
    +  "product_sku": "abc123",
       "quantity_shipped": 987.65
     }
     
    @@ -27369,13 +26932,13 @@
    Fields
    Example
    {
    -  "color": "abc123",
    -  "height": 987,
    +  "color": "xyz789",
    +  "height": 123,
       "label": "xyz789",
       "layout": "abc123",
    -  "shape": "xyz789",
    +  "shape": "abc123",
       "tagline": false,
    -  "use_default_height": false
    +  "use_default_height": true
     }
     
    @@ -27424,8 +26987,8 @@
    Fields
    Example
    {
    -  "cancellation_comment": "xyz789",
    -  "template_id": "4"
    +  "cancellation_comment": "abc123",
    +  "template_id": 4
     }
     
    @@ -27469,7 +27032,7 @@
    Fields
    Example
    {
       "code": "ORDER_CANCELLATION_DISABLED",
    -  "message": "abc123"
    +  "message": "xyz789"
     }
     
    @@ -27592,7 +27155,7 @@
    Fields
    Example
    {
       "order_id": "4",
    -  "reason": "abc123"
    +  "reason": "xyz789"
     }
     
    @@ -27685,7 +27248,7 @@
    Fields
    Example
    -
    {"description": "xyz789"}
    +                  
    {"description": "abc123"}
     
    @@ -27744,9 +27307,9 @@
    Example
    {
       "bin_details": CardBin,
       "card_expiry_month": "xyz789",
    -  "card_expiry_year": "abc123",
    -  "last_digits": "xyz789",
    -  "name": "abc123"
    +  "card_expiry_year": "xyz789",
    +  "last_digits": "abc123",
    +  "name": "xyz789"
     }
     
    @@ -27832,7 +27395,7 @@
    Fields
    Example
    {
       "billing_address": BillingAddressPaymentSourceInput,
    -  "name": "abc123"
    +  "name": "xyz789"
     }
     
    @@ -27884,9 +27447,9 @@
    Fields
    Example
    {
    -  "brand": "xyz789",
    -  "expiry": "xyz789",
    -  "last_digits": "xyz789"
    +  "brand": "abc123",
    +  "expiry": "abc123",
    +  "last_digits": "abc123"
     }
     
    @@ -28063,14 +27626,14 @@
    Example
    "gift_receipt_included": true, "gift_wrapping": GiftWrapping, "id": 4, - "is_virtual": true, + "is_virtual": false, "itemsV2": CartItems, "prices": CartPrices, "printed_card_included": true, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], - "total_quantity": 123.45 + "total_quantity": 987.65 }
    @@ -28117,8 +27680,8 @@
    Fields
    Example
    {
    -  "code": "abc123",
    -  "label": "xyz789"
    +  "code": "xyz789",
    +  "label": "abc123"
     }
     
    @@ -28257,21 +27820,21 @@
    Fields
    Example
    {
    -  "city": "abc123",
    -  "company": "xyz789",
    -  "country_code": "abc123",
    +  "city": "xyz789",
    +  "company": "abc123",
    +  "country_code": "xyz789",
       "custom_attributes": [AttributeValueInput],
       "fax": "xyz789",
       "firstname": "xyz789",
    -  "lastname": "abc123",
    +  "lastname": "xyz789",
       "middlename": "xyz789",
    -  "postcode": "xyz789",
    -  "prefix": "xyz789",
    -  "region": "abc123",
    +  "postcode": "abc123",
    +  "prefix": "abc123",
    +  "region": "xyz789",
       "region_id": 123,
       "save_in_address_book": false,
       "street": ["xyz789"],
    -  "suffix": "abc123",
    +  "suffix": "xyz789",
       "telephone": "xyz789",
       "vat_id": "abc123"
     }
    @@ -28424,18 +27987,18 @@ 
    Example
    "country": CartAddressCountry, "custom_attributes": [AttributeValueInterface], "customer_address_uid": 4, - "fax": "xyz789", - "firstname": "abc123", - "id": 123, - "lastname": "xyz789", - "middlename": "xyz789", + "fax": "abc123", + "firstname": "xyz789", + "id": 987, + "lastname": "abc123", + "middlename": "abc123", "postcode": "abc123", "prefix": "xyz789", "region": CartAddressRegion, - "street": ["abc123"], - "suffix": "xyz789", - "telephone": "abc123", - "uid": "4", + "street": ["xyz789"], + "suffix": "abc123", + "telephone": "xyz789", + "uid": 4, "vat_id": "abc123" }
    @@ -28539,7 +28102,7 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    +  "cart_id": "abc123",
       "custom_attributes": [CustomAttributeInput]
     }
     
    @@ -28641,7 +28204,7 @@
    Fields
    Example
    {
       "cart_id": "xyz789",
    -  "cart_item_id": "xyz789",
    +  "cart_item_id": "abc123",
       "custom_attributes": [CustomAttributeInput]
     }
     
    @@ -28684,7 +28247,7 @@
    Fields
    Example
    -
    {"code": "UNDEFINED", "message": "abc123"}
    +                  
    {"code": "UNDEFINED", "message": "xyz789"}
     
    @@ -28803,10 +28366,10 @@
    Fields
    Example
    {
       "entered_options": [EnteredOptionInput],
    -  "parent_sku": "xyz789",
    -  "quantity": 123.45,
    +  "parent_sku": "abc123",
    +  "quantity": 987.65,
       "selected_options": [4],
    -  "sku": "abc123"
    +  "sku": "xyz789"
     }
     
    @@ -28969,8 +28532,8 @@
    Example
    "is_available": false, "is_salable": true, "max_qty": 123.45, - "min_qty": 987.65, - "not_available_message": "abc123", + "min_qty": 123.45, + "not_available_message": "xyz789", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, @@ -29203,7 +28766,7 @@
    Example
    "customizable_options": [CustomizableOptionInput], "gift_message": GiftMessageInput, "gift_wrapping_id": 4, - "quantity": 123.45 + "quantity": 987.65 }
    @@ -29421,7 +28984,7 @@
    Fields
    Example
    {
       "amount": Money,
    -  "label": "abc123"
    +  "label": "xyz789"
     }
     
    @@ -29465,7 +29028,7 @@
    Fields
    Example
    {
       "code": "PRODUCT_NOT_FOUND",
    -  "message": "abc123"
    +  "message": "xyz789"
     }
     
    @@ -29791,28 +29354,28 @@
    Example
    {
       "apply_to": ["SIMPLE"],
       "code": "4",
    -  "default_value": "xyz789",
    +  "default_value": "abc123",
       "entity_type": "CATALOG_PRODUCT",
    -  "frontend_class": "xyz789",
    +  "frontend_class": "abc123",
       "frontend_input": "BOOLEAN",
       "is_comparable": true,
       "is_filterable": true,
    -  "is_filterable_in_search": false,
    -  "is_html_allowed_on_front": false,
    -  "is_required": false,
    +  "is_filterable_in_search": true,
    +  "is_html_allowed_on_front": true,
    +  "is_required": true,
       "is_searchable": false,
       "is_unique": false,
    -  "is_used_for_price_rules": true,
    -  "is_used_for_promo_rules": false,
    -  "is_visible_in_advanced_search": true,
    -  "is_visible_on_front": false,
    +  "is_used_for_price_rules": false,
    +  "is_used_for_promo_rules": true,
    +  "is_visible_in_advanced_search": false,
    +  "is_visible_on_front": true,
       "is_wysiwyg_enabled": false,
       "label": "abc123",
       "options": [CustomAttributeOptionInterface],
       "swatch_input_type": "BOOLEAN",
       "update_product_preview_image": false,
    -  "use_product_image_for_swatch": false,
    -  "used_in_product_listing": false
    +  "use_product_image_for_swatch": true,
    +  "used_in_product_listing": true
     }
     
    @@ -29874,9 +29437,9 @@
    Fields
    Example
    {
       "count": 987,
    -  "id": "4",
    -  "path": "xyz789",
    -  "title": "abc123"
    +  "id": 4,
    +  "path": "abc123",
    +  "title": "xyz789"
     }
     
    @@ -29931,67 +29494,7 @@
    Possible Types
    Example
    -
    {"id": "4"}
    -
    -
    -
    - back to top - -
    -
    -
    - Types -
    -

    CategoryImage

    -
    -
    -
    -
    Description
    -

    Represents an image associated with a category.

    -
    -
    -
    Fields
    - - - - - - - - - - - - - - - - - - - - - - - - - -
    Field NameDescription
    url - String! - The URL where the image is hosted.
    label - String - A descriptive label or alt text for the image.
    roles - [String] - Standard predefined roles for the image.
    customRoles - [String] - Custom roles specific to the implementation.
    -
    -
    -
    -
    -
    Example
    -
    {
    -  "url": "abc123",
    -  "label": "abc123",
    -  "roles": ["xyz789"],
    -  "customRoles": ["abc123"]
    -}
    +                  
    {"id": 4}
     
    @@ -30183,198 +29686,30 @@
    Example
    {
       "available_sort_by": ["xyz789"],
       "breadcrumbs": [Breadcrumb],
    -  "canonical_url": "xyz789",
    +  "canonical_url": "abc123",
       "children_count": "abc123",
    -  "custom_layout_update_file": "xyz789",
    -  "default_sort_by": "abc123",
    -  "description": "xyz789",
    +  "custom_layout_update_file": "abc123",
    +  "default_sort_by": "xyz789",
    +  "description": "abc123",
       "display_mode": "abc123",
    -  "filter_price_range": 123.45,
    -  "image": "abc123",
    +  "filter_price_range": 987.65,
    +  "image": "xyz789",
       "include_in_menu": 987,
    -  "is_anchor": 123,
    -  "landing_page": 987,
    +  "is_anchor": 987,
    +  "landing_page": 123,
       "level": 123,
    -  "meta_description": "xyz789",
    +  "meta_description": "abc123",
       "meta_keywords": "xyz789",
    -  "meta_title": "abc123",
    -  "name": "xyz789",
    +  "meta_title": "xyz789",
    +  "name": "abc123",
       "path": "xyz789",
       "path_in_store": "xyz789",
    -  "position": 123,
    -  "product_count": 987,
    -  "uid": 4,
    +  "position": 987,
    +  "product_count": 123,
    +  "uid": "4",
       "url_key": "abc123",
       "url_path": "abc123"
     }
    -
    -
    - - back to top - -
    -
    -
    - Types -
    -

    CategoryMetaTags

    -
    -
    -
    -
    Description
    -

    SEO metadata tags for the category.

    -
    -
    -
    Fields
    - - - - - - - - - - - - - - - - - - - - - -
    Field NameDescription
    title - String - The page title for SEO purposes.
    description - String - The meta description for SEO purposes.
    keywords - [String] - Keywords associated with the category for SEO.
    -
    -
    -
    -
    -
    Example
    -
    {
    -  "title": "abc123",
    -  "description": "xyz789",
    -  "keywords": ["abc123"]
    -}
    -
    -
    -
    - back to top -
    -
    -
    -
    - Types -
    -

    CategoryNavigationView

    -
    -
    -
    -
    Description
    -

    Represents a category optimized for navigation menus, with nested children for building navigation trees.

    -
    -
    -
    Fields
    - - - - - - - - - - - - - - - - - - - - - -
    Field NameDescription
    slug - String! - The unique URL-friendly identifier for the category.
    name - String! - Category name. For example, Electronics, Clothing or Books.
    children - [CategoryNavigationView] - The direct child categories for building nested navigation menus.
    -
    -
    -
    -
    -
    Example
    -
    {
    -  "slug": "xyz789",
    -  "name": "xyz789",
    -  "children": [CategoryNavigationView]
    -}
    -
    -
    -
    - back to top -
    -
    -
    -
    - Types -
    -

    CategoryProductView

    -
    -
    -
    -
    Description
    -

    Represents category information associated with a product, including hierarchical parent relationships.

    -
    -
    -
    Fields
    - - - - - - - - - - - - - - - - - - - - - - - - - -
    Field NameDescription
    name - String! - Category name. For example, Electronics, Clothing or Books.
    slug - String! - The unique URL-friendly identifier for the category.
    level - Int! - The level of the category. The root category is a level 1 category. For example, men -> level 1, men/clothing -> level 2, men/clothing/shorts -> level 3
    parents - [CategoryProductView!] - The ancestor categories in the hierarchy, ordered from root to immediate parent.
    -
    -
    -
    -
    -
    Example
    -
    {
    -  "name": "abc123",
    -  "slug": "abc123",
    -  "level": 987,
    -  "parents": [CategoryProductView]
    -}
     
    @@ -30552,111 +29887,27 @@
    Example
    "canonical_url": "xyz789", "children_count": "abc123", "custom_layout_update_file": "abc123", - "default_sort_by": "xyz789", + "default_sort_by": "abc123", "description": "xyz789", "display_mode": "xyz789", - "filter_price_range": 123.45, - "image": "abc123", + "filter_price_range": 987.65, + "image": "xyz789", "include_in_menu": 123, "is_anchor": 123, "landing_page": 123, - "level": 123, - "meta_description": "abc123", + "level": 987, + "meta_description": "xyz789", "meta_keywords": "xyz789", - "meta_title": "abc123", - "name": "abc123", - "path": "abc123", - "path_in_store": "xyz789", + "meta_title": "xyz789", + "name": "xyz789", + "path": "xyz789", + "path_in_store": "abc123", "position": 987, "product_count": 987, - "uid": 4, - "url_key": "xyz789", + "uid": "4", + "url_key": "abc123", "url_path": "xyz789" } -
    -
    - - back to top - -
    -
    -
    - Types -
    -

    CategoryTreeView

    -
    -
    -
    -
    Description
    -

    Represents a category within a hierarchical tree structure, including parent and children relationships.

    -
    -
    -
    Fields
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Field NameDescription
    slug - String! - The unique URL-friendly identifier for the category.
    name - String! - Category name. For example, Electronics, Clothing or Books.
    description - String - A detailed description of the category.
    metaTags - CategoryMetaTags - SEO metadata tags for the category.
    images - [CategoryImage] - Visual images associated with the category.
    level - Int - The root category is a level 1 category. For example, men -> level 1, men/clothing -> level 2, men/clothing/shorts -> level 3
    parentSlug - String - The slug of the parent category, if any.
    childrenSlugs - [String] - The slugs of all direct child categories. Ex: men/clothing/shorts -> [men/clothing/shorts/athletic, men/clothing/shorts/swimwear]
    -
    -
    -
    -
    -
    Example
    -
    {
    -  "slug": "xyz789",
    -  "name": "xyz789",
    -  "description": "abc123",
    -  "metaTags": CategoryMetaTags,
    -  "images": [CategoryImage],
    -  "level": 987,
    -  "parentSlug": "abc123",
    -  "childrenSlugs": ["abc123"]
    -}
     
    @@ -30768,19 +30019,19 @@
    Fields
    Example
    {
    -  "availableSortBy": ["xyz789"],
    +  "availableSortBy": ["abc123"],
       "children": ["abc123"],
    -  "defaultSortBy": "abc123",
    +  "defaultSortBy": "xyz789",
       "id": "4",
    -  "level": 123,
    -  "name": "abc123",
    -  "parentId": "abc123",
    -  "position": 987,
    +  "level": 987,
    +  "name": "xyz789",
    +  "parentId": "xyz789",
    +  "position": 123,
       "path": "xyz789",
       "roles": ["abc123"],
    -  "urlKey": "abc123",
    +  "urlKey": "xyz789",
       "urlPath": "xyz789",
    -  "count": 123,
    +  "count": 987,
       "title": "xyz789"
     }
     
    @@ -30881,91 +30132,16 @@
    Possible Types
    Example
    {
    -  "availableSortBy": ["abc123"],
    +  "availableSortBy": ["xyz789"],
       "defaultSortBy": "xyz789",
    -  "id": 4,
    +  "id": "4",
       "level": 123,
       "name": "abc123",
    -  "path": "abc123",
    -  "roles": ["abc123"],
    -  "urlKey": "abc123",
    +  "path": "xyz789",
    +  "roles": ["xyz789"],
    +  "urlKey": "xyz789",
       "urlPath": "abc123"
     }
    -
    -
    -
    - back to top -
    -
    -
    -
    - Types -
    -

    CategoryViewV2

    -
    -
    -
    -
    Description
    -

    Base interface defining essential category fields shared across all category views.

    -
    -
    -
    Fields
    - - - - - - - - - - - - - - - - - -
    Field NameDescription
    slug - String! - The unique URL-friendly identifier for the category.
    name - String! - Category name. For example, Electronics, Clothing or Books.
    -
    -
    -
    Possible Types
    - - - - - - - - - - - - - - - - - -
    CategoryViewV2 Types
    -

    CategoryNavigationView

    -
    -

    CategoryProductView

    -
    -

    CategoryTreeView

    -
    -
    -
    -
    -
    -
    Example
    -
    {
    -  "slug": "xyz789",
    -  "name": "abc123"
    -}
     
    @@ -31036,11 +30212,11 @@
    Fields
    Example
    {
    -  "agreement_id": 123,
    +  "agreement_id": 987,
       "checkbox_text": "xyz789",
    -  "content": "xyz789",
    -  "content_height": "xyz789",
    -  "is_html": false,
    +  "content": "abc123",
    +  "content_height": "abc123",
    +  "is_html": true,
       "mode": "AUTO",
       "name": "xyz789"
     }
    @@ -31550,7 +30726,7 @@ 
    Fields
    Example
    -
    {"value": "xyz789"}
    +                  
    {"value": "abc123"}
     
    @@ -31590,7 +30766,7 @@
    Fields
    Example
    -
    {"priceBookId": 4}
    +                  
    {"priceBookId": "4"}
     
    @@ -31965,8 +31141,8 @@
    Example
    "legal_address": CompanyLegalAddress, "legal_name": "xyz789", "name": "abc123", - "payment_methods": ["abc123"], - "reseller_id": "abc123", + "payment_methods": ["xyz789"], + "reseller_id": "xyz789", "role": CompanyRole, "roles": CompanyRoles, "sales_representative": CompanySalesRepresentative, @@ -31975,7 +31151,7 @@
    Example
    "team": CompanyTeam, "user": Customer, "users": CompanyUsers, - "vat_tax_id": "abc123" + "vat_tax_id": "xyz789" }
    @@ -32035,7 +31211,7 @@
    Example
    "children": [CompanyAclResource], "id": 4, "sort_order": 123, - "text": "xyz789" + "text": "abc123" }
    @@ -32115,10 +31291,10 @@
    Fields
    Example
    {
       "custom_attributes": [AttributeValueInput],
    -  "email": "xyz789",
    +  "email": "abc123",
       "firstname": "xyz789",
    -  "gender": 987,
    -  "job_title": "xyz789",
    +  "gender": 123,
    +  "job_title": "abc123",
       "lastname": "xyz789",
       "telephone": "xyz789"
     }
    @@ -32170,7 +31346,7 @@ 
    Fields
    Example
    {
       "code": "xyz789",
    -  "title": "abc123"
    +  "title": "xyz789"
     }
     
    @@ -32233,7 +31409,7 @@
    Fields
    Example
    {
       "id": 4,
    -  "is_admin": false,
    +  "is_admin": true,
       "legal_name": "abc123",
       "name": "xyz789",
       "status": "PENDING"
    @@ -32316,10 +31492,10 @@ 
    Fields
    Example
    {
       "company_admin": CompanyAdminInput,
    -  "company_email": "abc123",
    -  "company_name": "abc123",
    +  "company_email": "xyz789",
    +  "company_name": "xyz789",
       "legal_address": CompanyLegalAddressCreateInput,
    -  "legal_name": "xyz789",
    +  "legal_name": "abc123",
       "reseller_id": "xyz789",
       "vat_tax_id": "xyz789"
     }
    @@ -32435,7 +31611,7 @@ 
    Example
    {
       "items": [CompanyCreditOperation],
       "page_info": SearchResultPageInfo,
    -  "total_count": 123
    +  "total_count": 987
     }
     
    @@ -32683,7 +31859,7 @@
    Fields
    Example
    -
    {"name": "xyz789", "type": "CUSTOMER"}
    +                  
    {"name": "abc123", "type": "CUSTOMER"}
     
    @@ -32831,7 +32007,7 @@
    Fields
    Example
    {
       "code": "abc123",
    -  "role_id": 4,
    +  "role_id": "4",
       "user": CompanyInvitationUserInput
     }
     
    @@ -32873,7 +32049,7 @@
    Fields
    Example
    -
    {"success": true}
    +                  
    {"success": false}
     
    @@ -32940,10 +32116,10 @@
    Fields
    Example
    {
       "company_id": "4",
    -  "customer_id": 4,
    +  "customer_id": "4",
       "job_title": "abc123",
       "status": "ACTIVE",
    -  "telephone": "abc123"
    +  "telephone": "xyz789"
     }
     
    @@ -33012,10 +32188,10 @@
    Example
    {
       "city": "abc123",
       "country_code": "AF",
    -  "postcode": "xyz789",
    +  "postcode": "abc123",
       "region": CustomerAddressRegion,
    -  "street": ["xyz789"],
    -  "telephone": "xyz789"
    +  "street": ["abc123"],
    +  "telephone": "abc123"
     }
     
    @@ -33088,11 +32264,11 @@
    Fields
    Example
    {
    -  "city": "abc123",
    +  "city": "xyz789",
       "country_id": "AF",
       "postcode": "xyz789",
       "region": CustomerAddressRegionInput,
    -  "street": ["abc123"],
    +  "street": ["xyz789"],
       "telephone": "xyz789"
     }
     
    @@ -33168,10 +32344,10 @@
    Example
    {
       "city": "xyz789",
       "country_id": "AF",
    -  "postcode": "abc123",
    +  "postcode": "xyz789",
       "region": CustomerAddressRegionInput,
       "street": ["xyz789"],
    -  "telephone": "xyz789"
    +  "telephone": "abc123"
     }
     
    @@ -33228,10 +32404,10 @@
    Fields
    Example
    {
    -  "id": 4,
    -  "name": "abc123",
    +  "id": "4",
    +  "name": "xyz789",
       "permissions": [CompanyAclResource],
    -  "users_count": 987
    +  "users_count": 123
     }
     
    @@ -33280,7 +32456,7 @@
    Fields
    Example
    {
    -  "name": "xyz789",
    +  "name": "abc123",
       "permissions": ["abc123"]
     }
     
    @@ -33336,9 +32512,9 @@
    Fields
    Example
    {
    -  "id": 4,
    -  "name": "abc123",
    -  "permissions": ["xyz789"]
    +  "id": "4",
    +  "name": "xyz789",
    +  "permissions": ["abc123"]
     }
     
    @@ -33444,8 +32620,8 @@
    Fields
    Example
    {
    -  "email": "abc123",
    -  "firstname": "xyz789",
    +  "email": "xyz789",
    +  "firstname": "abc123",
       "lastname": "abc123"
     }
     
    @@ -33638,7 +32814,7 @@
    Fields
    Example
    {
       "entity": CompanyTeam,
    -  "id": "4",
    +  "id": 4,
       "parent_id": "4"
     }
     
    @@ -33687,7 +32863,7 @@
    Fields
    Example
    -
    {"parent_tree_id": 4, "tree_id": "4"}
    +                  
    {"parent_tree_id": "4", "tree_id": 4}
     
    @@ -33743,10 +32919,10 @@
    Fields
    Example
    {
    -  "description": "abc123",
    +  "description": "xyz789",
       "id": 4,
    -  "name": "xyz789",
    -  "structure_id": 4
    +  "name": "abc123",
    +  "structure_id": "4"
     }
     
    @@ -33858,8 +33034,8 @@
    Fields
    Example
    {
    -  "description": "abc123",
    -  "id": "4",
    +  "description": "xyz789",
    +  "id": 4,
       "name": "xyz789"
     }
     
    @@ -33934,10 +33110,10 @@
    Fields
    Example
    {
       "company_email": "xyz789",
    -  "company_name": "xyz789",
    +  "company_name": "abc123",
       "legal_address": CompanyLegalAddressUpdateInput,
       "legal_name": "xyz789",
    -  "reseller_id": "abc123",
    +  "reseller_id": "xyz789",
       "vat_tax_id": "xyz789"
     }
     
    @@ -34023,11 +33199,11 @@
    Fields
    Example
    {
    -  "email": "xyz789",
    -  "firstname": "xyz789",
    -  "job_title": "xyz789",
    -  "lastname": "abc123",
    -  "role_id": "4",
    +  "email": "abc123",
    +  "firstname": "abc123",
    +  "job_title": "abc123",
    +  "lastname": "xyz789",
    +  "role_id": 4,
       "status": "ACTIVE",
       "target_id": 4,
       "telephone": "abc123"
    @@ -34162,8 +33338,8 @@ 
    Fields
    Example
    {
    -  "email": "abc123",
    -  "firstname": "abc123",
    +  "email": "xyz789",
    +  "firstname": "xyz789",
       "id": 4,
       "job_title": "xyz789",
       "lastname": "abc123",
    @@ -34223,7 +33399,7 @@ 
    Example
    {
       "items": [Customer],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -34311,8 +33487,8 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    -  "label": "abc123"
    +  "code": "abc123",
    +  "label": "xyz789"
     }
     
    @@ -34367,7 +33543,7 @@
    Example
    {
       "attributes": [ProductAttribute],
       "product": ProductInterface,
    -  "uid": "4"
    +  "uid": 4
     }
     
    @@ -34425,7 +33601,7 @@
    Fields
    Example
    {
       "attributes": [ComparableAttribute],
    -  "item_count": 123,
    +  "item_count": 987,
       "items": [ComparableItem],
       "uid": "4"
     }
    @@ -34669,25 +33845,6 @@ 
    linkTypes - - categories - [CategoryProductView!] - - A list of categories in which the product is present. - - - -
    -
    Arguments
    -
    -
    -
    family - String -
    -

    The product family to filter the categories by. For example, 'clothing', 'electronics' or 'books'

    -
    -
    -
    - - queryType - String @@ -34707,29 +33864,28 @@
    family<
    Example
    {
       "addToCartAllowed": false,
    -  "inStock": false,
    -  "lowStock": false,
    +  "inStock": true,
    +  "lowStock": true,
       "attributes": [ProductViewAttribute],
    -  "description": "abc123",
    +  "description": "xyz789",
       "id": 4,
       "images": [ProductViewImage],
       "videos": [ProductViewVideo],
       "lastModifiedAt": "2007-12-03T10:15:30Z",
    -  "metaDescription": "abc123",
    -  "metaKeyword": "abc123",
    +  "metaDescription": "xyz789",
    +  "metaKeyword": "xyz789",
       "metaTitle": "xyz789",
    -  "name": "abc123",
    +  "name": "xyz789",
       "inputOptions": [ProductViewInputOption],
       "options": [ProductViewOption],
       "priceRange": ProductViewPriceRange,
       "shortDescription": "xyz789",
       "sku": "xyz789",
    -  "externalId": "xyz789",
    -  "url": "xyz789",
    -  "urlKey": "abc123",
    +  "externalId": "abc123",
    +  "url": "abc123",
    +  "urlKey": "xyz789",
       "links": [ProductViewLink],
    -  "categories": [CategoryProductView],
    -  "queryType": "xyz789",
    +  "queryType": "abc123",
       "visibility": "abc123"
     }
     
    @@ -34822,7 +33978,7 @@
    Example
    {
       "field": "UNKNOWN_FIELD",
       "operator": OperatorInput,
    -  "enabled": true
    +  "enabled": false
     }
     
    @@ -34881,7 +34037,7 @@
    Example
    {
       "code": "xyz789",
       "label": "abc123",
    -  "uid": "4",
    +  "uid": 4,
       "value_index": 987
     }
     
    @@ -35027,7 +34183,7 @@
    Fields
    Example
    {
       "available_gift_wrapping": [GiftWrapping],
    -  "backorder_message": "abc123",
    +  "backorder_message": "xyz789",
       "configurable_options": [SelectedConfigurableOption],
       "configured_variant": ProductInterface,
       "custom_attributes": [CustomAttribute],
    @@ -35038,9 +34194,9 @@ 
    Example
    "gift_wrapping": GiftWrapping, "is_available": false, "is_salable": false, - "max_qty": 123.45, + "max_qty": 987.65, "min_qty": 123.45, - "not_available_message": "xyz789", + "not_available_message": "abc123", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, @@ -35250,28 +34406,28 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "eligible_for_return": true,
    +  "eligible_for_return": false,
       "entered_options": [OrderItemOption],
       "gift_message": GiftMessage,
       "gift_wrapping": GiftWrapping,
       "id": 4,
    -  "parent_sku": "xyz789",
    +  "parent_sku": "abc123",
       "prices": OrderItemPrices,
       "product": ProductInterface,
    -  "product_name": "xyz789",
    +  "product_name": "abc123",
       "product_sale_price": Money,
    -  "product_sku": "xyz789",
    +  "product_sku": "abc123",
       "product_type": "abc123",
       "product_url_key": "xyz789",
    -  "quantity_canceled": 987.65,
    +  "quantity_canceled": 123.45,
       "quantity_invoiced": 123.45,
    -  "quantity_ordered": 987.65,
    +  "quantity_ordered": 123.45,
       "quantity_refunded": 123.45,
    -  "quantity_return_requested": 123.45,
    -  "quantity_returned": 987.65,
    -  "quantity_shipped": 123.45,
    +  "quantity_return_requested": 987.65,
    +  "quantity_returned": 123.45,
    +  "quantity_shipped": 987.65,
       "selected_options": [OrderItemOption],
    -  "status": "abc123"
    +  "status": "xyz789"
     }
     
    @@ -35558,24 +34714,24 @@
    Example
    "categories": [CategoryInterface], "configurable_options": [ConfigurableProductOptions], "configurable_product_options_selection": ConfigurableProductOptionsSelection, - "country_of_manufacture": "xyz789", + "country_of_manufacture": "abc123", "crosssell_products": [ProductInterface], "custom_attributesV2": ProductCustomAttributes, "description": ComplexTextValue, "gift_message_available": false, - "gift_wrapping_available": true, + "gift_wrapping_available": false, "gift_wrapping_price": Money, "image": ProductImage, "is_returnable": "abc123", "manufacturer": 123, - "max_sale_qty": 987.65, + "max_sale_qty": 123.45, "media_gallery": [MediaGalleryInterface], - "meta_description": "abc123", - "meta_keyword": "xyz789", - "meta_title": "abc123", + "meta_description": "xyz789", + "meta_keyword": "abc123", + "meta_title": "xyz789", "min_sale_qty": 987.65, - "name": "abc123", - "new_from_date": "abc123", + "name": "xyz789", + "new_from_date": "xyz789", "new_to_date": "abc123", "only_x_left_in_stock": 123.45, "options": [CustomizableOptionInterface], @@ -35586,16 +34742,16 @@
    Example
    "quantity": 987.65, "related_products": [ProductInterface], "short_description": ComplexTextValue, - "sku": "xyz789", + "sku": "abc123", "small_image": ProductImage, "special_price": 987.65, "special_to_date": "xyz789", "stock_status": "IN_STOCK", - "swatch_image": "abc123", + "swatch_image": "xyz789", "thumbnail": ProductImage, - "uid": 4, + "uid": "4", "upsell_products": [ProductInterface], - "url_key": "abc123", + "url_key": "xyz789", "variants": [ConfigurableVariant], "weight": 987.65 } @@ -35656,7 +34812,7 @@
    Example
    {
       "attribute_code": "abc123",
       "label": "xyz789",
    -  "uid": 4,
    +  "uid": "4",
       "values": [ConfigurableProductOptionValue]
     }
     
    @@ -35719,11 +34875,11 @@
    Fields
    Example
    {
    -  "is_available": false,
    +  "is_available": true,
       "is_use_default": true,
    -  "label": "xyz789",
    +  "label": "abc123",
       "swatch": SwatchDataInterface,
    -  "uid": "4"
    +  "uid": 4
     }
     
    @@ -35795,10 +34951,10 @@
    Fields
    Example
    {
    -  "attribute_code": "abc123",
    -  "attribute_uid": "4",
    +  "attribute_code": "xyz789",
    +  "attribute_uid": 4,
       "label": "xyz789",
    -  "position": 987,
    +  "position": 123,
       "uid": "4",
       "use_default": true,
       "values": [ConfigurableProductOptionsValues]
    @@ -35930,11 +35086,11 @@ 
    Fields
    Example
    {
    -  "default_label": "xyz789",
    -  "label": "xyz789",
    +  "default_label": "abc123",
    +  "label": "abc123",
       "store_label": "abc123",
       "swatch_data": SwatchDataInterface,
    -  "uid": 4,
    +  "uid": "4",
       "use_default_value": true
     }
     
    @@ -36007,7 +35163,7 @@
    Example
    "product": ProductInterface, "quantity": 987.65, "sku": "xyz789", - "uid": 4 + "uid": "4" }
    @@ -36133,11 +35289,11 @@
    Fields
    Example
    {
    -  "added_at": "xyz789",
    +  "added_at": "abc123",
       "configurable_options": [SelectedConfigurableOption],
       "configured_variant": ProductInterface,
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "xyz789",
    +  "description": "abc123",
       "id": 4,
       "product": ProductInterface,
       "quantity": 987.65
    @@ -36185,7 +35341,7 @@ 
    Fields
    Example
    {
    -  "confirmation_key": "abc123",
    +  "confirmation_key": "xyz789",
       "order_id": 4
     }
     
    @@ -36235,8 +35391,8 @@
    Fields
    Example
    {
    -  "confirmation_key": "xyz789",
    -  "email": "xyz789"
    +  "confirmation_key": "abc123",
    +  "email": "abc123"
     }
     
    @@ -36281,7 +35437,7 @@
    Fields
    Example
    {
    -  "confirmation_key": "abc123",
    +  "confirmation_key": "xyz789",
       "order_id": 4
     }
     
    @@ -36389,7 +35545,7 @@
    Example
    "comment": "xyz789", "email": "abc123", "name": "xyz789", - "telephone": "xyz789" + "telephone": "abc123" }
    @@ -36471,7 +35627,7 @@
    Fields
    Example
    -
    {"requisitionListItemUids": [4]}
    +                  
    {"requisitionListItemUids": ["4"]}
     
    @@ -36630,8 +35786,8 @@
    Example
    "available_regions": [Region], "full_name_english": "abc123", "full_name_locale": "abc123", - "id": "abc123", - "three_letter_abbreviation": "xyz789", + "id": "xyz789", + "three_letter_abbreviation": "abc123", "two_letter_abbreviation": "xyz789" }
    @@ -38339,7 +37495,7 @@
    Fields
    Example
    -
    {"products": [4]}
    +                  
    {"products": ["4"]}
     
    @@ -38426,9 +37582,9 @@
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "event_name": "xyz789", + "event_name": "abc123", "gift_registry_type_uid": "4", - "message": "abc123", + "message": "xyz789", "privacy_settings": "PRIVATE", "registrants": [AddGiftRegistryRegistrantInput], "shipping_address": GiftRegistryShippingAddressInput, @@ -38510,7 +37666,7 @@
    Fields
    Example
    -
    {"cart_uid": "4"}
    +                  
    {"cart_uid": 4}
     
    @@ -38612,11 +37768,11 @@
    Fields
    Example
    {
    -  "cartId": "xyz789",
    +  "cartId": "abc123",
       "location": "PRODUCT_DETAIL",
       "methodCode": "xyz789",
       "paymentSource": "abc123",
    -  "vaultIntent": true
    +  "vaultIntent": false
     }
     
    @@ -38680,9 +37836,9 @@
    Example
    {
       "amount": 987.65,
       "currency_code": "xyz789",
    -  "id": "abc123",
    -  "mp_order_id": "abc123",
    -  "status": "xyz789"
    +  "id": "xyz789",
    +  "mp_order_id": "xyz789",
    +  "status": "abc123"
     }
     
    @@ -38730,7 +37886,7 @@
    Fields
    Example
    -
    {"currency": "AFN", "value": 987.65}
    +                  
    {"currency": "AFN", "value": 123.45}
     
    @@ -38842,7 +37998,7 @@
    Fields
    Example
    {
    -  "description": "xyz789",
    +  "description": "abc123",
       "name": "xyz789"
     }
     
    @@ -38932,7 +38088,7 @@
    Fields
    Example
    {
    -  "card_description": "xyz789",
    +  "card_description": "abc123",
       "setup_token_id": "xyz789"
     }
     
    @@ -39072,7 +38228,7 @@
    Fields
    Example
    -
    {"setup_token": "abc123"}
    +                  
    {"setup_token": "xyz789"}
     
    @@ -39119,7 +38275,7 @@
    Fields
    Example
    -
    {"name": "abc123", "visibility": "PUBLIC"}
    +                  
    {"name": "xyz789", "visibility": "PUBLIC"}
     
    @@ -39227,7 +38383,7 @@
    Example
    {
       "comments": [SalesCommentItem],
       "custom_attributes": [CustomAttribute],
    -  "id": 4,
    +  "id": "4",
       "items": [CreditMemoItemInterface],
       "number": "xyz789",
       "total": CreditMemoTotal
    @@ -39279,7 +38435,7 @@ 
    Fields
    Example
    {
    -  "credit_memo_id": "xyz789",
    +  "credit_memo_id": "abc123",
       "custom_attributes": [CustomAttributeInput]
     }
     
    @@ -39355,7 +38511,7 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "id": "4",
    +  "id": 4,
       "order_item": OrderItemInterface,
       "product_name": "abc123",
       "product_sale_price": Money,
    @@ -39415,7 +38571,7 @@ 
    Fields
    Example
    {
    -  "credit_memo_id": "abc123",
    +  "credit_memo_id": "xyz789",
       "credit_memo_item_id": "abc123",
       "custom_attributes": [CustomAttributeInput]
     }
    @@ -39530,10 +38686,10 @@ 
    Example
    "discounts": [Discount], "id": 4, "order_item": OrderItemInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, "product_sku": "abc123", - "quantity_refunded": 123.45 + "quantity_refunded": 987.65 }
    @@ -39726,11 +38882,11 @@
    Fields
    Example
    {
    -  "available_currency_codes": ["xyz789"],
    -  "base_currency_code": "xyz789",
    -  "base_currency_symbol": "abc123",
    +  "available_currency_codes": ["abc123"],
    +  "base_currency_code": "abc123",
    +  "base_currency_symbol": "xyz789",
       "default_display_currency_code": "xyz789",
    -  "default_display_currency_symbol": "xyz789",
    +  "default_display_currency_symbol": "abc123",
       "exchange_rates": [ExchangeRate]
     }
     
    @@ -40997,7 +40153,7 @@
    Fields
    Example
    -
    {"sku": "abc123", "price": 987.65}
    +                  
    {"sku": "xyz789", "price": 987.65}
     
    @@ -41094,7 +40250,7 @@
    Fields
    Example
    {
       "attribute_code": "abc123",
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -41208,13 +40364,13 @@
    Possible Types
    Example
    {
    -  "code": "4",
    -  "default_value": "abc123",
    +  "code": 4,
    +  "default_value": "xyz789",
       "entity_type": "CATALOG_PRODUCT",
       "frontend_class": "xyz789",
       "frontend_input": "BOOLEAN",
       "is_required": true,
    -  "is_unique": false,
    +  "is_unique": true,
       "label": "xyz789",
       "options": [CustomAttributeOptionInterface]
     }
    @@ -41281,8 +40437,8 @@ 
    Possible Types
    Example
    {
    -  "is_default": true,
    -  "label": "abc123",
    +  "is_default": false,
    +  "label": "xyz789",
       "value": "abc123"
     }
     
    @@ -41332,7 +40488,7 @@
    Fields
    Example
    {
    -  "key": "abc123",
    +  "key": "xyz789",
       "value": "xyz789"
     }
     
    @@ -41381,7 +40537,7 @@
    Fields
    Example
    {
       "type": "UNKNOWN_CUSTOMOPERATOR_TYPE",
    -  "value": ["xyz789"]
    +  "value": ["abc123"]
     }
     
    @@ -41976,36 +41132,36 @@
    Example
    "addresses": [CustomerAddress], "addressesV2": CustomerAddresses, "admin_assistance_actions": AdminAssistanceActions, - "allow_remote_shopping_assistance": false, + "allow_remote_shopping_assistance": true, "companies": UserCompaniesOutput, "company_hierarchy": [CompanyHierarchy], "compare_list": CompareList, "confirmation_status": "ACCOUNT_CONFIRMED", - "created_at": "xyz789", + "created_at": "abc123", "custom_attributes": [AttributeValueInterface], - "date_of_birth": "xyz789", + "date_of_birth": "abc123", "default_billing": "abc123", "default_shipping": "xyz789", - "email": "xyz789", + "email": "abc123", "firstname": "abc123", "gender": 123, "gift_registries": [GiftRegistry], "gift_registry": GiftRegistry, "group": CustomerGroupStorefront, "id": "4", - "is_subscribed": false, - "job_title": "abc123", + "is_subscribed": true, + "job_title": "xyz789", "lastname": "abc123", "middlename": "abc123", "orders": CustomerOrders, - "prefix": "abc123", + "prefix": "xyz789", "purchase_order": PurchaseOrder, "purchase_order_approval_rule": PurchaseOrderApprovalRule, "purchase_order_approval_rule_metadata": PurchaseOrderApprovalRuleMetadata, "purchase_order_approval_rules": PurchaseOrderApprovalRules, "purchase_orders": PurchaseOrders, "purchase_orders_enabled": false, - "quote_enabled": true, + "quote_enabled": false, "requisition_lists": RequisitionLists, "return": Return, "returns": Returns, @@ -42015,8 +41171,8 @@
    Example
    "status": "ACTIVE", "store_credit": CustomerStoreCredit, "structure_id": 4, - "suffix": "xyz789", - "taxvat": "abc123", + "suffix": "abc123", + "taxvat": "xyz789", "team": CompanyTeam, "telephone": "xyz789", "wishlist_v2": Wishlist, @@ -42177,26 +41333,26 @@
    attributeCodes
    Example
    {
       "city": "xyz789",
    -  "company": "abc123",
    +  "company": "xyz789",
       "country_code": "AF",
       "custom_attributesV2": [AttributeValueInterface],
       "default_billing": false,
       "default_shipping": true,
       "extension_attributes": [CustomerAddressAttribute],
       "fax": "abc123",
    -  "firstname": "xyz789",
    +  "firstname": "abc123",
       "id": 987,
    -  "lastname": "xyz789",
    -  "middlename": "abc123",
    +  "lastname": "abc123",
    +  "middlename": "xyz789",
       "postcode": "xyz789",
    -  "prefix": "xyz789",
    +  "prefix": "abc123",
       "region": CustomerAddressRegion,
    -  "region_id": 123,
    +  "region_id": 987,
       "street": ["xyz789"],
       "suffix": "xyz789",
    -  "telephone": "abc123",
    -  "uid": 4,
    -  "vat_id": "xyz789"
    +  "telephone": "xyz789",
    +  "uid": "4",
    +  "vat_id": "abc123"
     }
     
    @@ -42244,7 +41400,7 @@
    Fields
    Example
    {
       "attribute_code": "xyz789",
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -42383,22 +41539,22 @@
    Fields
    Example
    {
    -  "city": "xyz789",
    +  "city": "abc123",
       "company": "abc123",
       "country_code": "AF",
       "custom_attributesV2": [AttributeValueInput],
       "default_billing": false,
       "default_shipping": true,
    -  "fax": "xyz789",
    -  "firstname": "abc123",
    -  "lastname": "abc123",
    +  "fax": "abc123",
    +  "firstname": "xyz789",
    +  "lastname": "xyz789",
       "middlename": "abc123",
       "postcode": "abc123",
    -  "prefix": "xyz789",
    +  "prefix": "abc123",
       "region": CustomerAddressRegionInput,
       "street": ["abc123"],
       "suffix": "xyz789",
    -  "telephone": "abc123",
    +  "telephone": "xyz789",
       "vat_id": "xyz789"
     }
     
    @@ -42451,7 +41607,7 @@
    Fields
    Example
    {
    -  "region": "xyz789",
    +  "region": "abc123",
       "region_code": "xyz789",
       "region_id": 987
     }
    @@ -42508,9 +41664,9 @@ 
    Fields
    Example
    {
    -  "region": "abc123",
    -  "region_code": "abc123",
    -  "region_id": 987
    +  "region": "xyz789",
    +  "region_code": "xyz789",
    +  "region_id": 123
     }
     
    @@ -42663,15 +41819,15 @@
    Fields
    Example
    {
       "code": 4,
    -  "default_value": "abc123",
    +  "default_value": "xyz789",
       "entity_type": "CATALOG_PRODUCT",
       "frontend_class": "abc123",
       "frontend_input": "BOOLEAN",
       "input_filter": "NONE",
    -  "is_required": false,
    +  "is_required": true,
       "is_unique": true,
       "label": "xyz789",
    -  "multiline_count": 987,
    +  "multiline_count": 123,
       "options": [CustomAttributeOptionInterface],
       "sort_order": 987,
       "validate_rules": [ValidationRule]
    @@ -42789,18 +41945,18 @@ 
    Fields
    Example
    {
    -  "allow_remote_shopping_assistance": true,
    +  "allow_remote_shopping_assistance": false,
       "custom_attributes": [AttributeValueInput],
       "date_of_birth": "abc123",
       "email": "xyz789",
    -  "firstname": "abc123",
    +  "firstname": "xyz789",
       "gender": 123,
    -  "is_subscribed": true,
    -  "lastname": "xyz789",
    +  "is_subscribed": false,
    +  "lastname": "abc123",
       "middlename": "xyz789",
       "password": "xyz789",
    -  "prefix": "abc123",
    -  "suffix": "xyz789",
    +  "prefix": "xyz789",
    +  "suffix": "abc123",
       "taxvat": "xyz789"
     }
     
    @@ -42864,10 +42020,10 @@
    Fields
    Example
    {
       "date": "xyz789",
    -  "download_url": "xyz789",
    +  "download_url": "abc123",
       "order_increment_id": "abc123",
    -  "remaining_downloads": "xyz789",
    -  "status": "abc123"
    +  "remaining_downloads": "abc123",
    +  "status": "xyz789"
     }
     
    @@ -43165,29 +42321,29 @@
    currentPage
    Example
    {
    -  "admin_assisted_order": 123,
    +  "admin_assisted_order": 987,
       "applied_coupons": [AppliedCoupon],
       "applied_gift_cards": [ApplyGiftCardToOrder],
       "available_actions": ["REORDER"],
       "billing_address": OrderAddress,
    -  "carrier": "abc123",
    +  "carrier": "xyz789",
       "comments": [SalesCommentItem],
       "credit_memos": [CreditMemo],
       "custom_attributes": [CustomAttribute],
       "customer_info": OrderCustomerInfo,
    -  "email": "xyz789",
    +  "email": "abc123",
       "gift_message": GiftMessage,
    -  "gift_receipt_included": true,
    +  "gift_receipt_included": false,
       "gift_wrapping": GiftWrapping,
    -  "id": "4",
    +  "id": 4,
       "invoices": [Invoice],
       "is_virtual": false,
       "items": [OrderItemInterface],
       "items_eligible_for_return": [OrderItemInterface],
       "negotiable_quote": NegotiableQuote,
    -  "number": "abc123",
    +  "number": "xyz789",
       "order_date": "abc123",
    -  "order_status_change_date": "xyz789",
    +  "order_status_change_date": "abc123",
       "payment_methods": [OrderPaymentMethod],
       "printed_card_included": false,
       "returns": Returns,
    @@ -43195,7 +42351,7 @@ 
    Example
    "shipping_address": OrderAddress, "shipping_method": "abc123", "status": "abc123", - "token": "xyz789", + "token": "abc123", "total": OrderTotal }
    @@ -43718,7 +42874,7 @@
    Fields
    Example
    {
    -  "action": "abc123",
    +  "action": "xyz789",
       "actual_balance": Money,
       "balance_change": Money,
       "date_time_changed": "abc123"
    @@ -43864,16 +43020,16 @@ 
    Fields
    Example
    {
    -  "allow_remote_shopping_assistance": true,
    +  "allow_remote_shopping_assistance": false,
       "custom_attributes": [AttributeValueInput],
       "date_of_birth": "xyz789",
    -  "firstname": "xyz789",
    +  "firstname": "abc123",
       "gender": 123,
       "is_subscribed": false,
    -  "lastname": "abc123",
    -  "middlename": "xyz789",
    +  "lastname": "xyz789",
    +  "middlename": "abc123",
       "prefix": "xyz789",
    -  "suffix": "abc123",
    +  "suffix": "xyz789",
       "taxvat": "abc123"
     }
     
    @@ -43941,11 +43097,11 @@
    Fields
    Example
    {
    -  "product_sku": "abc123",
    -  "required": true,
    -  "sort_order": 987,
    -  "title": "xyz789",
    -  "uid": "4",
    +  "product_sku": "xyz789",
    +  "required": false,
    +  "sort_order": 123,
    +  "title": "abc123",
    +  "uid": 4,
       "value": CustomizableAreaValue
     }
     
    @@ -44009,7 +43165,7 @@
    Fields
    Example
    {
       "max_characters": 987,
    -  "price": 987.65,
    +  "price": 123.45,
       "price_type": "FIXED",
       "sku": "abc123",
       "uid": "4"
    @@ -44075,8 +43231,8 @@ 
    Fields
    Example
    {
       "required": false,
    -  "sort_order": 987,
    -  "title": "abc123",
    +  "sort_order": 123,
    +  "title": "xyz789",
       "uid": "4",
       "value": [CustomizableCheckboxValue]
     }
    @@ -44154,9 +43310,9 @@ 
    Example
    "price": 987.65, "price_type": "FIXED", "sku": "xyz789", - "sort_order": 987, - "title": "abc123", - "uid": "4" + "sort_order": 123, + "title": "xyz789", + "uid": 4 }
    @@ -44223,10 +43379,10 @@
    Fields
    Example
    {
    -  "product_sku": "abc123",
    -  "required": false,
    +  "product_sku": "xyz789",
    +  "required": true,
       "sort_order": 123,
    -  "title": "abc123",
    +  "title": "xyz789",
       "uid": 4,
       "value": CustomizableDateValue
     }
    @@ -44346,11 +43502,11 @@ 
    Fields
    Example
    {
    -  "price": 123.45,
    +  "price": 987.65,
       "price_type": "FIXED",
       "sku": "abc123",
       "type": "DATE",
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -44415,7 +43571,7 @@
    Example
    "required": true, "sort_order": 987, "title": "xyz789", - "uid": 4, + "uid": "4", "value": [CustomizableDropDownValue] }
    @@ -44492,7 +43648,7 @@
    Example
    "price": 987.65, "price_type": "FIXED", "sku": "abc123", - "sort_order": 987, + "sort_order": 123, "title": "abc123", "uid": "4" } @@ -44562,9 +43718,9 @@
    Fields
    Example
    {
       "product_sku": "abc123",
    -  "required": true,
    -  "sort_order": 123,
    -  "title": "abc123",
    +  "required": false,
    +  "sort_order": 987,
    +  "title": "xyz789",
       "uid": "4",
       "value": CustomizableFieldValue
     }
    @@ -44628,7 +43784,7 @@ 
    Fields
    Example
    {
    -  "max_characters": 123,
    +  "max_characters": 987,
       "price": 987.65,
       "price_type": "FIXED",
       "sku": "xyz789",
    @@ -44700,9 +43856,9 @@ 
    Fields
    Example
    {
       "product_sku": "abc123",
    -  "required": false,
    +  "required": true,
       "sort_order": 987,
    -  "title": "xyz789",
    +  "title": "abc123",
       "uid": 4,
       "value": CustomizableFileValue
     }
    @@ -44776,12 +43932,12 @@ 
    Fields
    Example
    {
    -  "file_extension": "xyz789",
    +  "file_extension": "abc123",
       "image_size_x": 123,
    -  "image_size_y": 123,
    -  "price": 987.65,
    +  "image_size_y": 987,
    +  "price": 123.45,
       "price_type": "FIXED",
    -  "sku": "xyz789",
    +  "sku": "abc123",
       "uid": 4
     }
     
    @@ -44844,7 +44000,7 @@
    Fields
    Example
    {
    -  "required": false,
    +  "required": true,
       "sort_order": 123,
       "title": "abc123",
       "uid": 4,
    @@ -44924,8 +44080,8 @@ 
    Example
    "price": 987.65, "price_type": "FIXED", "sku": "abc123", - "sort_order": 987, - "title": "abc123", + "sort_order": 123, + "title": "xyz789", "uid": "4" }
    @@ -45085,7 +44241,7 @@
    Possible Types
    Example
    {
    -  "required": true,
    +  "required": false,
       "sort_order": 123,
       "title": "xyz789",
       "uid": "4"
    @@ -45233,9 +44389,9 @@ 
    Fields
    Example
    {
       "required": true,
    -  "sort_order": 123,
    -  "title": "xyz789",
    -  "uid": 4,
    +  "sort_order": 987,
    +  "title": "abc123",
    +  "uid": "4",
       "value": [CustomizableRadioValue]
     }
     
    @@ -45308,8 +44464,8 @@
    Fields
    Example
    {
    -  "option_type_id": 123,
    -  "price": 123.45,
    +  "option_type_id": 987,
    +  "price": 987.65,
       "price_type": "FIXED",
       "sku": "abc123",
       "sort_order": 123,
    @@ -45377,7 +44533,7 @@ 
    Fields
    Example
    -
    {"success": false}
    +                  
    {"success": true}
     
    @@ -45457,7 +44613,7 @@
    Fields
    Example
    -
    {"success": true}
    +                  
    {"success": false}
     
    @@ -45497,7 +44653,7 @@
    Fields
    Example
    -
    {"result": true}
    +                  
    {"result": false}
     
    @@ -45590,7 +44746,7 @@
    Fields
    Example
    {
       "errors": [NegotiableQuoteInvalidStateError],
    -  "quote_uid": "4"
    +  "quote_uid": 4
     }
     
    @@ -45709,7 +44865,7 @@
    Fields
    Example
    -
    {"quote_uids": ["4"]}
    +                  
    {"quote_uids": [4]}
     
    @@ -45841,7 +44997,7 @@
    Fields
    Example
    {
       "customerPaymentTokens": CustomerPaymentTokens,
    -  "result": true
    +  "result": false
     }
     
    @@ -45887,7 +45043,7 @@
    Fields
    Example
    -
    {"message": "abc123", "type": "UNDEFINED"}
    +                  
    {"message": "xyz789", "type": "UNDEFINED"}
     
    @@ -46098,7 +45254,7 @@
    Fields
    Example
    -
    {"requisition_lists": RequisitionLists, "status": true}
    +                  
    {"requisition_lists": RequisitionLists, "status": false}
     
    @@ -46217,7 +45373,7 @@
    Example
    "amount": Money, "applied_to": "ITEM", "coupon": AppliedCoupon, - "is_discounting_locked": true, + "is_discounting_locked": false, "label": "xyz789", "type": "xyz789", "value": 987.65 @@ -46349,24 +45505,24 @@
    Fields
    Example
    {
    -  "backorder_message": "xyz789",
    +  "backorder_message": "abc123",
       "custom_attributes": [CustomAttribute],
       "customizable_options": [SelectedCustomizableOption],
       "discount": [Discount],
       "errors": [CartItemError],
    -  "is_available": true,
    -  "is_salable": false,
    +  "is_available": false,
    +  "is_salable": true,
       "links": [DownloadableProductLinks],
       "max_qty": 987.65,
    -  "min_qty": 987.65,
    -  "not_available_message": "abc123",
    +  "min_qty": 123.45,
    +  "not_available_message": "xyz789",
       "note_from_buyer": [ItemNote],
       "note_from_seller": [ItemNote],
       "prices": CartItemPrices,
       "product": ProductInterface,
    -  "quantity": 987.65,
    +  "quantity": 123.45,
       "samples": [DownloadableProductSamples],
    -  "uid": "4"
    +  "uid": 4
     }
     
    @@ -46453,9 +45609,9 @@
    Example
    "downloadable_links": [DownloadableItemsLinks], "id": 4, "order_item": OrderItemInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "abc123", + "product_sku": "xyz789", "quantity_refunded": 123.45 }
    @@ -46545,7 +45701,7 @@
    Example
    "order_item": OrderItemInterface, "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "xyz789", + "product_sku": "abc123", "quantity_invoiced": 123.45 }
    @@ -46599,8 +45755,8 @@
    Fields
    Example
    {
       "sort_order": 987,
    -  "title": "xyz789",
    -  "uid": "4"
    +  "title": "abc123",
    +  "uid": 4
     }
     
    @@ -46761,27 +45917,27 @@
    Example
    "custom_attributes": [CustomAttribute], "discounts": [Discount], "downloadable_links": [DownloadableItemsLinks], - "eligible_for_return": false, + "eligible_for_return": true, "entered_options": [OrderItemOption], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, "id": 4, "prices": OrderItemPrices, "product": ProductInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "abc123", - "product_type": "xyz789", - "product_url_key": "abc123", - "quantity_canceled": 123.45, - "quantity_invoiced": 123.45, + "product_sku": "xyz789", + "product_type": "abc123", + "product_url_key": "xyz789", + "quantity_canceled": 987.65, + "quantity_invoiced": 987.65, "quantity_ordered": 987.65, "quantity_refunded": 987.65, - "quantity_return_requested": 123.45, + "quantity_return_requested": 987.65, "quantity_returned": 987.65, "quantity_shipped": 987.65, "selected_options": [OrderItemOption], - "status": "xyz789" + "status": "abc123" }
    @@ -47051,9 +46207,9 @@
    filters
    Example
    {
    -  "canonical_url": "xyz789",
    +  "canonical_url": "abc123",
       "categories": [CategoryInterface],
    -  "country_of_manufacture": "abc123",
    +  "country_of_manufacture": "xyz789",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    @@ -47063,23 +46219,23 @@ 
    Example
    "downloadable_product_samples": [ DownloadableProductSamples ], - "gift_message_available": true, + "gift_message_available": false, "gift_wrapping_available": false, "gift_wrapping_price": Money, "image": ProductImage, - "is_returnable": "abc123", + "is_returnable": "xyz789", "links_purchased_separately": 987, - "links_title": "abc123", - "manufacturer": 123, + "links_title": "xyz789", + "manufacturer": 987, "max_sale_qty": 123.45, "media_gallery": [MediaGalleryInterface], - "meta_description": "xyz789", - "meta_keyword": "abc123", - "meta_title": "xyz789", - "min_sale_qty": 123.45, - "name": "abc123", - "new_from_date": "abc123", - "new_to_date": "xyz789", + "meta_description": "abc123", + "meta_keyword": "xyz789", + "meta_title": "abc123", + "min_sale_qty": 987.65, + "name": "xyz789", + "new_from_date": "xyz789", + "new_to_date": "abc123", "only_x_left_in_stock": 987.65, "options": [CustomizableOptionInterface], "options_container": "xyz789", @@ -47089,16 +46245,16 @@
    Example
    "quantity": 987.65, "related_products": [ProductInterface], "short_description": ComplexTextValue, - "sku": "abc123", + "sku": "xyz789", "small_image": ProductImage, - "special_price": 123.45, + "special_price": 987.65, "special_to_date": "xyz789", "stock_status": "IN_STOCK", - "swatch_image": "xyz789", + "swatch_image": "abc123", "thumbnail": ProductImage, - "uid": "4", + "uid": 4, "upsell_products": [ProductInterface], - "url_key": "abc123" + "url_key": "xyz789" }
    @@ -47220,10 +46376,10 @@
    Fields
    Example
    {
       "price": 123.45,
    -  "sample_url": "abc123",
    +  "sample_url": "xyz789",
       "sort_order": 123,
    -  "title": "abc123",
    -  "uid": 4
    +  "title": "xyz789",
    +  "uid": "4"
     }
     
    @@ -47265,7 +46421,7 @@
    Fields
    Example
    -
    {"link_id": 987}
    +                  
    {"link_id": 123}
     
    @@ -47316,9 +46472,9 @@
    Fields
    Example
    {
    -  "sample_url": "xyz789",
    +  "sample_url": "abc123",
       "sort_order": 987,
    -  "title": "abc123"
    +  "title": "xyz789"
     }
     
    @@ -47393,7 +46549,7 @@
    Example
    "customizable_options": [SelectedCustomizableOption], "links": [DownloadableProductLinks], "product": ProductInterface, - "quantity": 123.45, + "quantity": 987.65, "samples": [DownloadableProductSamples], "sku": "xyz789", "uid": "4" @@ -47477,7 +46633,7 @@
    Example
    "added_at": "abc123", "customizable_options": [SelectedCustomizableOption], "description": "xyz789", - "id": 4, + "id": "4", "links_v2": [DownloadableProductLinks], "product": ProductInterface, "quantity": 123.45, @@ -47620,8 +46776,8 @@
    Fields
    Example
    {
    -  "attribute_code": "xyz789",
    -  "value": "xyz789"
    +  "attribute_code": "abc123",
    +  "value": "abc123"
     }
     
    @@ -47669,7 +46825,10 @@
    Fields
    Example
    -
    {"uid": 4, "value": "abc123"}
    +                  
    {
    +  "uid": "4",
    +  "value": "abc123"
    +}
     
    @@ -47738,7 +46897,7 @@
    Possible Types
    Example
    {
       "code": "PRODUCT_NOT_FOUND",
    -  "message": "xyz789"
    +  "message": "abc123"
     }
     
    @@ -47802,7 +46961,7 @@
    Possible Types
    Example
    -
    {"message": "xyz789"}
    +                  
    {"message": "abc123"}
     
    @@ -47857,7 +47016,7 @@
    Fields
    Example
    {
       "country_code": "AF",
    -  "postcode": "abc123",
    +  "postcode": "xyz789",
       "region": CustomerAddressRegionInput
     }
     
    @@ -47910,7 +47069,7 @@
    Fields
    Example
    {
       "address": EstimateAddressInput,
    -  "cart_id": "xyz789",
    +  "cart_id": "abc123",
       "shipping_method": ShippingMethodInput
     }
     
    @@ -48040,7 +47199,7 @@
    Fields
    Example
    {
       "customer": Customer,
    -  "token": "xyz789"
    +  "token": "abc123"
     }
     
    @@ -48086,7 +47245,7 @@
    Fields
    Example
    -
    {"currency_to": "abc123", "rate": 123.45}
    +                  
    {"currency_to": "xyz789", "rate": 123.45}
     
    @@ -48158,12 +47317,12 @@
    Fields
    Example
    {
    -  "code": "abc123",
    -  "is_visible": false,
    -  "payment_intent": "xyz789",
    +  "code": "xyz789",
    +  "is_visible": true,
    +  "payment_intent": "abc123",
       "payment_source": "abc123",
       "sdk_params": [SDKParams],
    -  "sort_order": "abc123",
    +  "sort_order": "xyz789",
       "three_ds_mode": "OFF",
       "title": "xyz789"
     }
    @@ -48214,8 +47373,8 @@ 
    Fields
    Example
    {
    -  "payment_source": "abc123",
    -  "paypal_fastlane_token": "xyz789"
    +  "payment_source": "xyz789",
    +  "paypal_fastlane_token": "abc123"
     }
     
    @@ -48352,7 +47511,7 @@
    Fields
    Example
    {
       "eq": "xyz789",
    -  "in": ["abc123"]
    +  "in": ["xyz789"]
     }
     
    @@ -48445,7 +47604,7 @@
    Fields
    Example
    -
    {"match": "xyz789", "match_type": "FULL"}
    +                  
    {"match": "abc123", "match_type": "FULL"}
     
    @@ -48494,7 +47653,7 @@
    Fields
    Example
    {
       "from": "abc123",
    -  "to": "xyz789"
    +  "to": "abc123"
     }
     
    @@ -48657,7 +47816,7 @@
    Fields
    Example
    {
    -  "eq": "xyz789",
    +  "eq": "abc123",
       "in": ["abc123"],
       "match": "xyz789"
     }
    @@ -48783,16 +47942,16 @@ 
    Example
    "eq": "abc123", "from": "abc123", "gt": "xyz789", - "gteq": "xyz789", + "gteq": "abc123", "in": ["abc123"], "like": "xyz789", "lt": "xyz789", "lteq": "xyz789", - "moreq": "xyz789", + "moreq": "abc123", "neq": "xyz789", - "nin": ["xyz789"], - "notnull": "abc123", - "null": "xyz789", + "nin": ["abc123"], + "notnull": "xyz789", + "null": "abc123", "to": "abc123" }
    @@ -48851,9 +48010,9 @@
    Fields
    Example
    {
       "attribute": "xyz789",
    -  "frontendInput": "abc123",
    +  "frontendInput": "xyz789",
       "label": "xyz789",
    -  "numeric": true
    +  "numeric": false
     }
     
    @@ -48901,7 +48060,7 @@
    Fields
    Example
    {
       "amount": Money,
    -  "label": "xyz789"
    +  "label": "abc123"
     }
     
    @@ -49030,7 +48189,7 @@
    Fields
    Example
    -
    {"customer_email": "abc123"}
    +                  
    {"customer_email": "xyz789"}
     
    @@ -49111,7 +48270,7 @@
    Fields
    Example
    -
    {"template_id": 4}
    +                  
    {"template_id": "4"}
     
    @@ -49151,7 +48310,7 @@
    Fields
    Example
    -
    {"negotiable_quote_uid": 4}
    +                  
    {"negotiable_quote_uid": "4"}
     
    @@ -49243,8 +48402,8 @@
    Fields
    Example
    {
       "balance": Money,
    -  "code": "xyz789",
    -  "expiration_date": "xyz789"
    +  "code": "abc123",
    +  "expiration_date": "abc123"
     }
     
    @@ -49286,7 +48445,7 @@
    Fields
    Example
    -
    {"gift_card_code": "xyz789"}
    +                  
    {"gift_card_code": "abc123"}
     
    @@ -49349,7 +48508,7 @@
    Example
    {
       "attribute_id": 123,
       "uid": 4,
    -  "value": 123.45,
    +  "value": 987.65,
       "website_id": 987,
       "website_value": 987.65
     }
    @@ -49517,7 +48676,7 @@ 
    Example
    {
       "amount": Money,
       "available_gift_wrapping": [GiftWrapping],
    -  "backorder_message": "xyz789",
    +  "backorder_message": "abc123",
       "custom_attributes": [CustomAttribute],
       "customizable_options": [SelectedCustomizableOption],
       "discount": [Discount],
    @@ -49527,9 +48686,9 @@ 
    Example
    "is_available": false, "is_salable": false, "max_qty": 123.45, - "message": "abc123", - "min_qty": 123.45, - "not_available_message": "abc123", + "message": "xyz789", + "min_qty": 987.65, + "not_available_message": "xyz789", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, @@ -49537,9 +48696,9 @@
    Example
    "quantity": 987.65, "recipient_email": "abc123", "recipient_name": "abc123", - "sender_email": "abc123", - "sender_name": "abc123", - "uid": "4" + "sender_email": "xyz789", + "sender_name": "xyz789", + "uid": 4 }
    @@ -49622,9 +48781,9 @@
    Example
    "gift_card": GiftCardItem, "id": "4", "order_item": OrderItemInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, - "product_sku": "xyz789", + "product_sku": "abc123", "quantity_refunded": 123.45 }
    @@ -49706,11 +48865,11 @@
    Example
    "custom_attributes": [CustomAttribute], "discounts": [Discount], "gift_card": GiftCardItem, - "id": 4, + "id": "4", "order_item": OrderItemInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "xyz789", + "product_sku": "abc123", "quantity_invoiced": 123.45 }
    @@ -49774,7 +48933,7 @@
    Fields
    Example
    {
       "message": "abc123",
    -  "recipient_email": "xyz789",
    +  "recipient_email": "abc123",
       "recipient_name": "xyz789",
       "sender_email": "abc123",
       "sender_name": "abc123"
    @@ -49852,10 +49011,10 @@ 
    Example
    "amount": Money, "custom_giftcard_amount": Money, "message": "xyz789", - "recipient_email": "abc123", - "recipient_name": "abc123", - "sender_email": "xyz789", - "sender_name": "abc123" + "recipient_email": "xyz789", + "recipient_name": "xyz789", + "sender_email": "abc123", + "sender_name": "xyz789" }
    @@ -50011,7 +49170,7 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "eligible_for_return": false,
    +  "eligible_for_return": true,
       "entered_options": [OrderItemOption],
       "gift_card": GiftCardItem,
       "gift_message": GiftMessage,
    @@ -50019,20 +49178,20 @@ 
    Example
    "id": "4", "prices": OrderItemPrices, "product": ProductInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "xyz789", + "product_sku": "abc123", "product_type": "abc123", "product_url_key": "xyz789", "quantity_canceled": 123.45, "quantity_invoiced": 987.65, - "quantity_ordered": 987.65, + "quantity_ordered": 123.45, "quantity_refunded": 987.65, - "quantity_return_requested": 123.45, + "quantity_return_requested": 987.65, "quantity_returned": 123.45, "quantity_shipped": 123.45, "selected_options": [OrderItemOption], - "status": "abc123" + "status": "xyz789" }
    @@ -50337,8 +49496,8 @@
    filters
    Example
    {
    -  "allow_message": true,
    -  "allow_open_amount": false,
    +  "allow_message": false,
    +  "allow_open_amount": true,
       "canonical_url": "abc123",
       "categories": [CategoryInterface],
       "country_of_manufacture": "abc123",
    @@ -50347,30 +49506,30 @@ 
    Example
    "description": ComplexTextValue, "gift_card_options": [CustomizableOptionInterface], "gift_message_available": false, - "gift_wrapping_available": true, + "gift_wrapping_available": false, "gift_wrapping_price": Money, "giftcard_amounts": [GiftCardAmounts], "giftcard_type": "VIRTUAL", "image": ProductImage, - "is_redeemable": true, - "is_returnable": "abc123", - "lifetime": 123, - "manufacturer": 123, + "is_redeemable": false, + "is_returnable": "xyz789", + "lifetime": 987, + "manufacturer": 987, "max_sale_qty": 123.45, "media_gallery": [MediaGalleryInterface], - "message_max_length": 987, - "meta_description": "xyz789", + "message_max_length": 123, + "meta_description": "abc123", "meta_keyword": "abc123", - "meta_title": "xyz789", - "min_sale_qty": 123.45, - "name": "xyz789", - "new_from_date": "abc123", + "meta_title": "abc123", + "min_sale_qty": 987.65, + "name": "abc123", + "new_from_date": "xyz789", "new_to_date": "xyz789", "only_x_left_in_stock": 987.65, - "open_amount_max": 123.45, + "open_amount_max": 987.65, "open_amount_min": 987.65, "options": [CustomizableOptionInterface], - "options_container": "xyz789", + "options_container": "abc123", "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], @@ -50384,10 +49543,10 @@
    Example
    "stock_status": "IN_STOCK", "swatch_image": "abc123", "thumbnail": ProductImage, - "uid": 4, + "uid": "4", "upsell_products": [ProductInterface], "url_key": "abc123", - "weight": 987.65 + "weight": 123.45 }
    @@ -50459,8 +49618,8 @@
    Example
    "gift_card_options": GiftCardOptions, "product": ProductInterface, "quantity": 987.65, - "sku": "xyz789", - "uid": 4 + "sku": "abc123", + "uid": "4" }
    @@ -50529,11 +49688,11 @@
    Fields
    Example
    {
       "gift_card": GiftCardItem,
    -  "id": 4,
    +  "id": "4",
       "order_item": OrderItemInterface,
       "product_name": "xyz789",
       "product_sale_price": Money,
    -  "product_sku": "abc123",
    +  "product_sku": "xyz789",
       "quantity_shipped": 987.65
     }
     
    @@ -50663,13 +49822,13 @@
    Fields
    Example
    {
    -  "added_at": "xyz789",
    +  "added_at": "abc123",
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "xyz789",
    +  "description": "abc123",
       "gift_card_options": GiftCardOptions,
    -  "id": 4,
    +  "id": "4",
       "product": ProductInterface,
    -  "quantity": 123.45
    +  "quantity": 987.65
     }
     
    @@ -50721,7 +49880,7 @@
    Fields
    Example
    {
    -  "from": "xyz789",
    +  "from": "abc123",
       "message": "abc123",
       "to": "xyz789"
     }
    @@ -50778,7 +49937,7 @@ 
    Fields
    Example
    {
    -  "from": "abc123",
    +  "from": "xyz789",
       "message": "abc123",
       "to": "xyz789"
     }
    @@ -50951,16 +50110,16 @@ 
    Example
    {
       "created_at": "abc123",
       "dynamic_attributes": [GiftRegistryDynamicAttribute],
    -  "event_name": "abc123",
    +  "event_name": "xyz789",
       "items": [GiftRegistryItemInterface],
       "message": "xyz789",
    -  "owner_name": "abc123",
    +  "owner_name": "xyz789",
       "privacy_settings": "PRIVATE",
       "registrants": [GiftRegistryRegistrant],
       "shipping_address": CustomerAddress,
       "status": "ACTIVE",
       "type": GiftRegistryType,
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -51143,7 +50302,7 @@
    Fields
    Example
    {
       "code": "4",
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -51215,7 +50374,7 @@
    Example
    {
       "code": "4",
       "label": "abc123",
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -51278,12 +50437,12 @@
    Fields
    Example
    {
    -  "attribute_group": "xyz789",
    -  "code": 4,
    +  "attribute_group": "abc123",
    +  "code": "4",
       "input_type": "abc123",
    -  "is_required": false,
    +  "is_required": true,
       "label": "abc123",
    -  "sort_order": 987
    +  "sort_order": 123
     }
     
    @@ -51363,11 +50522,11 @@
    Possible Types
    Example
    {
    -  "attribute_group": "abc123",
    -  "code": "4",
    -  "input_type": "abc123",
    -  "is_required": false,
    -  "label": "abc123",
    +  "attribute_group": "xyz789",
    +  "code": 4,
    +  "input_type": "xyz789",
    +  "is_required": true,
    +  "label": "xyz789",
       "sort_order": 123
     }
     
    @@ -51433,11 +50592,11 @@
    Fields
    Example
    {
       "created_at": "xyz789",
    -  "note": "xyz789",
    +  "note": "abc123",
       "product": ProductInterface,
    -  "quantity": 987.65,
    +  "quantity": 123.45,
       "quantity_fulfilled": 987.65,
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -51518,12 +50677,12 @@
    Possible Types
    Example
    {
    -  "created_at": "xyz789",
    +  "created_at": "abc123",
       "note": "xyz789",
       "product": ProductInterface,
       "quantity": 987.65,
    -  "quantity_fulfilled": 123.45,
    -  "uid": "4"
    +  "quantity_fulfilled": 987.65,
    +  "uid": 4
     }
     
    @@ -51587,7 +50746,7 @@
    Possible Types
    Example
    {
    -  "status": false,
    +  "status": true,
       "user_errors": [GiftRegistryItemsUserError]
     }
     
    @@ -51651,10 +50810,10 @@
    Fields
    Example
    {
       "code": "OUT_OF_STOCK",
    -  "gift_registry_item_uid": "4",
    -  "gift_registry_uid": "4",
    -  "message": "abc123",
    -  "product_uid": 4
    +  "gift_registry_item_uid": 4,
    +  "gift_registry_uid": 4,
    +  "message": "xyz789",
    +  "product_uid": "4"
     }
     
    @@ -51881,7 +51040,7 @@
    Example
    "email": "abc123", "firstname": "abc123", "lastname": "abc123", - "uid": 4 + "uid": "4" }
    @@ -51930,8 +51089,8 @@
    Fields
    Example
    {
       "code": "4",
    -  "label": "xyz789",
    -  "value": "xyz789"
    +  "label": "abc123",
    +  "value": "abc123"
     }
     
    @@ -51998,12 +51157,12 @@
    Fields
    Example
    {
    -  "event_date": "abc123",
    -  "event_title": "abc123",
    +  "event_date": "xyz789",
    +  "event_title": "xyz789",
       "gift_registry_uid": 4,
       "location": "abc123",
       "name": "abc123",
    -  "type": "xyz789"
    +  "type": "abc123"
     }
     
    @@ -52059,8 +51218,8 @@
    Fields
    Example
    {
       "address_data": CustomerAddressInput,
    -  "address_id": 4,
    -  "customer_address_uid": "4"
    +  "address_id": "4",
    +  "customer_address_uid": 4
     }
     
    @@ -52165,7 +51324,7 @@
    Example
    GiftRegistryDynamicAttributeMetadataInterface ], "label": "xyz789", - "uid": 4 + "uid": "4" }
    @@ -52222,7 +51381,7 @@
    Fields
    Example
    {
    -  "design": "xyz789",
    +  "design": "abc123",
       "image": GiftWrappingImage,
       "price": Money,
       "uid": "4"
    @@ -52272,7 +51431,7 @@ 
    Fields
    Example
    {
    -  "label": "xyz789",
    +  "label": "abc123",
       "url": "abc123"
     }
     
    @@ -52402,12 +51561,12 @@
    Fields
    Example
    {
       "button_styles": GooglePayButtonStyles,
    -  "code": "xyz789",
    +  "code": "abc123",
       "is_visible": false,
       "payment_intent": "abc123",
    -  "payment_source": "abc123",
    +  "payment_source": "xyz789",
       "sdk_params": [SDKParams],
    -  "sort_order": "xyz789",
    +  "sort_order": "abc123",
       "three_ds_mode": "OFF",
       "title": "xyz789"
     }
    @@ -52728,7 +51887,7 @@ 
    Example
    "custom_attributesV2": ProductCustomAttributes, "description": ComplexTextValue, "gift_message_available": true, - "gift_wrapping_available": true, + "gift_wrapping_available": false, "gift_wrapping_price": Money, "image": ProductImage, "is_returnable": "abc123", @@ -52736,15 +51895,15 @@
    Example
    "manufacturer": 123, "max_sale_qty": 123.45, "media_gallery": [MediaGalleryInterface], - "meta_description": "abc123", + "meta_description": "xyz789", "meta_keyword": "xyz789", "meta_title": "abc123", "min_sale_qty": 987.65, "name": "abc123", - "new_from_date": "xyz789", - "new_to_date": "abc123", - "only_x_left_in_stock": 123.45, - "options_container": "abc123", + "new_from_date": "abc123", + "new_to_date": "xyz789", + "only_x_left_in_stock": 987.65, + "options_container": "xyz789", "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], @@ -52754,14 +51913,14 @@
    Example
    "sku": "abc123", "small_image": ProductImage, "special_price": 123.45, - "special_to_date": "xyz789", + "special_to_date": "abc123", "stock_status": "IN_STOCK", - "swatch_image": "abc123", + "swatch_image": "xyz789", "thumbnail": ProductImage, "uid": "4", "upsell_products": [ProductInterface], "url_key": "abc123", - "weight": 987.65 + "weight": 123.45 }
    @@ -52816,7 +51975,7 @@
    Example
    {
       "position": 987,
       "product": ProductInterface,
    -  "qty": 987.65
    +  "qty": 123.45
     }
     
    @@ -52884,12 +52043,12 @@
    Fields
    Example
    {
    -  "added_at": "xyz789",
    +  "added_at": "abc123",
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "xyz789",
    -  "id": 4,
    +  "description": "abc123",
    +  "id": "4",
       "product": ProductInterface,
    -  "quantity": 123.45
    +  "quantity": 987.65
     }
     
    @@ -52938,7 +52097,7 @@
    Fields
    Example
    {
    -  "reason": "xyz789",
    +  "reason": "abc123",
       "token": "xyz789"
     }
     
    @@ -52996,7 +52155,7 @@
    Example
    {
       "email": "abc123",
       "lastname": "xyz789",
    -  "number": "abc123"
    +  "number": "xyz789"
     }
     
    @@ -53048,7 +52207,7 @@
    Fields
    Example
    {
    -  "attribute": "abc123",
    +  "attribute": "xyz789",
       "matched_words": ["abc123"],
       "value": "xyz789"
     }
    @@ -53120,9 +52279,9 @@ 
    Example
    "created_at": "xyz789", "creator_name": "abc123", "creator_type": "abc123", - "item_id": 123, - "note": "xyz789", - "product_name": "abc123" + "item_id": 987, + "note": "abc123", + "product_name": "xyz789" }
    @@ -53210,15 +52369,15 @@
    Fields
    Example
    {
    -  "cc_vault_code": "xyz789",
    +  "cc_vault_code": "abc123",
       "code": "abc123",
       "is_vault_enabled": true,
       "is_visible": false,
       "payment_intent": "xyz789",
    -  "payment_source": "abc123",
    +  "payment_source": "xyz789",
       "requires_card_details": true,
       "sdk_params": [SDKParams],
    -  "sort_order": "abc123",
    +  "sort_order": "xyz789",
       "three_ds_mode": "OFF",
       "title": "xyz789"
     }
    @@ -53311,14 +52470,14 @@ 
    Fields
    Example
    {
    -  "cardBin": "abc123",
    -  "cardExpiryMonth": "abc123",
    -  "cardExpiryYear": "abc123",
    +  "cardBin": "xyz789",
    +  "cardExpiryMonth": "xyz789",
    +  "cardExpiryYear": "xyz789",
       "cardLast4": "abc123",
       "holderName": "abc123",
       "is_active_payment_token_enabler": false,
       "payment_source": "xyz789",
    -  "payments_order_id": "xyz789",
    +  "payments_order_id": "abc123",
       "paypal_order_id": "abc123"
     }
     
    @@ -53384,7 +52543,7 @@
    Fields
    Example
    {
    -  "thumbnail": "xyz789",
    +  "thumbnail": "abc123",
       "value": "xyz789"
     }
     
    @@ -53547,8 +52706,8 @@
    Fields
    Example
    {
       "code": "PRODUCT_NOT_FOUND",
    -  "message": "abc123",
    -  "quantity": 987.65
    +  "message": "xyz789",
    +  "quantity": 123.45
     }
     
    @@ -53571,7 +52730,7 @@
    Description
    Example
    -
    987
    +                  
    123
     
    @@ -53611,7 +52770,7 @@
    Fields
    Example
    -
    {"message": "xyz789"}
    +                  
    {"message": "abc123"}
     
    @@ -53679,7 +52838,7 @@
    Example
    {
       "comments": [SalesCommentItem],
       "custom_attributes": [CustomAttribute],
    -  "id": 4,
    +  "id": "4",
       "items": [InvoiceItemInterface],
       "number": "abc123",
       "total": InvoiceTotal
    @@ -53732,7 +52891,7 @@ 
    Fields
    Example
    {
       "custom_attributes": [CustomAttributeInput],
    -  "invoice_id": "xyz789"
    +  "invoice_id": "abc123"
     }
     
    @@ -53809,7 +52968,7 @@
    Example
    "discounts": [Discount], "id": "4", "order_item": OrderItemInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, "product_sku": "abc123", "quantity_invoiced": 123.45 @@ -53868,7 +53027,7 @@
    Fields
    Example
    {
       "custom_attributes": [CustomAttributeInput],
    -  "invoice_id": "xyz789",
    +  "invoice_id": "abc123",
       "invoice_item_id": "xyz789"
     }
     
    @@ -53984,8 +53143,8 @@
    Example
    "order_item": OrderItemInterface, "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "xyz789", - "quantity_invoiced": 987.65 + "product_sku": "abc123", + "quantity_invoiced": 123.45 }
    @@ -54190,7 +53349,7 @@
    Fields
    Example
    -
    {"is_email_available": true}
    +                  
    {"is_email_available": false}
     
    @@ -54230,7 +53389,7 @@
    Fields
    Example
    -
    {"is_role_name_available": false}
    +                  
    {"is_role_name_available": true}
     
    @@ -54310,7 +53469,7 @@
    Fields
    Example
    -
    {"is_email_available": false}
    +                  
    {"is_email_available": true}
     
    @@ -54443,7 +53602,7 @@
    Fields
    Example
    -
    {"isSubscribed": true, "message": "abc123"}
    +                  
    {"isSubscribed": false, "message": "xyz789"}
     
    @@ -54515,12 +53674,12 @@
    Fields
    Example
    {
       "created_at": "xyz789",
    -  "creator_id": 123,
    +  "creator_id": 987,
       "creator_name": "xyz789",
    -  "creator_type": 123,
    -  "negotiable_quote_item_uid": 4,
    +  "creator_type": 987,
    +  "negotiable_quote_item_uid": "4",
       "note": "abc123",
    -  "note_uid": 4
    +  "note_uid": "4"
     }
     
    @@ -54572,7 +53731,7 @@
    Fields
    Example
    {
    -  "label": "xyz789",
    +  "label": "abc123",
       "uid": 4,
       "values": [ItemSelectedBundleOptionValue]
     }
    @@ -54637,10 +53796,10 @@ 
    Fields
    Example
    {
       "price": Money,
    -  "product_name": "abc123",
    +  "product_name": "xyz789",
       "product_sku": "abc123",
    -  "quantity": 123.45,
    -  "uid": "4"
    +  "quantity": 987.65,
    +  "uid": 4
     }
     
    @@ -54765,8 +53924,8 @@
    Fields
    Example
    {
    -  "note": "xyz789",
    -  "quote_item_uid": "4",
    +  "note": "abc123",
    +  "quote_item_uid": 4,
       "quote_uid": "4"
     }
     
    @@ -54857,9 +54016,9 @@
    Possible Types
    Example
    {
       "disabled": true,
    -  "label": "abc123",
    +  "label": "xyz789",
       "position": 123,
    -  "url": "xyz789"
    +  "url": "abc123"
     }
     
    @@ -55050,7 +54209,7 @@
    Fields
    Example
    -
    {"currency": "AFN", "value": 987.65}
    +                  
    {"currency": "AFN", "value": 123.45}
     
    @@ -55102,7 +54261,7 @@
    Fields
    Example
    {
       "gift_registry": GiftRegistry,
    -  "status": false,
    +  "status": true,
       "user_errors": [GiftRegistryItemsUserError]
     }
     
    @@ -55145,7 +54304,7 @@
    Fields
    Example
    -
    {"requisitionListItemUids": ["4"]}
    +                  
    {"requisitionListItemUids": [4]}
     
    @@ -55247,8 +54406,8 @@
    Fields
    Example
    {
    -  "quote_item_uid": 4,
    -  "quote_uid": "4",
    +  "quote_item_uid": "4",
    +  "quote_uid": 4,
       "requisition_list_uid": "4"
     }
     
    @@ -55499,9 +54658,9 @@
    Example
    "billing_address": NegotiableQuoteBillingAddress, "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "xyz789", + "created_at": "abc123", "custom_attributes": [CustomAttribute], - "email": "abc123", + "email": "xyz789", "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "is_virtual": true, @@ -55509,15 +54668,15 @@
    Example
    "name": "abc123", "order": CustomerOrder, "prices": CartPrices, - "sales_rep_name": "abc123", + "sales_rep_name": "xyz789", "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [NegotiableQuoteShippingAddress], "status": "SUBMITTED", "template_id": "4", - "template_name": "abc123", - "total_quantity": 987.65, + "template_name": "xyz789", + "total_quantity": 123.45, "uid": 4, - "updated_at": "abc123" + "updated_at": "xyz789" }
    @@ -55564,7 +54723,7 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    +  "code": "abc123",
       "label": "xyz789"
     }
     
    @@ -55704,23 +54863,23 @@
    Fields
    Example
    {
    -  "city": "xyz789",
    +  "city": "abc123",
       "company": "xyz789",
       "country_code": "xyz789",
       "custom_attributes": [AttributeValueInput],
    -  "fax": "xyz789",
    -  "firstname": "abc123",
    -  "lastname": "abc123",
    -  "middlename": "abc123",
    -  "postcode": "abc123",
    -  "prefix": "abc123",
    -  "region": "xyz789",
    -  "region_id": 123,
    -  "save_in_address_book": false,
    -  "street": ["xyz789"],
    +  "fax": "abc123",
    +  "firstname": "xyz789",
    +  "lastname": "xyz789",
    +  "middlename": "xyz789",
    +  "postcode": "xyz789",
    +  "prefix": "xyz789",
    +  "region": "abc123",
    +  "region_id": 987,
    +  "save_in_address_book": true,
    +  "street": ["abc123"],
       "suffix": "xyz789",
       "telephone": "abc123",
    -  "vat_id": "xyz789"
    +  "vat_id": "abc123"
     }
     
    @@ -55860,23 +55019,23 @@
    Possible Types
    Example
    {
    -  "city": "xyz789",
    +  "city": "abc123",
       "company": "xyz789",
       "country": NegotiableQuoteAddressCountry,
       "custom_attributes": [AttributeValueInterface],
       "customer_address_uid": 4,
    -  "fax": "xyz789",
    +  "fax": "abc123",
       "firstname": "xyz789",
    -  "lastname": "abc123",
    -  "middlename": "xyz789",
    +  "lastname": "xyz789",
    +  "middlename": "abc123",
       "postcode": "abc123",
    -  "prefix": "xyz789",
    +  "prefix": "abc123",
       "region": NegotiableQuoteAddressRegion,
       "street": ["xyz789"],
    -  "suffix": "abc123",
    -  "telephone": "abc123",
    -  "uid": "4",
    -  "vat_id": "abc123"
    +  "suffix": "xyz789",
    +  "telephone": "xyz789",
    +  "uid": 4,
    +  "vat_id": "xyz789"
     }
     
    @@ -55930,7 +55089,7 @@
    Example
    {
       "code": "xyz789",
       "label": "abc123",
    -  "region_id": 123
    +  "region_id": 987
     }
     
    @@ -56052,18 +55211,18 @@
    Example
    "company": "xyz789", "country": NegotiableQuoteAddressCountry, "custom_attributes": [AttributeValueInterface], - "customer_address_uid": 4, - "fax": "abc123", - "firstname": "abc123", + "customer_address_uid": "4", + "fax": "xyz789", + "firstname": "xyz789", "lastname": "xyz789", "middlename": "xyz789", "postcode": "abc123", - "prefix": "xyz789", + "prefix": "abc123", "region": NegotiableQuoteAddressRegion, - "street": ["xyz789"], - "suffix": "xyz789", + "street": ["abc123"], + "suffix": "abc123", "telephone": "abc123", - "uid": "4", + "uid": 4, "vat_id": "xyz789" }
    @@ -56126,8 +55285,8 @@
    Fields
    Example
    {
       "address": NegotiableQuoteAddressInput,
    -  "customer_address_uid": "4",
    -  "same_as_shipping": true,
    +  "customer_address_uid": 4,
    +  "same_as_shipping": false,
       "use_for_shipping": true
     }
     
    @@ -56197,9 +55356,9 @@
    Example
    {
       "attachments": [NegotiableQuoteCommentAttachment],
       "author": NegotiableQuoteUser,
    -  "created_at": "xyz789",
    +  "created_at": "abc123",
       "creator_type": "BUYER",
    -  "text": "xyz789",
    +  "text": "abc123",
       "uid": "4"
     }
     
    @@ -56247,7 +55406,7 @@
    Fields
    Example
    {
    -  "name": "xyz789",
    +  "name": "abc123",
       "url": "xyz789"
     }
     
    @@ -56290,7 +55449,7 @@
    Fields
    Example
    -
    {"key": "abc123"}
    +                  
    {"key": "xyz789"}
     
    @@ -56384,7 +55543,7 @@
    Fields
    Example
    {
       "attachments": [NegotiableQuoteCommentAttachmentInput],
    -  "comment": "abc123"
    +  "comment": "xyz789"
     }
     
    @@ -56438,7 +55597,7 @@
    Example
    {
       "new_value": "xyz789",
       "old_value": "abc123",
    -  "title": "xyz789"
    +  "title": "abc123"
     }
     
    @@ -56601,7 +55760,7 @@
    Fields
    Example
    -
    {"comment": "xyz789"}
    +                  
    {"comment": "abc123"}
     
    @@ -56672,7 +55831,7 @@
    Example
    "changes": NegotiableQuoteHistoryChanges, "created_at": "xyz789", "item_note": HistoryItemNoteData, - "uid": "4" + "uid": 4 }
    @@ -56778,7 +55937,7 @@
    Fields
    Example
    {
    -  "new_expiration": "abc123",
    +  "new_expiration": "xyz789",
       "old_expiration": "xyz789"
     }
     
    @@ -57002,7 +56161,7 @@
    Fields
    Example
    -
    {"message": "xyz789"}
    +                  
    {"message": "abc123"}
     
    @@ -57097,7 +56256,7 @@
    Fields
    Example
    {
    -  "code": "abc123",
    +  "code": "xyz789",
       "purchase_order_number": "abc123"
     }
     
    @@ -57288,23 +56447,23 @@
    Example
    {
       "available_shipping_methods": [AvailableShippingMethod],
       "city": "xyz789",
    -  "company": "abc123",
    +  "company": "xyz789",
       "country": NegotiableQuoteAddressCountry,
       "custom_attributes": [AttributeValueInterface],
    -  "customer_address_uid": 4,
    +  "customer_address_uid": "4",
       "fax": "xyz789",
       "firstname": "abc123",
    -  "lastname": "abc123",
    +  "lastname": "xyz789",
       "middlename": "xyz789",
    -  "postcode": "xyz789",
    +  "postcode": "abc123",
       "prefix": "xyz789",
       "region": NegotiableQuoteAddressRegion,
       "selected_shipping_method": SelectedShippingMethod,
    -  "street": ["xyz789"],
    -  "suffix": "abc123",
    +  "street": ["abc123"],
    +  "suffix": "xyz789",
       "telephone": "abc123",
    -  "uid": 4,
    -  "vat_id": "abc123"
    +  "uid": "4",
    +  "vat_id": "xyz789"
     }
     
    @@ -57361,7 +56520,7 @@
    Example
    {
       "address": NegotiableQuoteAddressInput,
       "customer_address_uid": 4,
    -  "customer_notes": "abc123"
    +  "customer_notes": "xyz789"
     }
     
    @@ -57708,8 +56867,8 @@
    Example
    "is_min_max_qty_used": true, "is_virtual": false, "items": [CartItemInterface], - "max_order_commitment": 987, - "min_order_commitment": 123, + "max_order_commitment": 123, + "min_order_commitment": 987, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, @@ -57718,11 +56877,11 @@
    Example
    ], "sales_rep_name": "xyz789", "shipping_addresses": [NegotiableQuoteShippingAddress], - "status": "xyz789", + "status": "abc123", "template_id": "4", - "total_quantity": 987.65, + "total_quantity": 123.45, "uid": 4, - "updated_at": "abc123" + "updated_at": "xyz789" }
    @@ -57909,25 +57068,25 @@
    Fields
    Example
    {
    -  "activated_at": "abc123",
    +  "activated_at": "xyz789",
       "company_name": "xyz789",
       "created_at": "xyz789",
    -  "expiration_date": "xyz789",
    +  "expiration_date": "abc123",
       "is_min_max_qty_used": false,
       "last_ordered_at": "xyz789",
       "last_shared_at": "xyz789",
    -  "max_order_commitment": 123,
    -  "min_negotiated_grand_total": 123.45,
    -  "min_order_commitment": 987,
    -  "name": "xyz789",
    -  "orders_placed": 987,
    +  "max_order_commitment": 987,
    +  "min_negotiated_grand_total": 987.65,
    +  "min_order_commitment": 123,
    +  "name": "abc123",
    +  "orders_placed": 123,
       "prices": CartPrices,
       "sales_rep_name": "xyz789",
       "state": "xyz789",
       "status": "abc123",
       "submitted_by": "abc123",
       "template_id": "4",
    -  "uid": "4",
    +  "uid": 4,
       "updated_at": "abc123"
     }
     
    @@ -58113,8 +57272,8 @@
    Fields
    Example
    {
    -  "new_status": "xyz789",
    -  "old_status": "abc123"
    +  "new_status": "abc123",
    +  "old_status": "xyz789"
     }
     
    @@ -58214,7 +57373,7 @@
    Fields
    Example
    -
    {"item_id": 4, "max_qty": 123.45, "min_qty": 123.45, "quantity": 123.45}
    +                  
    {"item_id": 4, "max_qty": 123.45, "min_qty": 123.45, "quantity": 987.65}
     
    @@ -58275,9 +57434,9 @@
    Fields
    Example
    {
       "document_identifier": "xyz789",
    -  "document_name": "abc123",
    +  "document_name": "xyz789",
       "link_id": "4",
    -  "reference_document_url": "abc123"
    +  "reference_document_url": "xyz789"
     }
     
    @@ -58333,8 +57492,8 @@
    Fields
    Example
    {
       "address": NegotiableQuoteAddressInput,
    -  "customer_address_uid": 4,
    -  "customer_notes": "abc123"
    +  "customer_address_uid": "4",
    +  "customer_notes": "xyz789"
     }
     
    @@ -58484,7 +57643,7 @@
    Example
    "items": [NegotiableQuoteTemplateGridItem], "page_info": SearchResultPageInfo, "sort_fields": SortFields, - "total_count": 123 + "total_count": 987 }
    @@ -58624,8 +57783,8 @@
    Fields
    Example
    {
    -  "firstname": "xyz789",
    -  "lastname": "abc123"
    +  "firstname": "abc123",
    +  "lastname": "xyz789"
     }
     
    @@ -58731,7 +57890,7 @@
    Fields
    Example
    -
    {"message": "xyz789", "uid": 4}
    +                  
    {"message": "abc123", "uid": 4}
     
    @@ -58863,7 +58022,7 @@
    Fields
    Example
    {
    -  "backend_integration_url": "abc123",
    +  "backend_integration_url": "xyz789",
       "custom_config": [CustomConfigKeyValue]
     }
     
    @@ -59018,7 +58177,7 @@
    Fields
    Example
    -
    {"order_number": "xyz789"}
    +                  
    {"order_number": "abc123"}
     
    @@ -59204,16 +58363,16 @@
    attributeCodes
    Example
    {
       "city": "xyz789",
    -  "company": "abc123",
    +  "company": "xyz789",
       "country_code": "AF",
       "custom_attributesV2": [AttributeValueInterface],
    -  "fax": "xyz789",
    -  "firstname": "xyz789",
    +  "fax": "abc123",
    +  "firstname": "abc123",
       "lastname": "abc123",
    -  "middlename": "xyz789",
    +  "middlename": "abc123",
       "postcode": "abc123",
    -  "prefix": "abc123",
    -  "region": "xyz789",
    +  "prefix": "xyz789",
    +  "region": "abc123",
       "region_id": 4,
       "street": ["xyz789"],
       "suffix": "abc123",
    @@ -59276,10 +58435,10 @@ 
    Fields
    Example
    {
    -  "firstname": "abc123",
    -  "lastname": "xyz789",
    -  "middlename": "abc123",
    -  "prefix": "abc123",
    +  "firstname": "xyz789",
    +  "lastname": "abc123",
    +  "middlename": "xyz789",
    +  "prefix": "xyz789",
       "suffix": "abc123"
     }
     
    @@ -59440,18 +58599,18 @@
    Example
    "product": ProductInterface, "product_name": "abc123", "product_sale_price": Money, - "product_sku": "abc123", - "product_type": "abc123", - "product_url_key": "xyz789", - "quantity_canceled": 987.65, - "quantity_invoiced": 987.65, - "quantity_ordered": 987.65, - "quantity_refunded": 123.45, - "quantity_return_requested": 987.65, + "product_sku": "xyz789", + "product_type": "xyz789", + "product_url_key": "abc123", + "quantity_canceled": 123.45, + "quantity_invoiced": 123.45, + "quantity_ordered": 123.45, + "quantity_refunded": 987.65, + "quantity_return_requested": 123.45, "quantity_returned": 987.65, "quantity_shipped": 123.45, "selected_options": [OrderItemOption], - "status": "xyz789" + "status": "abc123" }
    @@ -59647,17 +58806,17 @@
    Example
    "entered_options": [OrderItemOption], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "id": "4", + "id": 4, "prices": OrderItemPrices, "product": ProductInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, "product_sku": "xyz789", - "product_type": "xyz789", - "product_url_key": "abc123", + "product_type": "abc123", + "product_url_key": "xyz789", "quantity_canceled": 987.65, - "quantity_invoiced": 123.45, - "quantity_ordered": 987.65, + "quantity_invoiced": 987.65, + "quantity_ordered": 123.45, "quantity_refunded": 123.45, "quantity_return_requested": 987.65, "quantity_returned": 987.65, @@ -59710,8 +58869,8 @@
    Fields
    Example
    {
    -  "label": "xyz789",
    -  "value": "abc123"
    +  "label": "abc123",
    +  "value": "xyz789"
     }
     
    @@ -59863,8 +59022,8 @@
    Fields
    Example
    {
       "additional_data": [KeyValue],
    -  "name": "abc123",
    -  "type": "abc123"
    +  "name": "xyz789",
    +  "type": "xyz789"
     }
     
    @@ -59927,7 +59086,7 @@
    Fields
    Example
    {
       "comments": [SalesCommentItem],
    -  "id": 4,
    +  "id": "4",
       "items": [ShipmentItemInterface],
       "number": "xyz789",
       "tracking": [ShipmentTracking]
    @@ -59972,7 +59131,7 @@ 
    Fields
    Example
    -
    {"token": "xyz789"}
    +                  
    {"token": "abc123"}
     
    @@ -60094,56 +59253,6 @@
    Example
    "total_store_credit": Money, "total_tax": Money } -
    - - - back to top - -
    -
    -
    - Types -
    -

    PageInfo

    -
    -
    -
    -
    Description
    -

    Provides pagination information for navigating through paginated result sets.

    -
    -
    -
    Fields
    - - - - - - - - - - - - - - - - - - - - - -
    Field NameDescription
    currentPage - Int! - The current page number (1-based indexing).
    pageSize - Int! - The number of items per page.
    totalPages - Int! - The total number of pages available.
    -
    -
    -
    -
    -
    Example
    -
    {"currentPage": 123, "pageSize": 987, "totalPages": 123}
     
    @@ -60376,9 +59485,9 @@
    Example
    {
       "code": "xyz789",
       "is_visible": false,
    -  "payment_intent": "xyz789",
    +  "payment_intent": "abc123",
       "sdk_params": [SDKParams],
    -  "sort_order": "abc123",
    +  "sort_order": "xyz789",
       "title": "xyz789"
     }
     
    @@ -60607,14 +59716,14 @@
    Fields
    Example
    {
       "additional_data": [PaymentAttributeInput],
    -  "code": "abc123",
    +  "code": "xyz789",
       "payment_services_paypal_apple_pay": ApplePayMethodInput,
       "payment_services_paypal_fastlane": FastlaneMethodInput,
       "payment_services_paypal_google_pay": GooglePayMethodInput,
       "payment_services_paypal_hosted_fields": HostedFieldsInput,
       "payment_services_paypal_smart_buttons": SmartButtonMethodInput,
       "payment_services_paypal_vault": VaultMethodInput,
    -  "purchase_order_number": "xyz789"
    +  "purchase_order_number": "abc123"
     }
     
    @@ -60671,10 +59780,10 @@
    Fields
    Example
    {
    -  "id": "abc123",
    -  "mp_order_id": "abc123",
    +  "id": "xyz789",
    +  "mp_order_id": "xyz789",
       "payment_source_details": PaymentSourceDetails,
    -  "status": "xyz789"
    +  "status": "abc123"
     }
     
    @@ -60893,8 +60002,8 @@
    Fields
    Example
    {
       "details": "xyz789",
    -  "payment_method_code": "xyz789",
    -  "public_hash": "xyz789",
    +  "payment_method_code": "abc123",
    +  "public_hash": "abc123",
       "type": "card"
     }
     
    @@ -61020,7 +60129,7 @@
    Possible Types
    Example
    -
    {"weight": 123.45}
    +                  
    {"weight": 987.65}
     
    @@ -61146,21 +60255,21 @@
    Fields
    Example
    {
    -  "city": "abc123",
    +  "city": "xyz789",
       "contact_name": "xyz789",
       "country_id": "xyz789",
       "description": "xyz789",
    -  "email": "xyz789",
    -  "fax": "xyz789",
    +  "email": "abc123",
    +  "fax": "abc123",
       "latitude": 123.45,
    -  "longitude": 123.45,
    +  "longitude": 987.65,
       "name": "xyz789",
    -  "phone": "xyz789",
    -  "pickup_location_code": "xyz789",
    -  "postcode": "xyz789",
    -  "region": "abc123",
    -  "region_id": 987,
    -  "street": "abc123"
    +  "phone": "abc123",
    +  "pickup_location_code": "abc123",
    +  "postcode": "abc123",
    +  "region": "xyz789",
    +  "region_id": 123,
    +  "street": "xyz789"
     }
     
    @@ -61820,7 +60929,7 @@
    Fields
    Example
    -
    {"cart_id": "xyz789"}
    +                  
    {"cart_id": "abc123"}
     
    @@ -61909,7 +61018,7 @@
    Fields
    Example
    -
    {"cart_id": "abc123"}
    +                  
    {"cart_id": "xyz789"}
     
    @@ -62042,7 +61151,7 @@
    Fields
    Example
    -
    {"amount": 987.65, "code": "abc123"}
    +                  
    {"amount": 987.65, "code": "xyz789"}
     
    @@ -62093,8 +61202,8 @@
    Fields
    Example
    {
    -  "discount_percentage": 123.45,
    -  "main_final_price": 123.45,
    +  "discount_percentage": 987.65,
    +  "main_final_price": 987.65,
       "main_price": 123.45
     }
     
    @@ -62287,7 +61396,7 @@
    Fields
    Example
    -
    {"sku": "xyz789"}
    +                  
    {"sku": "abc123"}
     
    @@ -62368,7 +61477,7 @@
    Fields
    Example
    -
    {"message": "abc123", "success": true}
    +                  
    {"message": "abc123", "success": false}
     
    @@ -62415,7 +61524,7 @@
    Fields
    Example
    {
       "code": "abc123",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -62468,10 +61577,10 @@
    Fields
    Example
    {
    -  "attribute_type": "abc123",
    +  "attribute_type": "xyz789",
       "code": 4,
    -  "url": "xyz789",
    -  "value": "xyz789"
    +  "url": "abc123",
    +  "value": "abc123"
     }
     
    @@ -62565,7 +61674,7 @@
    Fields
    Example
    -
    {"amount_off": 123.45, "percent_off": 987.65}
    +                  
    {"amount_off": 987.65, "percent_off": 123.45}
     
    @@ -62621,10 +61730,10 @@
    Fields
    Example
    {
    -  "disabled": false,
    -  "label": "xyz789",
    -  "position": 987,
    -  "url": "xyz789"
    +  "disabled": true,
    +  "label": "abc123",
    +  "position": 123,
    +  "url": "abc123"
     }
     
    @@ -63000,21 +62109,21 @@
    Possible Types
    Example
    {
    -  "canonical_url": "xyz789",
    +  "canonical_url": "abc123",
       "categories": [CategoryInterface],
       "country_of_manufacture": "xyz789",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    -  "gift_message_available": false,
    -  "gift_wrapping_available": true,
    +  "gift_message_available": true,
    +  "gift_wrapping_available": false,
       "gift_wrapping_price": Money,
       "image": ProductImage,
    -  "is_returnable": "xyz789",
    -  "manufacturer": 123,
    +  "is_returnable": "abc123",
    +  "manufacturer": 987,
       "max_sale_qty": 987.65,
       "media_gallery": [MediaGalleryInterface],
    -  "meta_description": "abc123",
    +  "meta_description": "xyz789",
       "meta_keyword": "xyz789",
       "meta_title": "xyz789",
       "min_sale_qty": 123.45,
    @@ -63022,11 +62131,11 @@ 
    Example
    "new_from_date": "abc123", "new_to_date": "abc123", "only_x_left_in_stock": 987.65, - "options_container": "xyz789", + "options_container": "abc123", "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], - "quantity": 123.45, + "quantity": 987.65, "related_products": [ProductInterface], "short_description": ComplexTextValue, "sku": "xyz789", @@ -63034,11 +62143,11 @@
    Example
    "special_price": 987.65, "special_to_date": "abc123", "stock_status": "IN_STOCK", - "swatch_image": "abc123", + "swatch_image": "xyz789", "thumbnail": ProductImage, - "uid": 4, + "uid": "4", "upsell_products": [ProductInterface], - "url_key": "abc123" + "url_key": "xyz789" }
    @@ -63186,8 +62295,8 @@
    Example
    "link_type": "xyz789", "linked_product_sku": "abc123", "linked_product_type": "abc123", - "position": 123, - "sku": "xyz789" + "position": 987, + "sku": "abc123" }
    @@ -63239,8 +62348,8 @@
    Fields
    Example
    {
    -  "asset_id": "abc123",
    -  "media_type": "xyz789",
    +  "asset_id": "xyz789",
    +  "media_type": "abc123",
       "media_url": "xyz789"
     }
     
    @@ -63295,7 +62404,7 @@
    Example
    {
       "media_type": "abc123",
       "video_asset_id": "abc123",
    -  "video_media_url": "xyz789"
    +  "video_media_url": "abc123"
     }
     
    @@ -63362,9 +62471,9 @@
    Fields
    Example
    {
    -  "media_type": "xyz789",
    +  "media_type": "abc123",
       "video_description": "abc123",
    -  "video_metadata": "xyz789",
    +  "video_metadata": "abc123",
       "video_provider": "abc123",
       "video_title": "xyz789",
       "video_url": "abc123"
    @@ -63653,7 +62762,7 @@ 
    Fields
    Example
    {
    -  "code": "abc123",
    +  "code": "xyz789",
       "message": "xyz789"
     }
     
    @@ -63768,7 +62877,7 @@
    Example
    "disabled": false, "label": "xyz789", "position": 987, - "url": "abc123", + "url": "xyz789", "video_content": ProductMediaGalleryEntriesVideoContent }
    @@ -63948,25 +63057,6 @@
    linkTypes - - categories - [CategoryProductView!] - - A list of categories in which the product is present. - - - -
    -
    Arguments
    -
    -
    -
    family - String -
    -

    The product family to filter the categories by. For example, 'clothing', 'electronics' or 'books'

    -
    -
    -
    - - queryType - String @@ -64007,29 +63097,28 @@
    Possible Types
    Example
    {
    -  "addToCartAllowed": true,
    -  "inStock": true,
    +  "addToCartAllowed": false,
    +  "inStock": false,
       "lowStock": true,
       "attributes": [ProductViewAttribute],
       "description": "xyz789",
    -  "id": "4",
    +  "id": 4,
       "images": [ProductViewImage],
       "videos": [ProductViewVideo],
       "lastModifiedAt": "2007-12-03T10:15:30Z",
    -  "metaDescription": "abc123",
    -  "metaKeyword": "xyz789",
    -  "metaTitle": "xyz789",
    +  "metaDescription": "xyz789",
    +  "metaKeyword": "abc123",
    +  "metaTitle": "abc123",
       "name": "xyz789",
       "shortDescription": "abc123",
       "inputOptions": [ProductViewInputOption],
       "sku": "abc123",
       "externalId": "abc123",
    -  "url": "xyz789",
    -  "urlKey": "xyz789",
    +  "url": "abc123",
    +  "urlKey": "abc123",
       "links": [ProductViewLink],
    -  "categories": [CategoryProductView],
       "queryType": "abc123",
    -  "visibility": "abc123"
    +  "visibility": "xyz789"
     }
     
    @@ -64086,7 +63175,7 @@
    Fields
    Example
    {
    -  "label": "abc123",
    +  "label": "xyz789",
       "name": "xyz789",
       "roles": ["xyz789"],
       "value": {}
    @@ -65368,7 +64457,7 @@ 
    Example
    {
       "label": "abc123",
       "roles": ["abc123"],
    -  "url": "abc123"
    +  "url": "xyz789"
     }
     
    @@ -65456,15 +64545,15 @@
    Fields
    Example
    {
       "id": "4",
    -  "title": "abc123",
    +  "title": "xyz789",
       "required": true,
    -  "type": "abc123",
    -  "markupAmount": 123.45,
    -  "suffix": "abc123",
    +  "type": "xyz789",
    +  "markupAmount": 987.65,
    +  "suffix": "xyz789",
       "sortOrder": 987,
       "range": ProductViewInputOptionRange,
       "imageSize": ProductViewInputOptionImageSize,
    -  "fileExtensions": "xyz789"
    +  "fileExtensions": "abc123"
     }
     
    @@ -65510,7 +64599,7 @@
    Fields
    Example
    -
    {"width": 987, "height": 987}
    +                  
    {"width": 123, "height": 987}
     
    @@ -65555,7 +64644,7 @@
    Fields
    Example
    -
    {"from": 123.45, "to": 123.45}
    +                  
    {"from": 987.65, "to": 987.65}
     
    @@ -65709,7 +64798,7 @@
    Fields
    Example
    {
    -  "id": "4",
    +  "id": 4,
       "multi": true,
       "required": true,
       "title": "abc123",
    @@ -65792,8 +64881,8 @@ 
    Possible Types
    Example
    {
    -  "id": "4",
    -  "title": "abc123",
    +  "id": 4,
    +  "title": "xyz789",
       "inStock": false
     }
     
    @@ -65846,9 +64935,9 @@
    Fields
    Example
    {
    -  "id": "4",
    +  "id": 4,
       "title": "xyz789",
    -  "inStock": true
    +  "inStock": false
     }
     
    @@ -65915,10 +65004,10 @@
    Fields
    Example
    {
    -  "id": "4",
    +  "id": 4,
       "isDefault": false,
       "product": SimpleProductView,
    -  "quantity": 123.45,
    +  "quantity": 987.65,
       "title": "abc123",
       "inStock": false
     }
    @@ -65982,10 +65071,10 @@ 
    Fields
    Example
    {
    -  "id": "4",
    -  "title": "xyz789",
    +  "id": 4,
    +  "title": "abc123",
       "type": "TEXT",
    -  "value": "abc123",
    +  "value": "xyz789",
       "inStock": true
     }
     
    @@ -66046,7 +65135,7 @@
    Example
    "final": Price, "regular": Price, "tiers": [ProductViewTierPrice], - "roles": ["abc123"] + "roles": ["xyz789"] }
    @@ -66175,7 +65264,7 @@
    Fields
    Example
    -
    {"in": [987.65]}
    +                  
    {"in": [123.45]}
     
    @@ -66314,7 +65403,7 @@
    Fields
    Example
    {
    -  "selections": ["xyz789"],
    +  "selections": ["abc123"],
       "product": ProductView
     }
     
    @@ -66363,7 +65452,7 @@
    Fields
    Example
    {
       "variants": [ProductViewVariant],
    -  "cursor": "xyz789"
    +  "cursor": "abc123"
     }
     
    @@ -66422,7 +65511,7 @@
    Example
    {
       "preview": ProductViewImage,
       "url": "xyz789",
    -  "description": "xyz789",
    +  "description": "abc123",
       "title": "abc123"
     }
     
    @@ -66475,7 +65564,7 @@
    Fields
    Example
    {
       "date": "2007-12-03T10:15:30Z",
    -  "items": ["abc123"]
    +  "items": ["xyz789"]
     }
     
    @@ -66582,8 +65671,8 @@
    Example
    "order": CustomerOrder, "quote": Cart, "status": "PENDING", - "uid": "4", - "updated_at": "abc123" + "uid": 4, + "updated_at": "xyz789" }
    @@ -66756,9 +65845,9 @@
    Fields
    Example
    {
    -  "message": "xyz789",
    -  "name": "xyz789",
    -  "role": "abc123",
    +  "message": "abc123",
    +  "name": "abc123",
    +  "role": "xyz789",
       "status": "PENDING",
       "updated_at": "xyz789"
     }
    @@ -67211,11 +66300,11 @@ 
    Fields
    Example
    {
    -  "applies_to": [4],
    -  "approvers": [4],
    +  "applies_to": ["4"],
    +  "approvers": ["4"],
       "condition": CreatePurchaseOrderApprovalRuleConditionInput,
    -  "description": "abc123",
    -  "name": "xyz789",
    +  "description": "xyz789",
    +  "name": "abc123",
       "status": "ENABLED"
     }
     
    @@ -67421,7 +66510,7 @@
    Example
    {
       "items": [PurchaseOrderApprovalRule],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -67479,8 +66568,8 @@
    Fields
    Example
    {
       "author": Customer,
    -  "created_at": "xyz789",
    -  "text": "abc123",
    +  "created_at": "abc123",
    +  "text": "xyz789",
       "uid": "4"
     }
     
    @@ -67605,9 +66694,9 @@
    Fields
    Example
    {
       "activity": "abc123",
    -  "created_at": "abc123",
    +  "created_at": "xyz789",
       "message": "xyz789",
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -67803,7 +66892,7 @@
    Example
    {
       "items": [PurchaseOrder],
       "page_info": SearchResultPageInfo,
    -  "total_count": 123
    +  "total_count": 987
     }
     
    @@ -67961,8 +67050,8 @@
    Example
    {
       "company_purchase_orders": true,
       "created_date": FilterRangeTypeInput,
    -  "my_approvals": true,
    -  "require_my_approval": true,
    +  "my_approvals": false,
    +  "require_my_approval": false,
       "status": "PENDING"
     }
     
    @@ -68008,7 +67097,7 @@
    Fields
    Example
    {
    -  "customerGroup": "abc123",
    +  "customerGroup": "xyz789",
       "userViewHistory": [ViewHistoryInput]
     }
     
    @@ -68105,7 +67194,7 @@
    Fields
    Example
    {
    -  "expiration_date": "abc123",
    +  "expiration_date": "xyz789",
       "template_id": 4
     }
     
    @@ -68167,10 +67256,10 @@
    Fields
    Example
    {
    -  "item_id": "4",
    -  "item_uid": 4,
    -  "note": "xyz789",
    -  "templateId": "4"
    +  "item_id": 4,
    +  "item_uid": "4",
    +  "note": "abc123",
    +  "templateId": 4
     }
     
    @@ -68218,7 +67307,7 @@
    Fields
    Example
    {
       "message": "abc123",
    -  "type": "xyz789"
    +  "type": "abc123"
     }
     
    @@ -68275,9 +67364,9 @@
    Fields
    Example
    {
    -  "count": 987,
    -  "from": 123.45,
    -  "title": "xyz789",
    +  "count": 123,
    +  "from": 987.65,
    +  "title": "abc123",
       "to": 987.65
     }
     
    @@ -68428,7 +67517,7 @@
    Fields
    Example
    -
    {"from": 987.65, "to": 987.65}
    +                  
    {"from": 123.45, "to": 123.45}
     
    @@ -68549,13 +67638,13 @@
    Fields
    Example
    {
    -  "badge_position": "xyz789",
    -  "language_code": "xyz789",
    +  "badge_position": "abc123",
    +  "language_code": "abc123",
       "minimum_score": 123.45,
       "re_captcha_type": "INVISIBLE",
    -  "technical_failure_message": "abc123",
    -  "theme": "xyz789",
    -  "validation_failure_message": "abc123",
    +  "technical_failure_message": "xyz789",
    +  "theme": "abc123",
    +  "validation_failure_message": "xyz789",
       "website_key": "abc123"
     }
     
    @@ -68633,13 +67722,13 @@
    Fields
    Example
    {
    -  "badge_position": "abc123",
    +  "badge_position": "xyz789",
       "failure_message": "xyz789",
       "forms": ["PLACE_ORDER"],
       "is_enabled": true,
       "language_code": "abc123",
       "minimum_score": 987.65,
    -  "theme": "abc123",
    +  "theme": "xyz789",
       "website_key": "xyz789"
     }
     
    @@ -68943,15 +68032,15 @@
    Fields
    Example
    {
    -  "displayOrder": 123,
    -  "pageType": "xyz789",
    +  "displayOrder": 987,
    +  "pageType": "abc123",
       "productsView": [ProductView],
       "storefrontLabel": "abc123",
       "totalProducts": 987,
       "typeId": "abc123",
    -  "unitId": "xyz789",
    +  "unitId": "abc123",
       "unitName": "abc123",
    -  "userError": "xyz789"
    +  "userError": "abc123"
     }
     
    @@ -68997,7 +68086,7 @@
    Fields
    Example
    -
    {"results": [RecommendationUnit], "totalResults": 987}
    +                  
    {"results": [RecommendationUnit], "totalResults": 123}
     
    @@ -69044,8 +68133,8 @@
    Fields
    Example
    {
    -  "code": "abc123",
    -  "id": 123,
    +  "code": "xyz789",
    +  "id": 987,
       "name": "abc123"
     }
     
    @@ -69088,7 +68177,7 @@
    Fields
    Example
    -
    {"cart_id": "xyz789"}
    +                  
    {"cart_id": "abc123"}
     
    @@ -69177,7 +68266,7 @@
    Fields
    Example
    {
       "cart_id": "xyz789",
    -  "coupon_codes": ["abc123"]
    +  "coupon_codes": ["xyz789"]
     }
     
    @@ -69348,7 +68437,7 @@
    Fields
    Example
    -
    {"success": false}
    +                  
    {"success": true}
     
    @@ -69612,7 +68701,7 @@
    Fields
    Example
    -
    {"item_uids": [4], "template_id": 4}
    +                  
    {"item_uids": ["4"], "template_id": 4}
     
    @@ -69659,7 +68748,10 @@
    Fields
    Example
    -
    {"products": [4], "uid": "4"}
    +                  
    {
    +  "products": ["4"],
    +  "uid": "4"
    +}
     
    @@ -69963,8 +69055,8 @@
    Fields
    Example
    {
    -  "quote_comment": "xyz789",
    -  "quote_name": "xyz789",
    +  "quote_comment": "abc123",
    +  "quote_name": "abc123",
       "quote_uid": "4"
     }
     
    @@ -70115,9 +69207,9 @@
    Fields
    Example
    {
       "comment_text": "abc123",
    -  "contact_email": "xyz789",
    +  "contact_email": "abc123",
       "items": [RequestReturnItemInput],
    -  "token": "abc123"
    +  "token": "xyz789"
     }
     
    @@ -70178,7 +69270,7 @@
    Fields
    Example
    {
    -  "cart_id": "4",
    +  "cart_id": 4,
       "comment": NegotiableQuoteCommentInput,
       "is_draft": false,
       "quote_name": "xyz789"
    @@ -70326,7 +69418,7 @@ 
    Example
    "comment_text": "abc123", "contact_email": "abc123", "items": [RequestReturnItemInput], - "order_uid": 4 + "order_uid": "4" }
    @@ -70391,7 +69483,7 @@
    Example
    EnteredCustomAttributeInput ], "order_item_uid": 4, - "quantity_to_return": 123.45, + "quantity_to_return": 987.65, "selected_custom_attributes": [ SelectedCustomAttributeInput ] @@ -70551,7 +69643,7 @@
    Example
    "items": RequistionListItems, "items_count": 987, "name": "abc123", - "uid": 4, + "uid": "4", "updated_at": "xyz789" }
    @@ -70709,7 +69801,7 @@
    Example
    {
       "customizable_options": [SelectedCustomizableOption],
       "product": ProductInterface,
    -  "quantity": 123.45,
    +  "quantity": 987.65,
       "sku": "abc123",
       "uid": 4
     }
    @@ -70932,7 +70024,7 @@ 
    Example
    "items": [RequisitionList], "page_info": SearchResultPageInfo, "sort_fields": SortFields, - "total_count": 987 + "total_count": 123 }
    @@ -70986,7 +70078,7 @@
    Example
    {
       "items": [RequisitionListItemInterface],
       "page_info": SearchResultPageInfo,
    -  "total_pages": 123
    +  "total_pages": 987
     }
     
    @@ -71082,7 +70174,7 @@
    Example
    "order": CustomerOrder, "shipping": ReturnShipping, "status": "PENDING", - "uid": 4 + "uid": "4" }
    @@ -71139,10 +70231,10 @@
    Fields
    Example
    {
    -  "author_name": "xyz789",
    +  "author_name": "abc123",
       "created_at": "xyz789",
       "text": "abc123",
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -71196,7 +70288,7 @@
    Example
    {
       "email": "abc123",
       "firstname": "xyz789",
    -  "lastname": "abc123"
    +  "lastname": "xyz789"
     }
     
    @@ -71376,12 +70468,12 @@
    Example
    "frontend_class": "xyz789", "frontend_input": "BOOLEAN", "input_filter": "NONE", - "is_required": false, - "is_unique": false, + "is_required": true, + "is_unique": true, "label": "xyz789", - "multiline_count": 123, + "multiline_count": 987, "options": [CustomAttributeOptionInterface], - "sort_order": 123, + "sort_order": 987, "validate_rules": [ValidationRule] }
    @@ -71589,12 +70681,12 @@
    Fields
    Example
    {
       "city": "xyz789",
    -  "contact_name": "abc123",
    +  "contact_name": "xyz789",
       "country": Country,
    -  "postcode": "xyz789",
    +  "postcode": "abc123",
       "region": Region,
    -  "street": ["xyz789"],
    -  "telephone": "xyz789"
    +  "street": ["abc123"],
    +  "telephone": "abc123"
     }
     
    @@ -71702,7 +70794,7 @@
    Example
    "carrier": ReturnShippingCarrier, "status": ReturnShippingTrackingStatus, "tracking_number": "abc123", - "uid": "4" + "uid": 4 }
    @@ -71748,7 +70840,7 @@
    Fields
    Example
    -
    {"text": "abc123", "type": "INFORMATION"}
    +                  
    {"text": "xyz789", "type": "INFORMATION"}
     
    @@ -71968,7 +71060,7 @@
    Example
    {
       "items": [Return],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -72009,7 +71101,7 @@
    Fields
    Example
    -
    {"result": false}
    +                  
    {"result": true}
     
    @@ -72167,7 +71259,7 @@
    Fields
    Example
    {
       "balance": RewardPointsAmount,
    -  "change_reason": "xyz789",
    +  "change_reason": "abc123",
       "date": "abc123",
       "points_change": 987.65
     }
    @@ -72263,7 +71355,7 @@ 
    Fields
    Example
    -
    {"currency_amount": 987.65, "points": 123.45}
    +                  
    {"currency_amount": 987.65, "points": 987.65}
     
    @@ -72502,7 +71594,11 @@
    Fields
    Example
    -
    {"count": 987, "id": 4, "title": "xyz789"}
    +                  
    {
    +  "count": 987,
    +  "id": "4",
    +  "title": "xyz789"
    +}
     
    @@ -72559,60 +71655,6 @@
    Values
    Example
    "GLOBAL"
    -
    -
    - - back to top - -
    -
    -
    - Types -
    -

    SearchCategoryResultPage

    -
    -
    -
    -
    Description
    -

    Represents a paginated result set of category search results.

    -
    -
    -
    Fields
    - - - - - - - - - - - - - - - - - - - - - -
    Field NameDescription
    items - [CategoryTreeView!]! - The list of categories matching the search criteria.
    totalCount - Int! - The total number of categories matching the search criteria across all pages.
    pageInfo - PageInfo! - Pagination information for navigating through results.
    -
    -
    -
    -
    -
    Example
    -
    {
    -  "items": [CategoryTreeView],
    -  "totalCount": 987,
    -  "pageInfo": PageInfo
    -}
     
    @@ -72684,10 +71726,10 @@
    Fields
    Example
    {
    -  "attribute": "xyz789",
    +  "attribute": "abc123",
       "contains": "abc123",
       "eq": "abc123",
    -  "in": ["abc123"],
    +  "in": ["xyz789"],
       "range": SearchRangeInput,
       "startsWith": "xyz789"
     }
    @@ -72737,7 +71779,7 @@ 
    Fields
    Example
    -
    {"from": 123.45, "to": 123.45}
    +                  
    {"from": 123.45, "to": 987.65}
     
    @@ -72787,7 +71829,7 @@
    Fields
    Example
    -
    {"current_page": 987, "page_size": 123, "total_pages": 123}
    +                  
    {"current_page": 987, "page_size": 987, "total_pages": 123}
     
    @@ -72845,7 +71887,7 @@
    Example
    {
       "label": "abc123",
       "type": "xyz789",
    -  "uid": "4",
    +  "uid": 4,
       "values": [SelectedBundleOptionValue]
     }
     
    @@ -72908,11 +71950,11 @@
    Fields
    Example
    {
    -  "label": "abc123",
    +  "label": "xyz789",
       "original_price": Money,
       "priceV2": Money,
       "quantity": 123.45,
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -72969,10 +72011,10 @@
    Fields
    Example
    {
    -  "configurable_product_option_uid": 4,
    +  "configurable_product_option_uid": "4",
       "configurable_product_option_value_uid": "4",
       "option_label": "xyz789",
    -  "value_label": "abc123"
    +  "value_label": "xyz789"
     }
     
    @@ -73022,7 +72064,7 @@
    Fields
    Example
    {
       "attribute_code": "abc123",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -73091,9 +72133,9 @@
    Example
    {
       "customizable_option_uid": 4,
       "is_required": true,
    -  "label": "xyz789",
    -  "sort_order": 123,
    -  "type": "xyz789",
    +  "label": "abc123",
    +  "sort_order": 987,
    +  "type": "abc123",
       "values": [SelectedCustomizableOptionValue]
     }
     
    @@ -73152,7 +72194,7 @@
    Fields
    Example
    {
       "customizable_option_value_uid": 4,
    -  "label": "xyz789",
    +  "label": "abc123",
       "price": CartItemSelectedOptionValuePrice,
       "value": "abc123"
     }
    @@ -73294,7 +72336,7 @@ 
    Example
    "additional_data": [ShippingAdditionalData], "amount": Money, "carrier_code": "abc123", - "carrier_title": "abc123", + "carrier_title": "xyz789", "method_code": "abc123", "method_title": "xyz789", "price_excl_tax": Money, @@ -73438,7 +72480,7 @@
    Fields
    Example
    {
       "billing_address": BillingAddressInput,
    -  "cart_id": "abc123"
    +  "cart_id": "xyz789"
     }
     
    @@ -73524,7 +72566,7 @@
    Fields
    Example
    -
    {"error": "xyz789", "success": true}
    +                  
    {"error": "abc123", "success": false}
     
    @@ -73663,7 +72705,7 @@
    Fields
    Example
    {
       "custom_attributes": [CustomAttributeInput],
    -  "quote_uid": "4"
    +  "quote_uid": 4
     }
     
    @@ -73772,9 +72814,9 @@
    Example
    {
       "cart_id": "abc123",
       "gift_message": GiftMessageInput,
    -  "gift_receipt_included": true,
    -  "gift_wrapping_id": 4,
    -  "printed_card_included": false
    +  "gift_receipt_included": false,
    +  "gift_wrapping_id": "4",
    +  "printed_card_included": true
     }
     
    @@ -73863,8 +72905,8 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    -  "email": "abc123"
    +  "cart_id": "xyz789",
    +  "email": "xyz789"
     }
     
    @@ -73994,7 +73036,7 @@
    Fields
    Example
    {
       "billing_address": NegotiableQuoteBillingAddressInput,
    -  "quote_uid": 4
    +  "quote_uid": "4"
     }
     
    @@ -74356,7 +73398,7 @@
    Fields
    Example
    {
       "shipping_address": NegotiableQuoteTemplateShippingAddressInput,
    -  "template_id": "4"
    +  "template_id": 4
     }
     
    @@ -74676,7 +73718,7 @@
    Fields
    Example
    {
       "email": "abc123",
    -  "name": "abc123"
    +  "name": "xyz789"
     }
     
    @@ -74717,7 +73759,7 @@
    Fields
    Example
    -
    {"is_shared": false}
    +                  
    {"is_shared": true}
     
    @@ -74814,7 +73856,10 @@
    Fields
    Example
    -
    {"customerUids": [4], "requisitionListUid": 4}
    +                  
    {
    +  "customerUids": ["4"],
    +  "requisitionListUid": "4"
    +}
     
    @@ -74860,7 +73905,7 @@
    Fields
    Example
    {
    -  "sent_count": 987,
    +  "sent_count": 123,
       "user_errors": [ShareRequisitionListUserError]
     }
     
    @@ -74902,7 +73947,7 @@
    Fields
    Example
    -
    {"token": "xyz789"}
    +                  
    {"token": "abc123"}
     
    @@ -75174,7 +74219,7 @@
    Example
    {
       "id": 4,
       "order_item": OrderItemInterface,
    -  "product_name": "xyz789",
    +  "product_name": "abc123",
       "product_sale_price": Money,
       "product_sku": "abc123",
       "quantity_shipped": 987.65
    @@ -75275,8 +74320,8 @@ 
    Example
    "order_item": OrderItemInterface, "product_name": "abc123", "product_sale_price": Money, - "product_sku": "abc123", - "quantity_shipped": 123.45 + "product_sku": "xyz789", + "quantity_shipped": 987.65 }
    @@ -75333,10 +74378,10 @@
    Fields
    Example
    {
    -  "carrier": "xyz789",
    +  "carrier": "abc123",
       "number": "abc123",
    -  "title": "xyz789",
    -  "tracking_url": "abc123"
    +  "title": "abc123",
    +  "tracking_url": "xyz789"
     }
     
    @@ -75386,7 +74431,7 @@
    Fields
    Example
    {
       "key": "xyz789",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -75455,9 +74500,9 @@
    Example
    {
       "address": CartAddressInput,
       "customer_address_id": 123,
    -  "customer_address_uid": 4,
    +  "customer_address_uid": "4",
       "customer_notes": "abc123",
    -  "pickup_location_code": "abc123"
    +  "pickup_location_code": "xyz789"
     }
     
    @@ -75619,27 +74664,27 @@
    Example
    "available_shipping_methods": [AvailableShippingMethod], "cart_items_v2": [CartItemInterface], "city": "abc123", - "company": "abc123", + "company": "xyz789", "country": CartAddressCountry, "custom_attributes": [AttributeValueInterface], - "customer_address_uid": 4, - "customer_notes": "xyz789", - "fax": "abc123", + "customer_address_uid": "4", + "customer_notes": "abc123", + "fax": "xyz789", "firstname": "xyz789", "id": 123, - "lastname": "xyz789", - "middlename": "xyz789", + "lastname": "abc123", + "middlename": "abc123", "pickup_location_code": "abc123", - "postcode": "abc123", - "prefix": "abc123", + "postcode": "xyz789", + "prefix": "xyz789", "region": CartAddressRegion, "same_as_billing": true, "selected_shipping_method": SelectedShippingMethod, "street": ["abc123"], - "suffix": "xyz789", - "telephone": "abc123", - "uid": 4, - "vat_id": "xyz789" + "suffix": "abc123", + "telephone": "xyz789", + "uid": "4", + "vat_id": "abc123" }
    @@ -75795,7 +74840,7 @@
    Fields
    Example
    {
       "carrier_code": "xyz789",
    -  "method_code": "xyz789"
    +  "method_code": "abc123"
     }
     
    @@ -75946,7 +74991,7 @@
    Example
    "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 987.65, + "quantity": 123.45, "uid": "4" }
    @@ -76202,30 +75247,30 @@
    filters
    Example
    {
    -  "canonical_url": "abc123",
    +  "canonical_url": "xyz789",
       "categories": [CategoryInterface],
       "country_of_manufacture": "xyz789",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    -  "gift_message_available": false,
    -  "gift_wrapping_available": true,
    +  "gift_message_available": true,
    +  "gift_wrapping_available": false,
       "gift_wrapping_price": Money,
       "image": ProductImage,
       "is_returnable": "xyz789",
       "manufacturer": 123,
       "max_sale_qty": 987.65,
       "media_gallery": [MediaGalleryInterface],
    -  "meta_description": "xyz789",
    +  "meta_description": "abc123",
       "meta_keyword": "xyz789",
       "meta_title": "xyz789",
    -  "min_sale_qty": 987.65,
    +  "min_sale_qty": 123.45,
       "name": "xyz789",
    -  "new_from_date": "xyz789",
    -  "new_to_date": "xyz789",
    +  "new_from_date": "abc123",
    +  "new_to_date": "abc123",
       "only_x_left_in_stock": 123.45,
       "options": [CustomizableOptionInterface],
    -  "options_container": "abc123",
    +  "options_container": "xyz789",
       "price_range": PriceRange,
       "price_tiers": [TierPrice],
       "product_links": [ProductLinksInterface],
    @@ -76234,15 +75279,15 @@ 
    Example
    "short_description": ComplexTextValue, "sku": "xyz789", "small_image": ProductImage, - "special_price": 987.65, - "special_to_date": "xyz789", + "special_price": 123.45, + "special_to_date": "abc123", "stock_status": "IN_STOCK", "swatch_image": "xyz789", "thumbnail": ProductImage, - "uid": 4, + "uid": "4", "upsell_products": [ProductInterface], "url_key": "xyz789", - "weight": 987.65 + "weight": 123.45 }
    @@ -76428,25 +75473,6 @@
    linkTypes - - categories - [CategoryProductView!] - - A list of categories in which the product is present. Categories are used to group products by category. - - - -
    -
    Arguments
    -
    -
    -
    family - String -
    -

    The product family to filter categories by, for example clothing, electronics, or books.

    -
    -
    -
    - - queryType - String @@ -76465,29 +75491,28 @@
    family<
    Example
    {
    -  "addToCartAllowed": true,
    -  "inStock": true,
    +  "addToCartAllowed": false,
    +  "inStock": false,
       "lowStock": false,
       "attributes": [ProductViewAttribute],
    -  "description": "xyz789",
    +  "description": "abc123",
       "id": "4",
       "images": [ProductViewImage],
       "videos": [ProductViewVideo],
       "inputOptions": [ProductViewInputOption],
       "lastModifiedAt": "2007-12-03T10:15:30Z",
    -  "metaDescription": "abc123",
    -  "metaKeyword": "xyz789",
    +  "metaDescription": "xyz789",
    +  "metaKeyword": "abc123",
       "metaTitle": "xyz789",
       "name": "xyz789",
       "price": ProductViewPrice,
       "shortDescription": "abc123",
       "sku": "abc123",
    -  "externalId": "abc123",
    +  "externalId": "xyz789",
       "url": "xyz789",
       "urlKey": "abc123",
       "links": [ProductViewLink],
    -  "categories": [CategoryProductView],
    -  "queryType": "xyz789",
    +  "queryType": "abc123",
       "visibility": "xyz789"
     }
     
    @@ -76554,7 +75579,7 @@
    Example
    "customizable_options": [SelectedCustomizableOption], "product": ProductInterface, "quantity": 123.45, - "sku": "xyz789", + "sku": "abc123", "uid": 4 }
    @@ -76623,12 +75648,12 @@
    Fields
    Example
    {
    -  "added_at": "abc123",
    +  "added_at": "xyz789",
       "customizable_options": [SelectedCustomizableOption],
       "description": "xyz789",
    -  "id": 4,
    +  "id": "4",
       "product": ProductInterface,
    -  "quantity": 123.45
    +  "quantity": 987.65
     }
     
    @@ -76685,7 +75710,7 @@
    Example
    {
       "payment_source": "abc123",
       "payments_order_id": "abc123",
    -  "paypal_order_id": "xyz789"
    +  "paypal_order_id": "abc123"
     }
     
    @@ -76776,13 +75801,13 @@
    Example
    "app_switch_when_available": true, "button_styles": ButtonStyles, "code": "xyz789", - "display_message": false, + "display_message": true, "display_venmo": false, - "is_visible": false, + "is_visible": true, "message_styles": MessageStyles, "payment_intent": "abc123", "sdk_params": [SDKParams], - "sort_order": "xyz789", + "sort_order": "abc123", "title": "abc123" }
    @@ -76879,8 +75904,8 @@
    Fields
    Example
    {
    -  "label": "xyz789",
    -  "value": "xyz789"
    +  "label": "abc123",
    +  "value": "abc123"
     }
     
    @@ -77252,7 +76277,7 @@
    Fields
    Example
    {
       "attribute": "abc123",
    -  "frontendInput": "abc123",
    +  "frontendInput": "xyz789",
       "label": "abc123",
       "numeric": true
     }
    @@ -77306,9 +76331,9 @@ 
    Fields
    Example
    {
    -  "max": 987.65,
    +  "max": 123.45,
       "min": 987.65,
    -  "title": "abc123"
    +  "title": "xyz789"
     }
     
    @@ -78077,7 +77102,7 @@
    Example
    {
       "allow_company_registration": false,
       "allow_gift_receipt": "abc123",
    -  "allow_gift_wrapping_on_order": "xyz789",
    +  "allow_gift_wrapping_on_order": "abc123",
       "allow_gift_wrapping_on_order_items": "xyz789",
       "allow_items": "xyz789",
       "allow_order": "xyz789",
    @@ -78086,84 +77111,84 @@ 
    Example
    "base_currency_code": "abc123", "base_link_url": "abc123", "base_media_url": "xyz789", - "base_static_url": "xyz789", + "base_static_url": "abc123", "base_url": "abc123", "cart_expires_in_days": 123, - "cart_gift_wrapping": "xyz789", - "cart_merge_preference": "xyz789", - "cart_printed_card": "abc123", + "cart_gift_wrapping": "abc123", + "cart_merge_preference": "abc123", + "cart_printed_card": "xyz789", "cart_summary_display_quantity": 987, "catalog_default_sort_by": "abc123", "category_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", - "category_url_suffix": "xyz789", + "category_url_suffix": "abc123", "check_money_order_enable_for_specific_countries": true, "check_money_order_enabled": false, "check_money_order_make_check_payable_to": "xyz789", - "check_money_order_max_order_total": "xyz789", - "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_max_order_total": "abc123", + "check_money_order_min_order_total": "abc123", + "check_money_order_new_order_status": "abc123", + "check_money_order_payment_from_specific_countries": "abc123", + "check_money_order_send_check_to": "abc123", + "check_money_order_sort_order": 123, "check_money_order_title": "xyz789", - "company_credit_enabled": false, - "company_enabled": false, + "company_credit_enabled": true, + "company_enabled": true, "configurable_product_image": "ITSELF", "configurable_thumbnail_source": "xyz789", "contact_enabled": true, - "countries_with_required_region": "abc123", - "create_account_confirmation": false, + "countries_with_required_region": "xyz789", + "create_account_confirmation": true, "customer_access_token_lifetime": 123.45, - "default_country": "abc123", + "default_country": "xyz789", "default_display_currency_code": "xyz789", "display_product_prices_in_catalog": 123, - "display_shipping_prices": 123, + "display_shipping_prices": 987, "display_state_if_optional": false, - "enable_multiple_wishlists": "abc123", + "enable_multiple_wishlists": "xyz789", "fixed_product_taxes_apply_tax_to_fpt": true, - "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": 123, - "fixed_product_taxes_display_prices_on_product_view_page": 987, - "fixed_product_taxes_enable": true, + "fixed_product_taxes_display_prices_in_emails": 123, + "fixed_product_taxes_display_prices_in_product_lists": 123, + "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": false, - "graphql_share_customer_group": false, + "graphql_share_customer_group": true, "grid_per_page": 987, - "grid_per_page_values": "xyz789", + "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": false, - "is_negotiable_quote_active": false, - "is_one_page_checkout_enabled": false, - "is_requisition_list_active": "xyz789", + "is_default_store": false, + "is_default_store_group": false, + "is_guest_checkout_enabled": true, + "is_negotiable_quote_active": true, + "is_one_page_checkout_enabled": true, + "is_requisition_list_active": "abc123", "list_mode": "xyz789", - "list_per_page": 123, + "list_per_page": 987, "list_per_page_values": "xyz789", "locale": "abc123", "magento_reward_general_is_enabled": "xyz789", - "magento_reward_general_is_enabled_on_front": "abc123", + "magento_reward_general_is_enabled_on_front": "xyz789", "magento_reward_general_min_points_balance": "xyz789", - "magento_reward_general_publish_history": "xyz789", - "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": "xyz789", + "magento_reward_general_publish_history": "abc123", + "magento_reward_points_invitation_customer": "abc123", + "magento_reward_points_invitation_customer_limit": "abc123", + "magento_reward_points_invitation_order": "abc123", + "magento_reward_points_invitation_order_limit": "abc123", "magento_reward_points_newsletter": "abc123", - "magento_reward_points_order": "xyz789", + "magento_reward_points_order": "abc123", "magento_reward_points_register": "xyz789", "magento_reward_points_review": "xyz789", "magento_reward_points_review_limit": "abc123", "magento_wishlist_general_is_enabled": "xyz789", "max_items_in_order_summary": 987, "maximum_number_of_wishlists": "xyz789", - "minicart_display": false, + "minicart_display": true, "minicart_max_items": 987, "minimum_password_length": "abc123", - "newsletter_enabled": true, - "optional_zip_countries": "xyz789", - "order_cancellation_enabled": false, + "newsletter_enabled": false, + "optional_zip_countries": "abc123", + "order_cancellation_enabled": true, "order_cancellation_reasons": [CancellationReason], "orders_invoices_credit_memos_display_full_summary": true, "orders_invoices_credit_memos_display_grandtotal": false, @@ -78173,54 +77198,54 @@
    Example
    "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", + "product_url_suffix": "xyz789", "quickorder_active": true, - "quote_minimum_amount": 987.65, - "quote_minimum_amount_message": "abc123", + "quote_minimum_amount": 123.45, + "quote_minimum_amount_message": "xyz789", "required_character_classes_number": "xyz789", - "requisition_list_share_link_validity_days": 987, - "requisition_list_share_max_recipients": 123, + "requisition_list_share_link_validity_days": 123, + "requisition_list_share_max_recipients": 987, "requisition_list_share_storefront_path": "abc123", - "requisition_list_sharing_enabled": false, + "requisition_list_sharing_enabled": true, "returns_enabled": "abc123", - "root_category_uid": "4", + "root_category_uid": 4, "sales_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", "sales_gift_wrapping": "abc123", - "sales_printed_card": "abc123", + "sales_printed_card": "xyz789", "secure_base_link_url": "xyz789", - "secure_base_media_url": "xyz789", - "secure_base_static_url": "abc123", - "secure_base_url": "xyz789", + "secure_base_media_url": "abc123", + "secure_base_static_url": "xyz789", + "secure_base_url": "abc123", "share_active_segments": true, - "share_applied_cart_rule": false, - "shopping_assistance_checkbox_title": "xyz789", - "shopping_assistance_checkbox_tooltip": "abc123", + "share_applied_cart_rule": true, + "shopping_assistance_checkbox_title": "abc123", + "shopping_assistance_checkbox_tooltip": "xyz789", "shopping_assistance_enabled": false, - "shopping_cart_display_full_summary": false, + "shopping_cart_display_full_summary": true, "shopping_cart_display_grand_total": true, "shopping_cart_display_price": 987, "shopping_cart_display_shipping": 987, - "shopping_cart_display_subtotal": 987, + "shopping_cart_display_subtotal": 123, "shopping_cart_display_tax_gift_wrapping": "DISPLAY_EXCLUDING_TAX", "shopping_cart_display_zero_tax": true, - "store_code": "4", + "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": true, - "website_code": "4", - "website_name": "xyz789", + "title_separator": "xyz789", + "use_store_in_url": false, + "website_code": 4, + "website_name": "abc123", "weight_unit": "xyz789", "zero_subtotal_enable_for_specific_countries": false, "zero_subtotal_enabled": true, "zero_subtotal_new_order_status": "abc123", "zero_subtotal_payment_action": "abc123", "zero_subtotal_payment_from_specific_countries": "xyz789", - "zero_subtotal_sort_order": 123, - "zero_subtotal_title": "xyz789" + "zero_subtotal_sort_order": 987, + "zero_subtotal_title": "abc123" }
    @@ -78243,7 +77268,7 @@
    Description
    Example
    -
    "abc123"
    +                  
    "xyz789"
     
    @@ -78413,13 +77438,13 @@
    Example
    {
       "attachments": [NegotiableQuoteCommentAttachmentInput],
       "comment": "xyz789",
    -  "max_order_commitment": 123,
    +  "max_order_commitment": 987,
       "min_order_commitment": 123,
    -  "name": "xyz789",
    +  "name": "abc123",
       "reference_document_links": [
         NegotiableQuoteTemplateReferenceDocumentLinkInput
       ],
    -  "template_id": "4"
    +  "template_id": 4
     }
     
    @@ -78633,7 +77658,7 @@
    Possible Types
    Example
    -
    {"value": "xyz789"}
    +                  
    {"value": "abc123"}
     
    @@ -78906,7 +77931,7 @@
    Fields
    Example
    {
       "cartId": "xyz789",
    -  "id": "abc123"
    +  "id": "xyz789"
     }
     
    @@ -78959,7 +77984,7 @@
    Fields
    Example
    {
       "amount": Money,
    -  "rate": 123.45,
    +  "rate": 987.65,
       "title": "xyz789"
     }
     
    @@ -79049,7 +78074,7 @@
    Fields
    Example
    -
    {"value": "xyz789"}
    +                  
    {"value": "abc123"}
     
    @@ -79158,7 +78183,7 @@
    Example
    {
       "discount": ProductDiscount,
       "final_price": Money,
    -  "quantity": 987.65
    +  "quantity": 123.45
     }
     
    @@ -79200,7 +78225,7 @@
    Fields
    Example
    -
    {"child_company_id": "4"}
    +                  
    {"child_company_id": 4}
     
    @@ -79328,11 +78353,11 @@
    Fields
    Example
    {
    -  "unitName": "abc123",
    -  "storefrontLabel": "xyz789",
    +  "unitName": "xyz789",
    +  "storefrontLabel": "abc123",
       "pagePlacement": "abc123",
    -  "displayNumber": 987,
    -  "pageType": "abc123",
    +  "displayNumber": 123,
    +  "pageType": "xyz789",
       "unitStatus": "xyz789",
       "typeId": "abc123",
       "filterRules": [FilterRuleInput]
    @@ -79384,7 +78409,7 @@ 
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    +  "cart_id": "abc123",
       "cart_items": [CartItemUpdateInput]
     }
     
    @@ -79709,7 +78734,7 @@
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "event_name": "abc123", + "event_name": "xyz789", "message": "xyz789", "privacy_settings": "PRIVATE", "shipping_address": GiftRegistryShippingAddressInput, @@ -79768,9 +78793,9 @@
    Fields
    Example
    {
    -  "gift_registry_item_uid": 4,
    -  "note": "abc123",
    -  "quantity": 123.45
    +  "gift_registry_item_uid": "4",
    +  "note": "xyz789",
    +  "quantity": 987.65
     }
     
    @@ -79921,9 +78946,9 @@
    Example
    GiftRegistryDynamicAttributeInput ], "email": "abc123", - "firstname": "xyz789", - "gift_registry_registrant_uid": "4", - "lastname": "abc123" + "firstname": "abc123", + "gift_registry_registrant_uid": 4, + "lastname": "xyz789" }
    @@ -80270,13 +79295,13 @@
    Fields
    Example
    {
    -  "applies_to": ["4"],
    -  "approvers": ["4"],
    +  "applies_to": [4],
    +  "approvers": [4],
       "condition": CreatePurchaseOrderApprovalRuleConditionInput,
       "description": "xyz789",
       "name": "abc123",
       "status": "ENABLED",
    -  "uid": "4"
    +  "uid": 4
     }
     
    @@ -80325,7 +79350,7 @@
    Fields
    Example
    {
    -  "description": "xyz789",
    +  "description": "abc123",
       "name": "xyz789"
     }
     
    @@ -80388,8 +79413,8 @@
    Fields
    Example
    {
       "entered_options": [EnteredOptionInput],
    -  "item_id": 4,
    -  "quantity": 987.65,
    +  "item_id": "4",
    +  "quantity": 123.45,
       "selected_options": ["xyz789"]
     }
     
    @@ -80523,7 +79548,7 @@
    Fields
    Example
    {
       "name": "abc123",
    -  "uid": "4",
    +  "uid": 4,
       "visibility": "PUBLIC"
     }
     
    @@ -80579,7 +79604,7 @@
    Fields
    Example
    {
    -  "currentPage": 987,
    +  "currentPage": 123,
       "pageSize": 123,
       "sort": [CompaniesSortInput]
     }
    @@ -80782,7 +79807,7 @@ 
    Fields
    Example
    -
    {"purchase_order_uids": [4]}
    +                  
    {"purchase_order_uids": ["4"]}
     
    @@ -81126,8 +80151,8 @@
    Fields
    Example
    {
    -  "payment_source": "abc123",
    -  "payments_order_id": "xyz789",
    +  "payment_source": "xyz789",
    +  "payments_order_id": "abc123",
       "paypal_order_id": "abc123",
       "public_hash": "xyz789"
     }
    @@ -81274,7 +80299,7 @@ 
    Fields
    Example
    {
       "dateTime": "2007-12-03T10:15:30Z",
    -  "sku": "xyz789"
    +  "sku": "abc123"
     }
     
    @@ -81399,16 +80424,16 @@
    Example
    "discount": [Discount], "errors": [CartItemError], "is_available": false, - "is_salable": true, + "is_salable": false, "max_qty": 987.65, - "min_qty": 123.45, + "min_qty": 987.65, "not_available_message": "abc123", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 987.65, - "uid": "4" + "quantity": 123.45, + "uid": 4 }
    @@ -81664,40 +80689,40 @@
    Example
    "crosssell_products": [ProductInterface], "custom_attributesV2": ProductCustomAttributes, "description": ComplexTextValue, - "gift_message_available": false, - "gift_wrapping_available": true, + "gift_message_available": true, + "gift_wrapping_available": false, "gift_wrapping_price": Money, "image": ProductImage, "is_returnable": "xyz789", - "manufacturer": 123, - "max_sale_qty": 123.45, + "manufacturer": 987, + "max_sale_qty": 987.65, "media_gallery": [MediaGalleryInterface], - "meta_description": "xyz789", - "meta_keyword": "abc123", - "meta_title": "xyz789", - "min_sale_qty": 123.45, + "meta_description": "abc123", + "meta_keyword": "xyz789", + "meta_title": "abc123", + "min_sale_qty": 987.65, "name": "abc123", - "new_from_date": "abc123", - "new_to_date": "abc123", - "only_x_left_in_stock": 123.45, + "new_from_date": "xyz789", + "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": 123.45, + "quantity": 987.65, "related_products": [ProductInterface], "short_description": ComplexTextValue, - "sku": "abc123", + "sku": "xyz789", "small_image": ProductImage, - "special_price": 987.65, + "special_price": 123.45, "special_to_date": "xyz789", "stock_status": "IN_STOCK", "swatch_image": "abc123", "thumbnail": ProductImage, - "uid": 4, + "uid": "4", "upsell_products": [ProductInterface], - "url_key": "xyz789" + "url_key": "abc123" }
    @@ -81762,9 +80787,9 @@
    Example
    {
       "customizable_options": [SelectedCustomizableOption],
       "product": ProductInterface,
    -  "quantity": 123.45,
    -  "sku": "xyz789",
    -  "uid": 4
    +  "quantity": 987.65,
    +  "sku": "abc123",
    +  "uid": "4"
     }
     
    @@ -81832,9 +80857,9 @@
    Fields
    Example
    {
    -  "added_at": "xyz789",
    +  "added_at": "abc123",
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "xyz789",
    +  "description": "abc123",
       "id": 4,
       "product": ProductInterface,
       "quantity": 987.65
    @@ -82023,12 +81048,12 @@ 
    pageSize
    Example
    {
    -  "id": "4",
    +  "id": 4,
       "items_count": 987,
       "items_v2": WishlistItems,
       "name": "abc123",
       "sharing_code": "abc123",
    -  "updated_at": "abc123",
    +  "updated_at": "xyz789",
       "visibility": "PUBLIC"
     }
     
    @@ -82087,8 +81112,8 @@
    Fields
    Example
    {
       "code": "PRODUCT_NOT_FOUND",
    -  "message": "xyz789",
    -  "wishlistId": 4,
    +  "message": "abc123",
    +  "wishlistId": "4",
       "wishlistItemId": "4"
     }
     
    @@ -82207,10 +81232,7 @@
    Fields
    Example
    -
    {
    -  "quantity": 123.45,
    -  "wishlist_item_id": "4"
    -}
    +                  
    {"quantity": 123.45, "wishlist_item_id": 4}
     
    @@ -82278,8 +81300,8 @@
    Example
    {
       "entered_options": [EnteredOptionInput],
       "parent_sku": "abc123",
    -  "quantity": 987.65,
    -  "selected_options": ["4"],
    +  "quantity": 123.45,
    +  "selected_options": [4],
       "sku": "xyz789"
     }
     
    @@ -82398,7 +81420,7 @@
    Example
    "added_at": "abc123", "customizable_options": [SelectedCustomizableOption], "description": "xyz789", - "id": 4, + "id": "4", "product": ProductInterface, "quantity": 987.65 } @@ -82448,7 +81470,10 @@
    Fields
    Example
    -
    {"quantity": 123.45, "wishlist_item_id": 4}
    +                  
    {
    +  "quantity": 123.45,
    +  "wishlist_item_id": "4"
    +}
     
    @@ -82516,9 +81541,9 @@
    Example
    {
       "description": "abc123",
       "entered_options": [EnteredOptionInput],
    -  "quantity": 123.45,
    +  "quantity": 987.65,
       "selected_options": [4],
    -  "wishlist_item_id": 4
    +  "wishlist_item_id": "4"
     }
     
    @@ -82756,7 +81781,7 @@
    Fields
    Example
    {
    -  "key": "xyz789",
    +  "key": "abc123",
       "media_resource_type": "NEGOTIABLE_QUOTE_ATTACHMENT"
     }
     
    From fb0bdae6c27d6f7a32f5ac5ed753abaf1fbb0c18 Mon Sep 17 00:00:00 2001 From: Jared Hoover Date: Tue, 2 Jun 2026 11:29:46 -0500 Subject: [PATCH 6/9] updating filter --- spectaql/metadata-saas.json | 122 +- static/graphql-api/saas/index.html | 3483 +++++++++++++--------------- 2 files changed, 1617 insertions(+), 1988 deletions(-) diff --git a/spectaql/metadata-saas.json b/spectaql/metadata-saas.json index 752a92e14..d86b8a00c 100644 --- a/spectaql/metadata-saas.json +++ b/spectaql/metadata-saas.json @@ -2,115 +2,93 @@ "OBJECT": { "Query": { "fields": { - "payByLinkOrder": { - "documentation": { - "undocumented": true - } - }, "categoryTree": { - "documentation": { - "undocumented": true - } + "documentation": { "undocumented": true } }, "navigation": { - "documentation": { - "undocumented": true - } + "documentation": { "undocumented": true } }, "searchCategory": { - "documentation": { - "undocumented": true - } + "documentation": { "undocumented": true } }, "recommendationsByUnitIds": { - "documentation": { - "undocumented": true - } + "documentation": { "undocumented": true } + }, + "payByLinkOrder": { + "documentation": { "undocumented": true } } } }, "Mutation": { "fields": { "completePayByLinkPayment": { - "documentation": { - "undocumented": true - } + "documentation": { "undocumented": true } + }, + "assignChildCompany": { + "documentation": { "undocumented": true } + }, + "unassignChildCompany": { + "documentation": { "undocumented": true } } } }, - "PayByLinkOrder": { - "documentation": { - "undocumented": true - } - }, - "PayByLinkOrderAddress": { - "documentation": { - "undocumented": true - } - }, - "PayByLinkOrderItem": { - "documentation": { - "undocumented": true - } - }, - "PayByLinkOrderTotals": { - "documentation": { - "undocumented": true - } - }, - "CompletePayByLinkPaymentOutput": { - "documentation": { - "undocumented": true - } - }, "CategoryTreeView": { - "documentation": { - "undocumented": true - } + "documentation": { "undocumented": true } }, "CategoryNavigationView": { - "documentation": { - "undocumented": true - } + "documentation": { "undocumented": true } }, "CategoryProductView": { - "documentation": { - "undocumented": true - } + "documentation": { "undocumented": true } }, "SearchCategoryResultPage": { - "documentation": { - "undocumented": true - } + "documentation": { "undocumented": true } }, "CategoryMetaTags": { - "documentation": { - "undocumented": true - } + "documentation": { "undocumented": true } }, "CategoryImage": { - "documentation": { - "undocumented": true - } + "documentation": { "undocumented": true } }, "PageInfo": { - "documentation": { - "undocumented": true - } + "documentation": { "undocumented": true } + }, + "PayByLinkOrder": { + "documentation": { "undocumented": true } + }, + "PayByLinkOrderAddress": { + "documentation": { "undocumented": true } + }, + "PayByLinkOrderItem": { + "documentation": { "undocumented": true } + }, + "PayByLinkOrderTotals": { + "documentation": { "undocumented": true } + }, + "CompletePayByLinkPaymentOutput": { + "documentation": { "undocumented": true } + }, + "AssignChildCompanyOutput": { + "documentation": { "undocumented": true } + }, + "UnassignChildCompanyOutput": { + "documentation": { "undocumented": true } } }, "INPUT_OBJECT": { "PayByLinkInput": { - "documentation": { - "undocumented": true - } + "documentation": { "undocumented": true } + }, + "AssignChildCompanyInput": { + "documentation": { "undocumented": true } + }, + "UnassignChildCompanyInput": { + "documentation": { "undocumented": true } } }, "INTERFACE": { "CategoryViewV2": { - "documentation": { - "undocumented": true - } + "documentation": { "undocumented": true } } } } diff --git a/static/graphql-api/saas/index.html b/static/graphql-api/saas/index.html index 343f70928..9b4a77ac7 100644 --- a/static/graphql-api/saas/index.html +++ b/static/graphql-api/saas/index.html @@ -119,7 +119,6 @@
  • AreaInput
  • AssetImage
  • AssetVideo
  • -
  • AssignChildCompanyInput
  • -
  • AssignChildCompanyOutput
  • AssignCompareListToCustomerOutput
  • AttributeEntityTypeEnum
  • AttributeFile
  • @@ -1074,8 +1070,6 @@
  • TextSwatchData
  • ThreeDSMode
  • TierPrice
  • -
  • UnassignChildCompanyInput
  • -
  • UnassignChildCompanyOutput
  • UnitConfigInput
  • UpdateCartItemsInput
  • UpdateCartItemsOutput
  • @@ -1282,7 +1276,7 @@
    Query
    Variables
    -
    {"formCode": "abc123"}
    +                  
    {"formCode": "xyz789"}
     
    @@ -1599,7 +1593,7 @@
    Query
    Variables
    -
    {"useCurrentGroup": true}
    +                  
    {"useCurrentGroup": false}
     
    @@ -1609,151 +1603,151 @@
    Response
    "availableStores": [ { "allow_company_registration": true, - "allow_gift_receipt": "abc123", - "allow_gift_wrapping_on_order": "abc123", - "allow_gift_wrapping_on_order_items": "xyz789", - "allow_items": "abc123", - "allow_order": "xyz789", - "allow_printed_card": "abc123", + "allow_gift_receipt": "xyz789", + "allow_gift_wrapping_on_order": "xyz789", + "allow_gift_wrapping_on_order_items": "abc123", + "allow_items": "xyz789", + "allow_order": "abc123", + "allow_printed_card": "xyz789", "autocomplete_on_storefront": false, - "base_currency_code": "abc123", + "base_currency_code": "xyz789", "base_link_url": "abc123", - "base_media_url": "abc123", + "base_media_url": "xyz789", "base_static_url": "xyz789", - "base_url": "xyz789", + "base_url": "abc123", "cart_expires_in_days": 123, - "cart_gift_wrapping": "xyz789", + "cart_gift_wrapping": "abc123", "cart_merge_preference": "abc123", - "cart_printed_card": "xyz789", + "cart_printed_card": "abc123", "cart_summary_display_quantity": 987, "catalog_default_sort_by": "abc123", "category_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", - "category_url_suffix": "abc123", - "check_money_order_enable_for_specific_countries": false, + "category_url_suffix": "xyz789", + "check_money_order_enable_for_specific_countries": true, "check_money_order_enabled": false, - "check_money_order_make_check_payable_to": "abc123", + "check_money_order_make_check_payable_to": "xyz789", "check_money_order_max_order_total": "xyz789", - "check_money_order_min_order_total": "abc123", - "check_money_order_new_order_status": "abc123", + "check_money_order_min_order_total": "xyz789", + "check_money_order_new_order_status": "xyz789", "check_money_order_payment_from_specific_countries": "abc123", - "check_money_order_send_check_to": "abc123", - "check_money_order_sort_order": 987, - "check_money_order_title": "abc123", + "check_money_order_send_check_to": "xyz789", + "check_money_order_sort_order": 123, + "check_money_order_title": "xyz789", "company_credit_enabled": true, "company_enabled": false, "configurable_product_image": "ITSELF", - "configurable_thumbnail_source": "abc123", - "contact_enabled": false, - "countries_with_required_region": "abc123", + "configurable_thumbnail_source": "xyz789", + "contact_enabled": true, + "countries_with_required_region": "xyz789", "create_account_confirmation": true, "customer_access_token_lifetime": 987.65, "default_country": "xyz789", "default_display_currency_code": "xyz789", "display_product_prices_in_catalog": 987, "display_shipping_prices": 123, - "display_state_if_optional": false, + "display_state_if_optional": true, "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": 123, - "fixed_product_taxes_display_prices_in_sales_modules": 123, + "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": false, + "graphql_share_customer_group": true, "grid_per_page": 123, - "grid_per_page_values": "abc123", + "grid_per_page_values": "xyz789", "grouped_product_image": "ITSELF", "is_checkout_agreements_enabled": true, - "is_default_store": false, + "is_default_store": true, "is_default_store_group": true, "is_guest_checkout_enabled": false, - "is_negotiable_quote_active": true, - "is_one_page_checkout_enabled": true, - "is_requisition_list_active": "abc123", - "list_mode": "abc123", - "list_per_page": 123, - "list_per_page_values": "abc123", - "locale": "abc123", - "magento_reward_general_is_enabled": "abc123", - "magento_reward_general_is_enabled_on_front": "abc123", + "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": "xyz789", + "magento_reward_general_is_enabled": "xyz789", + "magento_reward_general_is_enabled_on_front": "xyz789", "magento_reward_general_min_points_balance": "abc123", - "magento_reward_general_publish_history": "abc123", - "magento_reward_points_invitation_customer": "abc123", - "magento_reward_points_invitation_customer_limit": "xyz789", + "magento_reward_general_publish_history": "xyz789", + "magento_reward_points_invitation_customer": "xyz789", + "magento_reward_points_invitation_customer_limit": "abc123", "magento_reward_points_invitation_order": "abc123", "magento_reward_points_invitation_order_limit": "xyz789", "magento_reward_points_newsletter": "xyz789", - "magento_reward_points_order": "xyz789", - "magento_reward_points_register": "abc123", - "magento_reward_points_review": "abc123", - "magento_reward_points_review_limit": "xyz789", + "magento_reward_points_order": "abc123", + "magento_reward_points_register": "xyz789", + "magento_reward_points_review": "xyz789", + "magento_reward_points_review_limit": "abc123", "magento_wishlist_general_is_enabled": "xyz789", "max_items_in_order_summary": 123, - "maximum_number_of_wishlists": "xyz789", + "maximum_number_of_wishlists": "abc123", "minicart_display": true, - "minicart_max_items": 123, + "minicart_max_items": 987, "minimum_password_length": "abc123", - "newsletter_enabled": true, + "newsletter_enabled": false, "optional_zip_countries": "xyz789", "order_cancellation_enabled": false, "order_cancellation_reasons": [ CancellationReason ], - "orders_invoices_credit_memos_display_full_summary": false, + "orders_invoices_credit_memos_display_full_summary": true, "orders_invoices_credit_memos_display_grandtotal": false, - "orders_invoices_credit_memos_display_price": 123, + "orders_invoices_credit_memos_display_price": 987, "orders_invoices_credit_memos_display_shipping_amount": 123, "orders_invoices_credit_memos_display_subtotal": 123, - "orders_invoices_credit_memos_display_zero_tax": false, + "orders_invoices_credit_memos_display_zero_tax": true, "printed_card_priceV2": Money, "product_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", - "product_url_suffix": "xyz789", + "product_url_suffix": "abc123", "quickorder_active": false, - "quote_minimum_amount": 123.45, - "quote_minimum_amount_message": "xyz789", - "required_character_classes_number": "abc123", - "requisition_list_share_link_validity_days": 123, - "requisition_list_share_max_recipients": 123, - "requisition_list_share_storefront_path": "abc123", + "quote_minimum_amount": 987.65, + "quote_minimum_amount_message": "abc123", + "required_character_classes_number": "xyz789", + "requisition_list_share_link_validity_days": 987, + "requisition_list_share_max_recipients": 987, + "requisition_list_share_storefront_path": "xyz789", "requisition_list_sharing_enabled": true, "returns_enabled": "abc123", "root_category_uid": 4, "sales_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", "sales_gift_wrapping": "xyz789", - "sales_printed_card": "abc123", + "sales_printed_card": "xyz789", "secure_base_link_url": "xyz789", "secure_base_media_url": "xyz789", "secure_base_static_url": "xyz789", "secure_base_url": "abc123", - "share_active_segments": true, - "share_applied_cart_rule": true, + "share_active_segments": false, + "share_applied_cart_rule": false, "shopping_assistance_checkbox_title": "abc123", "shopping_assistance_checkbox_tooltip": "abc123", "shopping_assistance_enabled": true, - "shopping_cart_display_full_summary": false, - "shopping_cart_display_grand_total": false, - "shopping_cart_display_price": 987, + "shopping_cart_display_full_summary": true, + "shopping_cart_display_grand_total": true, + "shopping_cart_display_price": 123, "shopping_cart_display_shipping": 987, - "shopping_cart_display_subtotal": 987, + "shopping_cart_display_subtotal": 123, "shopping_cart_display_tax_gift_wrapping": "DISPLAY_EXCLUDING_TAX", - "shopping_cart_display_zero_tax": true, + "shopping_cart_display_zero_tax": false, "store_code": "4", "store_group_code": "4", "store_group_name": "xyz789", - "store_name": "abc123", + "store_name": "xyz789", "store_sort_order": 123, - "timezone": "abc123", - "title_separator": "xyz789", + "timezone": "xyz789", + "title_separator": "abc123", "use_store_in_url": true, - "website_code": 4, + "website_code": "4", "website_name": "xyz789", - "weight_unit": "abc123", - "zero_subtotal_enable_for_specific_countries": true, + "weight_unit": "xyz789", + "zero_subtotal_enable_for_specific_countries": false, "zero_subtotal_enabled": true, "zero_subtotal_new_order_status": "xyz789", - "zero_subtotal_payment_action": "abc123", - "zero_subtotal_payment_from_specific_countries": "abc123", + "zero_subtotal_payment_action": "xyz789", + "zero_subtotal_payment_from_specific_countries": "xyz789", "zero_subtotal_sort_order": 123, "zero_subtotal_title": "abc123" } @@ -1871,7 +1865,7 @@
    Query
    Variables
    -
    {"cart_id": "abc123"}
    +                  
    {"cart_id": "xyz789"}
     
    @@ -1897,7 +1891,7 @@
    Response
    "is_virtual": false, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": false, + "printed_card_included": true, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], @@ -2020,18 +2014,18 @@
    Response
    "categories": [ { "availableSortBy": ["xyz789"], - "children": ["abc123"], + "children": ["xyz789"], "defaultSortBy": "abc123", "id": "4", - "level": 123, + "level": 987, "name": "abc123", - "parentId": "xyz789", + "parentId": "abc123", "position": 123, - "path": "xyz789", - "roles": ["abc123"], - "urlKey": "abc123", + "path": "abc123", + "roles": ["xyz789"], + "urlKey": "xyz789", "urlPath": "xyz789", - "count": 123, + "count": 987, "title": "abc123" } ] @@ -2089,13 +2083,13 @@
    Response
    "data": { "checkoutAgreements": [ { - "agreement_id": 987, - "checkbox_text": "abc123", - "content": "abc123", - "content_height": "xyz789", + "agreement_id": 123, + "checkbox_text": "xyz789", + "content": "xyz789", + "content_height": "abc123", "is_html": false, "mode": "AUTO", - "name": "abc123" + "name": "xyz789" } ] } @@ -2142,13 +2136,7 @@
    Query
    Response
    -
    {
    -  "data": {
    -    "commerceOptimizer": {
    -      "priceBookId": "4"
    -    }
    -  }
    -}
    +                  
    {"data": {"commerceOptimizer": {"priceBookId": 4}}}
     
    @@ -2258,9 +2246,9 @@
    Response
    "credit_history": CompanyCreditHistory, "custom_attributes": [CustomAttribute], "email": "xyz789", - "id": "4", + "id": 4, "legal_address": CompanyLegalAddress, - "legal_name": "xyz789", + "legal_name": "abc123", "name": "xyz789", "payment_methods": ["xyz789"], "reseller_id": "xyz789", @@ -2353,7 +2341,7 @@
    Response
    "data": { "compareList": { "attributes": [ComparableAttribute], - "item_count": 987, + "item_count": 123, "items": [ComparableItem], "uid": 4 } @@ -2414,8 +2402,8 @@
    Response
    { "available_regions": [Region], "full_name_english": "abc123", - "full_name_locale": "xyz789", - "id": "abc123", + "full_name_locale": "abc123", + "id": "xyz789", "three_letter_abbreviation": "abc123", "two_letter_abbreviation": "xyz789" } @@ -2491,7 +2479,7 @@
    Query
    Variables
    -
    {"id": "xyz789"}
    +                  
    {"id": "abc123"}
     
    @@ -2500,10 +2488,10 @@
    Response
    "data": { "country": { "available_regions": [Region], - "full_name_english": "abc123", - "full_name_locale": "abc123", + "full_name_english": "xyz789", + "full_name_locale": "xyz789", "id": "abc123", - "three_letter_abbreviation": "xyz789", + "three_letter_abbreviation": "abc123", "two_letter_abbreviation": "xyz789" } } @@ -2561,12 +2549,12 @@
    Response
    "data": { "currency": { "available_currency_codes": [ - "xyz789" + "abc123" ], "base_currency_code": "abc123", "base_currency_symbol": "xyz789", - "default_display_currency_code": "xyz789", - "default_display_currency_symbol": "abc123", + "default_display_currency_code": "abc123", + "default_display_currency_symbol": "xyz789", "exchange_rates": [ExchangeRate] } } @@ -2798,7 +2786,7 @@
    Response
    "addresses": [CustomerAddress], "addressesV2": CustomerAddresses, "admin_assistance_actions": AdminAssistanceActions, - "allow_remote_shopping_assistance": false, + "allow_remote_shopping_assistance": true, "companies": UserCompaniesOutput, "company_hierarchy": [CompanyHierarchy], "compare_list": CompareList, @@ -2807,18 +2795,18 @@
    Response
    "custom_attributes": [AttributeValueInterface], "date_of_birth": "xyz789", "default_billing": "abc123", - "default_shipping": "xyz789", - "email": "xyz789", + "default_shipping": "abc123", + "email": "abc123", "firstname": "abc123", - "gender": 987, + "gender": 123, "gift_registries": [GiftRegistry], "gift_registry": GiftRegistry, "group": CustomerGroupStorefront, - "id": "4", - "is_subscribed": true, + "id": 4, + "is_subscribed": false, "job_title": "abc123", "lastname": "xyz789", - "middlename": "xyz789", + "middlename": "abc123", "orders": CustomerOrders, "prefix": "abc123", "purchase_order": PurchaseOrder, @@ -2827,7 +2815,7 @@
    Response
    "purchase_order_approval_rules": PurchaseOrderApprovalRules, "purchase_orders": PurchaseOrders, "purchase_orders_enabled": true, - "quote_enabled": false, + "quote_enabled": true, "requisition_lists": RequisitionLists, "return": Return, "returns": Returns, @@ -2836,11 +2824,11 @@
    Response
    "segments": [CustomerSegmentStorefront], "status": "ACTIVE", "store_credit": CustomerStoreCredit, - "structure_id": "4", - "suffix": "abc123", + "structure_id": 4, + "suffix": "xyz789", "taxvat": "xyz789", "team": CompanyTeam, - "telephone": "xyz789", + "telephone": "abc123", "wishlist_v2": Wishlist, "wishlists": [Wishlist] } @@ -2951,9 +2939,9 @@
    Response
    ], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "abc123", + "email": "xyz789", "gift_message": GiftMessage, - "gift_receipt_included": true, + "gift_receipt_included": false, "gift_wrapping": GiftWrapping, "id": "4", "is_virtual": false, @@ -3060,7 +3048,7 @@
    Query
    Response
    -
    {"data": {"customerGroup": {"uid": 4}}}
    +                  
    {"data": {"customerGroup": {"uid": "4"}}}
     
    @@ -3171,7 +3159,7 @@
    Query
    Variables
    -
    {"cartId": "abc123"}
    +                  
    {"cartId": "xyz789"}
     
    @@ -3351,8 +3339,8 @@
    Query
    Variables
    {
    -  "cartId": "xyz789",
    -  "id": "abc123"
    +  "cartId": "abc123",
    +  "id": "xyz789"
     }
     
    @@ -3362,7 +3350,7 @@
    Response
    "data": { "getPaymentOrder": { "id": "abc123", - "mp_order_id": "abc123", + "mp_order_id": "xyz789", "payment_source_details": PaymentSourceDetails, "status": "abc123" } @@ -3653,7 +3641,7 @@
    Query
    Variables
    -
    {"giftRegistryUid": 4}
    +                  
    {"giftRegistryUid": "4"}
     
    @@ -3661,7 +3649,7 @@
    Response
    {
       "data": {
         "giftRegistry": {
    -      "created_at": "xyz789",
    +      "created_at": "abc123",
           "dynamic_attributes": [
             GiftRegistryDynamicAttribute
           ],
    @@ -3674,7 +3662,7 @@ 
    Response
    "shipping_address": CustomerAddress, "status": "ACTIVE", "type": GiftRegistryType, - "uid": "4" + "uid": 4 } } } @@ -3753,10 +3741,10 @@
    Response
    "data": { "giftRegistryEmailSearch": [ { - "event_date": "xyz789", + "event_date": "abc123", "event_title": "abc123", - "gift_registry_uid": "4", - "location": "xyz789", + "gift_registry_uid": 4, + "location": "abc123", "name": "xyz789", "type": "xyz789" } @@ -3829,7 +3817,7 @@
    Query
    Variables
    -
    {"giftRegistryUid": 4}
    +                  
    {"giftRegistryUid": "4"}
     
    @@ -3840,8 +3828,8 @@
    Response
    { "event_date": "abc123", "event_title": "abc123", - "gift_registry_uid": "4", - "location": "abc123", + "gift_registry_uid": 4, + "location": "xyz789", "name": "xyz789", "type": "abc123" } @@ -3936,8 +3924,8 @@
    Query
    Variables
    {
       "firstName": "xyz789",
    -  "lastName": "xyz789",
    -  "giftRegistryTypeUid": 4
    +  "lastName": "abc123",
    +  "giftRegistryTypeUid": "4"
     }
     
    @@ -3950,8 +3938,8 @@
    Response
    "event_date": "xyz789", "event_title": "abc123", "gift_registry_uid": "4", - "location": "xyz789", - "name": "abc123", + "location": "abc123", + "name": "xyz789", "type": "abc123" } ] @@ -4153,12 +4141,12 @@
    Response
    {
       "data": {
         "guestOrder": {
    -      "admin_assisted_order": 123,
    +      "admin_assisted_order": 987,
           "applied_coupons": [AppliedCoupon],
           "applied_gift_cards": [ApplyGiftCardToOrder],
           "available_actions": ["REORDER"],
           "billing_address": OrderAddress,
    -      "carrier": "abc123",
    +      "carrier": "xyz789",
           "comments": [SalesCommentItem],
           "credit_memos": [CreditMemo],
           "custom_attributes": [CustomAttribute],
    @@ -4167,15 +4155,15 @@ 
    Response
    "gift_message": GiftMessage, "gift_receipt_included": false, "gift_wrapping": GiftWrapping, - "id": "4", + "id": 4, "invoices": [Invoice], - "is_virtual": true, + "is_virtual": false, "items": [OrderItemInterface], "items_eligible_for_return": [OrderItemInterface], "negotiable_quote": NegotiableQuote, "number": "xyz789", "order_date": "abc123", - "order_status_change_date": "abc123", + "order_status_change_date": "xyz789", "payment_methods": [OrderPaymentMethod], "printed_card_included": true, "returns": Returns, @@ -4183,7 +4171,7 @@
    Response
    "shipping_address": OrderAddress, "shipping_method": "abc123", "status": "xyz789", - "token": "xyz789", + "token": "abc123", "total": OrderTotal } } @@ -4325,7 +4313,7 @@
    Response
    {
       "data": {
         "guestOrderByToken": {
    -      "admin_assisted_order": 123,
    +      "admin_assisted_order": 987,
           "applied_coupons": [AppliedCoupon],
           "applied_gift_cards": [ApplyGiftCardToOrder],
           "available_actions": ["REORDER"],
    @@ -4347,7 +4335,7 @@ 
    Response
    "negotiable_quote": NegotiableQuote, "number": "abc123", "order_date": "abc123", - "order_status_change_date": "abc123", + "order_status_change_date": "xyz789", "payment_methods": [OrderPaymentMethod], "printed_card_included": true, "returns": Returns, @@ -4422,7 +4410,7 @@
    Query
    Variables
    -
    {"email": "xyz789"}
    +                  
    {"email": "abc123"}
     
    @@ -4490,7 +4478,7 @@
    Query
    Variables
    -
    {"email": "xyz789"}
    +                  
    {"email": "abc123"}
     
    @@ -4626,12 +4614,12 @@
    Query
    Variables
    -
    {"email": "xyz789"}
    +                  
    {"email": "abc123"}
     
    Response
    -
    {"data": {"isCompanyUserEmailAvailable": {"is_email_available": true}}}
    +                  
    {"data": {"isCompanyUserEmailAvailable": {"is_email_available": false}}}
     
    @@ -4698,7 +4686,7 @@
    Variables
    Response
    -
    {"data": {"isEmailAvailable": {"is_email_available": false}}}
    +                  
    {"data": {"isEmailAvailable": {"is_email_available": true}}}
     
    @@ -4771,7 +4759,7 @@
    Response
    "data": { "isSubscribedProductAlertPrice": { "isSubscribed": true, - "message": "abc123" + "message": "xyz789" } } } @@ -4957,7 +4945,7 @@
    Query
    Variables
    -
    {"uid": 4}
    +                  
    {"uid": "4"}
     
    @@ -4973,8 +4961,8 @@
    Response
    "comments": [NegotiableQuoteComment], "created_at": "xyz789", "custom_attributes": [CustomAttribute], - "email": "abc123", - "expiration_date": "abc123", + "email": "xyz789", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "is_virtual": true, "items": [CartItemInterface], @@ -4988,10 +4976,10 @@
    Response
    ], "status": "SUBMITTED", "template_id": 4, - "template_name": "abc123", + "template_name": "xyz789", "total_quantity": 123.45, - "uid": 4, - "updated_at": "abc123" + "uid": "4", + "updated_at": "xyz789" } } } @@ -5096,7 +5084,7 @@
    Query
    Variables
    -
    {"templateId": "4"}
    +                  
    {"templateId": 4}
     
    @@ -5107,14 +5095,14 @@
    Response
    "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], "created_at": "abc123", - "expiration_date": "abc123", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": false, - "is_virtual": false, + "is_min_max_qty_used": true, + "is_virtual": true, "items": [CartItemInterface], - "max_order_commitment": 123, - "min_order_commitment": 987, + "max_order_commitment": 987, + "min_order_commitment": 123, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, @@ -5125,10 +5113,10 @@
    Response
    "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", - "template_id": "4", + "status": "xyz789", + "template_id": 4, "total_quantity": 123.45, - "uid": 4, + "uid": "4", "updated_at": "xyz789" } } @@ -5247,7 +5235,7 @@
    Response
    "items": [NegotiableQuoteTemplateGridItem], "page_info": SearchResultPageInfo, "sort_fields": SortFields, - "total_count": 987 + "total_count": 123 } } } @@ -5365,7 +5353,7 @@
    Response
    "items": [NegotiableQuote], "page_info": SearchResultPageInfo, "sort_fields": SortFields, - "total_count": 987 + "total_count": 123 } } } @@ -5497,7 +5485,7 @@
    Response
    "pickupLocations": { "items": [PickupLocation], "page_info": SearchResultPageInfo, - "total_count": 987 + "total_count": 123 } } } @@ -5737,7 +5725,7 @@
    Query
    Variables
    -
    {"skus": ["abc123"]}
    +                  
    {"skus": ["xyz789"]}
     
    @@ -5746,9 +5734,9 @@
    Response
    "data": { "products": [ { - "addToCartAllowed": true, + "addToCartAllowed": false, "inStock": true, - "lowStock": false, + "lowStock": true, "attributes": [ProductViewAttribute], "description": "xyz789", "id": 4, @@ -5757,14 +5745,14 @@
    Response
    "lastModifiedAt": "2007-12-03T10:15:30Z", "metaDescription": "abc123", "metaKeyword": "abc123", - "metaTitle": "xyz789", - "name": "xyz789", - "shortDescription": "abc123", + "metaTitle": "abc123", + "name": "abc123", + "shortDescription": "xyz789", "inputOptions": [ProductViewInputOption], - "sku": "abc123", + "sku": "xyz789", "externalId": "abc123", - "url": "abc123", - "urlKey": "abc123", + "url": "xyz789", + "urlKey": "xyz789", "links": [ProductViewLink], "queryType": "xyz789", "visibility": "abc123" @@ -5976,12 +5964,12 @@
    Response
    {
       "data": {
         "recaptchaV3Config": {
    -      "badge_position": "xyz789",
    -      "failure_message": "abc123",
    +      "badge_position": "abc123",
    +      "failure_message": "xyz789",
           "forms": ["PLACE_ORDER"],
           "is_enabled": true,
           "language_code": "xyz789",
    -      "minimum_score": 987.65,
    +      "minimum_score": 123.45,
           "theme": "xyz789",
           "website_key": "abc123"
         }
    @@ -6129,7 +6117,7 @@ 
    Response
    "data": { "recommendations": { "results": [RecommendationUnit], - "totalResults": 987 + "totalResults": 123 } } } @@ -6250,25 +6238,25 @@
    Response
    "refineProduct": { "addToCartAllowed": true, "inStock": false, - "lowStock": true, + "lowStock": false, "attributes": [ProductViewAttribute], "description": "xyz789", - "id": "4", + "id": 4, "images": [ProductViewImage], "videos": [ProductViewVideo], "lastModifiedAt": "2007-12-03T10:15:30Z", - "metaDescription": "xyz789", + "metaDescription": "abc123", "metaKeyword": "xyz789", "metaTitle": "xyz789", - "name": "xyz789", - "shortDescription": "abc123", + "name": "abc123", + "shortDescription": "xyz789", "inputOptions": [ProductViewInputOption], "sku": "xyz789", - "externalId": "xyz789", + "externalId": "abc123", "url": "abc123", "urlKey": "abc123", "links": [ProductViewLink], - "queryType": "xyz789", + "queryType": "abc123", "visibility": "xyz789" } } @@ -6346,7 +6334,7 @@
    Response
    "data": { "sharedRequisitionList": { "requisition_list": RequisitionList, - "sender_name": "xyz789" + "sender_name": "abc123" } } } @@ -6544,152 +6532,152 @@
    Response
    {
       "data": {
         "storeConfig": {
    -      "allow_company_registration": true,
    +      "allow_company_registration": false,
           "allow_gift_receipt": "abc123",
           "allow_gift_wrapping_on_order": "abc123",
           "allow_gift_wrapping_on_order_items": "xyz789",
    -      "allow_items": "xyz789",
    -      "allow_order": "abc123",
    +      "allow_items": "abc123",
    +      "allow_order": "xyz789",
           "allow_printed_card": "abc123",
           "autocomplete_on_storefront": false,
    -      "base_currency_code": "abc123",
    -      "base_link_url": "abc123",
    +      "base_currency_code": "xyz789",
    +      "base_link_url": "xyz789",
           "base_media_url": "abc123",
           "base_static_url": "xyz789",
           "base_url": "xyz789",
           "cart_expires_in_days": 123,
    -      "cart_gift_wrapping": "abc123",
    -      "cart_merge_preference": "xyz789",
    +      "cart_gift_wrapping": "xyz789",
    +      "cart_merge_preference": "abc123",
           "cart_printed_card": "xyz789",
           "cart_summary_display_quantity": 123,
           "catalog_default_sort_by": "xyz789",
           "category_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS",
    -      "category_url_suffix": "xyz789",
    +      "category_url_suffix": "abc123",
           "check_money_order_enable_for_specific_countries": false,
           "check_money_order_enabled": true,
    -      "check_money_order_make_check_payable_to": "xyz789",
    -      "check_money_order_max_order_total": "abc123",
    -      "check_money_order_min_order_total": "xyz789",
    +      "check_money_order_make_check_payable_to": "abc123",
    +      "check_money_order_max_order_total": "xyz789",
    +      "check_money_order_min_order_total": "abc123",
           "check_money_order_new_order_status": "abc123",
    -      "check_money_order_payment_from_specific_countries": "xyz789",
    +      "check_money_order_payment_from_specific_countries": "abc123",
           "check_money_order_send_check_to": "abc123",
    -      "check_money_order_sort_order": 987,
    +      "check_money_order_sort_order": 123,
           "check_money_order_title": "xyz789",
    -      "company_credit_enabled": true,
    +      "company_credit_enabled": false,
           "company_enabled": true,
           "configurable_product_image": "ITSELF",
           "configurable_thumbnail_source": "xyz789",
           "contact_enabled": true,
           "countries_with_required_region": "xyz789",
    -      "create_account_confirmation": true,
    -      "customer_access_token_lifetime": 987.65,
    -      "default_country": "abc123",
    +      "create_account_confirmation": false,
    +      "customer_access_token_lifetime": 123.45,
    +      "default_country": "xyz789",
           "default_display_currency_code": "xyz789",
    -      "display_product_prices_in_catalog": 123,
    -      "display_shipping_prices": 123,
    +      "display_product_prices_in_catalog": 987,
    +      "display_shipping_prices": 987,
           "display_state_if_optional": true,
    -      "enable_multiple_wishlists": "abc123",
    +      "enable_multiple_wishlists": "xyz789",
           "fixed_product_taxes_apply_tax_to_fpt": false,
    -      "fixed_product_taxes_display_prices_in_emails": 123,
    -      "fixed_product_taxes_display_prices_in_product_lists": 123,
    +      "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": true,
    -      "fixed_product_taxes_include_fpt_in_subtotal": true,
    -      "graphql_share_customer_group": false,
    -      "grid_per_page": 123,
    -      "grid_per_page_values": "xyz789",
    +      "fixed_product_taxes_include_fpt_in_subtotal": false,
    +      "graphql_share_customer_group": true,
    +      "grid_per_page": 987,
    +      "grid_per_page_values": "abc123",
           "grouped_product_image": "ITSELF",
           "is_checkout_agreements_enabled": true,
    -      "is_default_store": false,
    -      "is_default_store_group": false,
    +      "is_default_store": true,
    +      "is_default_store_group": true,
           "is_guest_checkout_enabled": false,
    -      "is_negotiable_quote_active": false,
    +      "is_negotiable_quote_active": true,
           "is_one_page_checkout_enabled": false,
           "is_requisition_list_active": "abc123",
    -      "list_mode": "xyz789",
    -      "list_per_page": 123,
    -      "list_per_page_values": "abc123",
    -      "locale": "xyz789",
    -      "magento_reward_general_is_enabled": "xyz789",
    -      "magento_reward_general_is_enabled_on_front": "abc123",
    +      "list_mode": "abc123",
    +      "list_per_page": 987,
    +      "list_per_page_values": "xyz789",
    +      "locale": "abc123",
    +      "magento_reward_general_is_enabled": "abc123",
    +      "magento_reward_general_is_enabled_on_front": "xyz789",
           "magento_reward_general_min_points_balance": "xyz789",
           "magento_reward_general_publish_history": "xyz789",
    -      "magento_reward_points_invitation_customer": "abc123",
    +      "magento_reward_points_invitation_customer": "xyz789",
           "magento_reward_points_invitation_customer_limit": "abc123",
           "magento_reward_points_invitation_order": "xyz789",
    -      "magento_reward_points_invitation_order_limit": "abc123",
    -      "magento_reward_points_newsletter": "abc123",
    +      "magento_reward_points_invitation_order_limit": "xyz789",
    +      "magento_reward_points_newsletter": "xyz789",
           "magento_reward_points_order": "xyz789",
    -      "magento_reward_points_register": "xyz789",
    +      "magento_reward_points_register": "abc123",
           "magento_reward_points_review": "abc123",
    -      "magento_reward_points_review_limit": "abc123",
    +      "magento_reward_points_review_limit": "xyz789",
           "magento_wishlist_general_is_enabled": "abc123",
           "max_items_in_order_summary": 123,
           "maximum_number_of_wishlists": "abc123",
           "minicart_display": false,
    -      "minicart_max_items": 987,
    -      "minimum_password_length": "xyz789",
    -      "newsletter_enabled": true,
    +      "minicart_max_items": 123,
    +      "minimum_password_length": "abc123",
    +      "newsletter_enabled": false,
           "optional_zip_countries": "abc123",
           "order_cancellation_enabled": false,
           "order_cancellation_reasons": [CancellationReason],
    -      "orders_invoices_credit_memos_display_full_summary": true,
    +      "orders_invoices_credit_memos_display_full_summary": false,
           "orders_invoices_credit_memos_display_grandtotal": true,
    -      "orders_invoices_credit_memos_display_price": 987,
    +      "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": "xyz789",
    +      "product_url_suffix": "abc123",
           "quickorder_active": false,
    -      "quote_minimum_amount": 123.45,
    -      "quote_minimum_amount_message": "xyz789",
    +      "quote_minimum_amount": 987.65,
    +      "quote_minimum_amount_message": "abc123",
           "required_character_classes_number": "xyz789",
           "requisition_list_share_link_validity_days": 123,
           "requisition_list_share_max_recipients": 987,
    -      "requisition_list_share_storefront_path": "xyz789",
    +      "requisition_list_share_storefront_path": "abc123",
           "requisition_list_sharing_enabled": true,
    -      "returns_enabled": "abc123",
    -      "root_category_uid": "4",
    +      "returns_enabled": "xyz789",
    +      "root_category_uid": 4,
           "sales_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS",
           "sales_gift_wrapping": "abc123",
           "sales_printed_card": "xyz789",
    -      "secure_base_link_url": "abc123",
    +      "secure_base_link_url": "xyz789",
           "secure_base_media_url": "abc123",
           "secure_base_static_url": "xyz789",
    -      "secure_base_url": "abc123",
    +      "secure_base_url": "xyz789",
           "share_active_segments": false,
           "share_applied_cart_rule": false,
           "shopping_assistance_checkbox_title": "xyz789",
           "shopping_assistance_checkbox_tooltip": "xyz789",
    -      "shopping_assistance_enabled": true,
    -      "shopping_cart_display_full_summary": false,
    -      "shopping_cart_display_grand_total": false,
    +      "shopping_assistance_enabled": false,
    +      "shopping_cart_display_full_summary": true,
    +      "shopping_cart_display_grand_total": true,
           "shopping_cart_display_price": 123,
    -      "shopping_cart_display_shipping": 123,
    -      "shopping_cart_display_subtotal": 123,
    +      "shopping_cart_display_shipping": 987,
    +      "shopping_cart_display_subtotal": 987,
           "shopping_cart_display_tax_gift_wrapping": "DISPLAY_EXCLUDING_TAX",
           "shopping_cart_display_zero_tax": true,
           "store_code": "4",
    -      "store_group_code": "4",
    +      "store_group_code": 4,
           "store_group_name": "abc123",
    -      "store_name": "xyz789",
    +      "store_name": "abc123",
           "store_sort_order": 123,
           "timezone": "abc123",
    -      "title_separator": "xyz789",
    +      "title_separator": "abc123",
           "use_store_in_url": true,
           "website_code": 4,
           "website_name": "abc123",
    -      "weight_unit": "abc123",
    +      "weight_unit": "xyz789",
           "zero_subtotal_enable_for_specific_countries": true,
           "zero_subtotal_enabled": false,
           "zero_subtotal_new_order_status": "abc123",
           "zero_subtotal_payment_action": "abc123",
           "zero_subtotal_payment_from_specific_countries": "abc123",
           "zero_subtotal_sort_order": 123,
    -      "zero_subtotal_title": "abc123"
    +      "zero_subtotal_title": "xyz789"
         }
       }
     }
    @@ -6778,9 +6766,9 @@ 
    Query
    Variables
    {
    -  "sku": "abc123",
    +  "sku": "xyz789",
       "optionIds": ["abc123"],
    -  "pageSize": 123,
    +  "pageSize": 987,
       "cursor": "abc123"
     }
     
    @@ -6860,7 +6848,7 @@
    Variables
    Response
    -
    {"data": {"acceptCompanyInvitation": {"success": true}}}
    +                  
    {"data": {"acceptCompanyInvitation": {"success": false}}}
     
    @@ -6972,13 +6960,13 @@
    Response
    "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], "created_at": "xyz789", - "expiration_date": "xyz789", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": false, + "is_min_max_qty_used": true, "is_virtual": false, "items": [CartItemInterface], - "max_order_commitment": 987, + "max_order_commitment": 123, "min_order_commitment": 123, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], @@ -6986,15 +6974,15 @@
    Response
    "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "abc123", + "sales_rep_name": "xyz789", "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", + "status": "xyz789", "template_id": "4", "total_quantity": 987.65, - "uid": 4, - "updated_at": "xyz789" + "uid": "4", + "updated_at": "abc123" } } } @@ -7332,7 +7320,7 @@
    Response
    "data": { "addProductsToCompareList": { "attributes": [ComparableAttribute], - "item_count": 123, + "item_count": 987, "items": [ComparableItem], "uid": "4" } @@ -7493,7 +7481,7 @@
    Query
    Variables
    {
    -  "requisitionListUid": "4",
    +  "requisitionListUid": 4,
       "requisitionListItems": [RequisitionListItemsInput]
     }
     
    @@ -7836,7 +7824,10 @@
    Query
    Variables
    -
    {"requisitionListUid": 4, "requisitionListItemUids": [4]}
    +                  
    {
    +  "requisitionListUid": 4,
    +  "requisitionListItemUids": ["4"]
    +}
     
    @@ -8079,7 +8070,10 @@
    Query
    Variables
    -
    {"wishlistId": 4, "wishlistItemIds": [4]}
    +                  
    {
    +  "wishlistId": "4",
    +  "wishlistItemIds": ["4"]
    +}
     
    @@ -8090,7 +8084,7 @@
    Response
    "add_wishlist_items_to_cart_user_errors": [ WishlistCartUserInputError ], - "status": true, + "status": false, "wishlist": Wishlist } } @@ -8521,81 +8515,6 @@
    Response
    } } } -
    - - - back to top - -
    -
    -
    - Mutations -
    -

    - assignChildCompany -

    -
    -
    -
    -
    Description
    -

    Assign a child company to a parent company within the company relation hierarchy.

    -
    -
    -
    -
    -
    -
    -
    Response
    -

    Returns an AssignChildCompanyOutput -

    -
    -
    -
    Arguments
    - - - - - - - - - - - - - -
    NameDescription
    - input - AssignChildCompanyInput! - An input object that defines which companies to relate.
    -
    -
    -
    -

    Example

    -
    -
    Query
    -
    mutation assignChildCompany($input: AssignChildCompanyInput!) {
    -  assignChildCompany(input: $input) {
    -    company_hierarchy {
    -      ...CompanyHierarchyFragment
    -    }
    -  }
    -}
    -
    -
    -
    -
    Variables
    -
    {"input": AssignChildCompanyInput}
    -
    -
    -
    -
    Response
    -
    {
    -  "data": {
    -    "assignChildCompany": {
    -      "company_hierarchy": CompanyHierarchy
    -    }
    -  }
    -}
     
    @@ -8785,7 +8704,7 @@
    Query
    Variables
    -
    {"cart_id": "xyz789"}
    +                  
    {"cart_id": "abc123"}
     
    @@ -8803,19 +8722,19 @@
    Response
    ], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "abc123", + "email": "xyz789", "gift_message": GiftMessage, "gift_receipt_included": false, "gift_wrapping": GiftWrapping, "id": 4, - "is_virtual": true, + "is_virtual": false, "itemsV2": CartItems, "prices": CartPrices, "printed_card_included": true, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], - "total_quantity": 987.65 + "total_quantity": 123.45 } } } @@ -8934,10 +8853,10 @@
    Response
    "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": true, - "is_virtual": false, + "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 987, - "min_order_commitment": 123, + "min_order_commitment": 987, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, @@ -8950,7 +8869,7 @@
    Response
    ], "status": "xyz789", "template_id": 4, - "total_quantity": 987.65, + "total_quantity": 123.45, "uid": 4, "updated_at": "xyz789" } @@ -9032,7 +8951,7 @@
    Response
    {
       "data": {
         "cancelOrder": {
    -      "error": "xyz789",
    +      "error": "abc123",
           "errorV2": CancelOrderError,
           "order": CustomerOrder
         }
    @@ -9292,7 +9211,7 @@ 
    Query
    Variables
    {
       "currentPassword": "abc123",
    -  "newPassword": "abc123"
    +  "newPassword": "xyz789"
     }
     
    @@ -9304,7 +9223,7 @@
    Response
    "addresses": [CustomerAddress], "addressesV2": CustomerAddresses, "admin_assistance_actions": AdminAssistanceActions, - "allow_remote_shopping_assistance": true, + "allow_remote_shopping_assistance": false, "companies": UserCompaniesOutput, "company_hierarchy": [CompanyHierarchy], "compare_list": CompareList, @@ -9312,19 +9231,19 @@
    Response
    "created_at": "xyz789", "custom_attributes": [AttributeValueInterface], "date_of_birth": "xyz789", - "default_billing": "xyz789", - "default_shipping": "abc123", + "default_billing": "abc123", + "default_shipping": "xyz789", "email": "abc123", "firstname": "xyz789", - "gender": 123, + "gender": 987, "gift_registries": [GiftRegistry], "gift_registry": GiftRegistry, "group": CustomerGroupStorefront, "id": "4", - "is_subscribed": true, + "is_subscribed": false, "job_title": "xyz789", - "lastname": "abc123", - "middlename": "xyz789", + "lastname": "xyz789", + "middlename": "abc123", "orders": CustomerOrders, "prefix": "abc123", "purchase_order": PurchaseOrder, @@ -9333,7 +9252,7 @@
    Response
    "purchase_order_approval_rules": PurchaseOrderApprovalRules, "purchase_orders": PurchaseOrders, "purchase_orders_enabled": true, - "quote_enabled": true, + "quote_enabled": false, "requisition_lists": RequisitionLists, "return": Return, "returns": Returns, @@ -9342,7 +9261,7 @@
    Response
    "segments": [CustomerSegmentStorefront], "status": "ACTIVE", "store_credit": CustomerStoreCredit, - "structure_id": 4, + "structure_id": "4", "suffix": "xyz789", "taxvat": "xyz789", "team": CompanyTeam, @@ -9423,7 +9342,7 @@
    Variables
    Response
    {
       "data": {
    -    "clearCustomerCart": {"cart": Cart, "status": false}
    +    "clearCustomerCart": {"cart": Cart, "status": true}
       }
     }
     
    @@ -9492,7 +9411,7 @@
    Query
    Variables
    -
    {"wishlistId": 4}
    +                  
    {"wishlistId": "4"}
     
    @@ -9748,7 +9667,7 @@
    Response
    {
       "data": {
         "confirmCancelOrder": {
    -      "error": "xyz789",
    +      "error": "abc123",
           "errorV2": CancelOrderError,
           "order": CustomerOrder
         }
    @@ -9969,7 +9888,7 @@ 
    Variables
    Response
    -
    {"data": {"contactUs": {"status": false}}}
    +                  
    {"data": {"contactUs": {"status": true}}}
     
    @@ -10055,7 +9974,7 @@
    Query
    Variables
    {
       "sourceRequisitionListUid": 4,
    -  "destinationRequisitionListUid": "4",
    +  "destinationRequisitionListUid": 4,
       "requisitionListItem": CopyItemsBetweenRequisitionListsInput
     }
     
    @@ -10160,7 +10079,7 @@
    Query
    Variables
    {
       "sourceWishlistUid": "4",
    -  "destinationWishlistUid": "4",
    +  "destinationWishlistUid": 4,
       "wishlistItems": [WishlistItemCopyInput]
     }
     
    @@ -10536,7 +10455,7 @@
    Response
    "attributes": [ComparableAttribute], "item_count": 123, "items": [ComparableItem], - "uid": "4" + "uid": 4 } } } @@ -10637,24 +10556,24 @@
    Response
    "data": { "createCustomerAddress": { "city": "abc123", - "company": "abc123", + "company": "xyz789", "country_code": "AF", "custom_attributesV2": [AttributeValueInterface], - "default_billing": false, + "default_billing": true, "default_shipping": false, "extension_attributes": [CustomerAddressAttribute], "fax": "abc123", - "firstname": "xyz789", + "firstname": "abc123", "id": 123, "lastname": "abc123", "middlename": "xyz789", - "postcode": "xyz789", - "prefix": "xyz789", + "postcode": "abc123", + "prefix": "abc123", "region": CustomerAddressRegion, - "region_id": 987, - "street": ["xyz789"], + "region_id": 123, + "street": ["abc123"], "suffix": "abc123", - "telephone": "abc123", + "telephone": "xyz789", "uid": "4", "vat_id": "xyz789" } @@ -10945,9 +10864,9 @@
    Response
    {
       "data": {
         "createPaymentOrder": {
    -      "amount": 123.45,
    -      "currency_code": "xyz789",
    -      "id": "abc123",
    +      "amount": 987.65,
    +      "currency_code": "abc123",
    +      "id": "xyz789",
           "mp_order_id": "xyz789",
           "status": "xyz789"
         }
    @@ -11041,13 +10960,13 @@ 
    Response
    "applies_to_roles": [CompanyRole], "approver_roles": [CompanyRole], "condition": PurchaseOrderApprovalRuleConditionInterface, - "created_at": "xyz789", - "created_by": "xyz789", + "created_at": "abc123", + "created_by": "abc123", "description": "xyz789", "name": "xyz789", "status": "ENABLED", - "uid": 4, - "updated_at": "xyz789" + "uid": "4", + "updated_at": "abc123" } } } @@ -11200,7 +11119,7 @@
    Response
    "data": { "createVaultCardPaymentToken": { "payment_source": PaymentSourceOutput, - "vault_token_id": "abc123" + "vault_token_id": "xyz789" } } } @@ -11273,7 +11192,7 @@
    Response
    {
       "data": {
         "createVaultCardSetupToken": {
    -      "setup_token": "abc123"
    +      "setup_token": "xyz789"
         }
       }
     }
    @@ -11408,12 +11327,12 @@ 
    Query
    Variables
    -
    {"id": 4}
    +                  
    {"id": "4"}
     
    Response
    -
    {"data": {"deleteCompanyRole": {"success": true}}}
    +                  
    {"data": {"deleteCompanyRole": {"success": false}}}
     
    @@ -11476,12 +11395,12 @@
    Query
    Variables
    -
    {"id": 4}
    +                  
    {"id": "4"}
     
    Response
    -
    {"data": {"deleteCompanyTeam": {"success": false}}}
    +                  
    {"data": {"deleteCompanyTeam": {"success": true}}}
     
    @@ -11544,12 +11463,12 @@
    Query
    Variables
    -
    {"id": 4}
    +                  
    {"id": "4"}
     
    Response
    -
    {"data": {"deleteCompanyUserV2": {"success": false}}}
    +                  
    {"data": {"deleteCompanyUserV2": {"success": true}}}
     
    @@ -11616,7 +11535,7 @@
    Variables
    Response
    -
    {"data": {"deleteCompareList": {"result": false}}}
    +                  
    {"data": {"deleteCompareList": {"result": true}}}
     
    @@ -11859,7 +11778,7 @@
    Variables
    Response
    -
    {"data": {"deleteNegotiableQuoteTemplate": false}}
    +                  
    {"data": {"deleteNegotiableQuoteTemplate": true}}
     
    @@ -12021,7 +11940,7 @@
    Response
    "data": { "deletePaymentToken": { "customerPaymentTokens": CustomerPaymentTokens, - "result": false + "result": true } } } @@ -12165,7 +12084,7 @@
    Query
    Variables
    -
    {"requisitionListUid": 4}
    +                  
    {"requisitionListUid": "4"}
     
    @@ -12174,7 +12093,7 @@
    Response
    "data": { "deleteRequisitionList": { "requisition_lists": RequisitionLists, - "status": true + "status": false } } } @@ -12332,7 +12251,7 @@
    Query
    Variables
    -
    {"wishlistId": 4}
    +                  
    {"wishlistId": "4"}
     
    @@ -12340,7 +12259,7 @@
    Response
    {
       "data": {
         "deleteWishlist": {
    -      "status": true,
    +      "status": false,
           "wishlists": [Wishlist]
         }
       }
    @@ -12507,11 +12426,11 @@ 
    Response
    { "additional_data": [ShippingAdditionalData], "amount": Money, - "available": false, + "available": true, "carrier_code": "xyz789", - "carrier_title": "xyz789", - "error_message": "xyz789", - "method_code": "abc123", + "carrier_title": "abc123", + "error_message": "abc123", + "method_code": "xyz789", "method_title": "xyz789", "price_excl_tax": Money, "price_incl_tax": Money @@ -12740,7 +12659,7 @@
    Query
    Variables
    {
       "email": "abc123",
    -  "otp": "abc123"
    +  "otp": "xyz789"
     }
     
    @@ -12749,7 +12668,7 @@
    Response
    {
       "data": {
         "exchangeOtpForCustomerToken": {
    -      "token": "xyz789"
    +      "token": "abc123"
         }
       }
     }
    @@ -12818,7 +12737,7 @@ 
    Response
    "data": { "finishUpload": { "key": "abc123", - "message": "xyz789", + "message": "abc123", "success": false } } @@ -13123,7 +13042,7 @@
    Query
    Variables
    -
    {"token": "xyz789"}
    +                  
    {"token": "abc123"}
     
    @@ -13200,7 +13119,7 @@
    Response
    {
       "data": {
         "initiateUpload": {
    -      "expires_at": "xyz789",
    +      "expires_at": "abc123",
           "key": "xyz789",
           "upload_url": "abc123"
         }
    @@ -13331,7 +13250,7 @@ 
    Query
    Variables
    {
       "source_cart_id": "xyz789",
    -  "destination_cart_id": "xyz789"
    +  "destination_cart_id": "abc123"
     }
     
    @@ -13350,19 +13269,19 @@
    Response
    ], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "abc123", + "email": "xyz789", "gift_message": GiftMessage, - "gift_receipt_included": false, + "gift_receipt_included": true, "gift_wrapping": GiftWrapping, - "id": 4, + "id": "4", "is_virtual": true, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": false, + "printed_card_included": true, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], - "total_quantity": 123.45 + "total_quantity": 987.65 } } } @@ -13549,7 +13468,7 @@
    Query
    Variables
    {
    -  "sourceRequisitionListUid": 4,
    +  "sourceRequisitionListUid": "4",
       "destinationRequisitionListUid": "4",
       "requisitionListItem": MoveItemsBetweenRequisitionListsInput
     }
    @@ -13731,7 +13650,7 @@ 
    Query
    Variables
    {
       "sourceWishlistUid": 4,
    -  "destinationWishlistUid": 4,
    +  "destinationWishlistUid": "4",
       "wishlistItems": [WishlistItemMoveInput]
     }
     
    @@ -13857,12 +13776,12 @@
    Response
    "openNegotiableQuoteTemplate": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", - "expiration_date": "xyz789", + "created_at": "xyz789", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": false, - "is_virtual": true, + "is_virtual": false, "items": [CartItemInterface], "max_order_commitment": 987, "min_order_commitment": 123, @@ -13878,9 +13797,9 @@
    Response
    ], "status": "xyz789", "template_id": 4, - "total_quantity": 987.65, + "total_quantity": 123.45, "uid": 4, - "updated_at": "xyz789" + "updated_at": "abc123" } } } @@ -14342,7 +14261,7 @@
    Response
    "data": { "redeemGiftCardBalanceAsStoreCredit": { "balance": Money, - "code": "abc123", + "code": "xyz789", "expiration_date": "abc123" } } @@ -14695,7 +14614,7 @@
    Query
    Variables
    -
    {"giftRegistryUid": "4"}
    +                  
    {"giftRegistryUid": 4}
     
    @@ -14776,7 +14695,7 @@
    Query
    Variables
    -
    {"giftRegistryUid": "4", "itemsUid": [4]}
    +                  
    {"giftRegistryUid": 4, "itemsUid": ["4"]}
     
    @@ -14864,7 +14783,7 @@
    Query
    Variables
    {
    -  "giftRegistryUid": 4,
    +  "giftRegistryUid": "4",
       "registrantsUid": ["4"]
     }
     
    @@ -15133,13 +15052,13 @@
    Response
    "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], "created_at": "xyz789", - "expiration_date": "abc123", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": true, "is_virtual": true, "items": [CartItemInterface], - "max_order_commitment": 987, + "max_order_commitment": 123, "min_order_commitment": 987, "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], @@ -15236,9 +15155,9 @@
    Response
    "data": { "removeProductsFromCompareList": { "attributes": [ComparableAttribute], - "item_count": 987, + "item_count": 123, "items": [ComparableItem], - "uid": 4 + "uid": "4" } } } @@ -15320,7 +15239,7 @@
    Query
    Variables
    -
    {"wishlistId": 4, "wishlistItemsIds": ["4"]}
    +                  
    {"wishlistId": 4, "wishlistItemsIds": [4]}
     
    @@ -15770,7 +15689,7 @@
    Response
    {
       "data": {
         "requestGuestOrderCancel": {
    -      "error": "xyz789",
    +      "error": "abc123",
           "errorV2": CancelOrderError,
           "order": CustomerOrder
         }
    @@ -16037,22 +15956,22 @@ 
    Response
    "is_min_max_qty_used": false, "is_virtual": false, "items": [CartItemInterface], - "max_order_commitment": 123, - "min_order_commitment": 123, - "name": "xyz789", + "max_order_commitment": 987, + "min_order_commitment": 987, + "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "xyz789", + "status": "abc123", "template_id": "4", - "total_quantity": 123.45, - "uid": "4", + "total_quantity": 987.65, + "uid": 4, "updated_at": "xyz789" } } @@ -16260,12 +16179,12 @@
    Query
    Variables
    -
    {"email": "abc123"}
    +                  
    {"email": "xyz789"}
     
    Response
    -
    {"data": {"resendConfirmationEmail": false}}
    +                  
    {"data": {"resendConfirmationEmail": true}}
     
    @@ -16397,7 +16316,7 @@
    Query
    Response
    -
    {"data": {"revokeCustomerToken": {"result": true}}}
    +                  
    {"data": {"revokeCustomerToken": {"result": false}}}
     
    @@ -16604,7 +16523,7 @@
    Query
    Variables
    -
    {"cartId": "abc123"}
    +                  
    {"cartId": "xyz789"}
     
    @@ -16612,8 +16531,8 @@
    Response
    {
       "data": {
         "setCartAsInactive": {
    -      "error": "abc123",
    -      "success": true
    +      "error": "xyz789",
    +      "success": false
         }
       }
     }
    @@ -17847,7 +17766,7 @@ 
    Response
    "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "xyz789", + "status": "abc123", "template_id": 4, "total_quantity": 987.65, "uid": 4, @@ -18034,15 +17953,15 @@
    Response
    "setQuoteTemplateExpirationDate": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", + "created_at": "xyz789", "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": true, "is_virtual": true, "items": [CartItemInterface], - "max_order_commitment": 123, - "min_order_commitment": 987, + "max_order_commitment": 987, + "min_order_commitment": 123, "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, @@ -18053,11 +17972,11 @@
    Response
    "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", - "template_id": 4, + "status": "xyz789", + "template_id": "4", "total_quantity": 123.45, "uid": 4, - "updated_at": "xyz789" + "updated_at": "abc123" } } } @@ -18171,29 +18090,29 @@
    Response
    "setQuoteTemplateLineItemNote": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "xyz789", + "created_at": "abc123", "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": true, "is_virtual": true, "items": [CartItemInterface], - "max_order_commitment": 123, - "min_order_commitment": 123, + "max_order_commitment": 987, + "min_order_commitment": 987, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "xyz789", + "status": "abc123", "template_id": "4", "total_quantity": 987.65, - "uid": "4", + "uid": 4, "updated_at": "abc123" } } @@ -18418,7 +18337,7 @@
    Query
    Variables
    {
    -  "giftRegistryUid": "4",
    +  "giftRegistryUid": 4,
       "sender": ShareGiftRegistrySenderInput,
       "invitees": [ShareGiftRegistryInviteeInput]
     }
    @@ -18500,7 +18419,7 @@ 
    Response
    {
       "data": {
         "shareRequisitionListByEmail": {
    -      "sent_count": 987,
    +      "sent_count": 123,
           "user_errors": [ShareRequisitionListUserError]
         }
       }
    @@ -18566,7 +18485,7 @@ 
    Query
    Variables
    -
    {"requisitionListUid": 4}
    +                  
    {"requisitionListUid": "4"}
     
    @@ -18688,29 +18607,29 @@
    Response
    "submitNegotiableQuoteTemplateForReview": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", + "created_at": "xyz789", "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": false, + "is_min_max_qty_used": true, "is_virtual": false, "items": [CartItemInterface], - "max_order_commitment": 987, + "max_order_commitment": 123, "min_order_commitment": 123, - "name": "xyz789", + "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "shipping_addresses": [ NegotiableQuoteShippingAddress ], "status": "xyz789", "template_id": 4, "total_quantity": 987.65, - "uid": "4", + "uid": 4, "updated_at": "xyz789" } } @@ -18776,7 +18695,7 @@
    Query
    Variables
    -
    {"email": "abc123"}
    +                  
    {"email": "xyz789"}
     
    @@ -18853,7 +18772,7 @@
    Response
    {
       "data": {
         "subscribeProductAlertPrice": {
    -      "message": "abc123",
    +      "message": "xyz789",
           "success": false
         }
       }
    @@ -18930,7 +18849,7 @@ 
    Response
    "data": { "subscribeProductAlertStock": { "message": "abc123", - "success": true + "success": false } } } @@ -18999,81 +18918,6 @@
    Variables
    Response
    {"data": {"syncPaymentOrder": true}}
    -
    -
    -
    - back to top -
    -
    -
    -
    - Mutations -
    -

    - unassignChildCompany -

    -
    -
    -
    -
    Description
    -

    Unassign a child company from its parent company within the company relation hierarchy.

    -
    -
    -
    -
    -
    -
    -
    Response
    -

    Returns an UnassignChildCompanyOutput -

    -
    -
    -
    Arguments
    - - - - - - - - - - - - - -
    NameDescription
    - input - UnassignChildCompanyInput! - An input object that defines which company to unassign.
    -
    -
    -
    -

    Example

    -
    -
    Query
    -
    mutation unassignChildCompany($input: UnassignChildCompanyInput!) {
    -  unassignChildCompany(input: $input) {
    -    company_hierarchy {
    -      ...CompanyHierarchyFragment
    -    }
    -  }
    -}
    -
    -
    -
    -
    Variables
    -
    {"input": UnassignChildCompanyInput}
    -
    -
    -
    -
    Response
    -
    {
    -  "data": {
    -    "unassignChildCompany": {
    -      "company_hierarchy": CompanyHierarchy
    -    }
    -  }
    -}
     
    @@ -19197,7 +19041,7 @@
    Response
    "data": { "unsubscribeProductAlertPriceAll": { "message": "abc123", - "success": false + "success": true } } } @@ -19273,7 +19117,7 @@
    Response
    "data": { "unsubscribeProductAlertStock": { "message": "xyz789", - "success": false + "success": true } } } @@ -19324,7 +19168,7 @@
    Response
    "data": { "unsubscribeProductAlertStockAll": { "message": "xyz789", - "success": true + "success": false } } } @@ -19863,7 +19707,7 @@
    Query
    Variables
    -
    {"id": 123, "input": CustomerAddressInput}
    +                  
    {"id": 987, "input": CustomerAddressInput}
     
    @@ -19872,26 +19716,26 @@
    Response
    "data": { "updateCustomerAddress": { "city": "abc123", - "company": "xyz789", + "company": "abc123", "country_code": "AF", "custom_attributesV2": [AttributeValueInterface], - "default_billing": false, - "default_shipping": true, + "default_billing": true, + "default_shipping": false, "extension_attributes": [CustomerAddressAttribute], "fax": "abc123", "firstname": "abc123", "id": 987, - "lastname": "xyz789", - "middlename": "xyz789", - "postcode": "xyz789", - "prefix": "xyz789", + "lastname": "abc123", + "middlename": "abc123", + "postcode": "abc123", + "prefix": "abc123", "region": CustomerAddressRegion, - "region_id": 123, + "region_id": 987, "street": ["xyz789"], "suffix": "abc123", "telephone": "xyz789", - "uid": 4, - "vat_id": "xyz789" + "uid": "4", + "vat_id": "abc123" } } } @@ -19994,10 +19838,7 @@
    Query
    Variables
    -
    {
    -  "uid": "4",
    -  "input": CustomerAddressInput
    -}
    +                  
    {"uid": 4, "input": CustomerAddressInput}
     
    @@ -20005,27 +19846,27 @@
    Response
    {
       "data": {
         "updateCustomerAddressV2": {
    -      "city": "xyz789",
    +      "city": "abc123",
           "company": "xyz789",
           "country_code": "AF",
           "custom_attributesV2": [AttributeValueInterface],
    -      "default_billing": true,
    -      "default_shipping": true,
    +      "default_billing": false,
    +      "default_shipping": false,
           "extension_attributes": [CustomerAddressAttribute],
    -      "fax": "xyz789",
    -      "firstname": "xyz789",
    -      "id": 987,
    +      "fax": "abc123",
    +      "firstname": "abc123",
    +      "id": 123,
           "lastname": "abc123",
    -      "middlename": "xyz789",
    +      "middlename": "abc123",
           "postcode": "xyz789",
           "prefix": "abc123",
           "region": CustomerAddressRegion,
    -      "region_id": 123,
    -      "street": ["abc123"],
    +      "region_id": 987,
    +      "street": ["xyz789"],
           "suffix": "abc123",
           "telephone": "abc123",
           "uid": "4",
    -      "vat_id": "abc123"
    +      "vat_id": "xyz789"
         }
       }
     }
    @@ -20105,8 +19946,8 @@ 
    Query
    Variables
    {
    -  "email": "xyz789",
    -  "password": "xyz789"
    +  "email": "abc123",
    +  "password": "abc123"
     }
     
    @@ -20258,7 +20099,7 @@
    Query
    Variables
    {
    -  "giftRegistryUid": 4,
    +  "giftRegistryUid": "4",
       "giftRegistry": UpdateGiftRegistryInput
     }
     
    @@ -20346,7 +20187,7 @@
    Query
    Variables
    {
    -  "giftRegistryUid": 4,
    +  "giftRegistryUid": "4",
       "items": [UpdateGiftRegistryItemInput]
     }
     
    @@ -20782,9 +20623,9 @@
    Response
    "applies_to_roles": [CompanyRole], "approver_roles": [CompanyRole], "condition": PurchaseOrderApprovalRuleConditionInterface, - "created_at": "abc123", + "created_at": "xyz789", "created_by": "abc123", - "description": "xyz789", + "description": "abc123", "name": "abc123", "status": "ENABLED", "uid": 4, @@ -21194,7 +21035,7 @@
    Fields
    Example
    -
    {"template_id": 4}
    +                  
    {"template_id": "4"}
     
    @@ -21383,9 +21224,9 @@
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "email": "xyz789", + "email": "abc123", "firstname": "xyz789", - "lastname": "xyz789" + "lastname": "abc123" }
    @@ -21521,10 +21362,7 @@
    Fields
    Example
    -
    {
    -  "products": ["4"],
    -  "uid": "4"
    -}
    +                  
    {"products": [4], "uid": "4"}
     
    @@ -21708,8 +21546,8 @@
    Fields
    Example
    {
    -  "comment": "abc123",
    -  "purchase_order_uid": "4"
    +  "comment": "xyz789",
    +  "purchase_order_uid": 4
     }
     
    @@ -21804,7 +21642,7 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    +  "cart_id": "xyz789",
       "purchase_order_uid": 4,
       "replace_existing_cart_items": false
     }
    @@ -21853,7 +21691,7 @@ 
    Fields
    Example
    {
    -  "message": "xyz789",
    +  "message": "abc123",
       "type": "OUT_OF_STOCK"
     }
     
    @@ -22017,7 +21855,10 @@
    Fields
    Example
    -
    {"comment_text": "abc123", "return_uid": 4}
    +                  
    {
    +  "comment_text": "xyz789",
    +  "return_uid": "4"
    +}
     
    @@ -22111,8 +21952,8 @@
    Fields
    Example
    {
    -  "carrier_uid": "4",
    -  "return_uid": 4,
    +  "carrier_uid": 4,
    +  "return_uid": "4",
       "tracking_number": "xyz789"
     }
     
    @@ -22216,7 +22057,7 @@
    Example
    "add_wishlist_items_to_cart_user_errors": [ WishlistCartUserInputError ], - "status": true, + "status": false, "wishlist": Wishlist }
    @@ -22382,7 +22223,7 @@
    Fields
    Example
    {
    -  "attribute": "abc123",
    +  "attribute": "xyz789",
       "buckets": [Bucket],
       "title": "xyz789",
       "type": "INTELLIGENT"
    @@ -22516,9 +22357,9 @@ 
    Example
    {
       "button_styles": ButtonStyles,
       "code": "abc123",
    -  "is_visible": false,
    +  "is_visible": true,
       "payment_intent": "xyz789",
    -  "payment_source": "abc123",
    +  "payment_source": "xyz789",
       "sdk_params": [SDKParams],
       "sort_order": "abc123",
       "title": "abc123"
    @@ -22576,9 +22417,9 @@ 
    Fields
    Example
    {
    -  "payment_source": "xyz789",
    -  "payments_order_id": "xyz789",
    -  "paypal_order_id": "abc123"
    +  "payment_source": "abc123",
    +  "payments_order_id": "abc123",
    +  "paypal_order_id": "xyz789"
     }
     
    @@ -22619,7 +22460,7 @@
    Fields
    Example
    -
    {"code": "abc123"}
    +                  
    {"code": "xyz789"}
     
    @@ -22676,7 +22517,7 @@
    Fields
    Example
    {
       "applied_balance": Money,
    -  "code": "abc123",
    +  "code": "xyz789",
       "current_balance": Money,
       "expiration_date": "abc123"
     }
    @@ -22732,7 +22573,7 @@ 
    Example
    {
       "action_type": "BOOST",
       "rule_id": "xyz789",
    -  "rule_name": "xyz789"
    +  "rule_name": "abc123"
     }
     
    @@ -22891,7 +22732,7 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    +  "cart_id": "xyz789",
       "coupon_code": "xyz789"
     }
     
    @@ -23037,7 +22878,7 @@
    Fields
    Example
    {
       "cart_id": "abc123",
    -  "coupon_codes": ["abc123"],
    +  "coupon_codes": ["xyz789"],
       "type": "APPEND"
     }
     
    @@ -23176,7 +23017,7 @@
    Fields
    Example
    {
       "applied_balance": Money,
    -  "code": "xyz789"
    +  "code": "abc123"
     }
     
    @@ -23258,7 +23099,7 @@
    Fields
    Example
    -
    {"cart_id": "xyz789"}
    +                  
    {"cart_id": "abc123"}
     
    @@ -23345,7 +23186,7 @@
    Fields
    Example
    -
    {"radius": 123, "search_term": "abc123"}
    +                  
    {"radius": 123, "search_term": "xyz789"}
     
    @@ -23407,10 +23248,10 @@
    Fields
    Example
    {
       "asset_image": ProductMediaGalleryEntriesAssetImage,
    -  "disabled": false,
    -  "label": "abc123",
    +  "disabled": true,
    +  "label": "xyz789",
       "position": 987,
    -  "url": "abc123"
    +  "url": "xyz789"
     }
     
    @@ -23475,99 +23316,9 @@
    Example
    "asset_video": ProductMediaGalleryEntriesAssetVideo, "disabled": false, "label": "xyz789", - "position": 987, - "url": "xyz789" -} -
    - - - back to top - -
    -
    -
    - Types -
    -

    AssignChildCompanyInput

    -
    -
    -
    -
    Description
    -

    Defines the input schema for assigning a child company to a parent company.

    -
    -
    -
    Fields
    - - - - - - - - - - - - - - - - - -
    Input FieldDescription
    - child_company_id - ID! - The unique ID of the child company.
    - parent_company_id - ID! - The unique ID of the parent company.
    -
    -
    -
    -
    -
    Example
    -
    {
    -  "child_company_id": "4",
    -  "parent_company_id": 4
    +  "position": 123,
    +  "url": "abc123"
     }
    -
    -
    -
    - back to top -
    -
    -
    -
    - Types -
    -

    AssignChildCompanyOutput

    -
    -
    -
    -
    Description
    -

    Contains the response to the request to assign a child company.

    -
    -
    -
    Fields
    - - - - - - - - - - - - - -
    Field NameDescription
    company_hierarchy - CompanyHierarchy! - The updated company hierarchy for the parent company.
    -
    -
    -
    -
    -
    Example
    -
    {"company_hierarchy": CompanyHierarchy}
     
    @@ -23612,7 +23363,7 @@
    Fields
    Example
    -
    {"compare_list": CompareList, "result": true}
    +                  
    {"compare_list": CompareList, "result": false}
     
    @@ -23735,8 +23486,8 @@
    Fields
    Example
    {
       "attribute_type": "abc123",
    -  "code": 4,
    -  "url": "abc123",
    +  "code": "4",
    +  "url": "xyz789",
       "value": "abc123"
     }
     
    @@ -23846,18 +23597,18 @@
    Fields
    Example
    {
    -  "is_comparable": true,
    -  "is_filterable": false,
    -  "is_filterable_in_search": false,
    +  "is_comparable": false,
    +  "is_filterable": true,
    +  "is_filterable_in_search": true,
       "is_html_allowed_on_front": true,
       "is_searchable": true,
       "is_used_for_customer_segment": true,
    -  "is_used_for_price_rules": true,
    -  "is_used_for_promo_rules": false,
    +  "is_used_for_price_rules": false,
    +  "is_used_for_promo_rules": true,
       "is_visible_in_advanced_search": true,
    -  "is_visible_on_front": true,
    -  "is_wysiwyg_enabled": false,
    -  "used_in_product_listing": false
    +  "is_visible_on_front": false,
    +  "is_wysiwyg_enabled": true,
    +  "used_in_product_listing": true
     }
     
    @@ -24058,9 +23809,9 @@
    Fields
    Example
    {
       "attribute_type": "xyz789",
    -  "code": "4",
    +  "code": 4,
       "url": "xyz789",
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -24110,7 +23861,7 @@
    Fields
    Example
    {
       "attribute_code": "xyz789",
    -  "entity_type": "abc123"
    +  "entity_type": "xyz789"
     }
     
    @@ -24233,14 +23984,14 @@
    Fields
    Example
    {
    -  "code": 4,
    -  "default_value": "abc123",
    +  "code": "4",
    +  "default_value": "xyz789",
       "entity_type": "CATALOG_PRODUCT",
       "frontend_class": "abc123",
       "frontend_input": "BOOLEAN",
       "is_required": true,
       "is_unique": false,
    -  "label": "abc123",
    +  "label": "xyz789",
       "options": [CustomAttributeOptionInterface]
     }
     
    @@ -24449,8 +24200,8 @@
    Fields
    Example
    {
       "is_default": false,
    -  "label": "xyz789",
    -  "value": "abc123"
    +  "label": "abc123",
    +  "value": "xyz789"
     }
     
    @@ -24493,7 +24244,7 @@
    Fields
    Example
    {
    -  "label": "abc123",
    +  "label": "xyz789",
       "value": "xyz789"
     }
     
    @@ -24554,7 +24305,7 @@
    Possible Types
    Example
    {
    -  "label": "xyz789",
    +  "label": "abc123",
       "value": "abc123"
     }
     
    @@ -24605,7 +24356,7 @@
    Fields
    Example
    {
       "attribute_type": "abc123",
    -  "code": "4",
    +  "code": 4,
       "selected_options": [AttributeSelectedOptionInterface]
     }
     
    @@ -24654,8 +24405,8 @@
    Fields
    Example
    {
    -  "attribute_type": "abc123",
    -  "code": 4,
    +  "attribute_type": "xyz789",
    +  "code": "4",
       "value": "abc123"
     }
     
    @@ -24711,9 +24462,9 @@
    Fields
    Example
    {
    -  "attribute_code": "xyz789",
    +  "attribute_code": "abc123",
       "selected_options": [AttributeInputSelectedOption],
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -24792,7 +24543,7 @@
    Possible Types
    Example
    -
    {"attribute_type": "xyz789", "code": 4}
    +                  
    {"attribute_type": "abc123", "code": 4}
     
    @@ -24992,7 +24743,7 @@
    Example
    "code": "abc123", "is_deferred": false, "oope_payment_method_config": OopePaymentMethodConfig, - "title": "xyz789" + "title": "abc123" }
    @@ -25081,12 +24832,12 @@
    Example
    {
       "additional_data": [ShippingAdditionalData],
       "amount": Money,
    -  "available": true,
    -  "carrier_code": "abc123",
    -  "carrier_title": "abc123",
    +  "available": false,
    +  "carrier_code": "xyz789",
    +  "carrier_title": "xyz789",
       "error_message": "abc123",
       "method_code": "xyz789",
    -  "method_title": "abc123",
    +  "method_title": "xyz789",
       "price_excl_tax": Money,
       "price_incl_tax": Money
     }
    @@ -25208,10 +24959,10 @@ 
    Fields
    Example
    {
       "address": CartAddressInput,
    -  "customer_address_id": 987,
    -  "customer_address_uid": 4,
    +  "customer_address_id": 123,
    +  "customer_address_uid": "4",
       "same_as_shipping": false,
    -  "use_for_shipping": false
    +  "use_for_shipping": true
     }
     
    @@ -25284,10 +25035,10 @@
    Fields
    Example
    {
    -  "address_line_1": "xyz789",
    -  "address_line_2": "abc123",
    +  "address_line_1": "abc123",
    +  "address_line_2": "xyz789",
       "city": "abc123",
    -  "country_code": "xyz789",
    +  "country_code": "abc123",
       "postal_code": "abc123",
       "region": "xyz789"
     }
    @@ -25421,18 +25172,18 @@ 
    Example
    "company": "abc123", "country": CartAddressCountry, "custom_attributes": [AttributeValueInterface], - "customer_address_uid": "4", + "customer_address_uid": 4, "fax": "xyz789", "firstname": "xyz789", "id": 123, "lastname": "abc123", "middlename": "abc123", - "postcode": "xyz789", + "postcode": "abc123", "prefix": "xyz789", "region": CartAddressRegion, "street": ["abc123"], "suffix": "abc123", - "telephone": "abc123", + "telephone": "xyz789", "uid": "4", "vat_id": "xyz789" } @@ -25521,8 +25272,8 @@
    Example
    "category_level": 123, "category_name": "xyz789", "category_uid": "4", - "category_url_key": "xyz789", - "category_url_path": "abc123" + "category_url_key": "abc123", + "category_url_path": "xyz789" }
    @@ -25747,17 +25498,17 @@
    Example
    "errors": [CartItemError], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "is_available": false, - "is_salable": false, + "is_available": true, + "is_salable": true, "max_qty": 987.65, - "min_qty": 123.45, + "min_qty": 987.65, "not_available_message": "xyz789", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 987.65, - "uid": 4 + "quantity": 123.45, + "uid": "4" }
    @@ -25842,12 +25593,12 @@
    Example
    "bundle_options": [ItemSelectedBundleOption], "custom_attributes": [CustomAttribute], "discounts": [Discount], - "id": "4", + "id": 4, "order_item": OrderItemInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "xyz789", - "quantity_refunded": 987.65 + "product_sku": "abc123", + "quantity_refunded": 123.45 }
    @@ -25932,7 +25683,7 @@
    Example
    "bundle_options": [ItemSelectedBundleOption], "custom_attributes": [CustomAttribute], "discounts": [Discount], - "id": "4", + "id": 4, "order_item": OrderItemInterface, "product_name": "abc123", "product_sale_price": Money, @@ -26015,12 +25766,12 @@
    Fields
    Example
    {
       "options": [BundleItemOption],
    -  "position": 123,
    +  "position": 987,
       "price_range": PriceRange,
       "required": true,
    -  "sku": "xyz789",
    +  "sku": "abc123",
       "title": "abc123",
    -  "type": "abc123",
    +  "type": "xyz789",
       "uid": "4"
     }
     
    @@ -26111,7 +25862,7 @@
    Example
    "price_type": "FIXED", "product": ProductInterface, "quantity": 987.65, - "uid": "4" + "uid": 4 }
    @@ -26281,21 +26032,21 @@
    Example
    "entered_options": [OrderItemOption], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "id": 4, + "id": "4", "parent_sku": "abc123", "prices": OrderItemPrices, "product": ProductInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, "product_sku": "abc123", - "product_type": "xyz789", + "product_type": "abc123", "product_url_key": "xyz789", - "quantity_canceled": 123.45, - "quantity_invoiced": 123.45, + "quantity_canceled": 987.65, + "quantity_invoiced": 987.65, "quantity_ordered": 987.65, "quantity_refunded": 987.65, "quantity_return_requested": 123.45, - "quantity_returned": 123.45, + "quantity_returned": 987.65, "quantity_shipped": 123.45, "selected_options": [OrderItemOption], "status": "xyz789" @@ -26588,32 +26339,32 @@
    filters
    Example
    {
    -  "canonical_url": "xyz789",
    +  "canonical_url": "abc123",
       "categories": [CategoryInterface],
       "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    -  "dynamic_price": false,
    +  "dynamic_price": true,
       "dynamic_sku": false,
       "dynamic_weight": true,
    -  "gift_message_available": false,
    +  "gift_message_available": true,
       "gift_wrapping_available": false,
       "gift_wrapping_price": Money,
       "image": ProductImage,
    -  "is_returnable": "abc123",
    +  "is_returnable": "xyz789",
       "items": [BundleItem],
    -  "manufacturer": 987,
    +  "manufacturer": 123,
       "max_sale_qty": 987.65,
       "media_gallery": [MediaGalleryInterface],
       "meta_description": "xyz789",
       "meta_keyword": "xyz789",
    -  "meta_title": "abc123",
    -  "min_sale_qty": 123.45,
    +  "meta_title": "xyz789",
    +  "min_sale_qty": 987.65,
       "name": "abc123",
       "new_from_date": "xyz789",
    -  "new_to_date": "xyz789",
    -  "only_x_left_in_stock": 987.65,
    +  "new_to_date": "abc123",
    +  "only_x_left_in_stock": 123.45,
       "options": [CustomizableOptionInterface],
       "options_container": "abc123",
       "price_details": PriceDetails,
    @@ -26621,16 +26372,16 @@ 
    Example
    "price_tiers": [TierPrice], "price_view": "PRICE_RANGE", "product_links": [ProductLinksInterface], - "quantity": 987.65, + "quantity": 123.45, "related_products": [ProductInterface], "ship_bundle_items": "TOGETHER", "short_description": ComplexTextValue, "sku": "xyz789", "small_image": ProductImage, "special_price": 123.45, - "special_to_date": "xyz789", + "special_to_date": "abc123", "stock_status": "IN_STOCK", - "swatch_image": "xyz789", + "swatch_image": "abc123", "thumbnail": ProductImage, "uid": "4", "upsell_products": [ProductInterface], @@ -26705,9 +26456,9 @@
    Example
    "bundle_options": [SelectedBundleOption], "customizable_options": [SelectedCustomizableOption], "product": ProductInterface, - "quantity": 987.65, - "sku": "abc123", - "uid": 4 + "quantity": 123.45, + "sku": "xyz789", + "uid": "4" }
    @@ -26780,12 +26531,12 @@
    Fields
    Example
    {
       "bundle_options": [ItemSelectedBundleOption],
    -  "id": "4",
    +  "id": 4,
       "order_item": OrderItemInterface,
    -  "product_name": "abc123",
    +  "product_name": "xyz789",
       "product_sale_price": Money,
       "product_sku": "abc123",
    -  "quantity_shipped": 987.65
    +  "quantity_shipped": 123.45
     }
     
    @@ -26858,13 +26609,13 @@
    Fields
    Example
    {
    -  "added_at": "abc123",
    +  "added_at": "xyz789",
       "bundle_options": [SelectedBundleOption],
       "customizable_options": [SelectedCustomizableOption],
       "description": "xyz789",
    -  "id": 4,
    +  "id": "4",
       "product": ProductInterface,
    -  "quantity": 123.45
    +  "quantity": 987.65
     }
     
    @@ -26934,10 +26685,10 @@
    Example
    {
       "color": "xyz789",
       "height": 123,
    -  "label": "xyz789",
    +  "label": "abc123",
       "layout": "abc123",
    -  "shape": "abc123",
    -  "tagline": false,
    +  "shape": "xyz789",
    +  "tagline": true,
       "use_default_height": true
     }
     
    @@ -26987,8 +26738,8 @@
    Fields
    Example
    {
    -  "cancellation_comment": "abc123",
    -  "template_id": 4
    +  "cancellation_comment": "xyz789",
    +  "template_id": "4"
     }
     
    @@ -27032,7 +26783,7 @@
    Fields
    Example
    {
       "code": "ORDER_CANCELLATION_DISABLED",
    -  "message": "xyz789"
    +  "message": "abc123"
     }
     
    @@ -27153,10 +26904,7 @@
    Fields
    Example
    -
    {
    -  "order_id": "4",
    -  "reason": "xyz789"
    -}
    +                  
    {"order_id": 4, "reason": "xyz789"}
     
    @@ -27208,7 +26956,7 @@
    Fields
    Example
    {
    -  "error": "abc123",
    +  "error": "xyz789",
       "errorV2": CancelOrderError,
       "order": CustomerOrder
     }
    @@ -27248,7 +26996,7 @@ 
    Fields
    Example
    -
    {"description": "abc123"}
    +                  
    {"description": "xyz789"}
     
    @@ -27307,9 +27055,9 @@
    Example
    {
       "bin_details": CardBin,
       "card_expiry_month": "xyz789",
    -  "card_expiry_year": "xyz789",
    +  "card_expiry_year": "abc123",
       "last_digits": "abc123",
    -  "name": "xyz789"
    +  "name": "abc123"
     }
     
    @@ -27346,7 +27094,7 @@
    Fields
    Example
    -
    {"bin": "xyz789"}
    +                  
    {"bin": "abc123"}
     
    @@ -27395,7 +27143,7 @@
    Fields
    Example
    {
       "billing_address": BillingAddressPaymentSourceInput,
    -  "name": "xyz789"
    +  "name": "abc123"
     }
     
    @@ -27448,8 +27196,8 @@
    Fields
    Example
    {
       "brand": "abc123",
    -  "expiry": "abc123",
    -  "last_digits": "abc123"
    +  "expiry": "xyz789",
    +  "last_digits": "xyz789"
     }
     
    @@ -27621,11 +27369,11 @@
    Example
    "available_payment_methods": [AvailablePaymentMethod], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "xyz789", + "email": "abc123", "gift_message": GiftMessage, "gift_receipt_included": true, "gift_wrapping": GiftWrapping, - "id": 4, + "id": "4", "is_virtual": false, "itemsV2": CartItems, "prices": CartPrices, @@ -27633,7 +27381,7 @@
    Example
    "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], - "total_quantity": 987.65 + "total_quantity": 123.45 }
    @@ -27680,7 +27428,7 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    +  "code": "abc123",
       "label": "abc123"
     }
     
    @@ -27820,18 +27568,18 @@
    Fields
    Example
    {
    -  "city": "xyz789",
    -  "company": "abc123",
    +  "city": "abc123",
    +  "company": "xyz789",
       "country_code": "xyz789",
       "custom_attributes": [AttributeValueInput],
    -  "fax": "xyz789",
    +  "fax": "abc123",
       "firstname": "xyz789",
       "lastname": "xyz789",
       "middlename": "xyz789",
    -  "postcode": "abc123",
    -  "prefix": "abc123",
    +  "postcode": "xyz789",
    +  "prefix": "xyz789",
       "region": "xyz789",
    -  "region_id": 123,
    +  "region_id": 987,
       "save_in_address_book": false,
       "street": ["xyz789"],
       "suffix": "xyz789",
    @@ -27983,21 +27731,21 @@ 
    Possible Types
    Example
    {
       "city": "xyz789",
    -  "company": "xyz789",
    +  "company": "abc123",
       "country": CartAddressCountry,
       "custom_attributes": [AttributeValueInterface],
       "customer_address_uid": 4,
    -  "fax": "abc123",
    -  "firstname": "xyz789",
    +  "fax": "xyz789",
    +  "firstname": "abc123",
       "id": 987,
       "lastname": "abc123",
       "middlename": "abc123",
       "postcode": "abc123",
    -  "prefix": "xyz789",
    +  "prefix": "abc123",
       "region": CartAddressRegion,
       "street": ["xyz789"],
    -  "suffix": "abc123",
    -  "telephone": "xyz789",
    +  "suffix": "xyz789",
    +  "telephone": "abc123",
       "uid": 4,
       "vat_id": "abc123"
     }
    @@ -28053,7 +27801,7 @@ 
    Example
    {
       "code": "abc123",
       "label": "abc123",
    -  "region_id": 987
    +  "region_id": 123
     }
     
    @@ -28102,7 +27850,7 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    +  "cart_id": "xyz789",
       "custom_attributes": [CustomAttributeInput]
     }
     
    @@ -28247,7 +27995,7 @@
    Fields
    Example
    -
    {"code": "UNDEFINED", "message": "xyz789"}
    +                  
    {"code": "UNDEFINED", "message": "abc123"}
     
    @@ -28366,10 +28114,10 @@
    Fields
    Example
    {
       "entered_options": [EnteredOptionInput],
    -  "parent_sku": "abc123",
    -  "quantity": 987.65,
    +  "parent_sku": "xyz789",
    +  "quantity": 123.45,
       "selected_options": [4],
    -  "sku": "xyz789"
    +  "sku": "abc123"
     }
     
    @@ -28525,20 +28273,20 @@
    Possible Types
    Example
    {
    -  "backorder_message": "xyz789",
    +  "backorder_message": "abc123",
       "custom_attributes": [CustomAttribute],
       "discount": [Discount],
       "errors": [CartItemError],
       "is_available": false,
    -  "is_salable": true,
    -  "max_qty": 123.45,
    -  "min_qty": 123.45,
    +  "is_salable": false,
    +  "max_qty": 987.65,
    +  "min_qty": 987.65,
       "not_available_message": "xyz789",
       "note_from_buyer": [ItemNote],
       "note_from_seller": [ItemNote],
       "prices": CartItemPrices,
       "product": ProductInterface,
    -  "quantity": 987.65,
    +  "quantity": 123.45,
       "uid": 4
     }
     
    @@ -28694,8 +28442,8 @@
    Fields
    Example
    {
       "type": "FIXED",
    -  "units": "xyz789",
    -  "value": 987.65
    +  "units": "abc123",
    +  "value": 123.45
     }
     
    @@ -28762,10 +28510,10 @@
    Fields
    Example
    {
    -  "cart_item_uid": 4,
    +  "cart_item_uid": "4",
       "customizable_options": [CustomizableOptionInput],
       "gift_message": GiftMessageInput,
    -  "gift_wrapping_id": 4,
    +  "gift_wrapping_id": "4",
       "quantity": 987.65
     }
     
    @@ -29356,21 +29104,21 @@
    Example
    "code": "4", "default_value": "abc123", "entity_type": "CATALOG_PRODUCT", - "frontend_class": "abc123", + "frontend_class": "xyz789", "frontend_input": "BOOLEAN", - "is_comparable": true, - "is_filterable": true, + "is_comparable": false, + "is_filterable": false, "is_filterable_in_search": true, "is_html_allowed_on_front": true, - "is_required": true, - "is_searchable": false, - "is_unique": false, + "is_required": false, + "is_searchable": true, + "is_unique": true, "is_used_for_price_rules": false, - "is_used_for_promo_rules": true, + "is_used_for_promo_rules": false, "is_visible_in_advanced_search": false, "is_visible_on_front": true, - "is_wysiwyg_enabled": false, - "label": "abc123", + "is_wysiwyg_enabled": true, + "label": "xyz789", "options": [CustomAttributeOptionInterface], "swatch_input_type": "BOOLEAN", "update_product_preview_image": false, @@ -29494,7 +29242,7 @@
    Possible Types
    Example
    -
    {"id": 4}
    +                  
    {"id": "4"}
     
    @@ -29684,31 +29432,31 @@
    Possible Types
    Example
    {
    -  "available_sort_by": ["xyz789"],
    +  "available_sort_by": ["abc123"],
       "breadcrumbs": [Breadcrumb],
       "canonical_url": "abc123",
       "children_count": "abc123",
       "custom_layout_update_file": "abc123",
       "default_sort_by": "xyz789",
    -  "description": "abc123",
    -  "display_mode": "abc123",
    +  "description": "xyz789",
    +  "display_mode": "xyz789",
       "filter_price_range": 987.65,
    -  "image": "xyz789",
    +  "image": "abc123",
       "include_in_menu": 987,
       "is_anchor": 987,
       "landing_page": 123,
    -  "level": 123,
    -  "meta_description": "abc123",
    +  "level": 987,
    +  "meta_description": "xyz789",
       "meta_keywords": "xyz789",
       "meta_title": "xyz789",
    -  "name": "abc123",
    +  "name": "xyz789",
       "path": "xyz789",
       "path_in_store": "xyz789",
    -  "position": 987,
    +  "position": 123,
       "product_count": 123,
    -  "uid": "4",
    +  "uid": 4,
       "url_key": "abc123",
    -  "url_path": "abc123"
    +  "url_path": "xyz789"
     }
     
    @@ -29882,31 +29630,31 @@
    Fields
    Example
    {
    -  "available_sort_by": ["xyz789"],
    +  "available_sort_by": ["abc123"],
       "breadcrumbs": [Breadcrumb],
       "canonical_url": "xyz789",
       "children_count": "abc123",
    -  "custom_layout_update_file": "abc123",
    -  "default_sort_by": "abc123",
    -  "description": "xyz789",
    +  "custom_layout_update_file": "xyz789",
    +  "default_sort_by": "xyz789",
    +  "description": "abc123",
       "display_mode": "xyz789",
       "filter_price_range": 987.65,
    -  "image": "xyz789",
    +  "image": "abc123",
       "include_in_menu": 123,
    -  "is_anchor": 123,
    +  "is_anchor": 987,
       "landing_page": 123,
    -  "level": 987,
    -  "meta_description": "xyz789",
    -  "meta_keywords": "xyz789",
    -  "meta_title": "xyz789",
    +  "level": 123,
    +  "meta_description": "abc123",
    +  "meta_keywords": "abc123",
    +  "meta_title": "abc123",
       "name": "xyz789",
       "path": "xyz789",
    -  "path_in_store": "abc123",
    +  "path_in_store": "xyz789",
       "position": 987,
       "product_count": 987,
       "uid": "4",
    -  "url_key": "abc123",
    -  "url_path": "xyz789"
    +  "url_key": "xyz789",
    +  "url_path": "abc123"
     }
     
    @@ -30019,19 +29767,19 @@
    Fields
    Example
    {
    -  "availableSortBy": ["abc123"],
    -  "children": ["abc123"],
    +  "availableSortBy": ["xyz789"],
    +  "children": ["xyz789"],
       "defaultSortBy": "xyz789",
    -  "id": "4",
    +  "id": 4,
       "level": 987,
    -  "name": "xyz789",
    -  "parentId": "xyz789",
    +  "name": "abc123",
    +  "parentId": "abc123",
       "position": 123,
    -  "path": "xyz789",
    -  "roles": ["abc123"],
    -  "urlKey": "xyz789",
    +  "path": "abc123",
    +  "roles": ["xyz789"],
    +  "urlKey": "abc123",
       "urlPath": "xyz789",
    -  "count": 987,
    +  "count": 123,
       "title": "xyz789"
     }
     
    @@ -30133,13 +29881,13 @@
    Possible Types
    Example
    {
       "availableSortBy": ["xyz789"],
    -  "defaultSortBy": "xyz789",
    +  "defaultSortBy": "abc123",
       "id": "4",
    -  "level": 123,
    +  "level": 987,
       "name": "abc123",
       "path": "xyz789",
       "roles": ["xyz789"],
    -  "urlKey": "xyz789",
    +  "urlKey": "abc123",
       "urlPath": "abc123"
     }
     
    @@ -30213,12 +29961,12 @@
    Fields
    Example
    {
       "agreement_id": 987,
    -  "checkbox_text": "xyz789",
    -  "content": "abc123",
    +  "checkbox_text": "abc123",
    +  "content": "xyz789",
       "content_height": "abc123",
       "is_html": true,
       "mode": "AUTO",
    -  "name": "xyz789"
    +  "name": "abc123"
     }
     
    @@ -30318,7 +30066,7 @@
    Fields
    Example
    {
       "code": "REORDER_NOT_AVAILABLE",
    -  "message": "abc123",
    +  "message": "xyz789",
       "path": ["xyz789"]
     }
     
    @@ -30431,7 +30179,7 @@
    Fields
    Example
    -
    {"cart": Cart, "status": false}
    +                  
    {"cart": Cart, "status": true}
     
    @@ -30523,7 +30271,7 @@
    Fields
    Example
    {
       "errors": [NegotiableQuoteInvalidStateError],
    -  "quote_uid": "4"
    +  "quote_uid": 4
     }
     
    @@ -30726,7 +30474,7 @@
    Fields
    Example
    -
    {"value": "abc123"}
    +                  
    {"value": "xyz789"}
     
    @@ -30766,7 +30514,7 @@
    Fields
    Example
    -
    {"priceBookId": "4"}
    +                  
    {"priceBookId": 4}
     
    @@ -31136,13 +30884,13 @@
    Example
    "credit": CompanyCredit, "credit_history": CompanyCreditHistory, "custom_attributes": [CustomAttribute], - "email": "xyz789", - "id": 4, + "email": "abc123", + "id": "4", "legal_address": CompanyLegalAddress, "legal_name": "xyz789", - "name": "abc123", + "name": "xyz789", "payment_methods": ["xyz789"], - "reseller_id": "xyz789", + "reseller_id": "abc123", "role": CompanyRole, "roles": CompanyRoles, "sales_representative": CompanySalesRepresentative, @@ -31209,9 +30957,9 @@
    Fields
    Example
    {
       "children": [CompanyAclResource],
    -  "id": 4,
    +  "id": "4",
       "sort_order": 123,
    -  "text": "abc123"
    +  "text": "xyz789"
     }
     
    @@ -31294,9 +31042,9 @@
    Example
    "email": "abc123", "firstname": "xyz789", "gender": 123, - "job_title": "abc123", + "job_title": "xyz789", "lastname": "xyz789", - "telephone": "xyz789" + "telephone": "abc123" }
    @@ -31346,7 +31094,7 @@
    Fields
    Example
    {
       "code": "xyz789",
    -  "title": "xyz789"
    +  "title": "abc123"
     }
     
    @@ -31411,7 +31159,7 @@
    Example
    "id": 4, "is_admin": true, "legal_name": "abc123", - "name": "xyz789", + "name": "abc123", "status": "PENDING" }
    @@ -31493,9 +31241,9 @@
    Example
    {
       "company_admin": CompanyAdminInput,
       "company_email": "xyz789",
    -  "company_name": "xyz789",
    +  "company_name": "abc123",
       "legal_address": CompanyLegalAddressCreateInput,
    -  "legal_name": "abc123",
    +  "legal_name": "xyz789",
       "reseller_id": "xyz789",
       "vat_tax_id": "xyz789"
     }
    @@ -31556,7 +31304,7 @@ 
    Example
    {
       "available_credit": Money,
       "credit_limit": Money,
    -  "exceed_limit": true,
    +  "exceed_limit": false,
       "outstanding_balance": Money
     }
     
    @@ -31611,7 +31359,7 @@
    Example
    {
       "items": [CompanyCreditOperation],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -31668,7 +31416,7 @@
    Example
    {
       "custom_reference_number": "abc123",
       "operation_type": "ALLOCATION",
    -  "updated_by": "abc123"
    +  "updated_by": "xyz789"
     }
     
    @@ -31737,8 +31485,8 @@
    Example
    {
       "amount": Money,
       "balance": CompanyCredit,
    -  "custom_reference_number": "xyz789",
    -  "date": "xyz789",
    +  "custom_reference_number": "abc123",
    +  "date": "abc123",
       "type": "ALLOCATION",
       "updated_by": CompanyCreditOperationUser
     }
    @@ -31859,7 +31607,7 @@ 
    Fields
    Example
    -
    {"name": "abc123", "type": "CUSTOMER"}
    +                  
    {"name": "xyz789", "type": "CUSTOMER"}
     
    @@ -32188,7 +31936,7 @@
    Example
    {
       "city": "abc123",
       "country_code": "AF",
    -  "postcode": "abc123",
    +  "postcode": "xyz789",
       "region": CustomerAddressRegion,
       "street": ["abc123"],
       "telephone": "abc123"
    @@ -32269,7 +32017,7 @@ 
    Example
    "postcode": "xyz789", "region": CustomerAddressRegionInput, "street": ["xyz789"], - "telephone": "xyz789" + "telephone": "abc123" }
    @@ -32344,9 +32092,9 @@
    Example
    {
       "city": "xyz789",
       "country_id": "AF",
    -  "postcode": "xyz789",
    +  "postcode": "abc123",
       "region": CustomerAddressRegionInput,
    -  "street": ["xyz789"],
    +  "street": ["abc123"],
       "telephone": "abc123"
     }
     
    @@ -32405,7 +32153,7 @@
    Fields
    Example
    {
       "id": "4",
    -  "name": "xyz789",
    +  "name": "abc123",
       "permissions": [CompanyAclResource],
       "users_count": 123
     }
    @@ -32456,8 +32204,8 @@ 
    Fields
    Example
    {
    -  "name": "abc123",
    -  "permissions": ["abc123"]
    +  "name": "xyz789",
    +  "permissions": ["xyz789"]
     }
     
    @@ -32512,9 +32260,9 @@
    Fields
    Example
    {
    -  "id": "4",
    +  "id": 4,
       "name": "xyz789",
    -  "permissions": ["abc123"]
    +  "permissions": ["xyz789"]
     }
     
    @@ -32620,8 +32368,8 @@
    Fields
    Example
    {
    -  "email": "xyz789",
    -  "firstname": "abc123",
    +  "email": "abc123",
    +  "firstname": "xyz789",
       "lastname": "abc123"
     }
     
    @@ -32812,11 +32560,7 @@
    Fields
    Example
    -
    {
    -  "entity": CompanyTeam,
    -  "id": 4,
    -  "parent_id": "4"
    -}
    +                  
    {"entity": CompanyTeam, "id": 4, "parent_id": 4}
     
    @@ -32920,9 +32664,9 @@
    Fields
    Example
    {
       "description": "xyz789",
    -  "id": 4,
    -  "name": "abc123",
    -  "structure_id": "4"
    +  "id": "4",
    +  "name": "xyz789",
    +  "structure_id": 4
     }
     
    @@ -32979,7 +32723,7 @@
    Example
    {
       "description": "xyz789",
       "name": "abc123",
    -  "target_id": "4"
    +  "target_id": 4
     }
     
    @@ -33035,7 +32779,7 @@
    Fields
    Example
    {
       "description": "xyz789",
    -  "id": 4,
    +  "id": "4",
       "name": "xyz789"
     }
     
    @@ -33109,11 +32853,11 @@
    Fields
    Example
    {
    -  "company_email": "xyz789",
    +  "company_email": "abc123",
       "company_name": "abc123",
       "legal_address": CompanyLegalAddressUpdateInput,
       "legal_name": "xyz789",
    -  "reseller_id": "xyz789",
    +  "reseller_id": "abc123",
       "vat_tax_id": "xyz789"
     }
     
    @@ -33199,14 +32943,14 @@
    Fields
    Example
    {
    -  "email": "abc123",
    -  "firstname": "abc123",
    +  "email": "xyz789",
    +  "firstname": "xyz789",
       "job_title": "abc123",
    -  "lastname": "xyz789",
    +  "lastname": "abc123",
       "role_id": 4,
       "status": "ACTIVE",
       "target_id": 4,
    -  "telephone": "abc123"
    +  "telephone": "xyz789"
     }
     
    @@ -33342,7 +33086,7 @@
    Example
    "firstname": "xyz789", "id": 4, "job_title": "xyz789", - "lastname": "abc123", + "lastname": "xyz789", "role_id": "4", "status": "ACTIVE", "telephone": "abc123" @@ -33399,7 +33143,7 @@
    Example
    {
       "items": [Customer],
       "page_info": SearchResultPageInfo,
    -  "total_count": 123
    +  "total_count": 987
     }
     
    @@ -33488,7 +33232,7 @@
    Fields
    Example
    {
       "code": "abc123",
    -  "label": "xyz789"
    +  "label": "abc123"
     }
     
    @@ -33652,8 +33396,8 @@
    Fields
    Example
    {
    -  "cartId": "xyz789",
    -  "id": "abc123"
    +  "cartId": "abc123",
    +  "id": "xyz789"
     }
     
    @@ -33867,26 +33611,26 @@
    Example
    "inStock": true, "lowStock": true, "attributes": [ProductViewAttribute], - "description": "xyz789", - "id": 4, + "description": "abc123", + "id": "4", "images": [ProductViewImage], "videos": [ProductViewVideo], "lastModifiedAt": "2007-12-03T10:15:30Z", - "metaDescription": "xyz789", + "metaDescription": "abc123", "metaKeyword": "xyz789", "metaTitle": "xyz789", "name": "xyz789", "inputOptions": [ProductViewInputOption], "options": [ProductViewOption], "priceRange": ProductViewPriceRange, - "shortDescription": "xyz789", - "sku": "xyz789", - "externalId": "abc123", + "shortDescription": "abc123", + "sku": "abc123", + "externalId": "xyz789", "url": "abc123", - "urlKey": "xyz789", + "urlKey": "abc123", "links": [ProductViewLink], - "queryType": "abc123", - "visibility": "abc123" + "queryType": "xyz789", + "visibility": "xyz789" }
    @@ -33978,7 +33722,7 @@
    Example
    {
       "field": "UNKNOWN_FIELD",
       "operator": OperatorInput,
    -  "enabled": false
    +  "enabled": true
     }
     
    @@ -34036,7 +33780,7 @@
    Fields
    Example
    {
       "code": "xyz789",
    -  "label": "abc123",
    +  "label": "xyz789",
       "uid": 4,
       "value_index": 987
     }
    @@ -34192,17 +33936,17 @@ 
    Example
    "errors": [CartItemError], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "is_available": false, - "is_salable": false, - "max_qty": 987.65, + "is_available": true, + "is_salable": true, + "max_qty": 123.45, "min_qty": 123.45, - "not_available_message": "abc123", + "not_available_message": "xyz789", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 123.45, - "uid": 4 + "quantity": 987.65, + "uid": "4" }
    @@ -34249,7 +33993,7 @@
    Fields
    Example
    {
    -  "attribute_code": "xyz789",
    +  "attribute_code": "abc123",
       "option_value_uids": [4]
     }
     
    @@ -34411,20 +34155,20 @@
    Example
    "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, "id": 4, - "parent_sku": "abc123", + "parent_sku": "xyz789", "prices": OrderItemPrices, "product": ProductInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "abc123", + "product_sku": "xyz789", "product_type": "abc123", - "product_url_key": "xyz789", + "product_url_key": "abc123", "quantity_canceled": 123.45, "quantity_invoiced": 123.45, "quantity_ordered": 123.45, "quantity_refunded": 123.45, "quantity_return_requested": 987.65, - "quantity_returned": 123.45, + "quantity_returned": 987.65, "quantity_shipped": 987.65, "selected_options": [OrderItemOption], "status": "xyz789" @@ -34710,30 +34454,30 @@
    filters
    Example
    {
    -  "canonical_url": "abc123",
    +  "canonical_url": "xyz789",
       "categories": [CategoryInterface],
       "configurable_options": [ConfigurableProductOptions],
       "configurable_product_options_selection": ConfigurableProductOptionsSelection,
    -  "country_of_manufacture": "abc123",
    +  "country_of_manufacture": "xyz789",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    -  "gift_message_available": false,
    +  "gift_message_available": true,
       "gift_wrapping_available": false,
       "gift_wrapping_price": Money,
       "image": ProductImage,
       "is_returnable": "abc123",
    -  "manufacturer": 123,
    +  "manufacturer": 987,
       "max_sale_qty": 123.45,
       "media_gallery": [MediaGalleryInterface],
       "meta_description": "xyz789",
    -  "meta_keyword": "abc123",
    +  "meta_keyword": "xyz789",
       "meta_title": "xyz789",
    -  "min_sale_qty": 987.65,
    -  "name": "xyz789",
    +  "min_sale_qty": 123.45,
    +  "name": "abc123",
       "new_from_date": "xyz789",
    -  "new_to_date": "abc123",
    -  "only_x_left_in_stock": 123.45,
    +  "new_to_date": "xyz789",
    +  "only_x_left_in_stock": 987.65,
       "options": [CustomizableOptionInterface],
       "options_container": "xyz789",
       "price_range": PriceRange,
    @@ -34742,18 +34486,18 @@ 
    Example
    "quantity": 987.65, "related_products": [ProductInterface], "short_description": ComplexTextValue, - "sku": "abc123", + "sku": "xyz789", "small_image": ProductImage, - "special_price": 987.65, - "special_to_date": "xyz789", + "special_price": 123.45, + "special_to_date": "abc123", "stock_status": "IN_STOCK", "swatch_image": "xyz789", "thumbnail": ProductImage, - "uid": "4", + "uid": 4, "upsell_products": [ProductInterface], - "url_key": "xyz789", + "url_key": "abc123", "variants": [ConfigurableVariant], - "weight": 987.65 + "weight": 123.45 }
    @@ -34810,9 +34554,9 @@
    Fields
    Example
    {
    -  "attribute_code": "abc123",
    -  "label": "xyz789",
    -  "uid": "4",
    +  "attribute_code": "xyz789",
    +  "label": "abc123",
    +  "uid": 4,
       "values": [ConfigurableProductOptionValue]
     }
     
    @@ -34875,7 +34619,7 @@
    Fields
    Example
    {
    -  "is_available": true,
    +  "is_available": false,
       "is_use_default": true,
       "label": "abc123",
       "swatch": SwatchDataInterface,
    @@ -34951,12 +34695,12 @@ 
    Fields
    Example
    {
    -  "attribute_code": "xyz789",
    -  "attribute_uid": 4,
    +  "attribute_code": "abc123",
    +  "attribute_uid": "4",
       "label": "xyz789",
    -  "position": 123,
    -  "uid": "4",
    -  "use_default": true,
    +  "position": 987,
    +  "uid": 4,
    +  "use_default": false,
       "values": [ConfigurableProductOptionsValues]
     }
     
    @@ -35086,12 +34830,12 @@
    Fields
    Example
    {
    -  "default_label": "abc123",
    +  "default_label": "xyz789",
       "label": "abc123",
    -  "store_label": "abc123",
    +  "store_label": "xyz789",
       "swatch_data": SwatchDataInterface,
       "uid": "4",
    -  "use_default_value": true
    +  "use_default_value": false
     }
     
    @@ -35161,9 +34905,9 @@
    Example
    "configurable_options": [SelectedConfigurableOption], "customizable_options": [SelectedCustomizableOption], "product": ProductInterface, - "quantity": 987.65, + "quantity": 123.45, "sku": "xyz789", - "uid": "4" + "uid": 4 }
    @@ -35289,11 +35033,11 @@
    Fields
    Example
    {
    -  "added_at": "abc123",
    +  "added_at": "xyz789",
       "configurable_options": [SelectedConfigurableOption],
       "configured_variant": ProductInterface,
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "abc123",
    +  "description": "xyz789",
       "id": 4,
       "product": ProductInterface,
       "quantity": 987.65
    @@ -35341,7 +35085,7 @@ 
    Fields
    Example
    {
    -  "confirmation_key": "xyz789",
    +  "confirmation_key": "abc123",
       "order_id": 4
     }
     
    @@ -35438,7 +35182,7 @@
    Fields
    Example
    {
       "confirmation_key": "xyz789",
    -  "order_id": 4
    +  "order_id": "4"
     }
     
    @@ -35545,7 +35289,7 @@
    Example
    "comment": "xyz789", "email": "abc123", "name": "xyz789", - "telephone": "abc123" + "telephone": "xyz789" }
    @@ -35785,9 +35529,9 @@
    Example
    {
       "available_regions": [Region],
       "full_name_english": "abc123",
    -  "full_name_locale": "abc123",
    +  "full_name_locale": "xyz789",
       "id": "xyz789",
    -  "three_letter_abbreviation": "abc123",
    +  "three_letter_abbreviation": "xyz789",
       "two_letter_abbreviation": "xyz789"
     }
     
    @@ -37582,7 +37326,7 @@
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "event_name": "abc123", + "event_name": "xyz789", "gift_registry_type_uid": "4", "message": "xyz789", "privacy_settings": "PRIVATE", @@ -37666,7 +37410,7 @@
    Fields
    Example
    -
    {"cart_uid": 4}
    +                  
    {"cart_uid": "4"}
     
    @@ -37771,8 +37515,8 @@
    Example
    "cartId": "abc123", "location": "PRODUCT_DETAIL", "methodCode": "xyz789", - "paymentSource": "abc123", - "vaultIntent": false + "paymentSource": "xyz789", + "vaultIntent": true }
    @@ -37834,10 +37578,10 @@
    Fields
    Example
    {
    -  "amount": 987.65,
    -  "currency_code": "xyz789",
    +  "amount": 123.45,
    +  "currency_code": "abc123",
       "id": "xyz789",
    -  "mp_order_id": "xyz789",
    +  "mp_order_id": "abc123",
       "status": "abc123"
     }
     
    @@ -37998,8 +37742,8 @@
    Fields
    Example
    {
    -  "description": "abc123",
    -  "name": "xyz789"
    +  "description": "xyz789",
    +  "name": "abc123"
     }
     
    @@ -38089,7 +37833,7 @@
    Fields
    Example
    {
       "card_description": "abc123",
    -  "setup_token_id": "xyz789"
    +  "setup_token_id": "abc123"
     }
     
    @@ -38228,7 +37972,7 @@
    Fields
    Example
    -
    {"setup_token": "xyz789"}
    +                  
    {"setup_token": "abc123"}
     
    @@ -38383,9 +38127,9 @@
    Example
    {
       "comments": [SalesCommentItem],
       "custom_attributes": [CustomAttribute],
    -  "id": "4",
    +  "id": 4,
       "items": [CreditMemoItemInterface],
    -  "number": "xyz789",
    +  "number": "abc123",
       "total": CreditMemoTotal
     }
     
    @@ -38511,12 +38255,12 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "id": 4,
    +  "id": "4",
       "order_item": OrderItemInterface,
       "product_name": "abc123",
       "product_sale_price": Money,
    -  "product_sku": "abc123",
    -  "quantity_refunded": 987.65
    +  "product_sku": "xyz789",
    +  "quantity_refunded": 123.45
     }
     
    @@ -38684,7 +38428,7 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "id": 4,
    +  "id": "4",
       "order_item": OrderItemInterface,
       "product_name": "abc123",
       "product_sale_price": Money,
    @@ -38883,9 +38627,9 @@ 
    Fields
    Example
    {
       "available_currency_codes": ["abc123"],
    -  "base_currency_code": "abc123",
    -  "base_currency_symbol": "xyz789",
    -  "default_display_currency_code": "xyz789",
    +  "base_currency_code": "xyz789",
    +  "base_currency_symbol": "abc123",
    +  "default_display_currency_code": "abc123",
       "default_display_currency_symbol": "abc123",
       "exchange_rates": [ExchangeRate]
     }
    @@ -40153,7 +39897,7 @@ 
    Fields
    Example
    -
    {"sku": "xyz789", "price": 987.65}
    +                  
    {"sku": "abc123", "price": 123.45}
     
    @@ -40199,8 +39943,8 @@
    Fields
    Example
    {
    -  "attribute_code": "xyz789",
    -  "value": "abc123"
    +  "attribute_code": "abc123",
    +  "value": "xyz789"
     }
     
    @@ -40249,8 +39993,8 @@
    Fields
    Example
    {
    -  "attribute_code": "abc123",
    -  "value": "abc123"
    +  "attribute_code": "xyz789",
    +  "value": "xyz789"
     }
     
    @@ -40365,11 +40109,11 @@
    Possible Types
    Example
    {
       "code": 4,
    -  "default_value": "xyz789",
    +  "default_value": "abc123",
       "entity_type": "CATALOG_PRODUCT",
    -  "frontend_class": "xyz789",
    +  "frontend_class": "abc123",
       "frontend_input": "BOOLEAN",
    -  "is_required": true,
    +  "is_required": false,
       "is_unique": true,
       "label": "xyz789",
       "options": [CustomAttributeOptionInterface]
    @@ -40437,9 +40181,9 @@ 
    Possible Types
    Example
    {
    -  "is_default": false,
    +  "is_default": true,
       "label": "xyz789",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -40489,7 +40233,7 @@
    Fields
    Example
    {
       "key": "xyz789",
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -41132,35 +40876,35 @@
    Example
    "addresses": [CustomerAddress], "addressesV2": CustomerAddresses, "admin_assistance_actions": AdminAssistanceActions, - "allow_remote_shopping_assistance": true, + "allow_remote_shopping_assistance": false, "companies": UserCompaniesOutput, "company_hierarchy": [CompanyHierarchy], "compare_list": CompareList, "confirmation_status": "ACCOUNT_CONFIRMED", - "created_at": "abc123", + "created_at": "xyz789", "custom_attributes": [AttributeValueInterface], - "date_of_birth": "abc123", + "date_of_birth": "xyz789", "default_billing": "abc123", - "default_shipping": "xyz789", - "email": "abc123", + "default_shipping": "abc123", + "email": "xyz789", "firstname": "abc123", - "gender": 123, + "gender": 987, "gift_registries": [GiftRegistry], "gift_registry": GiftRegistry, "group": CustomerGroupStorefront, - "id": "4", + "id": 4, "is_subscribed": true, "job_title": "xyz789", "lastname": "abc123", "middlename": "abc123", "orders": CustomerOrders, - "prefix": "xyz789", + "prefix": "abc123", "purchase_order": PurchaseOrder, "purchase_order_approval_rule": PurchaseOrderApprovalRule, "purchase_order_approval_rule_metadata": PurchaseOrderApprovalRuleMetadata, "purchase_order_approval_rules": PurchaseOrderApprovalRules, "purchase_orders": PurchaseOrders, - "purchase_orders_enabled": false, + "purchase_orders_enabled": true, "quote_enabled": false, "requisition_lists": RequisitionLists, "return": Return, @@ -41170,9 +40914,9 @@
    Example
    "segments": [CustomerSegmentStorefront], "status": "ACTIVE", "store_credit": CustomerStoreCredit, - "structure_id": 4, - "suffix": "abc123", - "taxvat": "xyz789", + "structure_id": "4", + "suffix": "xyz789", + "taxvat": "abc123", "team": CompanyTeam, "telephone": "xyz789", "wishlist_v2": Wishlist, @@ -41336,22 +41080,22 @@
    Example
    "company": "xyz789", "country_code": "AF", "custom_attributesV2": [AttributeValueInterface], - "default_billing": false, + "default_billing": true, "default_shipping": true, "extension_attributes": [CustomerAddressAttribute], "fax": "abc123", - "firstname": "abc123", + "firstname": "xyz789", "id": 987, "lastname": "abc123", - "middlename": "xyz789", - "postcode": "xyz789", - "prefix": "abc123", + "middlename": "abc123", + "postcode": "abc123", + "prefix": "xyz789", "region": CustomerAddressRegion, - "region_id": 987, - "street": ["xyz789"], - "suffix": "xyz789", + "region_id": 123, + "street": ["abc123"], + "suffix": "abc123", "telephone": "xyz789", - "uid": "4", + "uid": 4, "vat_id": "abc123" }
    @@ -41539,20 +41283,20 @@
    Fields
    Example
    {
    -  "city": "abc123",
    +  "city": "xyz789",
       "company": "abc123",
       "country_code": "AF",
       "custom_attributesV2": [AttributeValueInput],
    -  "default_billing": false,
    -  "default_shipping": true,
    +  "default_billing": true,
    +  "default_shipping": false,
       "fax": "abc123",
       "firstname": "xyz789",
    -  "lastname": "xyz789",
    +  "lastname": "abc123",
       "middlename": "abc123",
       "postcode": "abc123",
       "prefix": "abc123",
       "region": CustomerAddressRegionInput,
    -  "street": ["abc123"],
    +  "street": ["xyz789"],
       "suffix": "xyz789",
       "telephone": "xyz789",
       "vat_id": "xyz789"
    @@ -41664,9 +41408,9 @@ 
    Fields
    Example
    {
    -  "region": "xyz789",
    +  "region": "abc123",
       "region_code": "xyz789",
    -  "region_id": 123
    +  "region_id": 987
     }
     
    @@ -41825,11 +41569,11 @@
    Example
    "frontend_input": "BOOLEAN", "input_filter": "NONE", "is_required": true, - "is_unique": true, - "label": "xyz789", + "is_unique": false, + "label": "abc123", "multiline_count": 123, "options": [CustomAttributeOptionInterface], - "sort_order": 987, + "sort_order": 123, "validate_rules": [ValidationRule] }
    @@ -41945,19 +41689,19 @@
    Fields
    Example
    {
    -  "allow_remote_shopping_assistance": false,
    +  "allow_remote_shopping_assistance": true,
       "custom_attributes": [AttributeValueInput],
    -  "date_of_birth": "abc123",
    +  "date_of_birth": "xyz789",
       "email": "xyz789",
    -  "firstname": "xyz789",
    -  "gender": 123,
    +  "firstname": "abc123",
    +  "gender": 987,
       "is_subscribed": false,
       "lastname": "abc123",
    -  "middlename": "xyz789",
    +  "middlename": "abc123",
       "password": "xyz789",
       "prefix": "xyz789",
    -  "suffix": "abc123",
    -  "taxvat": "xyz789"
    +  "suffix": "xyz789",
    +  "taxvat": "abc123"
     }
     
    @@ -42019,10 +41763,10 @@
    Fields
    Example
    {
    -  "date": "xyz789",
    +  "date": "abc123",
       "download_url": "abc123",
    -  "order_increment_id": "abc123",
    -  "remaining_downloads": "abc123",
    +  "order_increment_id": "xyz789",
    +  "remaining_downloads": "xyz789",
       "status": "xyz789"
     }
     
    @@ -42341,16 +42085,16 @@
    Example
    "items": [OrderItemInterface], "items_eligible_for_return": [OrderItemInterface], "negotiable_quote": NegotiableQuote, - "number": "xyz789", + "number": "abc123", "order_date": "abc123", "order_status_change_date": "abc123", "payment_methods": [OrderPaymentMethod], - "printed_card_included": false, + "printed_card_included": true, "returns": Returns, "shipments": [OrderShipment], "shipping_address": OrderAddress, "shipping_method": "abc123", - "status": "abc123", + "status": "xyz789", "token": "abc123", "total": OrderTotal } @@ -42503,10 +42247,10 @@
    Fields
    Example
    {
    -  "date_of_first_order": "abc123",
    +  "date_of_first_order": "xyz789",
       "items": [CustomerOrder],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -42817,7 +42561,7 @@
    Example
    {
       "items": [CustomerStoreCreditHistoryItem],
       "page_info": SearchResultPageInfo,
    -  "total_count": 123
    +  "total_count": 987
     }
     
    @@ -42877,7 +42621,7 @@
    Example
    "action": "xyz789", "actual_balance": Money, "balance_change": Money, - "date_time_changed": "abc123" + "date_time_changed": "xyz789" }
    @@ -43024,12 +42768,12 @@
    Example
    "custom_attributes": [AttributeValueInput], "date_of_birth": "xyz789", "firstname": "abc123", - "gender": 123, - "is_subscribed": false, + "gender": 987, + "is_subscribed": true, "lastname": "xyz789", - "middlename": "abc123", - "prefix": "xyz789", - "suffix": "xyz789", + "middlename": "xyz789", + "prefix": "abc123", + "suffix": "abc123", "taxvat": "abc123" }
    @@ -43098,10 +42842,10 @@
    Fields
    Example
    {
       "product_sku": "xyz789",
    -  "required": false,
    -  "sort_order": 123,
    -  "title": "abc123",
    -  "uid": 4,
    +  "required": true,
    +  "sort_order": 987,
    +  "title": "xyz789",
    +  "uid": "4",
       "value": CustomizableAreaValue
     }
     
    @@ -43168,7 +42912,7 @@
    Example
    "price": 123.45, "price_type": "FIXED", "sku": "abc123", - "uid": "4" + "uid": 4 }
    @@ -43231,8 +42975,8 @@
    Fields
    Example
    {
       "required": false,
    -  "sort_order": 123,
    -  "title": "xyz789",
    +  "sort_order": 987,
    +  "title": "abc123",
       "uid": "4",
       "value": [CustomizableCheckboxValue]
     }
    @@ -43309,7 +43053,7 @@ 
    Example
    "option_type_id": 987, "price": 987.65, "price_type": "FIXED", - "sku": "xyz789", + "sku": "abc123", "sort_order": 123, "title": "xyz789", "uid": 4 @@ -43381,7 +43125,7 @@
    Example
    {
       "product_sku": "xyz789",
       "required": true,
    -  "sort_order": 123,
    +  "sort_order": 987,
       "title": "xyz789",
       "uid": 4,
       "value": CustomizableDateValue
    @@ -43502,11 +43246,11 @@ 
    Fields
    Example
    {
    -  "price": 987.65,
    +  "price": 123.45,
       "price_type": "FIXED",
       "sku": "abc123",
       "type": "DATE",
    -  "uid": "4"
    +  "uid": 4
     }
     
    @@ -43568,9 +43312,9 @@
    Fields
    Example
    {
    -  "required": true,
    -  "sort_order": 987,
    -  "title": "xyz789",
    +  "required": false,
    +  "sort_order": 123,
    +  "title": "abc123",
       "uid": "4",
       "value": [CustomizableDropDownValue]
     }
    @@ -43644,13 +43388,13 @@ 
    Fields
    Example
    {
    -  "option_type_id": 987,
    -  "price": 987.65,
    +  "option_type_id": 123,
    +  "price": 123.45,
       "price_type": "FIXED",
    -  "sku": "abc123",
    +  "sku": "xyz789",
       "sort_order": 123,
    -  "title": "abc123",
    -  "uid": "4"
    +  "title": "xyz789",
    +  "uid": 4
     }
     
    @@ -43717,11 +43461,11 @@
    Fields
    Example
    {
    -  "product_sku": "abc123",
    -  "required": false,
    -  "sort_order": 987,
    +  "product_sku": "xyz789",
    +  "required": true,
    +  "sort_order": 123,
       "title": "xyz789",
    -  "uid": "4",
    +  "uid": 4,
       "value": CustomizableFieldValue
     }
     
    @@ -43785,10 +43529,10 @@
    Fields
    Example
    {
       "max_characters": 987,
    -  "price": 987.65,
    +  "price": 123.45,
       "price_type": "FIXED",
       "sku": "xyz789",
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -43856,10 +43600,10 @@
    Fields
    Example
    {
       "product_sku": "abc123",
    -  "required": true,
    +  "required": false,
       "sort_order": 987,
    -  "title": "abc123",
    -  "uid": 4,
    +  "title": "xyz789",
    +  "uid": "4",
       "value": CustomizableFileValue
     }
     
    @@ -43937,7 +43681,7 @@
    Example
    "image_size_y": 987, "price": 123.45, "price_type": "FIXED", - "sku": "abc123", + "sku": "xyz789", "uid": 4 }
    @@ -44001,8 +43745,8 @@
    Fields
    Example
    {
       "required": true,
    -  "sort_order": 123,
    -  "title": "abc123",
    +  "sort_order": 987,
    +  "title": "xyz789",
       "uid": 4,
       "value": [CustomizableMultipleValue]
     }
    @@ -44076,8 +43820,8 @@ 
    Fields
    Example
    {
    -  "option_type_id": 987,
    -  "price": 987.65,
    +  "option_type_id": 123,
    +  "price": 123.45,
       "price_type": "FIXED",
       "sku": "abc123",
       "sort_order": 123,
    @@ -44241,10 +43985,10 @@ 
    Possible Types
    Example
    {
    -  "required": false,
    -  "sort_order": 123,
    -  "title": "xyz789",
    -  "uid": "4"
    +  "required": true,
    +  "sort_order": 987,
    +  "title": "abc123",
    +  "uid": 4
     }
     
    @@ -44389,9 +44133,9 @@
    Fields
    Example
    {
       "required": true,
    -  "sort_order": 987,
    +  "sort_order": 123,
       "title": "abc123",
    -  "uid": "4",
    +  "uid": 4,
       "value": [CustomizableRadioValue]
     }
     
    @@ -44464,13 +44208,13 @@
    Fields
    Example
    {
    -  "option_type_id": 987,
    +  "option_type_id": 123,
       "price": 987.65,
       "price_type": "FIXED",
    -  "sku": "abc123",
    +  "sku": "xyz789",
       "sort_order": 123,
    -  "title": "xyz789",
    -  "uid": "4"
    +  "title": "abc123",
    +  "uid": 4
     }
     
    @@ -44533,7 +44277,7 @@
    Fields
    Example
    -
    {"success": true}
    +                  
    {"success": false}
     
    @@ -44653,7 +44397,7 @@
    Fields
    Example
    -
    {"result": false}
    +                  
    {"result": true}
     
    @@ -44828,7 +44572,7 @@
    Fields
    Example
    -
    {"template_id": 4}
    +                  
    {"template_id": "4"}
     
    @@ -45129,7 +44873,7 @@
    Fields
    Example
    -
    {"approval_rule_uids": [4]}
    +                  
    {"approval_rule_uids": ["4"]}
     
    @@ -45299,7 +45043,7 @@
    Fields
    Example
    -
    {"status": false, "wishlists": [Wishlist]}
    +                  
    {"status": true, "wishlists": [Wishlist]}
     
    @@ -45374,9 +45118,9 @@
    Example
    "applied_to": "ITEM", "coupon": AppliedCoupon, "is_discounting_locked": false, - "label": "xyz789", + "label": "abc123", "type": "xyz789", - "value": 987.65 + "value": 123.45 }
    @@ -45513,9 +45257,9 @@
    Example
    "is_available": false, "is_salable": true, "links": [DownloadableProductLinks], - "max_qty": 987.65, - "min_qty": 123.45, - "not_available_message": "xyz789", + "max_qty": 123.45, + "min_qty": 987.65, + "not_available_message": "abc123", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, @@ -45611,7 +45355,7 @@
    Example
    "order_item": OrderItemInterface, "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "xyz789", + "product_sku": "abc123", "quantity_refunded": 123.45 }
    @@ -45697,12 +45441,12 @@
    Example
    "custom_attributes": [CustomAttribute], "discounts": [Discount], "downloadable_links": [DownloadableItemsLinks], - "id": "4", + "id": 4, "order_item": OrderItemInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, - "product_sku": "abc123", - "quantity_invoiced": 123.45 + "product_sku": "xyz789", + "quantity_invoiced": 987.65 }
    @@ -45756,7 +45500,7 @@
    Example
    {
       "sort_order": 987,
       "title": "abc123",
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -45917,7 +45661,7 @@
    Example
    "custom_attributes": [CustomAttribute], "discounts": [Discount], "downloadable_links": [DownloadableItemsLinks], - "eligible_for_return": true, + "eligible_for_return": false, "entered_options": [OrderItemOption], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, @@ -45926,18 +45670,18 @@
    Example
    "product": ProductInterface, "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "xyz789", + "product_sku": "abc123", "product_type": "abc123", "product_url_key": "xyz789", "quantity_canceled": 987.65, - "quantity_invoiced": 987.65, + "quantity_invoiced": 123.45, "quantity_ordered": 987.65, "quantity_refunded": 987.65, "quantity_return_requested": 987.65, - "quantity_returned": 987.65, + "quantity_returned": 123.45, "quantity_shipped": 987.65, "selected_options": [OrderItemOption], - "status": "abc123" + "status": "xyz789" }
    @@ -46209,7 +45953,7 @@
    Example
    {
       "canonical_url": "abc123",
       "categories": [CategoryInterface],
    -  "country_of_manufacture": "xyz789",
    +  "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    @@ -46219,42 +45963,42 @@ 
    Example
    "downloadable_product_samples": [ DownloadableProductSamples ], - "gift_message_available": false, - "gift_wrapping_available": false, + "gift_message_available": true, + "gift_wrapping_available": true, "gift_wrapping_price": Money, "image": ProductImage, - "is_returnable": "xyz789", + "is_returnable": "abc123", "links_purchased_separately": 987, - "links_title": "xyz789", + "links_title": "abc123", "manufacturer": 987, - "max_sale_qty": 123.45, + "max_sale_qty": 987.65, "media_gallery": [MediaGalleryInterface], - "meta_description": "abc123", - "meta_keyword": "xyz789", - "meta_title": "abc123", - "min_sale_qty": 987.65, + "meta_description": "xyz789", + "meta_keyword": "abc123", + "meta_title": "xyz789", + "min_sale_qty": 123.45, "name": "xyz789", "new_from_date": "xyz789", - "new_to_date": "abc123", + "new_to_date": "xyz789", "only_x_left_in_stock": 987.65, "options": [CustomizableOptionInterface], - "options_container": "xyz789", + "options_container": "abc123", "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], "quantity": 987.65, "related_products": [ProductInterface], "short_description": ComplexTextValue, - "sku": "xyz789", + "sku": "abc123", "small_image": ProductImage, "special_price": 987.65, - "special_to_date": "xyz789", + "special_to_date": "abc123", "stock_status": "IN_STOCK", - "swatch_image": "abc123", + "swatch_image": "xyz789", "thumbnail": ProductImage, "uid": 4, "upsell_products": [ProductInterface], - "url_key": "xyz789" + "url_key": "abc123" }
    @@ -46375,9 +46119,9 @@
    Fields
    Example
    {
    -  "price": 123.45,
    -  "sample_url": "xyz789",
    -  "sort_order": 123,
    +  "price": 987.65,
    +  "sample_url": "abc123",
    +  "sort_order": 987,
       "title": "xyz789",
       "uid": "4"
     }
    @@ -46473,7 +46217,7 @@ 
    Fields
    Example
    {
       "sample_url": "abc123",
    -  "sort_order": 987,
    +  "sort_order": 123,
       "title": "xyz789"
     }
     
    @@ -46551,7 +46295,7 @@
    Example
    "product": ProductInterface, "quantity": 987.65, "samples": [DownloadableProductSamples], - "sku": "xyz789", + "sku": "abc123", "uid": "4" }
    @@ -46636,7 +46380,7 @@
    Example
    "id": "4", "links_v2": [DownloadableProductLinks], "product": ProductInterface, - "quantity": 123.45, + "quantity": 987.65, "samples": [DownloadableProductSamples] } @@ -46825,10 +46569,7 @@
    Fields
    Example
    -
    {
    -  "uid": "4",
    -  "value": "abc123"
    -}
    +                  
    {"uid": 4, "value": "abc123"}
     
    @@ -46897,7 +46638,7 @@
    Possible Types
    Example
    {
       "code": "PRODUCT_NOT_FOUND",
    -  "message": "abc123"
    +  "message": "xyz789"
     }
     
    @@ -47016,7 +46757,7 @@
    Fields
    Example
    {
       "country_code": "AF",
    -  "postcode": "xyz789",
    +  "postcode": "abc123",
       "region": CustomerAddressRegionInput
     }
     
    @@ -47199,7 +46940,7 @@
    Fields
    Example
    {
       "customer": Customer,
    -  "token": "abc123"
    +  "token": "xyz789"
     }
     
    @@ -47245,7 +46986,7 @@
    Fields
    Example
    -
    {"currency_to": "xyz789", "rate": 123.45}
    +                  
    {"currency_to": "xyz789", "rate": 987.65}
     
    @@ -47317,7 +47058,7 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    +  "code": "abc123",
       "is_visible": true,
       "payment_intent": "abc123",
       "payment_source": "abc123",
    @@ -47373,8 +47114,8 @@ 
    Fields
    Example
    {
    -  "payment_source": "xyz789",
    -  "paypal_fastlane_token": "abc123"
    +  "payment_source": "abc123",
    +  "paypal_fastlane_token": "xyz789"
     }
     
    @@ -47510,8 +47251,8 @@
    Fields
    Example
    {
    -  "eq": "xyz789",
    -  "in": ["xyz789"]
    +  "eq": "abc123",
    +  "in": ["abc123"]
     }
     
    @@ -47816,9 +47557,9 @@
    Fields
    Example
    {
    -  "eq": "abc123",
    -  "in": ["abc123"],
    -  "match": "xyz789"
    +  "eq": "xyz789",
    +  "in": ["xyz789"],
    +  "match": "abc123"
     }
     
    @@ -47941,16 +47682,16 @@
    Example
    {
       "eq": "abc123",
       "from": "abc123",
    -  "gt": "xyz789",
    +  "gt": "abc123",
       "gteq": "abc123",
    -  "in": ["abc123"],
    +  "in": ["xyz789"],
       "like": "xyz789",
       "lt": "xyz789",
       "lteq": "xyz789",
    -  "moreq": "abc123",
    -  "neq": "xyz789",
    -  "nin": ["abc123"],
    -  "notnull": "xyz789",
    +  "moreq": "xyz789",
    +  "neq": "abc123",
    +  "nin": ["xyz789"],
    +  "notnull": "abc123",
       "null": "abc123",
       "to": "abc123"
     }
    @@ -48010,9 +47751,9 @@ 
    Fields
    Example
    {
       "attribute": "xyz789",
    -  "frontendInput": "xyz789",
    -  "label": "xyz789",
    -  "numeric": false
    +  "frontendInput": "abc123",
    +  "label": "abc123",
    +  "numeric": true
     }
     
    @@ -48060,7 +47801,7 @@
    Fields
    Example
    {
       "amount": Money,
    -  "label": "abc123"
    +  "label": "xyz789"
     }
     
    @@ -48148,7 +47889,7 @@
    Description
    Example
    -
    987.65
    +                  
    123.45
     
    @@ -48189,7 +47930,7 @@
    Fields
    Example
    -
    {"customer_email": "xyz789"}
    +                  
    {"customer_email": "abc123"}
     
    @@ -48310,7 +48051,7 @@
    Fields
    Example
    -
    {"negotiable_quote_uid": "4"}
    +                  
    {"negotiable_quote_uid": 4}
     
    @@ -48506,9 +48247,9 @@
    Fields
    Example
    {
    -  "attribute_id": 123,
    -  "uid": 4,
    -  "value": 987.65,
    +  "attribute_id": 987,
    +  "uid": "4",
    +  "value": 123.45,
       "website_id": 987,
       "website_value": 987.65
     }
    @@ -48676,7 +48417,7 @@ 
    Example
    {
       "amount": Money,
       "available_gift_wrapping": [GiftWrapping],
    -  "backorder_message": "abc123",
    +  "backorder_message": "xyz789",
       "custom_attributes": [CustomAttribute],
       "customizable_options": [SelectedCustomizableOption],
       "discount": [Discount],
    @@ -48685,7 +48426,7 @@ 
    Example
    "gift_wrapping": GiftWrapping, "is_available": false, "is_salable": false, - "max_qty": 123.45, + "max_qty": 987.65, "message": "xyz789", "min_qty": 987.65, "not_available_message": "xyz789", @@ -48693,12 +48434,12 @@
    Example
    "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 987.65, - "recipient_email": "abc123", + "quantity": 123.45, + "recipient_email": "xyz789", "recipient_name": "abc123", "sender_email": "xyz789", "sender_name": "xyz789", - "uid": 4 + "uid": "4" }
    @@ -48779,12 +48520,12 @@
    Example
    "custom_attributes": [CustomAttribute], "discounts": [Discount], "gift_card": GiftCardItem, - "id": "4", + "id": 4, "order_item": OrderItemInterface, "product_name": "abc123", "product_sale_price": Money, - "product_sku": "abc123", - "quantity_refunded": 123.45 + "product_sku": "xyz789", + "quantity_refunded": 987.65 }
    @@ -48867,9 +48608,9 @@
    Example
    "gift_card": GiftCardItem, "id": "4", "order_item": OrderItemInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, - "product_sku": "abc123", + "product_sku": "xyz789", "quantity_invoiced": 123.45 }
    @@ -48935,7 +48676,7 @@
    Example
    "message": "abc123", "recipient_email": "abc123", "recipient_name": "xyz789", - "sender_email": "abc123", + "sender_email": "xyz789", "sender_name": "abc123" }
    @@ -49011,8 +48752,8 @@
    Example
    "amount": Money, "custom_giftcard_amount": Money, "message": "xyz789", - "recipient_email": "xyz789", - "recipient_name": "xyz789", + "recipient_email": "abc123", + "recipient_name": "abc123", "sender_email": "abc123", "sender_name": "xyz789" } @@ -49170,26 +48911,26 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "eligible_for_return": true,
    +  "eligible_for_return": false,
       "entered_options": [OrderItemOption],
       "gift_card": GiftCardItem,
       "gift_message": GiftMessage,
       "gift_wrapping": GiftWrapping,
    -  "id": "4",
    +  "id": 4,
       "prices": OrderItemPrices,
       "product": ProductInterface,
    -  "product_name": "xyz789",
    +  "product_name": "abc123",
       "product_sale_price": Money,
    -  "product_sku": "abc123",
    +  "product_sku": "xyz789",
       "product_type": "abc123",
       "product_url_key": "xyz789",
       "quantity_canceled": 123.45,
    -  "quantity_invoiced": 987.65,
    +  "quantity_invoiced": 123.45,
       "quantity_ordered": 123.45,
       "quantity_refunded": 987.65,
    -  "quantity_return_requested": 987.65,
    -  "quantity_returned": 123.45,
    -  "quantity_shipped": 123.45,
    +  "quantity_return_requested": 123.45,
    +  "quantity_returned": 987.65,
    +  "quantity_shipped": 987.65,
       "selected_options": [OrderItemOption],
       "status": "xyz789"
     }
    @@ -49497,7 +49238,7 @@ 
    filters
    Example
    {
       "allow_message": false,
    -  "allow_open_amount": true,
    +  "allow_open_amount": false,
       "canonical_url": "abc123",
       "categories": [CategoryInterface],
       "country_of_manufacture": "abc123",
    @@ -49511,25 +49252,25 @@ 
    Example
    "giftcard_amounts": [GiftCardAmounts], "giftcard_type": "VIRTUAL", "image": ProductImage, - "is_redeemable": false, - "is_returnable": "xyz789", + "is_redeemable": true, + "is_returnable": "abc123", "lifetime": 987, "manufacturer": 987, "max_sale_qty": 123.45, "media_gallery": [MediaGalleryInterface], "message_max_length": 123, "meta_description": "abc123", - "meta_keyword": "abc123", + "meta_keyword": "xyz789", "meta_title": "abc123", "min_sale_qty": 987.65, "name": "abc123", - "new_from_date": "xyz789", + "new_from_date": "abc123", "new_to_date": "xyz789", - "only_x_left_in_stock": 987.65, + "only_x_left_in_stock": 123.45, "open_amount_max": 987.65, "open_amount_min": 987.65, "options": [CustomizableOptionInterface], - "options_container": "abc123", + "options_container": "xyz789", "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], @@ -49538,10 +49279,10 @@
    Example
    "short_description": ComplexTextValue, "sku": "abc123", "small_image": ProductImage, - "special_price": 987.65, + "special_price": 123.45, "special_to_date": "xyz789", "stock_status": "IN_STOCK", - "swatch_image": "abc123", + "swatch_image": "xyz789", "thumbnail": ProductImage, "uid": "4", "upsell_products": [ProductInterface], @@ -49619,7 +49360,7 @@
    Example
    "product": ProductInterface, "quantity": 987.65, "sku": "abc123", - "uid": "4" + "uid": 4 }
    @@ -49824,9 +49565,9 @@
    Example
    {
       "added_at": "abc123",
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "abc123",
    +  "description": "xyz789",
       "gift_card_options": GiftCardOptions,
    -  "id": "4",
    +  "id": 4,
       "product": ProductInterface,
       "quantity": 987.65
     }
    @@ -49880,9 +49621,9 @@ 
    Fields
    Example
    {
    -  "from": "abc123",
    +  "from": "xyz789",
       "message": "abc123",
    -  "to": "xyz789"
    +  "to": "abc123"
     }
     
    @@ -49937,9 +49678,9 @@
    Fields
    Example
    {
    -  "from": "xyz789",
    +  "from": "abc123",
       "message": "abc123",
    -  "to": "xyz789"
    +  "to": "abc123"
     }
     
    @@ -50113,7 +49854,7 @@
    Example
    "event_name": "xyz789", "items": [GiftRegistryItemInterface], "message": "xyz789", - "owner_name": "xyz789", + "owner_name": "abc123", "privacy_settings": "PRIVATE", "registrants": [GiftRegistryRegistrant], "shipping_address": CustomerAddress, @@ -50172,10 +49913,10 @@
    Fields
    Example
    {
    -  "code": 4,
    +  "code": "4",
       "group": "EVENT_INFORMATION",
       "label": "xyz789",
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -50372,9 +50113,9 @@
    Possible Types
    Example
    {
    -  "code": "4",
    -  "label": "abc123",
    -  "value": "abc123"
    +  "code": 4,
    +  "label": "xyz789",
    +  "value": "xyz789"
     }
     
    @@ -50438,11 +50179,11 @@
    Fields
    Example
    {
       "attribute_group": "abc123",
    -  "code": "4",
    -  "input_type": "abc123",
    +  "code": 4,
    +  "input_type": "xyz789",
       "is_required": true,
    -  "label": "abc123",
    -  "sort_order": 123
    +  "label": "xyz789",
    +  "sort_order": 987
     }
     
    @@ -50522,12 +50263,12 @@
    Possible Types
    Example
    {
    -  "attribute_group": "xyz789",
    +  "attribute_group": "abc123",
       "code": 4,
    -  "input_type": "xyz789",
    -  "is_required": true,
    -  "label": "xyz789",
    -  "sort_order": 123
    +  "input_type": "abc123",
    +  "is_required": false,
    +  "label": "abc123",
    +  "sort_order": 987
     }
     
    @@ -50595,8 +50336,8 @@
    Example
    "note": "abc123", "product": ProductInterface, "quantity": 123.45, - "quantity_fulfilled": 987.65, - "uid": "4" + "quantity_fulfilled": 123.45, + "uid": 4 }
    @@ -50677,12 +50418,12 @@
    Possible Types
    Example
    {
    -  "created_at": "abc123",
    -  "note": "xyz789",
    +  "created_at": "xyz789",
    +  "note": "abc123",
       "product": ProductInterface,
    -  "quantity": 987.65,
    -  "quantity_fulfilled": 987.65,
    -  "uid": 4
    +  "quantity": 123.45,
    +  "quantity_fulfilled": 123.45,
    +  "uid": "4"
     }
     
    @@ -50746,7 +50487,7 @@
    Possible Types
    Example
    {
    -  "status": true,
    +  "status": false,
       "user_errors": [GiftRegistryItemsUserError]
     }
     
    @@ -50810,9 +50551,9 @@
    Fields
    Example
    {
       "code": "OUT_OF_STOCK",
    -  "gift_registry_item_uid": 4,
    +  "gift_registry_item_uid": "4",
       "gift_registry_uid": 4,
    -  "message": "xyz789",
    +  "message": "abc123",
       "product_uid": "4"
     }
     
    @@ -51037,8 +50778,8 @@
    Example
    "dynamic_attributes": [ GiftRegistryRegistrantDynamicAttribute ], - "email": "abc123", - "firstname": "abc123", + "email": "xyz789", + "firstname": "xyz789", "lastname": "abc123", "uid": "4" } @@ -51088,7 +50829,7 @@
    Fields
    Example
    {
    -  "code": "4",
    +  "code": 4,
       "label": "abc123",
       "value": "abc123"
     }
    @@ -51159,8 +50900,8 @@ 
    Example
    {
       "event_date": "xyz789",
       "event_title": "xyz789",
    -  "gift_registry_uid": 4,
    -  "location": "abc123",
    +  "gift_registry_uid": "4",
    +  "location": "xyz789",
       "name": "abc123",
       "type": "abc123"
     }
    @@ -51218,7 +50959,7 @@ 
    Fields
    Example
    {
       "address_data": CustomerAddressInput,
    -  "address_id": "4",
    +  "address_id": 4,
       "customer_address_uid": 4
     }
     
    @@ -51323,7 +51064,7 @@
    Example
    "dynamic_attributes_metadata": [ GiftRegistryDynamicAttributeMetadataInterface ], - "label": "xyz789", + "label": "abc123", "uid": "4" }
    @@ -51384,7 +51125,7 @@
    Example
    "design": "abc123", "image": GiftWrappingImage, "price": Money, - "uid": "4" + "uid": 4 }
    @@ -51480,9 +51221,9 @@
    Fields
    Example
    {
    -  "color": "abc123",
    +  "color": "xyz789",
       "height": 987,
    -  "type": "xyz789"
    +  "type": "abc123"
     }
     
    @@ -51562,9 +51303,9 @@
    Example
    {
       "button_styles": GooglePayButtonStyles,
       "code": "abc123",
    -  "is_visible": false,
    -  "payment_intent": "abc123",
    -  "payment_source": "xyz789",
    +  "is_visible": true,
    +  "payment_intent": "xyz789",
    +  "payment_source": "abc123",
       "sdk_params": [SDKParams],
       "sort_order": "abc123",
       "three_ds_mode": "OFF",
    @@ -51882,17 +51623,17 @@ 
    Example
    {
       "canonical_url": "abc123",
       "categories": [CategoryInterface],
    -  "country_of_manufacture": "xyz789",
    +  "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
       "gift_message_available": true,
    -  "gift_wrapping_available": false,
    +  "gift_wrapping_available": true,
       "gift_wrapping_price": Money,
       "image": ProductImage,
       "is_returnable": "abc123",
       "items": [GroupedProductItem],
    -  "manufacturer": 123,
    +  "manufacturer": 987,
       "max_sale_qty": 123.45,
       "media_gallery": [MediaGalleryInterface],
       "meta_description": "xyz789",
    @@ -51900,9 +51641,9 @@ 
    Example
    "meta_title": "abc123", "min_sale_qty": 987.65, "name": "abc123", - "new_from_date": "abc123", + "new_from_date": "xyz789", "new_to_date": "xyz789", - "only_x_left_in_stock": 987.65, + "only_x_left_in_stock": 123.45, "options_container": "xyz789", "price_range": PriceRange, "price_tiers": [TierPrice], @@ -51910,14 +51651,14 @@
    Example
    "quantity": 987.65, "related_products": [ProductInterface], "short_description": ComplexTextValue, - "sku": "abc123", + "sku": "xyz789", "small_image": ProductImage, - "special_price": 123.45, - "special_to_date": "abc123", + "special_price": 987.65, + "special_to_date": "xyz789", "stock_status": "IN_STOCK", - "swatch_image": "xyz789", + "swatch_image": "abc123", "thumbnail": ProductImage, - "uid": "4", + "uid": 4, "upsell_products": [ProductInterface], "url_key": "abc123", "weight": 123.45 @@ -51975,7 +51716,7 @@
    Example
    {
       "position": 987,
       "product": ProductInterface,
    -  "qty": 123.45
    +  "qty": 987.65
     }
     
    @@ -52045,7 +51786,7 @@
    Example
    {
       "added_at": "abc123",
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "abc123",
    +  "description": "xyz789",
       "id": "4",
       "product": ProductInterface,
       "quantity": 987.65
    @@ -52097,7 +51838,7 @@ 
    Fields
    Example
    {
    -  "reason": "abc123",
    +  "reason": "xyz789",
       "token": "xyz789"
     }
     
    @@ -52153,9 +51894,9 @@
    Fields
    Example
    {
    -  "email": "abc123",
    +  "email": "xyz789",
       "lastname": "xyz789",
    -  "number": "xyz789"
    +  "number": "abc123"
     }
     
    @@ -52207,7 +51948,7 @@
    Fields
    Example
    {
    -  "attribute": "xyz789",
    +  "attribute": "abc123",
       "matched_words": ["abc123"],
       "value": "xyz789"
     }
    @@ -52280,7 +52021,7 @@ 
    Example
    "creator_name": "abc123", "creator_type": "abc123", "item_id": 987, - "note": "abc123", + "note": "xyz789", "product_name": "xyz789" }
    @@ -52369,17 +52110,17 @@
    Fields
    Example
    {
    -  "cc_vault_code": "abc123",
    +  "cc_vault_code": "xyz789",
       "code": "abc123",
       "is_vault_enabled": true,
    -  "is_visible": false,
    -  "payment_intent": "xyz789",
    +  "is_visible": true,
    +  "payment_intent": "abc123",
       "payment_source": "xyz789",
       "requires_card_details": true,
       "sdk_params": [SDKParams],
    -  "sort_order": "xyz789",
    +  "sort_order": "abc123",
       "three_ds_mode": "OFF",
    -  "title": "xyz789"
    +  "title": "abc123"
     }
     
    @@ -52472,13 +52213,13 @@
    Example
    {
       "cardBin": "xyz789",
       "cardExpiryMonth": "xyz789",
    -  "cardExpiryYear": "xyz789",
    +  "cardExpiryYear": "abc123",
       "cardLast4": "abc123",
       "holderName": "abc123",
       "is_active_payment_token_enabler": false,
       "payment_source": "xyz789",
    -  "payments_order_id": "abc123",
    -  "paypal_order_id": "abc123"
    +  "payments_order_id": "xyz789",
    +  "paypal_order_id": "xyz789"
     }
     
    @@ -52543,8 +52284,8 @@
    Fields
    Example
    {
    -  "thumbnail": "abc123",
    -  "value": "xyz789"
    +  "thumbnail": "xyz789",
    +  "value": "abc123"
     }
     
    @@ -52706,7 +52447,7 @@
    Fields
    Example
    {
       "code": "PRODUCT_NOT_FOUND",
    -  "message": "xyz789",
    +  "message": "abc123",
       "quantity": 123.45
     }
     
    @@ -52730,7 +52471,7 @@
    Description
    Example
    -
    123
    +                  
    987
     
    @@ -52770,7 +52511,7 @@
    Fields
    Example
    -
    {"message": "abc123"}
    +                  
    {"message": "xyz789"}
     
    @@ -52838,9 +52579,9 @@
    Example
    {
       "comments": [SalesCommentItem],
       "custom_attributes": [CustomAttribute],
    -  "id": "4",
    +  "id": 4,
       "items": [InvoiceItemInterface],
    -  "number": "abc123",
    +  "number": "xyz789",
       "total": InvoiceTotal
     }
     
    @@ -52968,9 +52709,9 @@
    Example
    "discounts": [Discount], "id": "4", "order_item": OrderItemInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, - "product_sku": "abc123", + "product_sku": "xyz789", "quantity_invoiced": 123.45 }
    @@ -53027,8 +52768,8 @@
    Fields
    Example
    {
       "custom_attributes": [CustomAttributeInput],
    -  "invoice_id": "abc123",
    -  "invoice_item_id": "xyz789"
    +  "invoice_id": "xyz789",
    +  "invoice_item_id": "abc123"
     }
     
    @@ -53139,12 +52880,12 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "id": "4",
    +  "id": 4,
       "order_item": OrderItemInterface,
       "product_name": "xyz789",
       "product_sale_price": Money,
    -  "product_sku": "abc123",
    -  "quantity_invoiced": 123.45
    +  "product_sku": "xyz789",
    +  "quantity_invoiced": 987.65
     }
     
    @@ -53309,7 +53050,7 @@
    Fields
    Example
    -
    {"is_email_available": true}
    +                  
    {"is_email_available": false}
     
    @@ -53349,7 +53090,7 @@
    Fields
    Example
    -
    {"is_email_available": false}
    +                  
    {"is_email_available": true}
     
    @@ -53514,7 +53255,7 @@
    Fields
    Example
    -
    {"type": "UNKNOWN_ISOPERATOR_TYPE", "value": false}
    +                  
    {"type": "UNKNOWN_ISOPERATOR_TYPE", "value": true}
     
    @@ -53602,7 +53343,7 @@
    Fields
    Example
    -
    {"isSubscribed": false, "message": "xyz789"}
    +                  
    {"isSubscribed": true, "message": "xyz789"}
     
    @@ -53673,13 +53414,13 @@
    Fields
    Example
    {
    -  "created_at": "xyz789",
    -  "creator_id": 987,
    +  "created_at": "abc123",
    +  "creator_id": 123,
       "creator_name": "xyz789",
    -  "creator_type": 987,
    +  "creator_type": 123,
       "negotiable_quote_item_uid": "4",
    -  "note": "abc123",
    -  "note_uid": "4"
    +  "note": "xyz789",
    +  "note_uid": 4
     }
     
    @@ -53731,8 +53472,8 @@
    Fields
    Example
    {
    -  "label": "abc123",
    -  "uid": 4,
    +  "label": "xyz789",
    +  "uid": "4",
       "values": [ItemSelectedBundleOptionValue]
     }
     
    @@ -53796,10 +53537,10 @@
    Fields
    Example
    {
       "price": Money,
    -  "product_name": "xyz789",
    +  "product_name": "abc123",
       "product_sku": "abc123",
    -  "quantity": 987.65,
    -  "uid": 4
    +  "quantity": 123.45,
    +  "uid": "4"
     }
     
    @@ -53868,8 +53609,8 @@
    Fields
    Example
    {
    -  "name": "abc123",
    -  "value": "abc123"
    +  "name": "xyz789",
    +  "value": "xyz789"
     }
     
    @@ -53924,8 +53665,8 @@
    Fields
    Example
    {
    -  "note": "abc123",
    -  "quote_item_uid": 4,
    +  "note": "xyz789",
    +  "quote_item_uid": "4",
       "quote_uid": "4"
     }
     
    @@ -54015,10 +53756,10 @@
    Possible Types
    Example
    {
    -  "disabled": true,
    +  "disabled": false,
       "label": "xyz789",
       "position": 123,
    -  "url": "abc123"
    +  "url": "xyz789"
     }
     
    @@ -54408,7 +54149,7 @@
    Example
    {
       "quote_item_uid": "4",
       "quote_uid": 4,
    -  "requisition_list_uid": "4"
    +  "requisition_list_uid": 4
     }
     
    @@ -54660,20 +54401,20 @@
    Example
    "comments": [NegotiableQuoteComment], "created_at": "abc123", "custom_attributes": [CustomAttribute], - "email": "xyz789", - "expiration_date": "xyz789", + "email": "abc123", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "is_virtual": true, "items": [CartItemInterface], - "name": "abc123", + "name": "xyz789", "order": CustomerOrder, "prices": CartPrices, "sales_rep_name": "xyz789", "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [NegotiableQuoteShippingAddress], "status": "SUBMITTED", - "template_id": "4", - "template_name": "xyz789", + "template_id": 4, + "template_name": "abc123", "total_quantity": 123.45, "uid": 4, "updated_at": "xyz789" @@ -54724,7 +54465,7 @@
    Fields
    Example
    {
       "code": "abc123",
    -  "label": "xyz789"
    +  "label": "abc123"
     }
     
    @@ -54863,23 +54604,23 @@
    Fields
    Example
    {
    -  "city": "abc123",
    -  "company": "xyz789",
    +  "city": "xyz789",
    +  "company": "abc123",
       "country_code": "xyz789",
       "custom_attributes": [AttributeValueInput],
    -  "fax": "abc123",
    +  "fax": "xyz789",
       "firstname": "xyz789",
       "lastname": "xyz789",
       "middlename": "xyz789",
       "postcode": "xyz789",
       "prefix": "xyz789",
       "region": "abc123",
    -  "region_id": 987,
    -  "save_in_address_book": true,
    +  "region_id": 123,
    +  "save_in_address_book": false,
       "street": ["abc123"],
    -  "suffix": "xyz789",
    +  "suffix": "abc123",
       "telephone": "abc123",
    -  "vat_id": "abc123"
    +  "vat_id": "xyz789"
     }
     
    @@ -55019,23 +54760,23 @@
    Possible Types
    Example
    {
    -  "city": "abc123",
    -  "company": "xyz789",
    +  "city": "xyz789",
    +  "company": "abc123",
       "country": NegotiableQuoteAddressCountry,
       "custom_attributes": [AttributeValueInterface],
    -  "customer_address_uid": 4,
    +  "customer_address_uid": "4",
       "fax": "abc123",
       "firstname": "xyz789",
    -  "lastname": "xyz789",
    +  "lastname": "abc123",
       "middlename": "abc123",
    -  "postcode": "abc123",
    +  "postcode": "xyz789",
       "prefix": "abc123",
       "region": NegotiableQuoteAddressRegion,
       "street": ["xyz789"],
    -  "suffix": "xyz789",
    -  "telephone": "xyz789",
    -  "uid": 4,
    -  "vat_id": "xyz789"
    +  "suffix": "abc123",
    +  "telephone": "abc123",
    +  "uid": "4",
    +  "vat_id": "abc123"
     }
     
    @@ -55088,7 +54829,7 @@
    Fields
    Example
    {
       "code": "xyz789",
    -  "label": "abc123",
    +  "label": "xyz789",
       "region_id": 987
     }
     
    @@ -55207,22 +54948,22 @@
    Fields
    Example
    {
    -  "city": "xyz789",
    +  "city": "abc123",
       "company": "xyz789",
       "country": NegotiableQuoteAddressCountry,
       "custom_attributes": [AttributeValueInterface],
       "customer_address_uid": "4",
       "fax": "xyz789",
       "firstname": "xyz789",
    -  "lastname": "xyz789",
    -  "middlename": "xyz789",
    +  "lastname": "abc123",
    +  "middlename": "abc123",
       "postcode": "abc123",
    -  "prefix": "abc123",
    +  "prefix": "xyz789",
       "region": NegotiableQuoteAddressRegion,
    -  "street": ["abc123"],
    -  "suffix": "abc123",
    -  "telephone": "abc123",
    -  "uid": 4,
    +  "street": ["xyz789"],
    +  "suffix": "xyz789",
    +  "telephone": "xyz789",
    +  "uid": "4",
       "vat_id": "xyz789"
     }
     
    @@ -55285,9 +55026,9 @@
    Fields
    Example
    {
       "address": NegotiableQuoteAddressInput,
    -  "customer_address_uid": 4,
    -  "same_as_shipping": false,
    -  "use_for_shipping": true
    +  "customer_address_uid": "4",
    +  "same_as_shipping": true,
    +  "use_for_shipping": false
     }
     
    @@ -55356,7 +55097,7 @@
    Example
    {
       "attachments": [NegotiableQuoteCommentAttachment],
       "author": NegotiableQuoteUser,
    -  "created_at": "abc123",
    +  "created_at": "xyz789",
       "creator_type": "BUYER",
       "text": "abc123",
       "uid": "4"
    @@ -55406,8 +55147,8 @@ 
    Fields
    Example
    {
    -  "name": "abc123",
    -  "url": "xyz789"
    +  "name": "xyz789",
    +  "url": "abc123"
     }
     
    @@ -55543,7 +55284,7 @@
    Fields
    Example
    {
       "attachments": [NegotiableQuoteCommentAttachmentInput],
    -  "comment": "xyz789"
    +  "comment": "abc123"
     }
     
    @@ -55596,7 +55337,7 @@
    Fields
    Example
    {
       "new_value": "xyz789",
    -  "old_value": "abc123",
    +  "old_value": "xyz789",
       "title": "abc123"
     }
     
    @@ -55760,7 +55501,7 @@
    Fields
    Example
    -
    {"comment": "abc123"}
    +                  
    {"comment": "xyz789"}
     
    @@ -55829,7 +55570,7 @@
    Example
    "author": NegotiableQuoteUser, "change_type": "CREATED", "changes": NegotiableQuoteHistoryChanges, - "created_at": "xyz789", + "created_at": "abc123", "item_note": HistoryItemNoteData, "uid": 4 } @@ -55937,7 +55678,7 @@
    Fields
    Example
    {
    -  "new_expiration": "xyz789",
    +  "new_expiration": "abc123",
       "old_expiration": "xyz789"
     }
     
    @@ -55986,7 +55727,7 @@
    Fields
    Example
    {
    -  "products_removed_from_catalog": [4],
    +  "products_removed_from_catalog": ["4"],
       "products_removed_from_quote": [ProductInterface]
     }
     
    @@ -56208,7 +55949,7 @@
    Fields
    Example
    -
    {"quantity": 987.65, "quote_item_uid": "4"}
    +                  
    {"quantity": 123.45, "quote_item_uid": "4"}
     
    @@ -56257,7 +55998,7 @@
    Fields
    Example
    {
       "code": "xyz789",
    -  "purchase_order_number": "abc123"
    +  "purchase_order_number": "xyz789"
     }
     
    @@ -56314,10 +56055,10 @@
    Fields
    Example
    {
    -  "document_identifier": "xyz789",
    -  "document_name": "xyz789",
    +  "document_identifier": "abc123",
    +  "document_name": "abc123",
       "link_id": 4,
    -  "reference_document_url": "xyz789"
    +  "reference_document_url": "abc123"
     }
     
    @@ -56446,22 +56187,22 @@
    Fields
    Example
    {
       "available_shipping_methods": [AvailableShippingMethod],
    -  "city": "xyz789",
    -  "company": "xyz789",
    +  "city": "abc123",
    +  "company": "abc123",
       "country": NegotiableQuoteAddressCountry,
       "custom_attributes": [AttributeValueInterface],
       "customer_address_uid": "4",
    -  "fax": "xyz789",
    -  "firstname": "abc123",
    +  "fax": "abc123",
    +  "firstname": "xyz789",
       "lastname": "xyz789",
    -  "middlename": "xyz789",
    +  "middlename": "abc123",
       "postcode": "abc123",
       "prefix": "xyz789",
       "region": NegotiableQuoteAddressRegion,
       "selected_shipping_method": SelectedShippingMethod,
    -  "street": ["abc123"],
    +  "street": ["xyz789"],
       "suffix": "xyz789",
    -  "telephone": "abc123",
    +  "telephone": "xyz789",
       "uid": "4",
       "vat_id": "xyz789"
     }
    @@ -56860,11 +56601,11 @@ 
    Example
    {
       "buyer": NegotiableQuoteUser,
       "comments": [NegotiableQuoteComment],
    -  "created_at": "xyz789",
    +  "created_at": "abc123",
       "expiration_date": "xyz789",
       "history": [NegotiableQuoteHistoryEntry],
       "historyV2": [NegotiableQuoteTemplateHistoryEntry],
    -  "is_min_max_qty_used": true,
    +  "is_min_max_qty_used": false,
       "is_virtual": false,
       "items": [CartItemInterface],
       "max_order_commitment": 123,
    @@ -56878,9 +56619,9 @@ 
    Example
    "sales_rep_name": "xyz789", "shipping_addresses": [NegotiableQuoteShippingAddress], "status": "abc123", - "template_id": "4", + "template_id": 4, "total_quantity": 123.45, - "uid": 4, + "uid": "4", "updated_at": "xyz789" }
    @@ -57069,21 +56810,21 @@
    Fields
    Example
    {
       "activated_at": "xyz789",
    -  "company_name": "xyz789",
    -  "created_at": "xyz789",
    +  "company_name": "abc123",
    +  "created_at": "abc123",
       "expiration_date": "abc123",
       "is_min_max_qty_used": false,
    -  "last_ordered_at": "xyz789",
    +  "last_ordered_at": "abc123",
       "last_shared_at": "xyz789",
       "max_order_commitment": 987,
       "min_negotiated_grand_total": 987.65,
    -  "min_order_commitment": 123,
    -  "name": "abc123",
    +  "min_order_commitment": 987,
    +  "name": "xyz789",
       "orders_placed": 123,
       "prices": CartPrices,
       "sales_rep_name": "xyz789",
    -  "state": "xyz789",
    -  "status": "abc123",
    +  "state": "abc123",
    +  "status": "xyz789",
       "submitted_by": "abc123",
       "template_id": "4",
       "uid": 4,
    @@ -57225,7 +56966,7 @@ 
    Example
    "change_type": "CREATED", "changes": NegotiableQuoteTemplateHistoryChanges, "created_at": "xyz789", - "uid": 4 + "uid": "4" }
    @@ -57273,7 +57014,7 @@
    Fields
    Example
    {
       "new_status": "abc123",
    -  "old_status": "xyz789"
    +  "old_status": "abc123"
     }
     
    @@ -57373,7 +57114,7 @@
    Fields
    Example
    -
    {"item_id": 4, "max_qty": 123.45, "min_qty": 123.45, "quantity": 987.65}
    +                  
    {"item_id": 4, "max_qty": 987.65, "min_qty": 987.65, "quantity": 123.45}
     
    @@ -57492,7 +57233,7 @@
    Fields
    Example
    {
       "address": NegotiableQuoteAddressInput,
    -  "customer_address_uid": "4",
    +  "customer_address_uid": 4,
       "customer_notes": "xyz789"
     }
     
    @@ -57697,7 +57438,7 @@
    Possible Types
    Example
    -
    {"quote_uid": 4}
    +                  
    {"quote_uid": "4"}
     
    @@ -57737,7 +57478,7 @@
    Fields
    Example
    -
    {"quote_uid": "4"}
    +                  
    {"quote_uid": 4}
     
    @@ -57844,7 +57585,7 @@
    Example
    "items": [NegotiableQuote], "page_info": SearchResultPageInfo, "sort_fields": SortFields, - "total_count": 123 + "total_count": 987 }
    @@ -58022,7 +57763,7 @@
    Fields
    Example
    {
    -  "backend_integration_url": "xyz789",
    +  "backend_integration_url": "abc123",
       "custom_config": [CustomConfigKeyValue]
     }
     
    @@ -58362,21 +58103,21 @@
    attributeCodes
    Example
    {
    -  "city": "xyz789",
    +  "city": "abc123",
       "company": "xyz789",
       "country_code": "AF",
       "custom_attributesV2": [AttributeValueInterface],
    -  "fax": "abc123",
    +  "fax": "xyz789",
       "firstname": "abc123",
       "lastname": "abc123",
       "middlename": "abc123",
    -  "postcode": "abc123",
    -  "prefix": "xyz789",
    +  "postcode": "xyz789",
    +  "prefix": "abc123",
       "region": "abc123",
       "region_id": 4,
    -  "street": ["xyz789"],
    +  "street": ["abc123"],
       "suffix": "abc123",
    -  "telephone": "xyz789",
    +  "telephone": "abc123",
       "vat_id": "abc123"
     }
     
    @@ -58435,11 +58176,11 @@
    Fields
    Example
    {
    -  "firstname": "xyz789",
    -  "lastname": "abc123",
    +  "firstname": "abc123",
    +  "lastname": "xyz789",
       "middlename": "xyz789",
       "prefix": "xyz789",
    -  "suffix": "abc123"
    +  "suffix": "xyz789"
     }
     
    @@ -58590,11 +58331,11 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "eligible_for_return": true,
    +  "eligible_for_return": false,
       "entered_options": [OrderItemOption],
       "gift_message": GiftMessage,
       "gift_wrapping": GiftWrapping,
    -  "id": "4",
    +  "id": 4,
       "prices": OrderItemPrices,
       "product": ProductInterface,
       "product_name": "abc123",
    @@ -58603,12 +58344,12 @@ 
    Example
    "product_type": "xyz789", "product_url_key": "abc123", "quantity_canceled": 123.45, - "quantity_invoiced": 123.45, + "quantity_invoiced": 987.65, "quantity_ordered": 123.45, "quantity_refunded": 987.65, "quantity_return_requested": 123.45, "quantity_returned": 987.65, - "quantity_shipped": 123.45, + "quantity_shipped": 987.65, "selected_options": [OrderItemOption], "status": "abc123" } @@ -58812,15 +58553,15 @@
    Example
    "product_name": "abc123", "product_sale_price": Money, "product_sku": "xyz789", - "product_type": "abc123", + "product_type": "xyz789", "product_url_key": "xyz789", - "quantity_canceled": 987.65, - "quantity_invoiced": 987.65, + "quantity_canceled": 123.45, + "quantity_invoiced": 123.45, "quantity_ordered": 123.45, "quantity_refunded": 123.45, - "quantity_return_requested": 987.65, - "quantity_returned": 987.65, - "quantity_shipped": 987.65, + "quantity_return_requested": 123.45, + "quantity_returned": 123.45, + "quantity_shipped": 123.45, "selected_options": [OrderItemOption], "status": "xyz789" } @@ -59022,7 +58763,7 @@
    Fields
    Example
    {
       "additional_data": [KeyValue],
    -  "name": "xyz789",
    +  "name": "abc123",
       "type": "xyz789"
     }
     
    @@ -59086,7 +58827,7 @@
    Fields
    Example
    {
       "comments": [SalesCommentItem],
    -  "id": "4",
    +  "id": 4,
       "items": [ShipmentItemInterface],
       "number": "xyz789",
       "tracking": [ShipmentTracking]
    @@ -59379,7 +59120,7 @@ 
    Fields
    Example
    {
       "key": "xyz789",
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -59487,8 +59228,8 @@
    Example
    "is_visible": false, "payment_intent": "abc123", "sdk_params": [SDKParams], - "sort_order": "xyz789", - "title": "xyz789" + "sort_order": "abc123", + "title": "abc123" }
    @@ -59716,7 +59457,7 @@
    Fields
    Example
    {
       "additional_data": [PaymentAttributeInput],
    -  "code": "xyz789",
    +  "code": "abc123",
       "payment_services_paypal_apple_pay": ApplePayMethodInput,
       "payment_services_paypal_fastlane": FastlaneMethodInput,
       "payment_services_paypal_google_pay": GooglePayMethodInput,
    @@ -59780,8 +59521,8 @@ 
    Fields
    Example
    {
    -  "id": "xyz789",
    -  "mp_order_id": "xyz789",
    +  "id": "abc123",
    +  "mp_order_id": "abc123",
       "payment_source_details": PaymentSourceDetails,
       "status": "abc123"
     }
    @@ -60002,8 +59743,8 @@ 
    Fields
    Example
    {
       "details": "xyz789",
    -  "payment_method_code": "abc123",
    -  "public_hash": "abc123",
    +  "payment_method_code": "xyz789",
    +  "public_hash": "xyz789",
       "type": "card"
     }
     
    @@ -60256,20 +59997,20 @@
    Fields
    Example
    {
       "city": "xyz789",
    -  "contact_name": "xyz789",
    +  "contact_name": "abc123",
       "country_id": "xyz789",
       "description": "xyz789",
    -  "email": "abc123",
    -  "fax": "abc123",
    +  "email": "xyz789",
    +  "fax": "xyz789",
       "latitude": 123.45,
    -  "longitude": 987.65,
    +  "longitude": 123.45,
       "name": "xyz789",
       "phone": "abc123",
    -  "pickup_location_code": "abc123",
    +  "pickup_location_code": "xyz789",
       "postcode": "abc123",
    -  "region": "xyz789",
    -  "region_id": 123,
    -  "street": "xyz789"
    +  "region": "abc123",
    +  "region_id": 987,
    +  "street": "abc123"
     }
     
    @@ -60563,7 +60304,7 @@
    Example
    {
       "items": [PickupLocation],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -60848,7 +60589,7 @@
    Fields
    Example
    -
    {"purchase_order_uid": "4"}
    +                  
    {"purchase_order_uid": 4}
     
    @@ -61018,7 +60759,7 @@
    Fields
    Example
    -
    {"cart_id": "xyz789"}
    +                  
    {"cart_id": "abc123"}
     
    @@ -61151,7 +60892,7 @@
    Fields
    Example
    -
    {"amount": 987.65, "code": "xyz789"}
    +                  
    {"amount": 987.65, "code": "abc123"}
     
    @@ -61396,7 +61137,7 @@
    Fields
    Example
    -
    {"sku": "abc123"}
    +                  
    {"sku": "xyz789"}
     
    @@ -61434,7 +61175,7 @@
    Fields
    Example
    -
    {"sku": "abc123"}
    +                  
    {"sku": "xyz789"}
     
    @@ -61477,7 +61218,7 @@
    Fields
    Example
    -
    {"message": "abc123", "success": false}
    +                  
    {"message": "xyz789", "success": false}
     
    @@ -61524,7 +61265,7 @@
    Fields
    Example
    {
       "code": "abc123",
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -61578,9 +61319,9 @@
    Fields
    Example
    {
       "attribute_type": "xyz789",
    -  "code": 4,
    -  "url": "abc123",
    -  "value": "abc123"
    +  "code": "4",
    +  "url": "xyz789",
    +  "value": "xyz789"
     }
     
    @@ -61674,7 +61415,7 @@
    Fields
    Example
    -
    {"amount_off": 987.65, "percent_off": 123.45}
    +                  
    {"amount_off": 123.45, "percent_off": 987.65}
     
    @@ -61732,8 +61473,8 @@
    Example
    {
       "disabled": true,
       "label": "abc123",
    -  "position": 123,
    -  "url": "abc123"
    +  "position": 987,
    +  "url": "xyz789"
     }
     
    @@ -62116,34 +61857,34 @@
    Example
    "custom_attributesV2": ProductCustomAttributes, "description": ComplexTextValue, "gift_message_available": true, - "gift_wrapping_available": false, + "gift_wrapping_available": true, "gift_wrapping_price": Money, "image": ProductImage, - "is_returnable": "abc123", - "manufacturer": 987, + "is_returnable": "xyz789", + "manufacturer": 123, "max_sale_qty": 987.65, "media_gallery": [MediaGalleryInterface], - "meta_description": "xyz789", - "meta_keyword": "xyz789", - "meta_title": "xyz789", - "min_sale_qty": 123.45, - "name": "abc123", - "new_from_date": "abc123", + "meta_description": "abc123", + "meta_keyword": "abc123", + "meta_title": "abc123", + "min_sale_qty": 987.65, + "name": "xyz789", + "new_from_date": "xyz789", "new_to_date": "abc123", "only_x_left_in_stock": 987.65, "options_container": "abc123", "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], - "quantity": 987.65, + "quantity": 123.45, "related_products": [ProductInterface], "short_description": ComplexTextValue, - "sku": "xyz789", + "sku": "abc123", "small_image": ProductImage, "special_price": 987.65, "special_to_date": "abc123", "stock_status": "IN_STOCK", - "swatch_image": "xyz789", + "swatch_image": "abc123", "thumbnail": ProductImage, "uid": "4", "upsell_products": [ProductInterface], @@ -62209,9 +61950,9 @@
    Fields
    Example
    {
    -  "link_type": "abc123",
    +  "link_type": "xyz789",
       "linked_product_sku": "xyz789",
    -  "linked_product_type": "xyz789",
    +  "linked_product_type": "abc123",
       "position": 987,
       "sku": "abc123"
     }
    @@ -62293,8 +62034,8 @@ 
    Possible Types
    Example
    {
       "link_type": "xyz789",
    -  "linked_product_sku": "abc123",
    -  "linked_product_type": "abc123",
    +  "linked_product_sku": "xyz789",
    +  "linked_product_type": "xyz789",
       "position": 987,
       "sku": "abc123"
     }
    @@ -62348,9 +62089,9 @@ 
    Fields
    Example
    {
    -  "asset_id": "xyz789",
    -  "media_type": "abc123",
    -  "media_url": "xyz789"
    +  "asset_id": "abc123",
    +  "media_type": "xyz789",
    +  "media_url": "abc123"
     }
     
    @@ -62402,7 +62143,7 @@
    Fields
    Example
    {
    -  "media_type": "abc123",
    +  "media_type": "xyz789",
       "video_asset_id": "abc123",
       "video_media_url": "abc123"
     }
    @@ -62471,11 +62212,11 @@ 
    Fields
    Example
    {
    -  "media_type": "abc123",
    +  "media_type": "xyz789",
       "video_description": "abc123",
       "video_metadata": "abc123",
       "video_provider": "abc123",
    -  "video_title": "xyz789",
    +  "video_title": "abc123",
       "video_url": "abc123"
     }
     
    @@ -62667,7 +62408,7 @@
    Example
    "page_info": SearchResultPageInfo, "related_terms": ["abc123"], "suggestions": ["xyz789"], - "total_count": 987, + "total_count": 123, "warnings": [ProductSearchWarning] }
    @@ -62875,9 +62616,9 @@
    Fields
    Example
    {
       "disabled": false,
    -  "label": "xyz789",
    -  "position": 987,
    -  "url": "xyz789",
    +  "label": "abc123",
    +  "position": 123,
    +  "url": "abc123",
       "video_content": ProductMediaGalleryEntriesVideoContent
     }
     
    @@ -63097,27 +62838,27 @@
    Possible Types
    Example
    {
    -  "addToCartAllowed": false,
    +  "addToCartAllowed": true,
       "inStock": false,
       "lowStock": true,
       "attributes": [ProductViewAttribute],
       "description": "xyz789",
    -  "id": 4,
    +  "id": "4",
       "images": [ProductViewImage],
       "videos": [ProductViewVideo],
       "lastModifiedAt": "2007-12-03T10:15:30Z",
    -  "metaDescription": "xyz789",
    +  "metaDescription": "abc123",
       "metaKeyword": "abc123",
       "metaTitle": "abc123",
    -  "name": "xyz789",
    +  "name": "abc123",
       "shortDescription": "abc123",
       "inputOptions": [ProductViewInputOption],
       "sku": "abc123",
       "externalId": "abc123",
    -  "url": "abc123",
    +  "url": "xyz789",
       "urlKey": "abc123",
       "links": [ProductViewLink],
    -  "queryType": "abc123",
    +  "queryType": "xyz789",
       "visibility": "xyz789"
     }
     
    @@ -63175,8 +62916,8 @@
    Fields
    Example
    {
    -  "label": "xyz789",
    -  "name": "xyz789",
    +  "label": "abc123",
    +  "name": "abc123",
       "roles": ["xyz789"],
       "value": {}
     }
    @@ -64456,7 +64197,7 @@ 
    Fields
    Example
    {
       "label": "abc123",
    -  "roles": ["abc123"],
    +  "roles": ["xyz789"],
       "url": "xyz789"
     }
     
    @@ -64545,15 +64286,15 @@
    Fields
    Example
    {
       "id": "4",
    -  "title": "xyz789",
    -  "required": true,
    -  "type": "xyz789",
    -  "markupAmount": 987.65,
    +  "title": "abc123",
    +  "required": false,
    +  "type": "abc123",
    +  "markupAmount": 123.45,
       "suffix": "xyz789",
       "sortOrder": 987,
       "range": ProductViewInputOptionRange,
       "imageSize": ProductViewInputOptionImageSize,
    -  "fileExtensions": "abc123"
    +  "fileExtensions": "xyz789"
     }
     
    @@ -64599,7 +64340,7 @@
    Fields
    Example
    -
    {"width": 123, "height": 987}
    +                  
    {"width": 987, "height": 123}
     
    @@ -64691,7 +64432,7 @@
    Fields
    Example
    {
       "product": ProductView,
    -  "linkTypes": ["abc123"]
    +  "linkTypes": ["xyz789"]
     }
     
    @@ -64801,7 +64542,7 @@
    Example
    "id": 4, "multi": true, "required": true, - "title": "abc123", + "title": "xyz789", "values": [ProductViewOptionValue] }
    @@ -64881,7 +64622,7 @@
    Possible Types
    Example
    {
    -  "id": 4,
    +  "id": "4",
       "title": "xyz789",
       "inStock": false
     }
    @@ -64936,8 +64677,8 @@ 
    Fields
    Example
    {
       "id": 4,
    -  "title": "xyz789",
    -  "inStock": false
    +  "title": "abc123",
    +  "inStock": true
     }
     
    @@ -65004,11 +64745,11 @@
    Fields
    Example
    {
    -  "id": 4,
    -  "isDefault": false,
    +  "id": "4",
    +  "isDefault": true,
       "product": SimpleProductView,
    -  "quantity": 987.65,
    -  "title": "abc123",
    +  "quantity": 123.45,
    +  "title": "xyz789",
       "inStock": false
     }
     
    @@ -65071,11 +64812,11 @@
    Fields
    Example
    {
    -  "id": 4,
    +  "id": "4",
       "title": "abc123",
       "type": "TEXT",
    -  "value": "xyz789",
    -  "inStock": true
    +  "value": "abc123",
    +  "inStock": false
     }
     
    @@ -65135,7 +64876,7 @@
    Example
    "final": Price, "regular": Price, "tiers": [ProductViewTierPrice], - "roles": ["xyz789"] + "roles": ["abc123"] }
    @@ -65264,7 +65005,7 @@
    Fields
    Example
    -
    {"in": [123.45]}
    +                  
    {"in": [987.65]}
     
    @@ -65510,8 +65251,8 @@
    Fields
    Example
    {
       "preview": ProductViewImage,
    -  "url": "xyz789",
    -  "description": "abc123",
    +  "url": "abc123",
    +  "description": "xyz789",
       "title": "abc123"
     }
     
    @@ -65564,7 +65305,7 @@
    Fields
    Example
    {
       "date": "2007-12-03T10:15:30Z",
    -  "items": ["xyz789"]
    +  "items": ["abc123"]
     }
     
    @@ -65664,7 +65405,7 @@
    Example
    "approval_flow": [PurchaseOrderRuleApprovalFlow], "available_actions": ["REJECT"], "comments": [PurchaseOrderComment], - "created_at": "abc123", + "created_at": "xyz789", "created_by": Customer, "history_log": [PurchaseOrderHistoryItem], "number": "abc123", @@ -65846,10 +65587,10 @@
    Fields
    Example
    {
       "message": "abc123",
    -  "name": "abc123",
    +  "name": "xyz789",
       "role": "xyz789",
       "status": "PENDING",
    -  "updated_at": "xyz789"
    +  "updated_at": "abc123"
     }
     
    @@ -65994,10 +65735,10 @@
    Example
    "created_at": "abc123", "created_by": "abc123", "description": "abc123", - "name": "xyz789", + "name": "abc123", "status": "ENABLED", - "uid": 4, - "updated_at": "abc123" + "uid": "4", + "updated_at": "xyz789" }
    @@ -66300,11 +66041,11 @@
    Fields
    Example
    {
    -  "applies_to": ["4"],
    +  "applies_to": [4],
       "approvers": ["4"],
       "condition": CreatePurchaseOrderApprovalRuleConditionInput,
    -  "description": "xyz789",
    -  "name": "abc123",
    +  "description": "abc123",
    +  "name": "xyz789",
       "status": "ENABLED"
     }
     
    @@ -66570,7 +66311,7 @@
    Example
    "author": Customer, "created_at": "abc123", "text": "xyz789", - "uid": "4" + "uid": 4 }
    @@ -66693,10 +66434,10 @@
    Fields
    Example
    {
    -  "activity": "abc123",
    +  "activity": "xyz789",
       "created_at": "xyz789",
    -  "message": "xyz789",
    -  "uid": "4"
    +  "message": "abc123",
    +  "uid": 4
     }
     
    @@ -67050,7 +66791,7 @@
    Example
    {
       "company_purchase_orders": true,
       "created_date": FilterRangeTypeInput,
    -  "my_approvals": false,
    +  "my_approvals": true,
       "require_my_approval": false,
       "status": "PENDING"
     }
    @@ -67097,7 +66838,7 @@ 
    Fields
    Example
    {
    -  "customerGroup": "xyz789",
    +  "customerGroup": "abc123",
       "userViewHistory": [ViewHistoryInput]
     }
     
    @@ -67256,8 +66997,8 @@
    Fields
    Example
    {
    -  "item_id": 4,
    -  "item_uid": "4",
    +  "item_id": "4",
    +  "item_uid": 4,
       "note": "abc123",
       "templateId": 4
     }
    @@ -67306,7 +67047,7 @@ 
    Fields
    Example
    {
    -  "message": "abc123",
    +  "message": "xyz789",
       "type": "abc123"
     }
     
    @@ -67367,7 +67108,7 @@
    Example
    "count": 123, "from": 987.65, "title": "abc123", - "to": 987.65 + "to": 123.45 }
    @@ -67517,7 +67258,7 @@
    Fields
    Example
    -
    {"from": 123.45, "to": 123.45}
    +                  
    {"from": 987.65, "to": 987.65}
     
    @@ -67560,7 +67301,7 @@
    Fields
    Example
    {
       "configurations": ReCaptchaConfiguration,
    -  "is_enabled": false
    +  "is_enabled": true
     }
     
    @@ -67638,14 +67379,14 @@
    Fields
    Example
    {
    -  "badge_position": "abc123",
    -  "language_code": "abc123",
    +  "badge_position": "xyz789",
    +  "language_code": "xyz789",
       "minimum_score": 123.45,
       "re_captcha_type": "INVISIBLE",
    -  "technical_failure_message": "xyz789",
    +  "technical_failure_message": "abc123",
       "theme": "abc123",
       "validation_failure_message": "xyz789",
    -  "website_key": "abc123"
    +  "website_key": "xyz789"
     }
     
    @@ -67727,9 +67468,9 @@
    Example
    "forms": ["PLACE_ORDER"], "is_enabled": true, "language_code": "abc123", - "minimum_score": 987.65, - "theme": "xyz789", - "website_key": "xyz789" + "minimum_score": 123.45, + "theme": "abc123", + "website_key": "abc123" }
    @@ -67783,7 +67524,7 @@
    Example
    {
       "configurations": ReCaptchaConfiguration,
       "form_type": "PLACE_ORDER",
    -  "is_enabled": true
    +  "is_enabled": false
     }
     
    @@ -68033,14 +67774,14 @@
    Fields
    Example
    {
       "displayOrder": 987,
    -  "pageType": "abc123",
    +  "pageType": "xyz789",
       "productsView": [ProductView],
       "storefrontLabel": "abc123",
    -  "totalProducts": 987,
    +  "totalProducts": 123,
       "typeId": "abc123",
       "unitId": "abc123",
    -  "unitName": "abc123",
    -  "userError": "abc123"
    +  "unitName": "xyz789",
    +  "userError": "xyz789"
     }
     
    @@ -68133,8 +67874,8 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    -  "id": 987,
    +  "code": "abc123",
    +  "id": 123,
       "name": "abc123"
     }
     
    @@ -68265,8 +68006,8 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    -  "coupon_codes": ["xyz789"]
    +  "cart_id": "abc123",
    +  "coupon_codes": ["abc123"]
     }
     
    @@ -68315,8 +68056,8 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    -  "gift_card_code": "xyz789"
    +  "cart_id": "xyz789",
    +  "gift_card_code": "abc123"
     }
     
    @@ -68524,10 +68265,7 @@
    Fields
    Example
    -
    {
    -  "cart_id": "abc123",
    -  "cart_item_uid": "4"
    -}
    +                  
    {"cart_id": "abc123", "cart_item_uid": 4}
     
    @@ -68748,10 +68486,7 @@
    Fields
    Example
    -
    {
    -  "products": ["4"],
    -  "uid": "4"
    -}
    +                  
    {"products": [4], "uid": "4"}
     
    @@ -68840,7 +68575,7 @@
    Fields
    Example
    -
    {"return_shipping_tracking_uid": 4}
    +                  
    {"return_shipping_tracking_uid": "4"}
     
    @@ -69057,7 +68792,7 @@
    Example
    {
       "quote_comment": "abc123",
       "quote_name": "abc123",
    -  "quote_uid": "4"
    +  "quote_uid": 4
     }
     
    @@ -69207,9 +68942,9 @@
    Fields
    Example
    {
       "comment_text": "abc123",
    -  "contact_email": "abc123",
    +  "contact_email": "xyz789",
       "items": [RequestReturnItemInput],
    -  "token": "xyz789"
    +  "token": "abc123"
     }
     
    @@ -69272,7 +69007,7 @@
    Example
    {
       "cart_id": 4,
       "comment": NegotiableQuoteCommentInput,
    -  "is_draft": false,
    +  "is_draft": true,
       "quote_name": "xyz789"
     }
     
    @@ -69416,7 +69151,7 @@
    Fields
    Example
    {
       "comment_text": "abc123",
    -  "contact_email": "abc123",
    +  "contact_email": "xyz789",
       "items": [RequestReturnItemInput],
       "order_uid": "4"
     }
    @@ -69482,8 +69217,8 @@ 
    Example
    "entered_custom_attributes": [ EnteredCustomAttributeInput ], - "order_item_uid": 4, - "quantity_to_return": 987.65, + "order_item_uid": "4", + "quantity_to_return": 123.45, "selected_custom_attributes": [ SelectedCustomAttributeInput ] @@ -69639,7 +69374,7 @@
    pageSize
    Example
    {
    -  "description": "xyz789",
    +  "description": "abc123",
       "items": RequistionListItems,
       "items_count": 987,
       "name": "abc123",
    @@ -69801,9 +69536,9 @@ 
    Example
    {
       "customizable_options": [SelectedCustomizableOption],
       "product": ProductInterface,
    -  "quantity": 987.65,
    +  "quantity": 123.45,
       "sku": "abc123",
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -69871,10 +69606,10 @@
    Fields
    Example
    {
       "entered_options": [EnteredOptionInput],
    -  "parent_sku": "abc123",
    -  "quantity": 123.45,
    -  "selected_options": ["xyz789"],
    -  "sku": "xyz789"
    +  "parent_sku": "xyz789",
    +  "quantity": 987.65,
    +  "selected_options": ["abc123"],
    +  "sku": "abc123"
     }
     
    @@ -70170,7 +69905,7 @@
    Example
    "created_at": "abc123", "customer": ReturnCustomer, "items": [ReturnItem], - "number": "xyz789", + "number": "abc123", "order": CustomerOrder, "shipping": ReturnShipping, "status": "PENDING", @@ -70231,8 +69966,8 @@
    Fields
    Example
    {
    -  "author_name": "abc123",
    -  "created_at": "xyz789",
    +  "author_name": "xyz789",
    +  "created_at": "abc123",
       "text": "abc123",
       "uid": "4"
     }
    @@ -70288,7 +70023,7 @@ 
    Example
    {
       "email": "abc123",
       "firstname": "xyz789",
    -  "lastname": "xyz789"
    +  "lastname": "abc123"
     }
     
    @@ -70357,7 +70092,7 @@
    Example
    {
       "custom_attributesV2": [AttributeValueInterface],
       "order_item": OrderItemInterface,
    -  "quantity": 123.45,
    +  "quantity": 987.65,
       "request_quantity": 123.45,
       "status": "PENDING",
       "uid": "4"
    @@ -70462,16 +70197,16 @@ 
    Fields
    Example
    {
    -  "code": "4",
    +  "code": 4,
       "default_value": "xyz789",
       "entity_type": "CATALOG_PRODUCT",
       "frontend_class": "xyz789",
       "frontend_input": "BOOLEAN",
       "input_filter": "NONE",
    -  "is_required": true,
    +  "is_required": false,
       "is_unique": true,
    -  "label": "xyz789",
    -  "multiline_count": 987,
    +  "label": "abc123",
    +  "multiline_count": 123,
       "options": [CustomAttributeOptionInterface],
       "sort_order": 987,
       "validate_rules": [ValidationRule]
    @@ -70680,13 +70415,13 @@ 
    Fields
    Example
    {
    -  "city": "xyz789",
    -  "contact_name": "xyz789",
    +  "city": "abc123",
    +  "contact_name": "abc123",
       "country": Country,
    -  "postcode": "abc123",
    +  "postcode": "xyz789",
       "region": Region,
       "street": ["abc123"],
    -  "telephone": "abc123"
    +  "telephone": "xyz789"
     }
     
    @@ -70733,7 +70468,7 @@
    Fields
    Example
    {
    -  "label": "abc123",
    +  "label": "xyz789",
       "uid": "4"
     }
     
    @@ -70840,7 +70575,7 @@
    Fields
    Example
    -
    {"text": "xyz789", "type": "INFORMATION"}
    +                  
    {"text": "abc123", "type": "INFORMATION"}
     
    @@ -71494,7 +71229,7 @@
    Fields
    Example
    {
    -  "name": "xyz789",
    +  "name": "abc123",
       "value": "abc123"
     }
     
    @@ -71542,8 +71277,8 @@
    Fields
    Example
    {
    -  "message": "xyz789",
    -  "timestamp": "xyz789"
    +  "message": "abc123",
    +  "timestamp": "abc123"
     }
     
    @@ -71595,7 +71330,7 @@
    Fields
    Example
    {
    -  "count": 987,
    +  "count": 123,
       "id": "4",
       "title": "xyz789"
     }
    @@ -71726,12 +71461,12 @@ 
    Fields
    Example
    {
    -  "attribute": "abc123",
    -  "contains": "abc123",
    +  "attribute": "xyz789",
    +  "contains": "xyz789",
       "eq": "abc123",
    -  "in": ["xyz789"],
    +  "in": ["abc123"],
       "range": SearchRangeInput,
    -  "startsWith": "xyz789"
    +  "startsWith": "abc123"
     }
     
    @@ -71779,7 +71514,7 @@
    Fields
    Example
    -
    {"from": 123.45, "to": 987.65}
    +                  
    {"from": 987.65, "to": 987.65}
     
    @@ -71829,7 +71564,7 @@
    Fields
    Example
    -
    {"current_page": 987, "page_size": 987, "total_pages": 123}
    +                  
    {"current_page": 987, "page_size": 123, "total_pages": 123}
     
    @@ -71886,8 +71621,8 @@
    Fields
    Example
    {
       "label": "abc123",
    -  "type": "xyz789",
    -  "uid": 4,
    +  "type": "abc123",
    +  "uid": "4",
       "values": [SelectedBundleOptionValue]
     }
     
    @@ -71954,7 +71689,7 @@
    Example
    "original_price": Money, "priceV2": Money, "quantity": 123.45, - "uid": "4" + "uid": 4 }
    @@ -72011,7 +71746,7 @@
    Fields
    Example
    {
    -  "configurable_product_option_uid": "4",
    +  "configurable_product_option_uid": 4,
       "configurable_product_option_value_uid": "4",
       "option_label": "xyz789",
       "value_label": "xyz789"
    @@ -72064,7 +71799,7 @@ 
    Fields
    Example
    {
       "attribute_code": "abc123",
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -72132,9 +71867,9 @@
    Fields
    Example
    {
       "customizable_option_uid": 4,
    -  "is_required": true,
    +  "is_required": false,
       "label": "abc123",
    -  "sort_order": 987,
    +  "sort_order": 123,
       "type": "abc123",
       "values": [SelectedCustomizableOptionValue]
     }
    @@ -72193,10 +71928,10 @@ 
    Fields
    Example
    {
    -  "customizable_option_value_uid": 4,
    +  "customizable_option_value_uid": "4",
       "label": "abc123",
       "price": CartItemSelectedOptionValuePrice,
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -72255,8 +71990,8 @@
    Example
    {
       "code": "xyz789",
       "oope_payment_method_config": OopePaymentMethodConfig,
    -  "purchase_order_number": "xyz789",
    -  "title": "xyz789"
    +  "purchase_order_number": "abc123",
    +  "title": "abc123"
     }
     
    @@ -72336,9 +72071,9 @@
    Example
    "additional_data": [ShippingAdditionalData], "amount": Money, "carrier_code": "abc123", - "carrier_title": "xyz789", + "carrier_title": "abc123", "method_code": "abc123", - "method_title": "xyz789", + "method_title": "abc123", "price_excl_tax": Money, "price_incl_tax": Money } @@ -72388,10 +72123,7 @@
    Fields
    Example
    -
    {
    -  "comment": NegotiableQuoteCommentInput,
    -  "quote_uid": "4"
    -}
    +                  
    {"comment": NegotiableQuoteCommentInput, "quote_uid": 4}
     
    @@ -72566,7 +72298,7 @@
    Fields
    Example
    -
    {"error": "abc123", "success": false}
    +                  
    {"error": "abc123", "success": true}
     
    @@ -72613,10 +72345,7 @@
    Fields
    Example
    -
    {
    -  "custom_attributes": [CustomAttributeInput],
    -  "id": "4"
    -}
    +                  
    {"custom_attributes": [CustomAttributeInput], "id": 4}
     
    @@ -72814,9 +72543,9 @@
    Example
    {
       "cart_id": "abc123",
       "gift_message": GiftMessageInput,
    -  "gift_receipt_included": false,
    -  "gift_wrapping_id": "4",
    -  "printed_card_included": true
    +  "gift_receipt_included": true,
    +  "gift_wrapping_id": 4,
    +  "printed_card_included": false
     }
     
    @@ -72906,7 +72635,7 @@
    Fields
    Example
    {
       "cart_id": "xyz789",
    -  "email": "xyz789"
    +  "email": "abc123"
     }
     
    @@ -73036,7 +72765,7 @@
    Fields
    Example
    {
       "billing_address": NegotiableQuoteBillingAddressInput,
    -  "quote_uid": "4"
    +  "quote_uid": 4
     }
     
    @@ -73126,7 +72855,7 @@
    Fields
    Example
    {
       "payment_method": NegotiableQuotePaymentMethodInput,
    -  "quote_uid": "4"
    +  "quote_uid": 4
     }
     
    @@ -73447,7 +73176,7 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    +  "cart_id": "abc123",
       "payment_method": PaymentMethodInput
     }
     
    @@ -73627,7 +73356,7 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    +  "cart_id": "abc123",
       "shipping_methods": [ShippingMethodInput]
     }
     
    @@ -73717,7 +73446,7 @@
    Fields
    Example
    {
    -  "email": "abc123",
    +  "email": "xyz789",
       "name": "xyz789"
     }
     
    @@ -73807,8 +73536,8 @@
    Fields
    Example
    {
    -  "message": "abc123",
    -  "name": "xyz789"
    +  "message": "xyz789",
    +  "name": "abc123"
     }
     
    @@ -73994,7 +73723,7 @@
    Fields
    Example
    {
       "code": "MAX_RECIPIENTS_EXCEEDED",
    -  "message": "xyz789"
    +  "message": "abc123"
     }
     
    @@ -74105,7 +73834,7 @@
    Fields
    Example
    {
       "requisition_list": RequisitionList,
    -  "sender_name": "xyz789"
    +  "sender_name": "abc123"
     }
     
    @@ -74217,11 +73946,11 @@
    Fields
    Example
    {
    -  "id": 4,
    +  "id": "4",
       "order_item": OrderItemInterface,
       "product_name": "abc123",
       "product_sale_price": Money,
    -  "product_sku": "abc123",
    +  "product_sku": "xyz789",
       "quantity_shipped": 987.65
     }
     
    @@ -74320,8 +74049,8 @@
    Example
    "order_item": OrderItemInterface, "product_name": "abc123", "product_sale_price": Money, - "product_sku": "xyz789", - "quantity_shipped": 987.65 + "product_sku": "abc123", + "quantity_shipped": 123.45 }
    @@ -74378,10 +74107,10 @@
    Fields
    Example
    {
    -  "carrier": "abc123",
    -  "number": "abc123",
    -  "title": "abc123",
    -  "tracking_url": "xyz789"
    +  "carrier": "xyz789",
    +  "number": "xyz789",
    +  "title": "xyz789",
    +  "tracking_url": "abc123"
     }
     
    @@ -74430,7 +74159,7 @@
    Fields
    Example
    {
    -  "key": "xyz789",
    +  "key": "abc123",
       "value": "xyz789"
     }
     
    @@ -74500,7 +74229,7 @@
    Example
    {
       "address": CartAddressInput,
       "customer_address_id": 123,
    -  "customer_address_uid": "4",
    +  "customer_address_uid": 4,
       "customer_notes": "abc123",
       "pickup_location_code": "xyz789"
     }
    @@ -74663,28 +74392,28 @@ 
    Example
    {
       "available_shipping_methods": [AvailableShippingMethod],
       "cart_items_v2": [CartItemInterface],
    -  "city": "abc123",
    +  "city": "xyz789",
       "company": "xyz789",
       "country": CartAddressCountry,
       "custom_attributes": [AttributeValueInterface],
    -  "customer_address_uid": "4",
    +  "customer_address_uid": 4,
       "customer_notes": "abc123",
       "fax": "xyz789",
       "firstname": "xyz789",
    -  "id": 123,
    -  "lastname": "abc123",
    +  "id": 987,
    +  "lastname": "xyz789",
       "middlename": "abc123",
       "pickup_location_code": "abc123",
    -  "postcode": "xyz789",
    -  "prefix": "xyz789",
    +  "postcode": "abc123",
    +  "prefix": "abc123",
       "region": CartAddressRegion,
    -  "same_as_billing": true,
    +  "same_as_billing": false,
       "selected_shipping_method": SelectedShippingMethod,
       "street": ["abc123"],
       "suffix": "abc123",
    -  "telephone": "xyz789",
    -  "uid": "4",
    -  "vat_id": "abc123"
    +  "telephone": "abc123",
    +  "uid": 4,
    +  "vat_id": "xyz789"
     }
     
    @@ -74975,7 +74704,7 @@
    Fields
    Example
    {
       "available_gift_wrapping": [GiftWrapping],
    -  "backorder_message": "xyz789",
    +  "backorder_message": "abc123",
       "custom_attributes": [CustomAttribute],
       "customizable_options": [SelectedCustomizableOption],
       "discount": [Discount],
    @@ -74983,16 +74712,16 @@ 
    Example
    "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, "is_available": true, - "is_salable": true, - "max_qty": 987.65, + "is_salable": false, + "max_qty": 123.45, "min_qty": 123.45, - "not_available_message": "abc123", + "not_available_message": "xyz789", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 123.45, - "uid": "4" + "quantity": 987.65, + "uid": 4 }
    @@ -75249,45 +74978,45 @@
    Example
    {
       "canonical_url": "xyz789",
       "categories": [CategoryInterface],
    -  "country_of_manufacture": "xyz789",
    +  "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    -  "gift_message_available": true,
    +  "gift_message_available": false,
       "gift_wrapping_available": false,
       "gift_wrapping_price": Money,
       "image": ProductImage,
       "is_returnable": "xyz789",
    -  "manufacturer": 123,
    -  "max_sale_qty": 987.65,
    +  "manufacturer": 987,
    +  "max_sale_qty": 123.45,
       "media_gallery": [MediaGalleryInterface],
       "meta_description": "abc123",
       "meta_keyword": "xyz789",
    -  "meta_title": "xyz789",
    +  "meta_title": "abc123",
       "min_sale_qty": 123.45,
       "name": "xyz789",
       "new_from_date": "abc123",
    -  "new_to_date": "abc123",
    +  "new_to_date": "xyz789",
       "only_x_left_in_stock": 123.45,
       "options": [CustomizableOptionInterface],
    -  "options_container": "xyz789",
    +  "options_container": "abc123",
       "price_range": PriceRange,
       "price_tiers": [TierPrice],
       "product_links": [ProductLinksInterface],
    -  "quantity": 123.45,
    +  "quantity": 987.65,
       "related_products": [ProductInterface],
       "short_description": ComplexTextValue,
    -  "sku": "xyz789",
    +  "sku": "abc123",
       "small_image": ProductImage,
    -  "special_price": 123.45,
    +  "special_price": 987.65,
       "special_to_date": "abc123",
       "stock_status": "IN_STOCK",
       "swatch_image": "xyz789",
       "thumbnail": ProductImage,
    -  "uid": "4",
    +  "uid": 4,
       "upsell_products": [ProductInterface],
    -  "url_key": "xyz789",
    -  "weight": 123.45
    +  "url_key": "abc123",
    +  "weight": 987.65
     }
     
    @@ -75492,28 +75221,28 @@
    linkTypesExample
    {
       "addToCartAllowed": false,
    -  "inStock": false,
    +  "inStock": true,
       "lowStock": false,
       "attributes": [ProductViewAttribute],
    -  "description": "abc123",
    +  "description": "xyz789",
       "id": "4",
       "images": [ProductViewImage],
       "videos": [ProductViewVideo],
       "inputOptions": [ProductViewInputOption],
       "lastModifiedAt": "2007-12-03T10:15:30Z",
    -  "metaDescription": "xyz789",
    +  "metaDescription": "abc123",
       "metaKeyword": "abc123",
       "metaTitle": "xyz789",
       "name": "xyz789",
       "price": ProductViewPrice,
    -  "shortDescription": "abc123",
    -  "sku": "abc123",
    +  "shortDescription": "xyz789",
    +  "sku": "xyz789",
       "externalId": "xyz789",
       "url": "xyz789",
       "urlKey": "abc123",
       "links": [ProductViewLink],
       "queryType": "abc123",
    -  "visibility": "xyz789"
    +  "visibility": "abc123"
     }
     
    @@ -75579,8 +75308,8 @@
    Example
    "customizable_options": [SelectedCustomizableOption], "product": ProductInterface, "quantity": 123.45, - "sku": "abc123", - "uid": 4 + "sku": "xyz789", + "uid": "4" }
    @@ -75648,12 +75377,12 @@
    Fields
    Example
    {
    -  "added_at": "xyz789",
    +  "added_at": "abc123",
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "xyz789",
    -  "id": "4",
    +  "description": "abc123",
    +  "id": 4,
       "product": ProductInterface,
    -  "quantity": 987.65
    +  "quantity": 123.45
     }
     
    @@ -75800,14 +75529,14 @@
    Example
    {
       "app_switch_when_available": true,
       "button_styles": ButtonStyles,
    -  "code": "xyz789",
    +  "code": "abc123",
       "display_message": true,
    -  "display_venmo": false,
    -  "is_visible": true,
    +  "display_venmo": true,
    +  "is_visible": false,
       "message_styles": MessageStyles,
    -  "payment_intent": "abc123",
    +  "payment_intent": "xyz789",
       "sdk_params": [SDKParams],
    -  "sort_order": "abc123",
    +  "sort_order": "xyz789",
       "title": "abc123"
     }
     
    @@ -75904,8 +75633,8 @@
    Fields
    Example
    {
    -  "label": "abc123",
    -  "value": "abc123"
    +  "label": "xyz789",
    +  "value": "xyz789"
     }
     
    @@ -75952,7 +75681,7 @@
    Fields
    Example
    {
    -  "default": "abc123",
    +  "default": "xyz789",
       "options": [SortField]
     }
     
    @@ -76277,7 +76006,7 @@
    Fields
    Example
    {
       "attribute": "abc123",
    -  "frontendInput": "xyz789",
    +  "frontendInput": "abc123",
       "label": "abc123",
       "numeric": true
     }
    @@ -77100,152 +76829,152 @@ 
    Fields
    Example
    {
    -  "allow_company_registration": false,
    -  "allow_gift_receipt": "abc123",
    -  "allow_gift_wrapping_on_order": "abc123",
    -  "allow_gift_wrapping_on_order_items": "xyz789",
    -  "allow_items": "xyz789",
    +  "allow_company_registration": true,
    +  "allow_gift_receipt": "xyz789",
    +  "allow_gift_wrapping_on_order": "xyz789",
    +  "allow_gift_wrapping_on_order_items": "abc123",
    +  "allow_items": "abc123",
       "allow_order": "xyz789",
    -  "allow_printed_card": "abc123",
    -  "autocomplete_on_storefront": false,
    +  "allow_printed_card": "xyz789",
    +  "autocomplete_on_storefront": true,
       "base_currency_code": "abc123",
       "base_link_url": "abc123",
       "base_media_url": "xyz789",
    -  "base_static_url": "abc123",
    -  "base_url": "abc123",
    -  "cart_expires_in_days": 123,
    -  "cart_gift_wrapping": "abc123",
    +  "base_static_url": "xyz789",
    +  "base_url": "xyz789",
    +  "cart_expires_in_days": 987,
    +  "cart_gift_wrapping": "xyz789",
       "cart_merge_preference": "abc123",
       "cart_printed_card": "xyz789",
    -  "cart_summary_display_quantity": 987,
    -  "catalog_default_sort_by": "abc123",
    +  "cart_summary_display_quantity": 123,
    +  "catalog_default_sort_by": "xyz789",
       "category_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS",
    -  "category_url_suffix": "abc123",
    -  "check_money_order_enable_for_specific_countries": true,
    -  "check_money_order_enabled": false,
    -  "check_money_order_make_check_payable_to": "xyz789",
    -  "check_money_order_max_order_total": "abc123",
    -  "check_money_order_min_order_total": "abc123",
    +  "category_url_suffix": "xyz789",
    +  "check_money_order_enable_for_specific_countries": false,
    +  "check_money_order_enabled": true,
    +  "check_money_order_make_check_payable_to": "abc123",
    +  "check_money_order_max_order_total": "xyz789",
    +  "check_money_order_min_order_total": "xyz789",
       "check_money_order_new_order_status": "abc123",
       "check_money_order_payment_from_specific_countries": "abc123",
       "check_money_order_send_check_to": "abc123",
       "check_money_order_sort_order": 123,
       "check_money_order_title": "xyz789",
    -  "company_credit_enabled": true,
    +  "company_credit_enabled": false,
       "company_enabled": true,
       "configurable_product_image": "ITSELF",
       "configurable_thumbnail_source": "xyz789",
    -  "contact_enabled": true,
    +  "contact_enabled": false,
       "countries_with_required_region": "xyz789",
       "create_account_confirmation": true,
       "customer_access_token_lifetime": 123.45,
       "default_country": "xyz789",
    -  "default_display_currency_code": "xyz789",
    -  "display_product_prices_in_catalog": 123,
    -  "display_shipping_prices": 987,
    -  "display_state_if_optional": false,
    +  "default_display_currency_code": "abc123",
    +  "display_product_prices_in_catalog": 987,
    +  "display_shipping_prices": 123,
    +  "display_state_if_optional": true,
       "enable_multiple_wishlists": "xyz789",
       "fixed_product_taxes_apply_tax_to_fpt": true,
    -  "fixed_product_taxes_display_prices_in_emails": 123,
    +  "fixed_product_taxes_display_prices_in_emails": 987,
       "fixed_product_taxes_display_prices_in_product_lists": 123,
       "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": false,
    -  "graphql_share_customer_group": true,
    +  "fixed_product_taxes_include_fpt_in_subtotal": true,
    +  "graphql_share_customer_group": false,
       "grid_per_page": 987,
    -  "grid_per_page_values": "abc123",
    +  "grid_per_page_values": "xyz789",
       "grouped_product_image": "ITSELF",
    -  "is_checkout_agreements_enabled": false,
    -  "is_default_store": false,
    +  "is_checkout_agreements_enabled": true,
    +  "is_default_store": true,
       "is_default_store_group": false,
    -  "is_guest_checkout_enabled": true,
    -  "is_negotiable_quote_active": true,
    +  "is_guest_checkout_enabled": false,
    +  "is_negotiable_quote_active": false,
       "is_one_page_checkout_enabled": true,
       "is_requisition_list_active": "abc123",
       "list_mode": "xyz789",
    -  "list_per_page": 987,
    +  "list_per_page": 123,
       "list_per_page_values": "xyz789",
    -  "locale": "abc123",
    -  "magento_reward_general_is_enabled": "xyz789",
    +  "locale": "xyz789",
    +  "magento_reward_general_is_enabled": "abc123",
       "magento_reward_general_is_enabled_on_front": "xyz789",
       "magento_reward_general_min_points_balance": "xyz789",
       "magento_reward_general_publish_history": "abc123",
       "magento_reward_points_invitation_customer": "abc123",
       "magento_reward_points_invitation_customer_limit": "abc123",
       "magento_reward_points_invitation_order": "abc123",
    -  "magento_reward_points_invitation_order_limit": "abc123",
    +  "magento_reward_points_invitation_order_limit": "xyz789",
       "magento_reward_points_newsletter": "abc123",
    -  "magento_reward_points_order": "abc123",
    +  "magento_reward_points_order": "xyz789",
       "magento_reward_points_register": "xyz789",
    -  "magento_reward_points_review": "xyz789",
    -  "magento_reward_points_review_limit": "abc123",
    -  "magento_wishlist_general_is_enabled": "xyz789",
    -  "max_items_in_order_summary": 987,
    -  "maximum_number_of_wishlists": "xyz789",
    -  "minicart_display": true,
    +  "magento_reward_points_review": "abc123",
    +  "magento_reward_points_review_limit": "xyz789",
    +  "magento_wishlist_general_is_enabled": "abc123",
    +  "max_items_in_order_summary": 123,
    +  "maximum_number_of_wishlists": "abc123",
    +  "minicart_display": false,
       "minicart_max_items": 987,
    -  "minimum_password_length": "abc123",
    -  "newsletter_enabled": false,
    +  "minimum_password_length": "xyz789",
    +  "newsletter_enabled": true,
       "optional_zip_countries": "abc123",
       "order_cancellation_enabled": true,
       "order_cancellation_reasons": [CancellationReason],
       "orders_invoices_credit_memos_display_full_summary": true,
    -  "orders_invoices_credit_memos_display_grandtotal": false,
    -  "orders_invoices_credit_memos_display_price": 987,
    -  "orders_invoices_credit_memos_display_shipping_amount": 123,
    +  "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": 987,
    -  "orders_invoices_credit_memos_display_zero_tax": false,
    +  "orders_invoices_credit_memos_display_zero_tax": true,
       "printed_card_priceV2": Money,
       "product_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS",
    -  "product_url_suffix": "xyz789",
    -  "quickorder_active": true,
    +  "product_url_suffix": "abc123",
    +  "quickorder_active": false,
       "quote_minimum_amount": 123.45,
       "quote_minimum_amount_message": "xyz789",
    -  "required_character_classes_number": "xyz789",
    +  "required_character_classes_number": "abc123",
       "requisition_list_share_link_validity_days": 123,
    -  "requisition_list_share_max_recipients": 987,
    -  "requisition_list_share_storefront_path": "abc123",
    -  "requisition_list_sharing_enabled": true,
    +  "requisition_list_share_max_recipients": 123,
    +  "requisition_list_share_storefront_path": "xyz789",
    +  "requisition_list_sharing_enabled": false,
       "returns_enabled": "abc123",
       "root_category_uid": 4,
       "sales_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS",
       "sales_gift_wrapping": "abc123",
    -  "sales_printed_card": "xyz789",
    -  "secure_base_link_url": "xyz789",
    +  "sales_printed_card": "abc123",
    +  "secure_base_link_url": "abc123",
       "secure_base_media_url": "abc123",
       "secure_base_static_url": "xyz789",
       "secure_base_url": "abc123",
       "share_active_segments": true,
    -  "share_applied_cart_rule": true,
    +  "share_applied_cart_rule": false,
       "shopping_assistance_checkbox_title": "abc123",
       "shopping_assistance_checkbox_tooltip": "xyz789",
       "shopping_assistance_enabled": false,
       "shopping_cart_display_full_summary": true,
    -  "shopping_cart_display_grand_total": true,
    +  "shopping_cart_display_grand_total": false,
       "shopping_cart_display_price": 987,
       "shopping_cart_display_shipping": 987,
       "shopping_cart_display_subtotal": 123,
       "shopping_cart_display_tax_gift_wrapping": "DISPLAY_EXCLUDING_TAX",
       "shopping_cart_display_zero_tax": true,
       "store_code": 4,
    -  "store_group_code": "4",
    +  "store_group_code": 4,
       "store_group_name": "abc123",
       "store_name": "xyz789",
       "store_sort_order": 123,
       "timezone": "abc123",
    -  "title_separator": "xyz789",
    +  "title_separator": "abc123",
       "use_store_in_url": false,
    -  "website_code": 4,
    +  "website_code": "4",
       "website_name": "abc123",
    -  "weight_unit": "xyz789",
    -  "zero_subtotal_enable_for_specific_countries": false,
    -  "zero_subtotal_enabled": true,
    -  "zero_subtotal_new_order_status": "abc123",
    +  "weight_unit": "abc123",
    +  "zero_subtotal_enable_for_specific_countries": true,
    +  "zero_subtotal_enabled": false,
    +  "zero_subtotal_new_order_status": "xyz789",
       "zero_subtotal_payment_action": "abc123",
       "zero_subtotal_payment_from_specific_countries": "xyz789",
       "zero_subtotal_sort_order": 987,
    -  "zero_subtotal_title": "abc123"
    +  "zero_subtotal_title": "xyz789"
     }
     
    @@ -77438,13 +77167,13 @@
    Example
    {
       "attachments": [NegotiableQuoteCommentAttachmentInput],
       "comment": "xyz789",
    -  "max_order_commitment": 987,
    -  "min_order_commitment": 123,
    -  "name": "abc123",
    +  "max_order_commitment": 123,
    +  "min_order_commitment": 987,
    +  "name": "xyz789",
       "reference_document_links": [
         NegotiableQuoteTemplateReferenceDocumentLinkInput
       ],
    -  "template_id": 4
    +  "template_id": "4"
     }
     
    @@ -77595,7 +77324,7 @@
    Fields
    Example
    -
    {"depth": 123, "startLevel": 987}
    +                  
    {"depth": 987, "startLevel": 123}
     
    @@ -77931,7 +77660,7 @@
    Fields
    Example
    {
       "cartId": "xyz789",
    -  "id": "xyz789"
    +  "id": "abc123"
     }
     
    @@ -77984,7 +77713,7 @@
    Fields
    Example
    {
       "amount": Money,
    -  "rate": 987.65,
    +  "rate": 123.45,
       "title": "xyz789"
     }
     
    @@ -78074,7 +77803,7 @@
    Fields
    Example
    -
    {"value": "abc123"}
    +                  
    {"value": "xyz789"}
     
    @@ -78183,89 +77912,8 @@
    Example
    {
       "discount": ProductDiscount,
       "final_price": Money,
    -  "quantity": 123.45
    +  "quantity": 987.65
     }
    -
    - - - back to top - -
    -
    -
    - Types -
    -

    UnassignChildCompanyInput

    -
    -
    -
    -
    Description
    -

    Defines the input schema for unassigning a child company from its parent company.

    -
    -
    -
    Fields
    - - - - - - - - - - - - - -
    Input FieldDescription
    - child_company_id - ID! - The unique ID of the child company.
    -
    -
    -
    -
    -
    Example
    -
    {"child_company_id": 4}
    -
    -
    -
    - back to top -
    -
    -
    -
    - Types -
    -

    UnassignChildCompanyOutput

    -
    -
    -
    -
    Description
    -

    Contains the response to the request to unassign a child company.

    -
    -
    -
    Fields
    - - - - - - - - - - - - - -
    Field NameDescription
    company_hierarchy - CompanyHierarchy! - The updated company relation hierarchy for the current company.
    -
    -
    -
    -
    -
    Example
    -
    {"company_hierarchy": CompanyHierarchy}
     
    @@ -78357,7 +78005,7 @@
    Example
    "storefrontLabel": "abc123", "pagePlacement": "abc123", "displayNumber": 123, - "pageType": "xyz789", + "pageType": "abc123", "unitStatus": "xyz789", "typeId": "abc123", "filterRules": [FilterRuleInput] @@ -78409,7 +78057,7 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    +  "cart_id": "xyz789",
       "cart_items": [CartItemUpdateInput]
     }
     
    @@ -78734,7 +78382,7 @@
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "event_name": "xyz789", + "event_name": "abc123", "message": "xyz789", "privacy_settings": "PRIVATE", "shipping_address": GiftRegistryShippingAddressInput, @@ -78945,10 +78593,10 @@
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "email": "abc123", + "email": "xyz789", "firstname": "abc123", "gift_registry_registrant_uid": 4, - "lastname": "xyz789" + "lastname": "abc123" }
    @@ -79078,7 +78726,7 @@
    Fields
    Example
    {
       "items": [NegotiableQuoteItemQuantityInput],
    -  "quote_uid": "4"
    +  "quote_uid": 4
     }
     
    @@ -79168,7 +78816,7 @@
    Fields
    Example
    {
       "items": [NegotiableQuoteTemplateItemQuantityInput],
    -  "template_id": "4"
    +  "template_id": 4
     }
     
    @@ -79301,7 +78949,7 @@
    Example
    "description": "xyz789", "name": "abc123", "status": "ENABLED", - "uid": 4 + "uid": "4" }
    @@ -79350,8 +78998,8 @@
    Fields
    Example
    {
    -  "description": "abc123",
    -  "name": "xyz789"
    +  "description": "xyz789",
    +  "name": "abc123"
     }
     
    @@ -79413,8 +79061,8 @@
    Fields
    Example
    {
       "entered_options": [EnteredOptionInput],
    -  "item_id": "4",
    -  "quantity": 123.45,
    +  "item_id": 4,
    +  "quantity": 987.65,
       "selected_options": ["xyz789"]
     }
     
    @@ -79547,8 +79195,8 @@
    Fields
    Example
    {
    -  "name": "abc123",
    -  "uid": 4,
    +  "name": "xyz789",
    +  "uid": "4",
       "visibility": "PUBLIC"
     }
     
    @@ -79604,8 +79252,8 @@
    Fields
    Example
    {
    -  "currentPage": 123,
    -  "pageSize": 123,
    +  "currentPage": 987,
    +  "pageSize": 987,
       "sort": [CompaniesSortInput]
     }
     
    @@ -79807,7 +79455,7 @@
    Fields
    Example
    -
    {"purchase_order_uids": ["4"]}
    +                  
    {"purchase_order_uids": [4]}
     
    @@ -80299,7 +79947,7 @@
    Fields
    Example
    {
       "dateTime": "2007-12-03T10:15:30Z",
    -  "sku": "abc123"
    +  "sku": "xyz789"
     }
     
    @@ -80418,21 +80066,21 @@
    Fields
    Example
    {
    -  "backorder_message": "abc123",
    +  "backorder_message": "xyz789",
       "custom_attributes": [CustomAttribute],
       "customizable_options": [SelectedCustomizableOption],
       "discount": [Discount],
       "errors": [CartItemError],
    -  "is_available": false,
    -  "is_salable": false,
    -  "max_qty": 987.65,
    +  "is_available": true,
    +  "is_salable": true,
    +  "max_qty": 123.45,
       "min_qty": 987.65,
       "not_available_message": "abc123",
       "note_from_buyer": [ItemNote],
       "note_from_seller": [ItemNote],
       "prices": CartItemPrices,
       "product": ProductInterface,
    -  "quantity": 123.45,
    +  "quantity": 987.65,
       "uid": 4
     }
     
    @@ -80683,9 +80331,9 @@
    filters
    Example
    {
    -  "canonical_url": "abc123",
    +  "canonical_url": "xyz789",
       "categories": [CategoryInterface],
    -  "country_of_manufacture": "abc123",
    +  "country_of_manufacture": "xyz789",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    @@ -80693,32 +80341,32 @@ 
    Example
    "gift_wrapping_available": false, "gift_wrapping_price": Money, "image": ProductImage, - "is_returnable": "xyz789", + "is_returnable": "abc123", "manufacturer": 987, "max_sale_qty": 987.65, "media_gallery": [MediaGalleryInterface], - "meta_description": "abc123", - "meta_keyword": "xyz789", - "meta_title": "abc123", - "min_sale_qty": 987.65, + "meta_description": "xyz789", + "meta_keyword": "abc123", + "meta_title": "xyz789", + "min_sale_qty": 123.45, "name": "abc123", "new_from_date": "xyz789", - "new_to_date": "xyz789", - "only_x_left_in_stock": 987.65, + "new_to_date": "abc123", + "only_x_left_in_stock": 123.45, "options": [CustomizableOptionInterface], "options_container": "abc123", "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], - "quantity": 987.65, + "quantity": 123.45, "related_products": [ProductInterface], "short_description": ComplexTextValue, "sku": "xyz789", "small_image": ProductImage, - "special_price": 123.45, + "special_price": 987.65, "special_to_date": "xyz789", "stock_status": "IN_STOCK", - "swatch_image": "abc123", + "swatch_image": "xyz789", "thumbnail": ProductImage, "uid": "4", "upsell_products": [ProductInterface], @@ -80787,7 +80435,7 @@
    Example
    {
       "customizable_options": [SelectedCustomizableOption],
       "product": ProductInterface,
    -  "quantity": 987.65,
    +  "quantity": 123.45,
       "sku": "abc123",
       "uid": "4"
     }
    @@ -80860,7 +80508,7 @@ 
    Example
    "added_at": "abc123", "customizable_options": [SelectedCustomizableOption], "description": "abc123", - "id": 4, + "id": "4", "product": ProductInterface, "quantity": 987.65 } @@ -81048,11 +80696,11 @@
    pageSize
    Example
    {
    -  "id": 4,
    +  "id": "4",
       "items_count": 987,
       "items_v2": WishlistItems,
    -  "name": "abc123",
    -  "sharing_code": "abc123",
    +  "name": "xyz789",
    +  "sharing_code": "xyz789",
       "updated_at": "xyz789",
       "visibility": "PUBLIC"
     }
    @@ -81232,7 +80880,10 @@ 
    Fields
    Example
    -
    {"quantity": 123.45, "wishlist_item_id": 4}
    +                  
    {
    +  "quantity": 123.45,
    +  "wishlist_item_id": "4"
    +}
     
    @@ -81299,10 +80950,10 @@
    Fields
    Example
    {
       "entered_options": [EnteredOptionInput],
    -  "parent_sku": "abc123",
    +  "parent_sku": "xyz789",
       "quantity": 123.45,
       "selected_options": [4],
    -  "sku": "xyz789"
    +  "sku": "abc123"
     }
     
    @@ -81417,12 +81068,12 @@
    Possible Types
    Example
    {
    -  "added_at": "abc123",
    +  "added_at": "xyz789",
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "xyz789",
    +  "description": "abc123",
       "id": "4",
       "product": ProductInterface,
    -  "quantity": 987.65
    +  "quantity": 123.45
     }
     
    @@ -81539,11 +81190,11 @@
    Fields
    Example
    {
    -  "description": "abc123",
    +  "description": "xyz789",
       "entered_options": [EnteredOptionInput],
       "quantity": 987.65,
       "selected_options": [4],
    -  "wishlist_item_id": "4"
    +  "wishlist_item_id": 4
     }
     
    @@ -81734,9 +81385,9 @@
    Fields
    Example
    {
    -  "key": "abc123",
    -  "message": "xyz789",
    -  "success": true
    +  "key": "xyz789",
    +  "message": "abc123",
    +  "success": false
     }
     
    @@ -81830,8 +81481,8 @@
    Fields
    Example
    {
    -  "expires_at": "xyz789",
    -  "key": "abc123",
    +  "expires_at": "abc123",
    +  "key": "xyz789",
       "upload_url": "abc123"
     }
     
    From c33c9f35af970a938bb06c12f2c77b7e3da5af40 Mon Sep 17 00:00:00 2001 From: Jared Hoover Date: Tue, 2 Jun 2026 17:06:52 -0500 Subject: [PATCH 7/9] remove assignChildCompany and unassignChildCompany from filter --- spectaql/metadata-saas.json | 18 - static/graphql-api/saas/index.html | 3635 +++++++++++++++------------- 2 files changed, 1977 insertions(+), 1676 deletions(-) diff --git a/spectaql/metadata-saas.json b/spectaql/metadata-saas.json index d86b8a00c..4df42f171 100644 --- a/spectaql/metadata-saas.json +++ b/spectaql/metadata-saas.json @@ -23,12 +23,6 @@ "fields": { "completePayByLinkPayment": { "documentation": { "undocumented": true } - }, - "assignChildCompany": { - "documentation": { "undocumented": true } - }, - "unassignChildCompany": { - "documentation": { "undocumented": true } } } }, @@ -67,23 +61,11 @@ }, "CompletePayByLinkPaymentOutput": { "documentation": { "undocumented": true } - }, - "AssignChildCompanyOutput": { - "documentation": { "undocumented": true } - }, - "UnassignChildCompanyOutput": { - "documentation": { "undocumented": true } } }, "INPUT_OBJECT": { "PayByLinkInput": { "documentation": { "undocumented": true } - }, - "AssignChildCompanyInput": { - "documentation": { "undocumented": true } - }, - "UnassignChildCompanyInput": { - "documentation": { "undocumented": true } } }, "INTERFACE": { diff --git a/static/graphql-api/saas/index.html b/static/graphql-api/saas/index.html index 9b4a77ac7..82721d0f8 100644 --- a/static/graphql-api/saas/index.html +++ b/static/graphql-api/saas/index.html @@ -119,6 +119,7 @@
  • AreaInput
  • AssetImage
  • AssetVideo
  • +
  • AssignChildCompanyInput
  • +
  • AssignChildCompanyOutput
  • AssignCompareListToCustomerOutput
  • AttributeEntityTypeEnum
  • AttributeFile
  • @@ -1070,6 +1074,8 @@
  • TextSwatchData
  • ThreeDSMode
  • TierPrice
  • +
  • UnassignChildCompanyInput
  • +
  • UnassignChildCompanyOutput
  • UnitConfigInput
  • UpdateCartItemsInput
  • UpdateCartItemsOutput
  • @@ -1276,7 +1282,7 @@
    Query
    Variables
    -
    {"formCode": "xyz789"}
    +                  
    {"formCode": "abc123"}
     
    @@ -1593,7 +1599,7 @@
    Query
    Variables
    -
    {"useCurrentGroup": false}
    +                  
    {"useCurrentGroup": true}
     
    @@ -1605,150 +1611,150 @@
    Response
    "allow_company_registration": true, "allow_gift_receipt": "xyz789", "allow_gift_wrapping_on_order": "xyz789", - "allow_gift_wrapping_on_order_items": "abc123", + "allow_gift_wrapping_on_order_items": "xyz789", "allow_items": "xyz789", - "allow_order": "abc123", - "allow_printed_card": "xyz789", - "autocomplete_on_storefront": false, - "base_currency_code": "xyz789", - "base_link_url": "abc123", - "base_media_url": "xyz789", + "allow_order": "xyz789", + "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_expires_in_days": 987, + "cart_gift_wrapping": "xyz789", "cart_merge_preference": "abc123", - "cart_printed_card": "abc123", - "cart_summary_display_quantity": 987, + "cart_printed_card": "xyz789", + "cart_summary_display_quantity": 123, "catalog_default_sort_by": "abc123", "category_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", "category_url_suffix": "xyz789", "check_money_order_enable_for_specific_countries": true, - "check_money_order_enabled": false, + "check_money_order_enabled": true, "check_money_order_make_check_payable_to": "xyz789", - "check_money_order_max_order_total": "xyz789", - "check_money_order_min_order_total": "xyz789", + "check_money_order_max_order_total": "abc123", + "check_money_order_min_order_total": "abc123", "check_money_order_new_order_status": "xyz789", "check_money_order_payment_from_specific_countries": "abc123", - "check_money_order_send_check_to": "xyz789", + "check_money_order_send_check_to": "abc123", "check_money_order_sort_order": 123, - "check_money_order_title": "xyz789", + "check_money_order_title": "abc123", "company_credit_enabled": true, "company_enabled": false, "configurable_product_image": "ITSELF", "configurable_thumbnail_source": "xyz789", - "contact_enabled": true, + "contact_enabled": false, "countries_with_required_region": "xyz789", - "create_account_confirmation": true, - "customer_access_token_lifetime": 987.65, + "create_account_confirmation": false, + "customer_access_token_lifetime": 123.45, "default_country": "xyz789", "default_display_currency_code": "xyz789", - "display_product_prices_in_catalog": 987, - "display_shipping_prices": 123, - "display_state_if_optional": true, - "enable_multiple_wishlists": "xyz789", - "fixed_product_taxes_apply_tax_to_fpt": false, + "display_product_prices_in_catalog": 123, + "display_shipping_prices": 987, + "display_state_if_optional": false, + "enable_multiple_wishlists": "abc123", + "fixed_product_taxes_apply_tax_to_fpt": true, "fixed_product_taxes_display_prices_in_emails": 987, - "fixed_product_taxes_display_prices_in_product_lists": 123, - "fixed_product_taxes_display_prices_in_sales_modules": 987, - "fixed_product_taxes_display_prices_on_product_view_page": 123, + "fixed_product_taxes_display_prices_in_product_lists": 987, + "fixed_product_taxes_display_prices_in_sales_modules": 123, + "fixed_product_taxes_display_prices_on_product_view_page": 987, "fixed_product_taxes_enable": false, - "fixed_product_taxes_include_fpt_in_subtotal": true, - "graphql_share_customer_group": true, + "fixed_product_taxes_include_fpt_in_subtotal": false, + "graphql_share_customer_group": false, "grid_per_page": 123, - "grid_per_page_values": "xyz789", + "grid_per_page_values": "abc123", "grouped_product_image": "ITSELF", "is_checkout_agreements_enabled": true, "is_default_store": true, - "is_default_store_group": true, - "is_guest_checkout_enabled": false, + "is_default_store_group": false, + "is_guest_checkout_enabled": true, "is_negotiable_quote_active": false, - "is_one_page_checkout_enabled": false, - "is_requisition_list_active": "xyz789", + "is_one_page_checkout_enabled": true, + "is_requisition_list_active": "abc123", "list_mode": "xyz789", "list_per_page": 987, "list_per_page_values": "xyz789", "locale": "xyz789", - "magento_reward_general_is_enabled": "xyz789", + "magento_reward_general_is_enabled": "abc123", "magento_reward_general_is_enabled_on_front": "xyz789", - "magento_reward_general_min_points_balance": "abc123", - "magento_reward_general_publish_history": "xyz789", + "magento_reward_general_min_points_balance": "xyz789", + "magento_reward_general_publish_history": "abc123", "magento_reward_points_invitation_customer": "xyz789", - "magento_reward_points_invitation_customer_limit": "abc123", + "magento_reward_points_invitation_customer_limit": "xyz789", "magento_reward_points_invitation_order": "abc123", "magento_reward_points_invitation_order_limit": "xyz789", - "magento_reward_points_newsletter": "xyz789", - "magento_reward_points_order": "abc123", - "magento_reward_points_register": "xyz789", + "magento_reward_points_newsletter": "abc123", + "magento_reward_points_order": "xyz789", + "magento_reward_points_register": "abc123", "magento_reward_points_review": "xyz789", - "magento_reward_points_review_limit": "abc123", + "magento_reward_points_review_limit": "xyz789", "magento_wishlist_general_is_enabled": "xyz789", - "max_items_in_order_summary": 123, + "max_items_in_order_summary": 987, "maximum_number_of_wishlists": "abc123", "minicart_display": true, - "minicart_max_items": 987, + "minicart_max_items": 123, "minimum_password_length": "abc123", - "newsletter_enabled": false, + "newsletter_enabled": true, "optional_zip_countries": "xyz789", "order_cancellation_enabled": false, "order_cancellation_reasons": [ CancellationReason ], - "orders_invoices_credit_memos_display_full_summary": true, + "orders_invoices_credit_memos_display_full_summary": false, "orders_invoices_credit_memos_display_grandtotal": false, "orders_invoices_credit_memos_display_price": 987, "orders_invoices_credit_memos_display_shipping_amount": 123, "orders_invoices_credit_memos_display_subtotal": 123, - "orders_invoices_credit_memos_display_zero_tax": true, + "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", + "product_url_suffix": "xyz789", "quickorder_active": false, "quote_minimum_amount": 987.65, - "quote_minimum_amount_message": "abc123", - "required_character_classes_number": "xyz789", - "requisition_list_share_link_validity_days": 987, + "quote_minimum_amount_message": "xyz789", + "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_share_storefront_path": "abc123", "requisition_list_sharing_enabled": true, "returns_enabled": "abc123", "root_category_uid": 4, "sales_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", - "sales_gift_wrapping": "xyz789", - "sales_printed_card": "xyz789", - "secure_base_link_url": "xyz789", + "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_static_url": "abc123", "secure_base_url": "abc123", "share_active_segments": false, - "share_applied_cart_rule": false, + "share_applied_cart_rule": true, "shopping_assistance_checkbox_title": "abc123", "shopping_assistance_checkbox_tooltip": "abc123", "shopping_assistance_enabled": true, - "shopping_cart_display_full_summary": true, + "shopping_cart_display_full_summary": false, "shopping_cart_display_grand_total": true, - "shopping_cart_display_price": 123, + "shopping_cart_display_price": 987, "shopping_cart_display_shipping": 987, - "shopping_cart_display_subtotal": 123, + "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_code": 4, "store_group_name": "xyz789", - "store_name": "xyz789", + "store_name": "abc123", "store_sort_order": 123, - "timezone": "xyz789", - "title_separator": "abc123", - "use_store_in_url": true, - "website_code": "4", + "timezone": "abc123", + "title_separator": "xyz789", + "use_store_in_url": false, + "website_code": 4, "website_name": "xyz789", "weight_unit": "xyz789", "zero_subtotal_enable_for_specific_countries": false, "zero_subtotal_enabled": true, - "zero_subtotal_new_order_status": "xyz789", + "zero_subtotal_new_order_status": "abc123", "zero_subtotal_payment_action": "xyz789", "zero_subtotal_payment_from_specific_countries": "xyz789", - "zero_subtotal_sort_order": 123, + "zero_subtotal_sort_order": 987, "zero_subtotal_title": "abc123" } ] @@ -1883,15 +1889,15 @@
    Response
    ], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "xyz789", + "email": "abc123", "gift_message": GiftMessage, "gift_receipt_included": false, "gift_wrapping": GiftWrapping, - "id": 4, - "is_virtual": false, + "id": "4", + "is_virtual": true, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": true, + "printed_card_included": false, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], @@ -2001,8 +2007,8 @@
    Query
    Variables
    {
    -  "ids": ["xyz789"],
    -  "roles": ["abc123"],
    +  "ids": ["abc123"],
    +  "roles": ["xyz789"],
       "subtree": Subtree
     }
     
    @@ -2013,17 +2019,17 @@
    Response
    "data": { "categories": [ { - "availableSortBy": ["xyz789"], + "availableSortBy": ["abc123"], "children": ["xyz789"], - "defaultSortBy": "abc123", - "id": "4", + "defaultSortBy": "xyz789", + "id": 4, "level": 987, - "name": "abc123", - "parentId": "abc123", + "name": "xyz789", + "parentId": "xyz789", "position": 123, - "path": "abc123", + "path": "xyz789", "roles": ["xyz789"], - "urlKey": "xyz789", + "urlKey": "abc123", "urlPath": "xyz789", "count": 987, "title": "abc123" @@ -2083,7 +2089,7 @@
    Response
    "data": { "checkoutAgreements": [ { - "agreement_id": 123, + "agreement_id": 987, "checkbox_text": "xyz789", "content": "xyz789", "content_height": "abc123", @@ -2246,11 +2252,11 @@
    Response
    "credit_history": CompanyCreditHistory, "custom_attributes": [CustomAttribute], "email": "xyz789", - "id": 4, + "id": "4", "legal_address": CompanyLegalAddress, "legal_name": "abc123", - "name": "xyz789", - "payment_methods": ["xyz789"], + "name": "abc123", + "payment_methods": ["abc123"], "reseller_id": "xyz789", "role": CompanyRole, "roles": CompanyRoles, @@ -2341,7 +2347,7 @@
    Response
    "data": { "compareList": { "attributes": [ComparableAttribute], - "item_count": 123, + "item_count": 987, "items": [ComparableItem], "uid": 4 } @@ -2401,11 +2407,11 @@
    Response
    "countries": [ { "available_regions": [Region], - "full_name_english": "abc123", + "full_name_english": "xyz789", "full_name_locale": "abc123", "id": "xyz789", - "three_letter_abbreviation": "abc123", - "two_letter_abbreviation": "xyz789" + "three_letter_abbreviation": "xyz789", + "two_letter_abbreviation": "abc123" } ] } @@ -2479,7 +2485,7 @@
    Query
    Variables
    -
    {"id": "abc123"}
    +                  
    {"id": "xyz789"}
     
    @@ -2488,10 +2494,10 @@
    Response
    "data": { "country": { "available_regions": [Region], - "full_name_english": "xyz789", + "full_name_english": "abc123", "full_name_locale": "xyz789", - "id": "abc123", - "three_letter_abbreviation": "abc123", + "id": "xyz789", + "three_letter_abbreviation": "xyz789", "two_letter_abbreviation": "xyz789" } } @@ -2552,9 +2558,9 @@
    Response
    "abc123" ], "base_currency_code": "abc123", - "base_currency_symbol": "xyz789", - "default_display_currency_code": "abc123", - "default_display_currency_symbol": "xyz789", + "base_currency_symbol": "abc123", + "default_display_currency_code": "xyz789", + "default_display_currency_symbol": "abc123", "exchange_rates": [ExchangeRate] } } @@ -2786,17 +2792,17 @@
    Response
    "addresses": [CustomerAddress], "addressesV2": CustomerAddresses, "admin_assistance_actions": AdminAssistanceActions, - "allow_remote_shopping_assistance": true, + "allow_remote_shopping_assistance": false, "companies": UserCompaniesOutput, "company_hierarchy": [CompanyHierarchy], "compare_list": CompareList, "confirmation_status": "ACCOUNT_CONFIRMED", - "created_at": "xyz789", + "created_at": "abc123", "custom_attributes": [AttributeValueInterface], - "date_of_birth": "xyz789", + "date_of_birth": "abc123", "default_billing": "abc123", "default_shipping": "abc123", - "email": "abc123", + "email": "xyz789", "firstname": "abc123", "gender": 123, "gift_registries": [GiftRegistry], @@ -2806,9 +2812,9 @@
    Response
    "is_subscribed": false, "job_title": "abc123", "lastname": "xyz789", - "middlename": "abc123", + "middlename": "xyz789", "orders": CustomerOrders, - "prefix": "abc123", + "prefix": "xyz789", "purchase_order": PurchaseOrder, "purchase_order_approval_rule": PurchaseOrderApprovalRule, "purchase_order_approval_rule_metadata": PurchaseOrderApprovalRuleMetadata, @@ -2824,11 +2830,11 @@
    Response
    "segments": [CustomerSegmentStorefront], "status": "ACTIVE", "store_credit": CustomerStoreCredit, - "structure_id": 4, - "suffix": "xyz789", + "structure_id": "4", + "suffix": "abc123", "taxvat": "xyz789", "team": CompanyTeam, - "telephone": "abc123", + "telephone": "xyz789", "wishlist_v2": Wishlist, "wishlists": [Wishlist] } @@ -2941,17 +2947,17 @@
    Response
    "custom_attributes": [CustomAttribute], "email": "xyz789", "gift_message": GiftMessage, - "gift_receipt_included": false, + "gift_receipt_included": true, "gift_wrapping": GiftWrapping, - "id": "4", + "id": 4, "is_virtual": false, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": true, + "printed_card_included": false, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], - "total_quantity": 123.45 + "total_quantity": 987.65 } } } @@ -3340,7 +3346,7 @@
    Query
    Variables
    {
       "cartId": "abc123",
    -  "id": "xyz789"
    +  "id": "abc123"
     }
     
    @@ -3352,7 +3358,7 @@
    Response
    "id": "abc123", "mp_order_id": "xyz789", "payment_source_details": PaymentSourceDetails, - "status": "abc123" + "status": "xyz789" } } } @@ -3555,7 +3561,7 @@
    Response
    "giftCardAccount": { "balance": Money, "code": "abc123", - "expiration_date": "xyz789" + "expiration_date": "abc123" } } } @@ -3655,14 +3661,14 @@
    Response
    ], "event_name": "xyz789", "items": [GiftRegistryItemInterface], - "message": "abc123", - "owner_name": "abc123", + "message": "xyz789", + "owner_name": "xyz789", "privacy_settings": "PRIVATE", "registrants": [GiftRegistryRegistrant], "shipping_address": CustomerAddress, "status": "ACTIVE", "type": GiftRegistryType, - "uid": 4 + "uid": "4" } } } @@ -3743,10 +3749,10 @@
    Response
    { "event_date": "abc123", "event_title": "abc123", - "gift_registry_uid": 4, + "gift_registry_uid": "4", "location": "abc123", - "name": "xyz789", - "type": "xyz789" + "name": "abc123", + "type": "abc123" } ] } @@ -3817,7 +3823,7 @@
    Query
    Variables
    -
    {"giftRegistryUid": "4"}
    +                  
    {"giftRegistryUid": 4}
     
    @@ -3826,12 +3832,12 @@
    Response
    "data": { "giftRegistryIdSearch": [ { - "event_date": "abc123", - "event_title": "abc123", - "gift_registry_uid": 4, + "event_date": "xyz789", + "event_title": "xyz789", + "gift_registry_uid": "4", "location": "xyz789", "name": "xyz789", - "type": "abc123" + "type": "xyz789" } ] } @@ -3923,9 +3929,9 @@
    Query
    Variables
    {
    -  "firstName": "xyz789",
    +  "firstName": "abc123",
       "lastName": "abc123",
    -  "giftRegistryTypeUid": "4"
    +  "giftRegistryTypeUid": 4
     }
     
    @@ -3936,9 +3942,9 @@
    Response
    "giftRegistryTypeSearch": [ { "event_date": "xyz789", - "event_title": "abc123", - "gift_registry_uid": "4", - "location": "abc123", + "event_title": "xyz789", + "gift_registry_uid": 4, + "location": "xyz789", "name": "xyz789", "type": "abc123" } @@ -4141,21 +4147,21 @@
    Response
    {
       "data": {
         "guestOrder": {
    -      "admin_assisted_order": 987,
    +      "admin_assisted_order": 123,
           "applied_coupons": [AppliedCoupon],
           "applied_gift_cards": [ApplyGiftCardToOrder],
           "available_actions": ["REORDER"],
           "billing_address": OrderAddress,
    -      "carrier": "xyz789",
    +      "carrier": "abc123",
           "comments": [SalesCommentItem],
           "credit_memos": [CreditMemo],
           "custom_attributes": [CustomAttribute],
           "customer_info": OrderCustomerInfo,
    -      "email": "xyz789",
    +      "email": "abc123",
           "gift_message": GiftMessage,
           "gift_receipt_included": false,
           "gift_wrapping": GiftWrapping,
    -      "id": 4,
    +      "id": "4",
           "invoices": [Invoice],
           "is_virtual": false,
           "items": [OrderItemInterface],
    @@ -4165,12 +4171,12 @@ 
    Response
    "order_date": "abc123", "order_status_change_date": "xyz789", "payment_methods": [OrderPaymentMethod], - "printed_card_included": true, + "printed_card_included": false, "returns": Returns, "shipments": [OrderShipment], "shipping_address": OrderAddress, "shipping_method": "abc123", - "status": "xyz789", + "status": "abc123", "token": "abc123", "total": OrderTotal } @@ -4318,18 +4324,18 @@
    Response
    "applied_gift_cards": [ApplyGiftCardToOrder], "available_actions": ["REORDER"], "billing_address": OrderAddress, - "carrier": "abc123", + "carrier": "xyz789", "comments": [SalesCommentItem], "credit_memos": [CreditMemo], "custom_attributes": [CustomAttribute], "customer_info": OrderCustomerInfo, "email": "xyz789", "gift_message": GiftMessage, - "gift_receipt_included": true, + "gift_receipt_included": false, "gift_wrapping": GiftWrapping, "id": 4, "invoices": [Invoice], - "is_virtual": true, + "is_virtual": false, "items": [OrderItemInterface], "items_eligible_for_return": [OrderItemInterface], "negotiable_quote": NegotiableQuote, @@ -4342,8 +4348,8 @@
    Response
    "shipments": [OrderShipment], "shipping_address": OrderAddress, "shipping_method": "abc123", - "status": "xyz789", - "token": "abc123", + "status": "abc123", + "token": "xyz789", "total": OrderTotal } } @@ -4415,7 +4421,7 @@
    Variables
    Response
    -
    {"data": {"isCompanyAdminEmailAvailable": {"is_email_available": false}}}
    +                  
    {"data": {"isCompanyAdminEmailAvailable": {"is_email_available": true}}}
     
    @@ -4478,12 +4484,12 @@
    Query
    Variables
    -
    {"email": "abc123"}
    +                  
    {"email": "xyz789"}
     
    Response
    -
    {"data": {"isCompanyEmailAvailable": {"is_email_available": false}}}
    +                  
    {"data": {"isCompanyEmailAvailable": {"is_email_available": true}}}
     
    @@ -4619,7 +4625,7 @@
    Variables
    Response
    -
    {"data": {"isCompanyUserEmailAvailable": {"is_email_available": false}}}
    +                  
    {"data": {"isCompanyUserEmailAvailable": {"is_email_available": true}}}
     
    @@ -4681,7 +4687,7 @@
    Query
    Variables
    -
    {"email": "abc123"}
    +                  
    {"email": "xyz789"}
     
    @@ -4759,7 +4765,7 @@
    Response
    "data": { "isSubscribedProductAlertPrice": { "isSubscribed": true, - "message": "xyz789" + "message": "abc123" } } } @@ -4834,8 +4840,8 @@
    Response
    {
       "data": {
         "isSubscribedProductAlertStock": {
    -      "isSubscribed": true,
    -      "message": "xyz789"
    +      "isSubscribed": false,
    +      "message": "abc123"
         }
       }
     }
    @@ -4959,14 +4965,14 @@ 
    Response
    "billing_address": NegotiableQuoteBillingAddress, "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "xyz789", + "created_at": "abc123", "custom_attributes": [CustomAttribute], "email": "xyz789", - "expiration_date": "xyz789", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "is_virtual": true, "items": [CartItemInterface], - "name": "xyz789", + "name": "abc123", "order": CustomerOrder, "prices": CartPrices, "sales_rep_name": "xyz789", @@ -4975,11 +4981,11 @@
    Response
    NegotiableQuoteShippingAddress ], "status": "SUBMITTED", - "template_id": 4, + "template_id": "4", "template_name": "xyz789", "total_quantity": 123.45, - "uid": "4", - "updated_at": "xyz789" + "uid": 4, + "updated_at": "abc123" } } } @@ -5098,26 +5104,26 @@
    Response
    "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": true, + "is_min_max_qty_used": false, "is_virtual": true, "items": [CartItemInterface], - "max_order_commitment": 987, + "max_order_commitment": 123, "min_order_commitment": 123, - "name": "xyz789", + "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "abc123", + "sales_rep_name": "xyz789", "shipping_addresses": [ NegotiableQuoteShippingAddress ], "status": "xyz789", - "template_id": 4, + "template_id": "4", "total_quantity": 123.45, "uid": "4", - "updated_at": "xyz789" + "updated_at": "abc123" } } } @@ -5353,7 +5359,7 @@
    Response
    "items": [NegotiableQuote], "page_info": SearchResultPageInfo, "sort_fields": SortFields, - "total_count": 123 + "total_count": 987 } } } @@ -5613,7 +5619,7 @@
    Variables
    "current_page": 1, "filter": [SearchClauseInput], "page_size": 20, - "phrase": "abc123", + "phrase": "xyz789", "sort": [ProductSearchSortInput] }
    @@ -5626,7 +5632,7 @@
    Response
    "facets": [Aggregation], "items": [ProductSearchItem], "page_info": SearchResultPageInfo, - "related_terms": ["abc123"], + "related_terms": ["xyz789"], "suggestions": ["xyz789"], "total_count": 987, "warnings": [ProductSearchWarning] @@ -5725,7 +5731,7 @@
    Query
    Variables
    -
    {"skus": ["xyz789"]}
    +                  
    {"skus": ["abc123"]}
     
    @@ -5734,28 +5740,28 @@
    Response
    "data": { "products": [ { - "addToCartAllowed": false, + "addToCartAllowed": true, "inStock": true, "lowStock": true, "attributes": [ProductViewAttribute], - "description": "xyz789", + "description": "abc123", "id": 4, "images": [ProductViewImage], "videos": [ProductViewVideo], "lastModifiedAt": "2007-12-03T10:15:30Z", - "metaDescription": "abc123", + "metaDescription": "xyz789", "metaKeyword": "abc123", "metaTitle": "abc123", - "name": "abc123", - "shortDescription": "xyz789", + "name": "xyz789", + "shortDescription": "abc123", "inputOptions": [ProductViewInputOption], "sku": "xyz789", - "externalId": "abc123", - "url": "xyz789", + "externalId": "xyz789", + "url": "abc123", "urlKey": "xyz789", "links": [ProductViewLink], - "queryType": "xyz789", - "visibility": "abc123" + "queryType": "abc123", + "visibility": "xyz789" } ] } @@ -5826,7 +5832,7 @@
    Response
    "data": { "recaptchaFormConfig": { "configurations": ReCaptchaConfiguration, - "is_enabled": false + "is_enabled": true } } } @@ -5907,7 +5913,7 @@
    Response
    { "configurations": ReCaptchaConfiguration, "form_type": "PLACE_ORDER", - "is_enabled": false + "is_enabled": true } ] } @@ -5967,9 +5973,9 @@
    Response
    "badge_position": "abc123", "failure_message": "xyz789", "forms": ["PLACE_ORDER"], - "is_enabled": true, + "is_enabled": false, "language_code": "xyz789", - "minimum_score": 123.45, + "minimum_score": 987.65, "theme": "xyz789", "website_key": "abc123" } @@ -6102,7 +6108,7 @@
    Variables
    {
       "cartSkus": ["abc123"],
       "category": "abc123",
    -  "currentSku": "abc123",
    +  "currentSku": "xyz789",
       "currentProduct": CurrentProductInput,
       "pageType": "CMS",
       "userPurchaseHistory": [PurchaseHistory],
    @@ -6117,7 +6123,7 @@ 
    Response
    "data": { "recommendations": { "results": [RecommendationUnit], - "totalResults": 123 + "totalResults": 987 } } } @@ -6227,7 +6233,7 @@
    Query
    Variables
    {
       "optionIds": ["abc123"],
    -  "sku": "xyz789"
    +  "sku": "abc123"
     }
     
    @@ -6236,7 +6242,7 @@
    Response
    {
       "data": {
         "refineProduct": {
    -      "addToCartAllowed": true,
    +      "addToCartAllowed": false,
           "inStock": false,
           "lowStock": false,
           "attributes": [ProductViewAttribute],
    @@ -6245,15 +6251,15 @@ 
    Response
    "images": [ProductViewImage], "videos": [ProductViewVideo], "lastModifiedAt": "2007-12-03T10:15:30Z", - "metaDescription": "abc123", - "metaKeyword": "xyz789", + "metaDescription": "xyz789", + "metaKeyword": "abc123", "metaTitle": "xyz789", - "name": "abc123", - "shortDescription": "xyz789", + "name": "xyz789", + "shortDescription": "abc123", "inputOptions": [ProductViewInputOption], - "sku": "xyz789", + "sku": "abc123", "externalId": "abc123", - "url": "abc123", + "url": "xyz789", "urlKey": "abc123", "links": [ProductViewLink], "queryType": "abc123", @@ -6532,151 +6538,151 @@
    Response
    {
       "data": {
         "storeConfig": {
    -      "allow_company_registration": false,
    -      "allow_gift_receipt": "abc123",
    +      "allow_company_registration": true,
    +      "allow_gift_receipt": "xyz789",
           "allow_gift_wrapping_on_order": "abc123",
    -      "allow_gift_wrapping_on_order_items": "xyz789",
    +      "allow_gift_wrapping_on_order_items": "abc123",
           "allow_items": "abc123",
    -      "allow_order": "xyz789",
    +      "allow_order": "abc123",
           "allow_printed_card": "abc123",
    -      "autocomplete_on_storefront": false,
    -      "base_currency_code": "xyz789",
    -      "base_link_url": "xyz789",
    -      "base_media_url": "abc123",
    -      "base_static_url": "xyz789",
    -      "base_url": "xyz789",
    +      "autocomplete_on_storefront": true,
    +      "base_currency_code": "abc123",
    +      "base_link_url": "abc123",
    +      "base_media_url": "xyz789",
    +      "base_static_url": "abc123",
    +      "base_url": "abc123",
           "cart_expires_in_days": 123,
    -      "cart_gift_wrapping": "xyz789",
    -      "cart_merge_preference": "abc123",
    +      "cart_gift_wrapping": "abc123",
    +      "cart_merge_preference": "xyz789",
           "cart_printed_card": "xyz789",
    -      "cart_summary_display_quantity": 123,
    -      "catalog_default_sort_by": "xyz789",
    +      "cart_summary_display_quantity": 987,
    +      "catalog_default_sort_by": "abc123",
           "category_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS",
    -      "category_url_suffix": "abc123",
    -      "check_money_order_enable_for_specific_countries": false,
    +      "category_url_suffix": "xyz789",
    +      "check_money_order_enable_for_specific_countries": true,
           "check_money_order_enabled": true,
    -      "check_money_order_make_check_payable_to": "abc123",
    +      "check_money_order_make_check_payable_to": "xyz789",
           "check_money_order_max_order_total": "xyz789",
           "check_money_order_min_order_total": "abc123",
    -      "check_money_order_new_order_status": "abc123",
    -      "check_money_order_payment_from_specific_countries": "abc123",
    +      "check_money_order_new_order_status": "xyz789",
    +      "check_money_order_payment_from_specific_countries": "xyz789",
           "check_money_order_send_check_to": "abc123",
    -      "check_money_order_sort_order": 123,
    -      "check_money_order_title": "xyz789",
    -      "company_credit_enabled": false,
    -      "company_enabled": true,
    +      "check_money_order_sort_order": 987,
    +      "check_money_order_title": "abc123",
    +      "company_credit_enabled": true,
    +      "company_enabled": false,
           "configurable_product_image": "ITSELF",
           "configurable_thumbnail_source": "xyz789",
           "contact_enabled": true,
           "countries_with_required_region": "xyz789",
           "create_account_confirmation": false,
    -      "customer_access_token_lifetime": 123.45,
    +      "customer_access_token_lifetime": 987.65,
           "default_country": "xyz789",
           "default_display_currency_code": "xyz789",
           "display_product_prices_in_catalog": 987,
           "display_shipping_prices": 987,
           "display_state_if_optional": true,
    -      "enable_multiple_wishlists": "xyz789",
    +      "enable_multiple_wishlists": "abc123",
           "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_emails": 123,
    +      "fixed_product_taxes_display_prices_in_product_lists": 123,
           "fixed_product_taxes_display_prices_in_sales_modules": 987,
    -      "fixed_product_taxes_display_prices_on_product_view_page": 123,
    +      "fixed_product_taxes_display_prices_on_product_view_page": 987,
           "fixed_product_taxes_enable": true,
    -      "fixed_product_taxes_include_fpt_in_subtotal": false,
    +      "fixed_product_taxes_include_fpt_in_subtotal": true,
           "graphql_share_customer_group": true,
    -      "grid_per_page": 987,
    -      "grid_per_page_values": "abc123",
    +      "grid_per_page": 123,
    +      "grid_per_page_values": "xyz789",
           "grouped_product_image": "ITSELF",
    -      "is_checkout_agreements_enabled": true,
    -      "is_default_store": true,
    -      "is_default_store_group": true,
    +      "is_checkout_agreements_enabled": false,
    +      "is_default_store": false,
    +      "is_default_store_group": false,
           "is_guest_checkout_enabled": false,
           "is_negotiable_quote_active": true,
    -      "is_one_page_checkout_enabled": false,
    -      "is_requisition_list_active": "abc123",
    +      "is_one_page_checkout_enabled": true,
    +      "is_requisition_list_active": "xyz789",
           "list_mode": "abc123",
    -      "list_per_page": 987,
    -      "list_per_page_values": "xyz789",
    +      "list_per_page": 123,
    +      "list_per_page_values": "abc123",
           "locale": "abc123",
           "magento_reward_general_is_enabled": "abc123",
    -      "magento_reward_general_is_enabled_on_front": "xyz789",
    -      "magento_reward_general_min_points_balance": "xyz789",
    +      "magento_reward_general_is_enabled_on_front": "abc123",
    +      "magento_reward_general_min_points_balance": "abc123",
           "magento_reward_general_publish_history": "xyz789",
    -      "magento_reward_points_invitation_customer": "xyz789",
    -      "magento_reward_points_invitation_customer_limit": "abc123",
    +      "magento_reward_points_invitation_customer": "abc123",
    +      "magento_reward_points_invitation_customer_limit": "xyz789",
           "magento_reward_points_invitation_order": "xyz789",
    -      "magento_reward_points_invitation_order_limit": "xyz789",
    -      "magento_reward_points_newsletter": "xyz789",
    +      "magento_reward_points_invitation_order_limit": "abc123",
    +      "magento_reward_points_newsletter": "abc123",
           "magento_reward_points_order": "xyz789",
    -      "magento_reward_points_register": "abc123",
    -      "magento_reward_points_review": "abc123",
    +      "magento_reward_points_register": "xyz789",
    +      "magento_reward_points_review": "xyz789",
           "magento_reward_points_review_limit": "xyz789",
           "magento_wishlist_general_is_enabled": "abc123",
           "max_items_in_order_summary": 123,
    -      "maximum_number_of_wishlists": "abc123",
    +      "maximum_number_of_wishlists": "xyz789",
           "minicart_display": false,
           "minicart_max_items": 123,
    -      "minimum_password_length": "abc123",
    -      "newsletter_enabled": false,
    -      "optional_zip_countries": "abc123",
    -      "order_cancellation_enabled": false,
    +      "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": false,
    -      "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,
    +      "orders_invoices_credit_memos_display_grandtotal": false,
    +      "orders_invoices_credit_memos_display_price": 987,
    +      "orders_invoices_credit_memos_display_shipping_amount": 123,
    +      "orders_invoices_credit_memos_display_subtotal": 987,
    +      "orders_invoices_credit_memos_display_zero_tax": true,
           "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,
    +      "quickorder_active": true,
    +      "quote_minimum_amount": 123.45,
           "quote_minimum_amount_message": "abc123",
    -      "required_character_classes_number": "xyz789",
    +      "required_character_classes_number": "abc123",
           "requisition_list_share_link_validity_days": 123,
    -      "requisition_list_share_max_recipients": 987,
    -      "requisition_list_share_storefront_path": "abc123",
    -      "requisition_list_sharing_enabled": true,
    -      "returns_enabled": "xyz789",
    +      "requisition_list_share_max_recipients": 123,
    +      "requisition_list_share_storefront_path": "xyz789",
    +      "requisition_list_sharing_enabled": false,
    +      "returns_enabled": "abc123",
           "root_category_uid": 4,
           "sales_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS",
           "sales_gift_wrapping": "abc123",
    -      "sales_printed_card": "xyz789",
    +      "sales_printed_card": "abc123",
           "secure_base_link_url": "xyz789",
           "secure_base_media_url": "abc123",
    -      "secure_base_static_url": "xyz789",
    +      "secure_base_static_url": "abc123",
           "secure_base_url": "xyz789",
    -      "share_active_segments": false,
    +      "share_active_segments": true,
           "share_applied_cart_rule": false,
           "shopping_assistance_checkbox_title": "xyz789",
    -      "shopping_assistance_checkbox_tooltip": "xyz789",
    -      "shopping_assistance_enabled": false,
    -      "shopping_cart_display_full_summary": true,
    +      "shopping_assistance_checkbox_tooltip": "abc123",
    +      "shopping_assistance_enabled": true,
    +      "shopping_cart_display_full_summary": false,
           "shopping_cart_display_grand_total": true,
           "shopping_cart_display_price": 123,
           "shopping_cart_display_shipping": 987,
           "shopping_cart_display_subtotal": 987,
           "shopping_cart_display_tax_gift_wrapping": "DISPLAY_EXCLUDING_TAX",
    -      "shopping_cart_display_zero_tax": true,
    -      "store_code": "4",
    -      "store_group_code": 4,
    -      "store_group_name": "abc123",
    +      "shopping_cart_display_zero_tax": false,
    +      "store_code": 4,
    +      "store_group_code": "4",
    +      "store_group_name": "xyz789",
           "store_name": "abc123",
           "store_sort_order": 123,
    -      "timezone": "abc123",
    -      "title_separator": "abc123",
    -      "use_store_in_url": true,
    +      "timezone": "xyz789",
    +      "title_separator": "xyz789",
    +      "use_store_in_url": false,
           "website_code": 4,
    -      "website_name": "abc123",
    +      "website_name": "xyz789",
           "weight_unit": "xyz789",
           "zero_subtotal_enable_for_specific_countries": true,
    -      "zero_subtotal_enabled": false,
    -      "zero_subtotal_new_order_status": "abc123",
    -      "zero_subtotal_payment_action": "abc123",
    +      "zero_subtotal_enabled": true,
    +      "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_sort_order": 987,
           "zero_subtotal_title": "xyz789"
         }
       }
    @@ -6766,10 +6772,10 @@ 
    Query
    Variables
    {
    -  "sku": "xyz789",
    -  "optionIds": ["abc123"],
    +  "sku": "abc123",
    +  "optionIds": ["xyz789"],
       "pageSize": 987,
    -  "cursor": "abc123"
    +  "cursor": "xyz789"
     }
     
    @@ -6779,7 +6785,7 @@
    Response
    "data": { "variants": { "variants": [ProductViewVariant], - "cursor": "xyz789" + "cursor": "abc123" } } } @@ -6963,12 +6969,12 @@
    Response
    "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": true, + "is_min_max_qty_used": false, "is_virtual": false, "items": [CartItemInterface], "max_order_commitment": 123, - "min_order_commitment": 123, - "name": "xyz789", + "min_order_commitment": 987, + "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ @@ -6980,9 +6986,9 @@
    Response
    ], "status": "xyz789", "template_id": "4", - "total_quantity": 987.65, - "uid": "4", - "updated_at": "abc123" + "total_quantity": 123.45, + "uid": 4, + "updated_at": "xyz789" } } } @@ -7320,7 +7326,7 @@
    Response
    "data": { "addProductsToCompareList": { "attributes": [ComparableAttribute], - "item_count": 987, + "item_count": 123, "items": [ComparableItem], "uid": "4" } @@ -7481,7 +7487,7 @@
    Query
    Variables
    {
    -  "requisitionListUid": 4,
    +  "requisitionListUid": "4",
       "requisitionListItems": [RequisitionListItemsInput]
     }
     
    @@ -7824,10 +7830,7 @@
    Query
    Variables
    -
    {
    -  "requisitionListUid": 4,
    -  "requisitionListItemUids": ["4"]
    -}
    +                  
    {"requisitionListUid": 4, "requisitionListItemUids": [4]}
     
    @@ -7839,7 +7842,7 @@
    Response
    AddRequisitionListItemToCartUserError ], "cart": Cart, - "status": false + "status": true } } } @@ -8070,10 +8073,7 @@
    Query
    Variables
    -
    {
    -  "wishlistId": "4",
    -  "wishlistItemIds": ["4"]
    -}
    +                  
    {"wishlistId": 4, "wishlistItemIds": [4]}
     
    @@ -8515,6 +8515,81 @@
    Response
    } } } +
    + + + back to top + +
    +
    +
    + Mutations +
    +

    + assignChildCompany +

    +
    +
    +
    +
    Description
    +

    Assign a child company to a parent company within the company relation hierarchy.

    +
    +
    +
    +
    +
    +
    +
    Response
    +

    Returns an AssignChildCompanyOutput +

    +
    +
    +
    Arguments
    + + + + + + + + + + + + + +
    NameDescription
    + input - AssignChildCompanyInput! + An input object that defines which companies to relate.
    +
    +
    +
    +

    Example

    +
    +
    Query
    +
    mutation assignChildCompany($input: AssignChildCompanyInput!) {
    +  assignChildCompany(input: $input) {
    +    company_hierarchy {
    +      ...CompanyHierarchyFragment
    +    }
    +  }
    +}
    +
    +
    +
    +
    Variables
    +
    {"input": AssignChildCompanyInput}
    +
    +
    +
    +
    Response
    +
    {
    +  "data": {
    +    "assignChildCompany": {
    +      "company_hierarchy": CompanyHierarchy
    +    }
    +  }
    +}
     
    @@ -8579,7 +8654,7 @@
    Query
    Variables
    -
    {"uid": 4}
    +                  
    {"uid": "4"}
     
    @@ -8704,7 +8779,7 @@
    Query
    Variables
    -
    {"cart_id": "abc123"}
    +                  
    {"cart_id": "xyz789"}
     
    @@ -8722,12 +8797,12 @@
    Response
    ], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "xyz789", + "email": "abc123", "gift_message": GiftMessage, - "gift_receipt_included": false, + "gift_receipt_included": true, "gift_wrapping": GiftWrapping, - "id": 4, - "is_virtual": false, + "id": "4", + "is_virtual": true, "itemsV2": CartItems, "prices": CartPrices, "printed_card_included": true, @@ -8852,24 +8927,24 @@
    Response
    "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": true, + "is_min_max_qty_used": false, "is_virtual": true, "items": [CartItemInterface], - "max_order_commitment": 987, + "max_order_commitment": 123, "min_order_commitment": 987, - "name": "xyz789", + "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "abc123", + "sales_rep_name": "xyz789", "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "xyz789", + "status": "abc123", "template_id": 4, - "total_quantity": 123.45, + "total_quantity": 987.65, "uid": 4, "updated_at": "xyz789" } @@ -8951,7 +9026,7 @@
    Response
    {
       "data": {
         "cancelOrder": {
    -      "error": "abc123",
    +      "error": "xyz789",
           "errorV2": CancelOrderError,
           "order": CustomerOrder
         }
    @@ -9211,7 +9286,7 @@ 
    Query
    Variables
    {
       "currentPassword": "abc123",
    -  "newPassword": "xyz789"
    +  "newPassword": "abc123"
     }
     
    @@ -9230,28 +9305,28 @@
    Response
    "confirmation_status": "ACCOUNT_CONFIRMED", "created_at": "xyz789", "custom_attributes": [AttributeValueInterface], - "date_of_birth": "xyz789", - "default_billing": "abc123", + "date_of_birth": "abc123", + "default_billing": "xyz789", "default_shipping": "xyz789", - "email": "abc123", + "email": "xyz789", "firstname": "xyz789", - "gender": 987, + "gender": 123, "gift_registries": [GiftRegistry], "gift_registry": GiftRegistry, "group": CustomerGroupStorefront, - "id": "4", + "id": 4, "is_subscribed": false, - "job_title": "xyz789", - "lastname": "xyz789", - "middlename": "abc123", + "job_title": "abc123", + "lastname": "abc123", + "middlename": "xyz789", "orders": CustomerOrders, - "prefix": "abc123", + "prefix": "xyz789", "purchase_order": PurchaseOrder, "purchase_order_approval_rule": PurchaseOrderApprovalRule, "purchase_order_approval_rule_metadata": PurchaseOrderApprovalRuleMetadata, "purchase_order_approval_rules": PurchaseOrderApprovalRules, "purchase_orders": PurchaseOrders, - "purchase_orders_enabled": true, + "purchase_orders_enabled": false, "quote_enabled": false, "requisition_lists": RequisitionLists, "return": Return, @@ -9261,11 +9336,11 @@
    Response
    "segments": [CustomerSegmentStorefront], "status": "ACTIVE", "store_credit": CustomerStoreCredit, - "structure_id": "4", + "structure_id": 4, "suffix": "xyz789", - "taxvat": "xyz789", + "taxvat": "abc123", "team": CompanyTeam, - "telephone": "xyz789", + "telephone": "abc123", "wishlist_v2": Wishlist, "wishlists": [Wishlist] } @@ -9888,7 +9963,7 @@
    Variables
    Response
    -
    {"data": {"contactUs": {"status": true}}}
    +                  
    {"data": {"contactUs": {"status": false}}}
     
    @@ -10078,7 +10153,7 @@
    Query
    Variables
    {
    -  "sourceWishlistUid": "4",
    +  "sourceWishlistUid": 4,
       "destinationWishlistUid": 4,
       "wishlistItems": [WishlistItemCopyInput]
     }
    @@ -10453,9 +10528,9 @@ 
    Response
    "data": { "createCompareList": { "attributes": [ComparableAttribute], - "item_count": 123, + "item_count": 987, "items": [ComparableItem], - "uid": 4 + "uid": "4" } } } @@ -10555,8 +10630,8 @@
    Response
    {
       "data": {
         "createCustomerAddress": {
    -      "city": "abc123",
    -      "company": "xyz789",
    +      "city": "xyz789",
    +      "company": "abc123",
           "country_code": "AF",
           "custom_attributesV2": [AttributeValueInterface],
           "default_billing": true,
    @@ -10565,17 +10640,17 @@ 
    Response
    "fax": "abc123", "firstname": "abc123", "id": 123, - "lastname": "abc123", - "middlename": "xyz789", + "lastname": "xyz789", + "middlename": "abc123", "postcode": "abc123", "prefix": "abc123", "region": CustomerAddressRegion, - "region_id": 123, - "street": ["abc123"], - "suffix": "abc123", + "region_id": 987, + "street": ["xyz789"], + "suffix": "xyz789", "telephone": "xyz789", "uid": "4", - "vat_id": "xyz789" + "vat_id": "abc123" } } } @@ -10865,9 +10940,9 @@
    Response
    "data": { "createPaymentOrder": { "amount": 987.65, - "currency_code": "abc123", - "id": "xyz789", - "mp_order_id": "xyz789", + "currency_code": "xyz789", + "id": "abc123", + "mp_order_id": "abc123", "status": "xyz789" } } @@ -10960,13 +11035,13 @@
    Response
    "applies_to_roles": [CompanyRole], "approver_roles": [CompanyRole], "condition": PurchaseOrderApprovalRuleConditionInterface, - "created_at": "abc123", - "created_by": "abc123", + "created_at": "xyz789", + "created_by": "xyz789", "description": "xyz789", "name": "xyz789", "status": "ENABLED", - "uid": "4", - "updated_at": "abc123" + "uid": 4, + "updated_at": "xyz789" } } } @@ -11332,7 +11407,7 @@
    Variables
    Response
    -
    {"data": {"deleteCompanyRole": {"success": false}}}
    +                  
    {"data": {"deleteCompanyRole": {"success": true}}}
     
    @@ -11468,7 +11543,7 @@
    Variables
    Response
    -
    {"data": {"deleteCompanyUserV2": {"success": true}}}
    +                  
    {"data": {"deleteCompanyUserV2": {"success": false}}}
     
    @@ -11530,12 +11605,12 @@
    Query
    Variables
    -
    {"uid": 4}
    +                  
    {"uid": "4"}
     
    Response
    -
    {"data": {"deleteCompareList": {"result": true}}}
    +                  
    {"data": {"deleteCompareList": {"result": false}}}
     
    @@ -11576,7 +11651,7 @@
    Query
    Response
    -
    {"data": {"deleteCustomer": false}}
    +                  
    {"data": {"deleteCustomer": true}}
     
    @@ -11643,7 +11718,7 @@
    Query
    Variables
    -
    {"id": 987}
    +                  
    {"id": 123}
     
    @@ -11708,12 +11783,12 @@
    Query
    Variables
    -
    {"uid": 4}
    +                  
    {"uid": "4"}
     
    Response
    -
    {"data": {"deleteCustomerAddressV2": false}}
    +                  
    {"data": {"deleteCustomerAddressV2": true}}
     
    @@ -11778,7 +11853,7 @@
    Variables
    Response
    -
    {"data": {"deleteNegotiableQuoteTemplate": true}}
    +                  
    {"data": {"deleteNegotiableQuoteTemplate": false}}
     
    @@ -11931,7 +12006,7 @@
    Query
    Variables
    -
    {"public_hash": "abc123"}
    +                  
    {"public_hash": "xyz789"}
     
    @@ -12093,7 +12168,7 @@
    Response
    "data": { "deleteRequisitionList": { "requisition_lists": RequisitionLists, - "status": false + "status": true } } } @@ -12173,7 +12248,7 @@
    Query
    Variables
    {
    -  "requisitionListUid": "4",
    +  "requisitionListUid": 4,
       "requisitionListItemUids": ["4"]
     }
     
    @@ -12259,7 +12334,7 @@
    Response
    {
       "data": {
         "deleteWishlist": {
    -      "status": false,
    +      "status": true,
           "wishlists": [Wishlist]
         }
       }
    @@ -12427,9 +12502,9 @@ 
    Response
    "additional_data": [ShippingAdditionalData], "amount": Money, "available": true, - "carrier_code": "xyz789", + "carrier_code": "abc123", "carrier_title": "abc123", - "error_message": "abc123", + "error_message": "xyz789", "method_code": "xyz789", "method_title": "xyz789", "price_excl_tax": Money, @@ -12658,7 +12733,7 @@
    Query
    Variables
    {
    -  "email": "abc123",
    +  "email": "xyz789",
       "otp": "xyz789"
     }
     
    @@ -12668,7 +12743,7 @@
    Response
    {
       "data": {
         "exchangeOtpForCustomerToken": {
    -      "token": "abc123"
    +      "token": "xyz789"
         }
       }
     }
    @@ -12736,9 +12811,9 @@ 
    Response
    {
       "data": {
         "finishUpload": {
    -      "key": "abc123",
    +      "key": "xyz789",
           "message": "abc123",
    -      "success": false
    +      "success": true
         }
       }
     }
    @@ -12816,7 +12891,7 @@ 
    Query
    Variables
    {
    -  "email": "xyz789",
    +  "email": "abc123",
       "password": "abc123"
     }
     
    @@ -12899,7 +12974,7 @@
    Response
    {
       "data": {
         "generateCustomerTokenAsAdmin": {
    -      "customer_token": "xyz789"
    +      "customer_token": "abc123"
         }
       }
     }
    @@ -12969,13 +13044,7 @@ 
    Variables
    Response
    -
    {
    -  "data": {
    -    "generateNegotiableQuoteFromTemplate": {
    -      "negotiable_quote_uid": "4"
    -    }
    -  }
    -}
    +                  
    {"data": {"generateNegotiableQuoteFromTemplate": {"negotiable_quote_uid": 4}}}
     
    @@ -13120,7 +13189,7 @@
    Response
    "data": { "initiateUpload": { "expires_at": "abc123", - "key": "xyz789", + "key": "abc123", "upload_url": "abc123" } } @@ -13269,19 +13338,19 @@
    Response
    ], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "xyz789", + "email": "abc123", "gift_message": GiftMessage, "gift_receipt_included": true, "gift_wrapping": GiftWrapping, "id": "4", - "is_virtual": true, + "is_virtual": false, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": true, + "printed_card_included": false, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], - "total_quantity": 987.65 + "total_quantity": 123.45 } } } @@ -13364,10 +13433,7 @@
    Query
    Variables
    -
    {
    -  "cartUid": "4",
    -  "giftRegistryUid": "4"
    -}
    +                  
    {"cartUid": 4, "giftRegistryUid": 4}
     
    @@ -13469,7 +13535,7 @@
    Query
    Variables
    {
       "sourceRequisitionListUid": "4",
    -  "destinationRequisitionListUid": "4",
    +  "destinationRequisitionListUid": 4,
       "requisitionListItem": MoveItemsBetweenRequisitionListsInput
     }
     
    @@ -13649,7 +13715,7 @@
    Query
    Variables
    {
    -  "sourceWishlistUid": 4,
    +  "sourceWishlistUid": "4",
       "destinationWishlistUid": "4",
       "wishlistItems": [WishlistItemMoveInput]
     }
    @@ -13776,30 +13842,30 @@ 
    Response
    "openNegotiableQuoteTemplate": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "xyz789", - "expiration_date": "abc123", + "created_at": "abc123", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": false, + "is_min_max_qty_used": true, "is_virtual": false, "items": [CartItemInterface], "max_order_commitment": 987, - "min_order_commitment": 123, - "name": "xyz789", + "min_order_commitment": 987, + "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "xyz789", + "status": "abc123", "template_id": 4, "total_quantity": 123.45, "uid": 4, - "updated_at": "abc123" + "updated_at": "xyz789" } } } @@ -14261,7 +14327,7 @@
    Response
    "data": { "redeemGiftCardBalanceAsStoreCredit": { "balance": Money, - "code": "xyz789", + "code": "abc123", "expiration_date": "abc123" } } @@ -14614,7 +14680,7 @@
    Query
    Variables
    -
    {"giftRegistryUid": 4}
    +                  
    {"giftRegistryUid": "4"}
     
    @@ -14695,7 +14761,7 @@
    Query
    Variables
    -
    {"giftRegistryUid": 4, "itemsUid": ["4"]}
    +                  
    {"giftRegistryUid": "4", "itemsUid": [4]}
     
    @@ -15059,8 +15125,8 @@
    Response
    "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 123, - "min_order_commitment": 987, - "name": "abc123", + "min_order_commitment": 123, + "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ @@ -15070,9 +15136,9 @@
    Response
    "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", - "template_id": "4", - "total_quantity": 987.65, + "status": "xyz789", + "template_id": 4, + "total_quantity": 123.45, "uid": 4, "updated_at": "xyz789" } @@ -15155,7 +15221,7 @@
    Response
    "data": { "removeProductsFromCompareList": { "attributes": [ComparableAttribute], - "item_count": 123, + "item_count": 987, "items": [ComparableItem], "uid": "4" } @@ -15239,7 +15305,10 @@
    Query
    Variables
    -
    {"wishlistId": 4, "wishlistItemsIds": [4]}
    +                  
    {
    +  "wishlistId": "4",
    +  "wishlistItemsIds": ["4"]
    +}
     
    @@ -15600,7 +15669,7 @@
    Query
    Variables
    -
    {"orderNumber": "xyz789"}
    +                  
    {"orderNumber": "abc123"}
     
    @@ -15950,7 +16019,7 @@
    Response
    "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], "created_at": "xyz789", - "expiration_date": "xyz789", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": false, @@ -15969,7 +16038,7 @@
    Response
    NegotiableQuoteShippingAddress ], "status": "abc123", - "template_id": "4", + "template_id": 4, "total_quantity": 987.65, "uid": 4, "updated_at": "xyz789" @@ -16040,7 +16109,7 @@
    Variables
    Response
    -
    {"data": {"requestPasswordResetEmail": false}}
    +                  
    {"data": {"requestPasswordResetEmail": true}}
     
    @@ -16184,7 +16253,7 @@
    Variables
    Response
    -
    {"data": {"resendConfirmationEmail": true}}
    +                  
    {"data": {"resendConfirmationEmail": false}}
     
    @@ -16265,8 +16334,8 @@
    Query
    Variables
    {
    -  "email": "xyz789",
    -  "resetPasswordToken": "abc123",
    +  "email": "abc123",
    +  "resetPasswordToken": "xyz789",
       "newPassword": "xyz789"
     }
     
    @@ -16523,7 +16592,7 @@
    Query
    Variables
    -
    {"cartId": "xyz789"}
    +                  
    {"cartId": "abc123"}
     
    @@ -16531,8 +16600,8 @@
    Response
    {
       "data": {
         "setCartAsInactive": {
    -      "error": "xyz789",
    -      "success": false
    +      "error": "abc123",
    +      "success": true
         }
       }
     }
    @@ -17752,11 +17821,11 @@ 
    Response
    "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": true, - "is_virtual": true, + "is_virtual": false, "items": [CartItemInterface], "max_order_commitment": 123, "min_order_commitment": 987, - "name": "abc123", + "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ @@ -17767,10 +17836,10 @@
    Response
    NegotiableQuoteShippingAddress ], "status": "abc123", - "template_id": 4, + "template_id": "4", "total_quantity": 987.65, "uid": 4, - "updated_at": "abc123" + "updated_at": "xyz789" } } } @@ -17960,9 +18029,9 @@
    Response
    "is_min_max_qty_used": true, "is_virtual": true, "items": [CartItemInterface], - "max_order_commitment": 987, + "max_order_commitment": 123, "min_order_commitment": 123, - "name": "abc123", + "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ @@ -17972,10 +18041,10 @@
    Response
    "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "xyz789", - "template_id": "4", - "total_quantity": 123.45, - "uid": 4, + "status": "abc123", + "template_id": 4, + "total_quantity": 987.65, + "uid": "4", "updated_at": "abc123" } } @@ -18090,14 +18159,14 @@
    Response
    "setQuoteTemplateLineItemNote": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", - "expiration_date": "xyz789", + "created_at": "xyz789", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": true, + "is_min_max_qty_used": false, "is_virtual": true, "items": [CartItemInterface], - "max_order_commitment": 987, + "max_order_commitment": 123, "min_order_commitment": 987, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], @@ -18105,7 +18174,7 @@
    Response
    "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "abc123", + "sales_rep_name": "xyz789", "shipping_addresses": [ NegotiableQuoteShippingAddress ], @@ -18337,7 +18406,7 @@
    Query
    Variables
    {
    -  "giftRegistryUid": 4,
    +  "giftRegistryUid": "4",
       "sender": ShareGiftRegistrySenderInput,
       "invitees": [ShareGiftRegistryInviteeInput]
     }
    @@ -18607,16 +18676,16 @@ 
    Response
    "submitNegotiableQuoteTemplateForReview": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "xyz789", - "expiration_date": "abc123", + "created_at": "abc123", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": true, - "is_virtual": false, + "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 123, "min_order_commitment": 123, - "name": "abc123", + "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ @@ -18627,7 +18696,7 @@
    Response
    NegotiableQuoteShippingAddress ], "status": "xyz789", - "template_id": 4, + "template_id": "4", "total_quantity": 987.65, "uid": 4, "updated_at": "xyz789" @@ -18695,7 +18764,7 @@
    Query
    Variables
    -
    {"email": "xyz789"}
    +                  
    {"email": "abc123"}
     
    @@ -18772,8 +18841,8 @@
    Response
    {
       "data": {
         "subscribeProductAlertPrice": {
    -      "message": "xyz789",
    -      "success": false
    +      "message": "abc123",
    +      "success": true
         }
       }
     }
    @@ -18848,7 +18917,7 @@ 
    Response
    {
       "data": {
         "subscribeProductAlertStock": {
    -      "message": "abc123",
    +      "message": "xyz789",
           "success": false
         }
       }
    @@ -18917,7 +18986,82 @@ 
    Variables
    Response
    -
    {"data": {"syncPaymentOrder": true}}
    +                  
    {"data": {"syncPaymentOrder": false}}
    +
    +
    +
    + back to top + +
    +
    +
    + Mutations +
    +

    + unassignChildCompany +

    +
    +
    +
    +
    Description
    +

    Unassign a child company from its parent company within the company relation hierarchy.

    +
    +
    +
    +
    +
    +
    +
    Response
    +

    Returns an UnassignChildCompanyOutput +

    +
    +
    +
    Arguments
    + + + + + + + + + + + + + +
    NameDescription
    + input - UnassignChildCompanyInput! + An input object that defines which company to unassign.
    +
    +
    +
    +

    Example

    +
    +
    Query
    +
    mutation unassignChildCompany($input: UnassignChildCompanyInput!) {
    +  unassignChildCompany(input: $input) {
    +    company_hierarchy {
    +      ...CompanyHierarchyFragment
    +    }
    +  }
    +}
    +
    +
    +
    +
    Variables
    +
    {"input": UnassignChildCompanyInput}
    +
    +
    +
    +
    Response
    +
    {
    +  "data": {
    +    "unassignChildCompany": {
    +      "company_hierarchy": CompanyHierarchy
    +    }
    +  }
    +}
     
    @@ -19040,7 +19184,7 @@
    Response
    {
       "data": {
         "unsubscribeProductAlertPriceAll": {
    -      "message": "abc123",
    +      "message": "xyz789",
           "success": true
         }
       }
    @@ -19116,7 +19260,7 @@ 
    Response
    {
       "data": {
         "unsubscribeProductAlertStock": {
    -      "message": "xyz789",
    +      "message": "abc123",
           "success": true
         }
       }
    @@ -19716,26 +19860,26 @@ 
    Response
    "data": { "updateCustomerAddress": { "city": "abc123", - "company": "abc123", + "company": "xyz789", "country_code": "AF", "custom_attributesV2": [AttributeValueInterface], - "default_billing": true, - "default_shipping": false, + "default_billing": false, + "default_shipping": true, "extension_attributes": [CustomerAddressAttribute], "fax": "abc123", - "firstname": "abc123", + "firstname": "xyz789", "id": 987, - "lastname": "abc123", - "middlename": "abc123", - "postcode": "abc123", - "prefix": "abc123", + "lastname": "xyz789", + "middlename": "xyz789", + "postcode": "xyz789", + "prefix": "xyz789", "region": CustomerAddressRegion, "region_id": 987, - "street": ["xyz789"], + "street": ["abc123"], "suffix": "abc123", "telephone": "xyz789", - "uid": "4", - "vat_id": "abc123" + "uid": 4, + "vat_id": "xyz789" } } } @@ -19838,7 +19982,10 @@
    Query
    Variables
    -
    {"uid": 4, "input": CustomerAddressInput}
    +                  
    {
    +  "uid": "4",
    +  "input": CustomerAddressInput
    +}
     
    @@ -19850,23 +19997,23 @@
    Response
    "company": "xyz789", "country_code": "AF", "custom_attributesV2": [AttributeValueInterface], - "default_billing": false, + "default_billing": true, "default_shipping": false, "extension_attributes": [CustomerAddressAttribute], "fax": "abc123", - "firstname": "abc123", + "firstname": "xyz789", "id": 123, - "lastname": "abc123", - "middlename": "abc123", - "postcode": "xyz789", + "lastname": "xyz789", + "middlename": "xyz789", + "postcode": "abc123", "prefix": "abc123", "region": CustomerAddressRegion, "region_id": 987, "street": ["xyz789"], - "suffix": "abc123", - "telephone": "abc123", + "suffix": "xyz789", + "telephone": "xyz789", "uid": "4", - "vat_id": "xyz789" + "vat_id": "abc123" } } } @@ -19946,8 +20093,8 @@
    Query
    Variables
    {
    -  "email": "abc123",
    -  "password": "abc123"
    +  "email": "xyz789",
    +  "password": "xyz789"
     }
     
    @@ -20099,7 +20246,7 @@
    Query
    Variables
    {
    -  "giftRegistryUid": "4",
    +  "giftRegistryUid": 4,
       "giftRegistry": UpdateGiftRegistryInput
     }
     
    @@ -20277,7 +20424,7 @@
    Query
    Variables
    {
    -  "giftRegistryUid": 4,
    +  "giftRegistryUid": "4",
       "registrants": [UpdateGiftRegistryRegistrantInput]
     }
     
    @@ -20626,7 +20773,7 @@
    Response
    "created_at": "xyz789", "created_by": "abc123", "description": "abc123", - "name": "abc123", + "name": "xyz789", "status": "ENABLED", "uid": 4, "updated_at": "xyz789" @@ -20710,7 +20857,7 @@
    Query
    Variables
    {
    -  "requisitionListUid": 4,
    +  "requisitionListUid": "4",
       "input": UpdateRequisitionListInput
     }
     
    @@ -21119,7 +21266,7 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    +  "cart_id": "abc123",
       "cart_items": [DownloadableProductCartItemInput]
     }
     
    @@ -21224,9 +21371,9 @@
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "email": "abc123", + "email": "xyz789", "firstname": "xyz789", - "lastname": "abc123" + "lastname": "xyz789" }
    @@ -21643,8 +21790,8 @@
    Fields
    Example
    {
       "cart_id": "xyz789",
    -  "purchase_order_uid": 4,
    -  "replace_existing_cart_items": false
    +  "purchase_order_uid": "4",
    +  "replace_existing_cart_items": true
     }
     
    @@ -21807,7 +21954,7 @@
    Example
    AddRequisitionListItemToCartUserError ], "cart": Cart, - "status": false + "status": true }
    @@ -21855,10 +22002,7 @@
    Fields
    Example
    -
    {
    -  "comment_text": "xyz789",
    -  "return_uid": "4"
    -}
    +                  
    {"comment_text": "xyz789", "return_uid": 4}
     
    @@ -21954,7 +22098,7 @@
    Example
    {
       "carrier_uid": 4,
       "return_uid": "4",
    -  "tracking_number": "xyz789"
    +  "tracking_number": "abc123"
     }
     
    @@ -22110,9 +22254,9 @@
    Fields
    Example
    {
    -  "action": "xyz789",
    +  "action": "abc123",
       "date": "xyz789",
    -  "details": "abc123"
    +  "details": "xyz789"
     }
     
    @@ -22166,7 +22310,7 @@
    Example
    {
       "items": [AdminAssistanceAction],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -22359,10 +22503,10 @@
    Example
    "code": "abc123", "is_visible": true, "payment_intent": "xyz789", - "payment_source": "xyz789", + "payment_source": "abc123", "sdk_params": [SDKParams], - "sort_order": "abc123", - "title": "abc123" + "sort_order": "xyz789", + "title": "xyz789" }
    @@ -22417,9 +22561,9 @@
    Fields
    Example
    {
    -  "payment_source": "abc123",
    -  "payments_order_id": "abc123",
    -  "paypal_order_id": "xyz789"
    +  "payment_source": "xyz789",
    +  "payments_order_id": "xyz789",
    +  "paypal_order_id": "abc123"
     }
     
    @@ -22519,7 +22663,7 @@
    Example
    "applied_balance": Money, "code": "xyz789", "current_balance": Money, - "expiration_date": "abc123" + "expiration_date": "xyz789" }
    @@ -22573,7 +22717,7 @@
    Example
    {
       "action_type": "BOOST",
       "rule_id": "xyz789",
    -  "rule_name": "abc123"
    +  "rule_name": "xyz789"
     }
     
    @@ -22733,7 +22877,7 @@
    Fields
    Example
    {
       "cart_id": "xyz789",
    -  "coupon_code": "xyz789"
    +  "coupon_code": "abc123"
     }
     
    @@ -22877,8 +23021,8 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    -  "coupon_codes": ["xyz789"],
    +  "cart_id": "xyz789",
    +  "coupon_codes": ["abc123"],
       "type": "APPEND"
     }
     
    @@ -22928,8 +23072,8 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    -  "gift_card_code": "xyz789"
    +  "cart_id": "xyz789",
    +  "gift_card_code": "abc123"
     }
     
    @@ -23186,7 +23330,7 @@
    Fields
    Example
    -
    {"radius": 123, "search_term": "xyz789"}
    +                  
    {"radius": 987, "search_term": "abc123"}
     
    @@ -23314,11 +23458,101 @@
    Fields
    Example
    {
       "asset_video": ProductMediaGalleryEntriesAssetVideo,
    -  "disabled": false,
    -  "label": "xyz789",
    +  "disabled": true,
    +  "label": "abc123",
       "position": 123,
    -  "url": "abc123"
    +  "url": "xyz789"
     }
    +
    +
    + + back to top + +
    +
    +
    + Types +
    +

    AssignChildCompanyInput

    +
    +
    +
    +
    Description
    +

    Defines the input schema for assigning a child company to a parent company.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + + + + + +
    Input FieldDescription
    + child_company_id - ID! + The unique ID of the child company.
    + parent_company_id - ID! + The unique ID of the parent company.
    +
    +
    +
    +
    +
    Example
    +
    {
    +  "child_company_id": 4,
    +  "parent_company_id": "4"
    +}
    +
    +
    +
    + back to top +
    +
    +
    +
    + Types +
    +

    AssignChildCompanyOutput

    +
    +
    +
    +
    Description
    +

    Contains the response to the request to assign a child company.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + +
    Field NameDescription
    company_hierarchy - CompanyHierarchy! + The updated company hierarchy for the parent company.
    +
    +
    +
    +
    +
    Example
    +
    {"company_hierarchy": CompanyHierarchy}
     
    @@ -23363,7 +23597,7 @@
    Fields
    Example
    -
    {"compare_list": CompareList, "result": false}
    +                  
    {"compare_list": CompareList, "result": true}
     
    @@ -23488,7 +23722,7 @@
    Example
    "attribute_type": "abc123", "code": "4", "url": "xyz789", - "value": "abc123" + "value": "xyz789" }
    @@ -23598,15 +23832,15 @@
    Fields
    Example
    {
       "is_comparable": false,
    -  "is_filterable": true,
    +  "is_filterable": false,
       "is_filterable_in_search": true,
       "is_html_allowed_on_front": true,
       "is_searchable": true,
       "is_used_for_customer_segment": true,
       "is_used_for_price_rules": false,
    -  "is_used_for_promo_rules": true,
    +  "is_used_for_promo_rules": false,
       "is_visible_in_advanced_search": true,
    -  "is_visible_on_front": false,
    +  "is_visible_on_front": true,
       "is_wysiwyg_enabled": true,
       "used_in_product_listing": true
     }
    @@ -23810,8 +24044,8 @@ 
    Example
    {
       "attribute_type": "xyz789",
       "code": 4,
    -  "url": "xyz789",
    -  "value": "abc123"
    +  "url": "abc123",
    +  "value": "xyz789"
     }
     
    @@ -23860,7 +24094,7 @@
    Fields
    Example
    {
    -  "attribute_code": "xyz789",
    +  "attribute_code": "abc123",
       "entity_type": "xyz789"
     }
     
    @@ -23903,7 +24137,7 @@
    Fields
    Example
    -
    {"value": "xyz789"}
    +                  
    {"value": "abc123"}
     
    @@ -23987,10 +24221,10 @@
    Example
    "code": "4", "default_value": "xyz789", "entity_type": "CATALOG_PRODUCT", - "frontend_class": "abc123", + "frontend_class": "xyz789", "frontend_input": "BOOLEAN", - "is_required": true, - "is_unique": false, + "is_required": false, + "is_unique": true, "label": "xyz789", "options": [CustomAttributeOptionInterface] } @@ -24039,7 +24273,7 @@
    Fields
    Example
    {
    -  "message": "abc123",
    +  "message": "xyz789",
       "type": "ENTITY_NOT_FOUND"
     }
     
    @@ -24200,7 +24434,7 @@
    Fields
    Example
    {
       "is_default": false,
    -  "label": "abc123",
    +  "label": "xyz789",
       "value": "xyz789"
     }
     
    @@ -24245,7 +24479,7 @@
    Fields
    Example
    {
       "label": "xyz789",
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -24306,7 +24540,7 @@
    Possible Types
    Example
    {
       "label": "abc123",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -24356,7 +24590,7 @@
    Fields
    Example
    {
       "attribute_type": "abc123",
    -  "code": 4,
    +  "code": "4",
       "selected_options": [AttributeSelectedOptionInterface]
     }
     
    @@ -24405,7 +24639,7 @@
    Fields
    Example
    {
    -  "attribute_type": "xyz789",
    +  "attribute_type": "abc123",
       "code": "4",
       "value": "abc123"
     }
    @@ -24464,7 +24698,7 @@ 
    Example
    {
       "attribute_code": "abc123",
       "selected_options": [AttributeInputSelectedOption],
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -24684,7 +24918,7 @@
    Fields
    Example
    -
    {"code": "AFN", "symbol": "abc123"}
    +                  
    {"code": "AFN", "symbol": "xyz789"}
     
    @@ -24740,10 +24974,10 @@
    Fields
    Example
    {
    -  "code": "abc123",
    -  "is_deferred": false,
    +  "code": "xyz789",
    +  "is_deferred": true,
       "oope_payment_method_config": OopePaymentMethodConfig,
    -  "title": "abc123"
    +  "title": "xyz789"
     }
     
    @@ -24832,12 +25066,12 @@
    Example
    {
       "additional_data": [ShippingAdditionalData],
       "amount": Money,
    -  "available": false,
    -  "carrier_code": "xyz789",
    +  "available": true,
    +  "carrier_code": "abc123",
       "carrier_title": "xyz789",
       "error_message": "abc123",
       "method_code": "xyz789",
    -  "method_title": "xyz789",
    +  "method_title": "abc123",
       "price_excl_tax": Money,
       "price_incl_tax": Money
     }
    @@ -24959,9 +25193,9 @@ 
    Fields
    Example
    {
       "address": CartAddressInput,
    -  "customer_address_id": 123,
    -  "customer_address_uid": "4",
    -  "same_as_shipping": false,
    +  "customer_address_id": 987,
    +  "customer_address_uid": 4,
    +  "same_as_shipping": true,
       "use_for_shipping": true
     }
     
    @@ -25038,9 +25272,9 @@
    Example
    "address_line_1": "abc123", "address_line_2": "xyz789", "city": "abc123", - "country_code": "abc123", - "postal_code": "abc123", - "region": "xyz789" + "country_code": "xyz789", + "postal_code": "xyz789", + "region": "abc123" }
    @@ -25168,24 +25402,24 @@
    Fields
    Example
    {
    -  "city": "xyz789",
    -  "company": "abc123",
    +  "city": "abc123",
    +  "company": "xyz789",
       "country": CartAddressCountry,
       "custom_attributes": [AttributeValueInterface],
    -  "customer_address_uid": 4,
    -  "fax": "xyz789",
    -  "firstname": "xyz789",
    +  "customer_address_uid": "4",
    +  "fax": "abc123",
    +  "firstname": "abc123",
       "id": 123,
    -  "lastname": "abc123",
    -  "middlename": "abc123",
    +  "lastname": "xyz789",
    +  "middlename": "xyz789",
       "postcode": "abc123",
    -  "prefix": "xyz789",
    +  "prefix": "abc123",
       "region": CartAddressRegion,
    -  "street": ["abc123"],
    -  "suffix": "abc123",
    +  "street": ["xyz789"],
    +  "suffix": "xyz789",
       "telephone": "xyz789",
       "uid": "4",
    -  "vat_id": "xyz789"
    +  "vat_id": "abc123"
     }
     
    @@ -25206,11 +25440,6 @@
    Description
    -
    -
    Example
    -
    true
    -
    -
    back to top @@ -25269,9 +25498,9 @@
    Fields
    Example
    {
    -  "category_level": 123,
    +  "category_level": 987,
       "category_name": "xyz789",
    -  "category_uid": "4",
    +  "category_uid": 4,
       "category_url_key": "abc123",
       "category_url_path": "xyz789"
     }
    @@ -25351,7 +25580,7 @@ 
    Possible Types
    Example
    -
    {"title": "xyz789"}
    +                  
    {"title": "abc123"}
     
    @@ -25499,16 +25728,16 @@
    Example
    "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, "is_available": true, - "is_salable": true, + "is_salable": false, "max_qty": 987.65, - "min_qty": 987.65, - "not_available_message": "xyz789", + "min_qty": 123.45, + "not_available_message": "abc123", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, "quantity": 123.45, - "uid": "4" + "uid": 4 }
    @@ -25593,11 +25822,11 @@
    Example
    "bundle_options": [ItemSelectedBundleOption], "custom_attributes": [CustomAttribute], "discounts": [Discount], - "id": 4, + "id": "4", "order_item": OrderItemInterface, "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "abc123", + "product_sku": "xyz789", "quantity_refunded": 123.45 }
    @@ -25683,11 +25912,11 @@
    Example
    "bundle_options": [ItemSelectedBundleOption], "custom_attributes": [CustomAttribute], "discounts": [Discount], - "id": 4, + "id": "4", "order_item": OrderItemInterface, "product_name": "abc123", "product_sale_price": Money, - "product_sku": "abc123", + "product_sku": "xyz789", "quantity_invoiced": 123.45 }
    @@ -25766,12 +25995,12 @@
    Fields
    Example
    {
       "options": [BundleItemOption],
    -  "position": 987,
    +  "position": 123,
       "price_range": PriceRange,
       "required": true,
    -  "sku": "abc123",
    +  "sku": "xyz789",
       "title": "abc123",
    -  "type": "xyz789",
    +  "type": "abc123",
       "uid": "4"
     }
     
    @@ -25854,14 +26083,14 @@
    Fields
    Example
    {
    -  "can_change_quantity": false,
    +  "can_change_quantity": true,
       "is_default": true,
    -  "label": "abc123",
    -  "position": 123,
    -  "price": 123.45,
    +  "label": "xyz789",
    +  "position": 987,
    +  "price": 987.65,
       "price_type": "FIXED",
       "product": ProductInterface,
    -  "quantity": 987.65,
    +  "quantity": 123.45,
       "uid": 4
     }
     
    @@ -26032,21 +26261,21 @@
    Example
    "entered_options": [OrderItemOption], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "id": "4", - "parent_sku": "abc123", + "id": 4, + "parent_sku": "xyz789", "prices": OrderItemPrices, "product": ProductInterface, "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "abc123", + "product_sku": "xyz789", "product_type": "abc123", - "product_url_key": "xyz789", - "quantity_canceled": 987.65, - "quantity_invoiced": 987.65, + "product_url_key": "abc123", + "quantity_canceled": 123.45, + "quantity_invoiced": 123.45, "quantity_ordered": 987.65, "quantity_refunded": 987.65, - "quantity_return_requested": 123.45, - "quantity_returned": 987.65, + "quantity_return_requested": 987.65, + "quantity_returned": 123.45, "quantity_shipped": 123.45, "selected_options": [OrderItemOption], "status": "xyz789" @@ -26339,32 +26568,32 @@
    filters
    Example
    {
    -  "canonical_url": "abc123",
    +  "canonical_url": "xyz789",
       "categories": [CategoryInterface],
       "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    -  "dynamic_price": true,
    +  "dynamic_price": false,
       "dynamic_sku": false,
       "dynamic_weight": true,
    -  "gift_message_available": true,
    +  "gift_message_available": false,
       "gift_wrapping_available": false,
       "gift_wrapping_price": Money,
       "image": ProductImage,
    -  "is_returnable": "xyz789",
    +  "is_returnable": "abc123",
       "items": [BundleItem],
       "manufacturer": 123,
    -  "max_sale_qty": 987.65,
    +  "max_sale_qty": 123.45,
       "media_gallery": [MediaGalleryInterface],
    -  "meta_description": "xyz789",
    -  "meta_keyword": "xyz789",
    -  "meta_title": "xyz789",
    -  "min_sale_qty": 987.65,
    +  "meta_description": "abc123",
    +  "meta_keyword": "abc123",
    +  "meta_title": "abc123",
    +  "min_sale_qty": 123.45,
       "name": "abc123",
    -  "new_from_date": "xyz789",
    +  "new_from_date": "abc123",
       "new_to_date": "abc123",
    -  "only_x_left_in_stock": 123.45,
    +  "only_x_left_in_stock": 987.65,
       "options": [CustomizableOptionInterface],
       "options_container": "abc123",
       "price_details": PriceDetails,
    @@ -26376,17 +26605,17 @@ 
    Example
    "related_products": [ProductInterface], "ship_bundle_items": "TOGETHER", "short_description": ComplexTextValue, - "sku": "xyz789", + "sku": "abc123", "small_image": ProductImage, "special_price": 123.45, - "special_to_date": "abc123", + "special_to_date": "xyz789", "stock_status": "IN_STOCK", - "swatch_image": "abc123", + "swatch_image": "xyz789", "thumbnail": ProductImage, "uid": "4", "upsell_products": [ProductInterface], - "url_key": "xyz789", - "weight": 987.65 + "url_key": "abc123", + "weight": 123.45 }
    @@ -26609,13 +26838,13 @@
    Fields
    Example
    {
    -  "added_at": "xyz789",
    +  "added_at": "abc123",
       "bundle_options": [SelectedBundleOption],
       "customizable_options": [SelectedCustomizableOption],
       "description": "xyz789",
       "id": "4",
       "product": ProductInterface,
    -  "quantity": 987.65
    +  "quantity": 123.45
     }
     
    @@ -26685,11 +26914,11 @@
    Example
    {
       "color": "xyz789",
       "height": 123,
    -  "label": "abc123",
    -  "layout": "abc123",
    +  "label": "xyz789",
    +  "layout": "xyz789",
       "shape": "xyz789",
    -  "tagline": true,
    -  "use_default_height": true
    +  "tagline": false,
    +  "use_default_height": false
     }
     
    @@ -26739,7 +26968,7 @@
    Fields
    Example
    {
       "cancellation_comment": "xyz789",
    -  "template_id": "4"
    +  "template_id": 4
     }
     
    @@ -26783,7 +27012,7 @@
    Fields
    Example
    {
       "code": "ORDER_CANCELLATION_DISABLED",
    -  "message": "abc123"
    +  "message": "xyz789"
     }
     
    @@ -26904,7 +27133,7 @@
    Fields
    Example
    -
    {"order_id": 4, "reason": "xyz789"}
    +                  
    {"order_id": 4, "reason": "abc123"}
     
    @@ -26996,7 +27225,7 @@
    Fields
    Example
    -
    {"description": "xyz789"}
    +                  
    {"description": "abc123"}
     
    @@ -27054,9 +27283,9 @@
    Fields
    Example
    {
       "bin_details": CardBin,
    -  "card_expiry_month": "xyz789",
    +  "card_expiry_month": "abc123",
       "card_expiry_year": "abc123",
    -  "last_digits": "abc123",
    +  "last_digits": "xyz789",
       "name": "abc123"
     }
     
    @@ -27143,7 +27372,7 @@
    Fields
    Example
    {
       "billing_address": BillingAddressPaymentSourceInput,
    -  "name": "abc123"
    +  "name": "xyz789"
     }
     
    @@ -27195,9 +27424,9 @@
    Fields
    Example
    {
    -  "brand": "abc123",
    -  "expiry": "xyz789",
    -  "last_digits": "xyz789"
    +  "brand": "xyz789",
    +  "expiry": "abc123",
    +  "last_digits": "abc123"
     }
     
    @@ -27373,11 +27602,11 @@
    Example
    "gift_message": GiftMessage, "gift_receipt_included": true, "gift_wrapping": GiftWrapping, - "id": "4", - "is_virtual": false, + "id": 4, + "is_virtual": true, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": true, + "printed_card_included": false, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], @@ -27428,8 +27657,8 @@
    Fields
    Example
    {
    -  "code": "abc123",
    -  "label": "abc123"
    +  "code": "xyz789",
    +  "label": "xyz789"
     }
     
    @@ -27568,9 +27797,9 @@
    Fields
    Example
    {
    -  "city": "abc123",
    -  "company": "xyz789",
    -  "country_code": "xyz789",
    +  "city": "xyz789",
    +  "company": "abc123",
    +  "country_code": "abc123",
       "custom_attributes": [AttributeValueInput],
       "fax": "abc123",
       "firstname": "xyz789",
    @@ -27578,11 +27807,11 @@ 
    Example
    "middlename": "xyz789", "postcode": "xyz789", "prefix": "xyz789", - "region": "xyz789", - "region_id": 987, - "save_in_address_book": false, + "region": "abc123", + "region_id": 123, + "save_in_address_book": true, "street": ["xyz789"], - "suffix": "xyz789", + "suffix": "abc123", "telephone": "xyz789", "vat_id": "abc123" } @@ -27731,23 +27960,23 @@
    Possible Types
    Example
    {
       "city": "xyz789",
    -  "company": "abc123",
    +  "company": "xyz789",
       "country": CartAddressCountry,
       "custom_attributes": [AttributeValueInterface],
       "customer_address_uid": 4,
       "fax": "xyz789",
    -  "firstname": "abc123",
    -  "id": 987,
    +  "firstname": "xyz789",
    +  "id": 123,
       "lastname": "abc123",
    -  "middlename": "abc123",
    +  "middlename": "xyz789",
       "postcode": "abc123",
    -  "prefix": "abc123",
    +  "prefix": "xyz789",
       "region": CartAddressRegion,
       "street": ["xyz789"],
    -  "suffix": "xyz789",
    +  "suffix": "abc123",
       "telephone": "abc123",
    -  "uid": 4,
    -  "vat_id": "abc123"
    +  "uid": "4",
    +  "vat_id": "xyz789"
     }
     
    @@ -27801,7 +28030,7 @@
    Example
    {
       "code": "abc123",
       "label": "abc123",
    -  "region_id": 123
    +  "region_id": 987
     }
     
    @@ -27850,7 +28079,7 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    +  "cart_id": "abc123",
       "custom_attributes": [CustomAttributeInput]
     }
     
    @@ -27951,8 +28180,8 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    -  "cart_item_id": "abc123",
    +  "cart_id": "abc123",
    +  "cart_item_id": "xyz789",
       "custom_attributes": [CustomAttributeInput]
     }
     
    @@ -27995,7 +28224,7 @@
    Fields
    Example
    -
    {"code": "UNDEFINED", "message": "abc123"}
    +                  
    {"code": "UNDEFINED", "message": "xyz789"}
     
    @@ -28114,10 +28343,10 @@
    Fields
    Example
    {
       "entered_options": [EnteredOptionInput],
    -  "parent_sku": "xyz789",
    -  "quantity": 123.45,
    -  "selected_options": [4],
    -  "sku": "abc123"
    +  "parent_sku": "abc123",
    +  "quantity": 987.65,
    +  "selected_options": ["4"],
    +  "sku": "xyz789"
     }
     
    @@ -28281,7 +28510,7 @@
    Example
    "is_salable": false, "max_qty": 987.65, "min_qty": 987.65, - "not_available_message": "xyz789", + "not_available_message": "abc123", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, @@ -28442,7 +28671,7 @@
    Fields
    Example
    {
       "type": "FIXED",
    -  "units": "abc123",
    +  "units": "xyz789",
       "value": 123.45
     }
     
    @@ -28513,7 +28742,7 @@
    Example
    "cart_item_uid": "4", "customizable_options": [CustomizableOptionInput], "gift_message": GiftMessageInput, - "gift_wrapping_id": "4", + "gift_wrapping_id": 4, "quantity": 987.65 }
    @@ -28564,7 +28793,7 @@
    Example
    {
       "items": [CartItemInterface],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -28732,7 +28961,7 @@
    Fields
    Example
    {
       "amount": Money,
    -  "label": "xyz789"
    +  "label": "abc123"
     }
     
    @@ -28776,7 +29005,7 @@
    Fields
    Example
    {
       "code": "PRODUCT_NOT_FOUND",
    -  "message": "xyz789"
    +  "message": "abc123"
     }
     
    @@ -29101,28 +29330,28 @@
    Fields
    Example
    {
       "apply_to": ["SIMPLE"],
    -  "code": "4",
    -  "default_value": "abc123",
    +  "code": 4,
    +  "default_value": "xyz789",
       "entity_type": "CATALOG_PRODUCT",
    -  "frontend_class": "xyz789",
    +  "frontend_class": "abc123",
       "frontend_input": "BOOLEAN",
       "is_comparable": false,
       "is_filterable": false,
    -  "is_filterable_in_search": true,
    -  "is_html_allowed_on_front": true,
    +  "is_filterable_in_search": false,
    +  "is_html_allowed_on_front": false,
       "is_required": false,
    -  "is_searchable": true,
    -  "is_unique": true,
    +  "is_searchable": false,
    +  "is_unique": false,
       "is_used_for_price_rules": false,
       "is_used_for_promo_rules": false,
       "is_visible_in_advanced_search": false,
       "is_visible_on_front": true,
    -  "is_wysiwyg_enabled": true,
    +  "is_wysiwyg_enabled": false,
       "label": "xyz789",
       "options": [CustomAttributeOptionInterface],
       "swatch_input_type": "BOOLEAN",
    -  "update_product_preview_image": false,
    -  "use_product_image_for_swatch": true,
    +  "update_product_preview_image": true,
    +  "use_product_image_for_swatch": false,
       "used_in_product_listing": true
     }
     
    @@ -29184,8 +29413,8 @@
    Fields
    Example
    {
    -  "count": 987,
    -  "id": 4,
    +  "count": 123,
    +  "id": "4",
       "path": "abc123",
       "title": "xyz789"
     }
    @@ -29434,29 +29663,29 @@ 
    Example
    {
       "available_sort_by": ["abc123"],
       "breadcrumbs": [Breadcrumb],
    -  "canonical_url": "abc123",
    +  "canonical_url": "xyz789",
       "children_count": "abc123",
    -  "custom_layout_update_file": "abc123",
    +  "custom_layout_update_file": "xyz789",
       "default_sort_by": "xyz789",
    -  "description": "xyz789",
    +  "description": "abc123",
       "display_mode": "xyz789",
    -  "filter_price_range": 987.65,
    -  "image": "abc123",
    -  "include_in_menu": 987,
    +  "filter_price_range": 123.45,
    +  "image": "xyz789",
    +  "include_in_menu": 123,
       "is_anchor": 987,
       "landing_page": 123,
       "level": 987,
       "meta_description": "xyz789",
    -  "meta_keywords": "xyz789",
    -  "meta_title": "xyz789",
    -  "name": "xyz789",
    -  "path": "xyz789",
    -  "path_in_store": "xyz789",
    -  "position": 123,
    -  "product_count": 123,
    -  "uid": 4,
    -  "url_key": "abc123",
    -  "url_path": "xyz789"
    +  "meta_keywords": "abc123",
    +  "meta_title": "abc123",
    +  "name": "abc123",
    +  "path": "abc123",
    +  "path_in_store": "abc123",
    +  "position": 987,
    +  "product_count": 987,
    +  "uid": "4",
    +  "url_key": "xyz789",
    +  "url_path": "abc123"
     }
     
    @@ -29630,31 +29859,31 @@
    Fields
    Example
    {
    -  "available_sort_by": ["abc123"],
    +  "available_sort_by": ["xyz789"],
       "breadcrumbs": [Breadcrumb],
       "canonical_url": "xyz789",
       "children_count": "abc123",
    -  "custom_layout_update_file": "xyz789",
    -  "default_sort_by": "xyz789",
    +  "custom_layout_update_file": "abc123",
    +  "default_sort_by": "abc123",
       "description": "abc123",
    -  "display_mode": "xyz789",
    -  "filter_price_range": 987.65,
    +  "display_mode": "abc123",
    +  "filter_price_range": 123.45,
       "image": "abc123",
    -  "include_in_menu": 123,
    -  "is_anchor": 987,
    -  "landing_page": 123,
    -  "level": 123,
    -  "meta_description": "abc123",
    +  "include_in_menu": 987,
    +  "is_anchor": 123,
    +  "landing_page": 987,
    +  "level": 987,
    +  "meta_description": "xyz789",
       "meta_keywords": "abc123",
    -  "meta_title": "abc123",
    +  "meta_title": "xyz789",
       "name": "xyz789",
       "path": "xyz789",
    -  "path_in_store": "xyz789",
    -  "position": 987,
    +  "path_in_store": "abc123",
    +  "position": 123,
       "product_count": 987,
       "uid": "4",
       "url_key": "xyz789",
    -  "url_path": "abc123"
    +  "url_path": "xyz789"
     }
     
    @@ -29770,15 +29999,15 @@
    Example
    "availableSortBy": ["xyz789"], "children": ["xyz789"], "defaultSortBy": "xyz789", - "id": 4, - "level": 987, - "name": "abc123", + "id": "4", + "level": 123, + "name": "xyz789", "parentId": "abc123", - "position": 123, - "path": "abc123", - "roles": ["xyz789"], + "position": 987, + "path": "xyz789", + "roles": ["abc123"], "urlKey": "abc123", - "urlPath": "xyz789", + "urlPath": "abc123", "count": 123, "title": "xyz789" } @@ -29880,14 +30109,14 @@
    Possible Types
    Example
    {
    -  "availableSortBy": ["xyz789"],
    +  "availableSortBy": ["abc123"],
       "defaultSortBy": "abc123",
       "id": "4",
    -  "level": 987,
    -  "name": "abc123",
    +  "level": 123,
    +  "name": "xyz789",
       "path": "xyz789",
    -  "roles": ["xyz789"],
    -  "urlKey": "abc123",
    +  "roles": ["abc123"],
    +  "urlKey": "xyz789",
       "urlPath": "abc123"
     }
     
    @@ -29960,13 +30189,13 @@
    Fields
    Example
    {
    -  "agreement_id": 987,
    +  "agreement_id": 123,
       "checkbox_text": "abc123",
    -  "content": "xyz789",
    +  "content": "abc123",
       "content_height": "abc123",
       "is_html": true,
       "mode": "AUTO",
    -  "name": "abc123"
    +  "name": "xyz789"
     }
     
    @@ -30066,8 +30295,8 @@
    Fields
    Example
    {
       "code": "REORDER_NOT_AVAILABLE",
    -  "message": "xyz789",
    -  "path": ["xyz789"]
    +  "message": "abc123",
    +  "path": ["abc123"]
     }
     
    @@ -30179,7 +30408,7 @@
    Fields
    Example
    -
    {"cart": Cart, "status": true}
    +                  
    {"cart": Cart, "status": false}
     
    @@ -30271,7 +30500,7 @@
    Fields
    Example
    {
       "errors": [NegotiableQuoteInvalidStateError],
    -  "quote_uid": 4
    +  "quote_uid": "4"
     }
     
    @@ -30884,13 +31113,13 @@
    Example
    "credit": CompanyCredit, "credit_history": CompanyCreditHistory, "custom_attributes": [CustomAttribute], - "email": "abc123", + "email": "xyz789", "id": "4", "legal_address": CompanyLegalAddress, "legal_name": "xyz789", "name": "xyz789", "payment_methods": ["xyz789"], - "reseller_id": "abc123", + "reseller_id": "xyz789", "role": CompanyRole, "roles": CompanyRoles, "sales_representative": CompanySalesRepresentative, @@ -30958,8 +31187,8 @@
    Example
    {
       "children": [CompanyAclResource],
       "id": "4",
    -  "sort_order": 123,
    -  "text": "xyz789"
    +  "sort_order": 987,
    +  "text": "abc123"
     }
     
    @@ -31041,10 +31270,10 @@
    Example
    "custom_attributes": [AttributeValueInput], "email": "abc123", "firstname": "xyz789", - "gender": 123, + "gender": 987, "job_title": "xyz789", - "lastname": "xyz789", - "telephone": "abc123" + "lastname": "abc123", + "telephone": "xyz789" }
    @@ -31156,10 +31385,10 @@
    Fields
    Example
    {
    -  "id": 4,
    -  "is_admin": true,
    -  "legal_name": "abc123",
    -  "name": "abc123",
    +  "id": "4",
    +  "is_admin": false,
    +  "legal_name": "xyz789",
    +  "name": "xyz789",
       "status": "PENDING"
     }
     
    @@ -31240,11 +31469,11 @@
    Fields
    Example
    {
       "company_admin": CompanyAdminInput,
    -  "company_email": "xyz789",
    +  "company_email": "abc123",
       "company_name": "abc123",
       "legal_address": CompanyLegalAddressCreateInput,
       "legal_name": "xyz789",
    -  "reseller_id": "xyz789",
    +  "reseller_id": "abc123",
       "vat_tax_id": "xyz789"
     }
     
    @@ -31304,7 +31533,7 @@
    Example
    {
       "available_credit": Money,
       "credit_limit": Money,
    -  "exceed_limit": false,
    +  "exceed_limit": true,
       "outstanding_balance": Money
     }
     
    @@ -31359,7 +31588,7 @@
    Example
    {
       "items": [CompanyCreditOperation],
       "page_info": SearchResultPageInfo,
    -  "total_count": 123
    +  "total_count": 987
     }
     
    @@ -31414,9 +31643,9 @@
    Fields
    Example
    {
    -  "custom_reference_number": "abc123",
    +  "custom_reference_number": "xyz789",
       "operation_type": "ALLOCATION",
    -  "updated_by": "xyz789"
    +  "updated_by": "abc123"
     }
     
    @@ -31485,8 +31714,8 @@
    Example
    {
       "amount": Money,
       "balance": CompanyCredit,
    -  "custom_reference_number": "abc123",
    -  "date": "abc123",
    +  "custom_reference_number": "xyz789",
    +  "date": "xyz789",
       "type": "ALLOCATION",
       "updated_by": CompanyCreditOperationUser
     }
    @@ -31607,7 +31836,7 @@ 
    Fields
    Example
    -
    {"name": "xyz789", "type": "CUSTOMER"}
    +                  
    {"name": "abc123", "type": "CUSTOMER"}
     
    @@ -31754,8 +31983,8 @@
    Fields
    Example
    {
    -  "code": "abc123",
    -  "role_id": "4",
    +  "code": "xyz789",
    +  "role_id": 4,
       "user": CompanyInvitationUserInput
     }
     
    @@ -31865,7 +32094,7 @@
    Example
    {
       "company_id": "4",
       "customer_id": "4",
    -  "job_title": "abc123",
    +  "job_title": "xyz789",
       "status": "ACTIVE",
       "telephone": "xyz789"
     }
    @@ -32014,7 +32243,7 @@ 
    Example
    {
       "city": "xyz789",
       "country_id": "AF",
    -  "postcode": "xyz789",
    +  "postcode": "abc123",
       "region": CustomerAddressRegionInput,
       "street": ["xyz789"],
       "telephone": "abc123"
    @@ -32092,7 +32321,7 @@ 
    Example
    {
       "city": "xyz789",
       "country_id": "AF",
    -  "postcode": "abc123",
    +  "postcode": "xyz789",
       "region": CustomerAddressRegionInput,
       "street": ["abc123"],
       "telephone": "abc123"
    @@ -32155,7 +32384,7 @@ 
    Example
    "id": "4", "name": "abc123", "permissions": [CompanyAclResource], - "users_count": 123 + "users_count": 987 }
    @@ -32261,8 +32490,8 @@
    Fields
    Example
    {
       "id": 4,
    -  "name": "xyz789",
    -  "permissions": ["xyz789"]
    +  "name": "abc123",
    +  "permissions": ["abc123"]
     }
     
    @@ -32316,7 +32545,7 @@
    Example
    {
       "items": [CompanyRole],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -32369,7 +32598,7 @@
    Fields
    Example
    {
       "email": "abc123",
    -  "firstname": "xyz789",
    +  "firstname": "abc123",
       "lastname": "abc123"
     }
     
    @@ -32560,7 +32789,11 @@
    Fields
    Example
    -
    {"entity": CompanyTeam, "id": 4, "parent_id": 4}
    +                  
    {
    +  "entity": CompanyTeam,
    +  "id": 4,
    +  "parent_id": "4"
    +}
     
    @@ -32665,7 +32898,7 @@
    Example
    {
       "description": "xyz789",
       "id": "4",
    -  "name": "xyz789",
    +  "name": "abc123",
       "structure_id": 4
     }
     
    @@ -32778,9 +33011,9 @@
    Fields
    Example
    {
    -  "description": "xyz789",
    +  "description": "abc123",
       "id": "4",
    -  "name": "xyz789"
    +  "name": "abc123"
     }
     
    @@ -32854,11 +33087,11 @@
    Fields
    Example
    {
       "company_email": "abc123",
    -  "company_name": "abc123",
    +  "company_name": "xyz789",
       "legal_address": CompanyLegalAddressUpdateInput,
       "legal_name": "xyz789",
    -  "reseller_id": "abc123",
    -  "vat_tax_id": "xyz789"
    +  "reseller_id": "xyz789",
    +  "vat_tax_id": "abc123"
     }
     
    @@ -32943,13 +33176,13 @@
    Fields
    Example
    {
    -  "email": "xyz789",
    -  "firstname": "xyz789",
    +  "email": "abc123",
    +  "firstname": "abc123",
       "job_title": "abc123",
    -  "lastname": "abc123",
    -  "role_id": 4,
    +  "lastname": "xyz789",
    +  "role_id": "4",
       "status": "ACTIVE",
    -  "target_id": 4,
    +  "target_id": "4",
       "telephone": "xyz789"
     }
     
    @@ -33085,11 +33318,11 @@
    Example
    "email": "xyz789", "firstname": "xyz789", "id": 4, - "job_title": "xyz789", + "job_title": "abc123", "lastname": "xyz789", - "role_id": "4", + "role_id": 4, "status": "ACTIVE", - "telephone": "abc123" + "telephone": "xyz789" }
    @@ -33396,7 +33629,7 @@
    Fields
    Example
    {
    -  "cartId": "abc123",
    +  "cartId": "xyz789",
       "id": "xyz789"
     }
     
    @@ -33607,30 +33840,30 @@
    linkTypes
    Example
    {
    -  "addToCartAllowed": false,
    +  "addToCartAllowed": true,
       "inStock": true,
    -  "lowStock": true,
    +  "lowStock": false,
       "attributes": [ProductViewAttribute],
    -  "description": "abc123",
    -  "id": "4",
    +  "description": "xyz789",
    +  "id": 4,
       "images": [ProductViewImage],
       "videos": [ProductViewVideo],
       "lastModifiedAt": "2007-12-03T10:15:30Z",
       "metaDescription": "abc123",
    -  "metaKeyword": "xyz789",
    -  "metaTitle": "xyz789",
    -  "name": "xyz789",
    +  "metaKeyword": "abc123",
    +  "metaTitle": "abc123",
    +  "name": "abc123",
       "inputOptions": [ProductViewInputOption],
       "options": [ProductViewOption],
       "priceRange": ProductViewPriceRange,
       "shortDescription": "abc123",
       "sku": "abc123",
    -  "externalId": "xyz789",
    -  "url": "abc123",
    -  "urlKey": "abc123",
    +  "externalId": "abc123",
    +  "url": "xyz789",
    +  "urlKey": "xyz789",
       "links": [ProductViewLink],
    -  "queryType": "xyz789",
    -  "visibility": "xyz789"
    +  "queryType": "abc123",
    +  "visibility": "abc123"
     }
     
    @@ -33722,7 +33955,7 @@
    Example
    {
       "field": "UNKNOWN_FIELD",
       "operator": OperatorInput,
    -  "enabled": true
    +  "enabled": false
     }
     
    @@ -33780,7 +34013,7 @@
    Fields
    Example
    {
       "code": "xyz789",
    -  "label": "xyz789",
    +  "label": "abc123",
       "uid": 4,
       "value_index": 987
     }
    @@ -33936,17 +34169,17 @@ 
    Example
    "errors": [CartItemError], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "is_available": true, + "is_available": false, "is_salable": true, "max_qty": 123.45, "min_qty": 123.45, - "not_available_message": "xyz789", + "not_available_message": "abc123", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 987.65, - "uid": "4" + "quantity": 123.45, + "uid": 4 }
    @@ -33993,7 +34226,7 @@
    Fields
    Example
    {
    -  "attribute_code": "abc123",
    +  "attribute_code": "xyz789",
       "option_value_uids": [4]
     }
     
    @@ -34150,24 +34383,24 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "eligible_for_return": false,
    +  "eligible_for_return": true,
       "entered_options": [OrderItemOption],
       "gift_message": GiftMessage,
       "gift_wrapping": GiftWrapping,
    -  "id": 4,
    -  "parent_sku": "xyz789",
    +  "id": "4",
    +  "parent_sku": "abc123",
       "prices": OrderItemPrices,
       "product": ProductInterface,
    -  "product_name": "xyz789",
    +  "product_name": "abc123",
       "product_sale_price": Money,
       "product_sku": "xyz789",
       "product_type": "abc123",
       "product_url_key": "abc123",
       "quantity_canceled": 123.45,
    -  "quantity_invoiced": 123.45,
    -  "quantity_ordered": 123.45,
    -  "quantity_refunded": 123.45,
    -  "quantity_return_requested": 987.65,
    +  "quantity_invoiced": 987.65,
    +  "quantity_ordered": 987.65,
    +  "quantity_refunded": 987.65,
    +  "quantity_return_requested": 123.45,
       "quantity_returned": 987.65,
       "quantity_shipped": 987.65,
       "selected_options": [OrderItemOption],
    @@ -34462,42 +34695,42 @@ 
    Example
    "crosssell_products": [ProductInterface], "custom_attributesV2": ProductCustomAttributes, "description": ComplexTextValue, - "gift_message_available": true, + "gift_message_available": false, "gift_wrapping_available": false, "gift_wrapping_price": Money, "image": ProductImage, "is_returnable": "abc123", - "manufacturer": 987, - "max_sale_qty": 123.45, + "manufacturer": 123, + "max_sale_qty": 987.65, "media_gallery": [MediaGalleryInterface], - "meta_description": "xyz789", + "meta_description": "abc123", "meta_keyword": "xyz789", - "meta_title": "xyz789", - "min_sale_qty": 123.45, + "meta_title": "abc123", + "min_sale_qty": 987.65, "name": "abc123", "new_from_date": "xyz789", - "new_to_date": "xyz789", - "only_x_left_in_stock": 987.65, + "new_to_date": "abc123", + "only_x_left_in_stock": 123.45, "options": [CustomizableOptionInterface], "options_container": "xyz789", "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], - "quantity": 987.65, + "quantity": 123.45, "related_products": [ProductInterface], "short_description": ComplexTextValue, - "sku": "xyz789", + "sku": "abc123", "small_image": ProductImage, "special_price": 123.45, - "special_to_date": "abc123", + "special_to_date": "xyz789", "stock_status": "IN_STOCK", - "swatch_image": "xyz789", + "swatch_image": "abc123", "thumbnail": ProductImage, - "uid": 4, + "uid": "4", "upsell_products": [ProductInterface], - "url_key": "abc123", + "url_key": "xyz789", "variants": [ConfigurableVariant], - "weight": 123.45 + "weight": 987.65 }
    @@ -34555,8 +34788,8 @@
    Fields
    Example
    {
       "attribute_code": "xyz789",
    -  "label": "abc123",
    -  "uid": 4,
    +  "label": "xyz789",
    +  "uid": "4",
       "values": [ConfigurableProductOptionValue]
     }
     
    @@ -34621,7 +34854,7 @@
    Example
    {
       "is_available": false,
       "is_use_default": true,
    -  "label": "abc123",
    +  "label": "xyz789",
       "swatch": SwatchDataInterface,
       "uid": 4
     }
    @@ -34697,9 +34930,9 @@ 
    Example
    {
       "attribute_code": "abc123",
       "attribute_uid": "4",
    -  "label": "xyz789",
    +  "label": "abc123",
       "position": 987,
    -  "uid": 4,
    +  "uid": "4",
       "use_default": false,
       "values": [ConfigurableProductOptionsValues]
     }
    @@ -34831,7 +35064,7 @@ 
    Fields
    Example
    {
       "default_label": "xyz789",
    -  "label": "abc123",
    +  "label": "xyz789",
       "store_label": "xyz789",
       "swatch_data": SwatchDataInterface,
       "uid": "4",
    @@ -35033,14 +35266,14 @@ 
    Fields
    Example
    {
    -  "added_at": "xyz789",
    +  "added_at": "abc123",
       "configurable_options": [SelectedConfigurableOption],
       "configured_variant": ProductInterface,
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "xyz789",
    -  "id": 4,
    +  "description": "abc123",
    +  "id": "4",
       "product": ProductInterface,
    -  "quantity": 987.65
    +  "quantity": 123.45
     }
     
    @@ -35085,7 +35318,7 @@
    Fields
    Example
    {
    -  "confirmation_key": "abc123",
    +  "confirmation_key": "xyz789",
       "order_id": 4
     }
     
    @@ -35136,7 +35369,7 @@
    Fields
    Example
    {
       "confirmation_key": "abc123",
    -  "email": "abc123"
    +  "email": "xyz789"
     }
     
    @@ -35181,7 +35414,7 @@
    Fields
    Example
    {
    -  "confirmation_key": "xyz789",
    +  "confirmation_key": "abc123",
       "order_id": "4"
     }
     
    @@ -35286,8 +35519,8 @@
    Fields
    Example
    {
    -  "comment": "xyz789",
    -  "email": "abc123",
    +  "comment": "abc123",
    +  "email": "xyz789",
       "name": "xyz789",
       "telephone": "xyz789"
     }
    @@ -35330,7 +35563,7 @@ 
    Fields
    Example
    -
    {"status": false}
    +                  
    {"status": true}
     
    @@ -35528,11 +35761,11 @@
    Fields
    Example
    {
       "available_regions": [Region],
    -  "full_name_english": "abc123",
    -  "full_name_locale": "xyz789",
    +  "full_name_english": "xyz789",
    +  "full_name_locale": "abc123",
       "id": "xyz789",
    -  "three_letter_abbreviation": "xyz789",
    -  "two_letter_abbreviation": "xyz789"
    +  "three_letter_abbreviation": "abc123",
    +  "two_letter_abbreviation": "abc123"
     }
     
    @@ -37239,7 +37472,7 @@
    Fields
    Example
    -
    {"products": ["4"]}
    +                  
    {"products": [4]}
     
    @@ -37326,9 +37559,9 @@
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "event_name": "xyz789", - "gift_registry_type_uid": "4", - "message": "xyz789", + "event_name": "abc123", + "gift_registry_type_uid": 4, + "message": "abc123", "privacy_settings": "PRIVATE", "registrants": [AddGiftRegistryRegistrantInput], "shipping_address": GiftRegistryShippingAddressInput, @@ -37410,7 +37643,7 @@
    Fields
    Example
    -
    {"cart_uid": "4"}
    +                  
    {"cart_uid": 4}
     
    @@ -37514,9 +37747,9 @@
    Example
    {
       "cartId": "abc123",
       "location": "PRODUCT_DETAIL",
    -  "methodCode": "xyz789",
    +  "methodCode": "abc123",
       "paymentSource": "xyz789",
    -  "vaultIntent": true
    +  "vaultIntent": false
     }
     
    @@ -37579,10 +37812,10 @@
    Fields
    Example
    {
       "amount": 123.45,
    -  "currency_code": "abc123",
    -  "id": "xyz789",
    -  "mp_order_id": "abc123",
    -  "status": "abc123"
    +  "currency_code": "xyz789",
    +  "id": "abc123",
    +  "mp_order_id": "xyz789",
    +  "status": "xyz789"
     }
     
    @@ -37693,7 +37926,7 @@
    Example
    "amount": CreatePurchaseOrderApprovalRuleConditionAmountInput, "attribute": "GRAND_TOTAL", "operator": "MORE_THAN", - "quantity": 123 + "quantity": 987 }
    @@ -37742,7 +37975,7 @@
    Fields
    Example
    {
    -  "description": "xyz789",
    +  "description": "abc123",
       "name": "abc123"
     }
     
    @@ -37833,7 +38066,7 @@
    Fields
    Example
    {
       "card_description": "abc123",
    -  "setup_token_id": "abc123"
    +  "setup_token_id": "xyz789"
     }
     
    @@ -38255,11 +38488,11 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "id": "4",
    +  "id": 4,
       "order_item": OrderItemInterface,
    -  "product_name": "abc123",
    +  "product_name": "xyz789",
       "product_sale_price": Money,
    -  "product_sku": "xyz789",
    +  "product_sku": "abc123",
       "quantity_refunded": 123.45
     }
     
    @@ -38315,7 +38548,7 @@
    Fields
    Example
    {
    -  "credit_memo_id": "xyz789",
    +  "credit_memo_id": "abc123",
       "credit_memo_item_id": "abc123",
       "custom_attributes": [CustomAttributeInput]
     }
    @@ -38428,12 +38661,12 @@ 
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "id": "4",
    +  "id": 4,
       "order_item": OrderItemInterface,
       "product_name": "abc123",
       "product_sale_price": Money,
       "product_sku": "abc123",
    -  "quantity_refunded": 987.65
    +  "quantity_refunded": 123.45
     }
     
    @@ -38626,7 +38859,7 @@
    Fields
    Example
    {
    -  "available_currency_codes": ["abc123"],
    +  "available_currency_codes": ["xyz789"],
       "base_currency_code": "xyz789",
       "base_currency_symbol": "abc123",
       "default_display_currency_code": "abc123",
    @@ -39897,7 +40130,7 @@ 
    Fields
    Example
    -
    {"sku": "abc123", "price": 123.45}
    +                  
    {"sku": "abc123", "price": 987.65}
     
    @@ -39943,8 +40176,8 @@
    Fields
    Example
    {
    -  "attribute_code": "abc123",
    -  "value": "xyz789"
    +  "attribute_code": "xyz789",
    +  "value": "abc123"
     }
     
    @@ -40109,7 +40342,7 @@
    Possible Types
    Example
    {
       "code": 4,
    -  "default_value": "abc123",
    +  "default_value": "xyz789",
       "entity_type": "CATALOG_PRODUCT",
       "frontend_class": "abc123",
       "frontend_input": "BOOLEAN",
    @@ -40181,7 +40414,7 @@ 
    Possible Types
    Example
    {
    -  "is_default": true,
    +  "is_default": false,
       "label": "xyz789",
       "value": "xyz789"
     }
    @@ -40233,7 +40466,7 @@ 
    Fields
    Example
    {
       "key": "xyz789",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -40881,31 +41114,31 @@
    Example
    "company_hierarchy": [CompanyHierarchy], "compare_list": CompareList, "confirmation_status": "ACCOUNT_CONFIRMED", - "created_at": "xyz789", + "created_at": "abc123", "custom_attributes": [AttributeValueInterface], - "date_of_birth": "xyz789", + "date_of_birth": "abc123", "default_billing": "abc123", - "default_shipping": "abc123", - "email": "xyz789", + "default_shipping": "xyz789", + "email": "abc123", "firstname": "abc123", "gender": 987, "gift_registries": [GiftRegistry], "gift_registry": GiftRegistry, "group": CustomerGroupStorefront, "id": 4, - "is_subscribed": true, - "job_title": "xyz789", + "is_subscribed": false, + "job_title": "abc123", "lastname": "abc123", "middlename": "abc123", "orders": CustomerOrders, - "prefix": "abc123", + "prefix": "xyz789", "purchase_order": PurchaseOrder, "purchase_order_approval_rule": PurchaseOrderApprovalRule, "purchase_order_approval_rule_metadata": PurchaseOrderApprovalRuleMetadata, "purchase_order_approval_rules": PurchaseOrderApprovalRules, "purchase_orders": PurchaseOrders, - "purchase_orders_enabled": true, - "quote_enabled": false, + "purchase_orders_enabled": false, + "quote_enabled": true, "requisition_lists": RequisitionLists, "return": Return, "returns": Returns, @@ -41076,27 +41309,27 @@
    attributeCodes
    Example
    {
    -  "city": "xyz789",
    -  "company": "xyz789",
    +  "city": "abc123",
    +  "company": "abc123",
       "country_code": "AF",
       "custom_attributesV2": [AttributeValueInterface],
    -  "default_billing": true,
    +  "default_billing": false,
       "default_shipping": true,
       "extension_attributes": [CustomerAddressAttribute],
    -  "fax": "abc123",
    +  "fax": "xyz789",
       "firstname": "xyz789",
    -  "id": 987,
    -  "lastname": "abc123",
    -  "middlename": "abc123",
    +  "id": 123,
    +  "lastname": "xyz789",
    +  "middlename": "xyz789",
       "postcode": "abc123",
    -  "prefix": "xyz789",
    +  "prefix": "abc123",
       "region": CustomerAddressRegion,
       "region_id": 123,
       "street": ["abc123"],
       "suffix": "abc123",
    -  "telephone": "xyz789",
    -  "uid": 4,
    -  "vat_id": "abc123"
    +  "telephone": "abc123",
    +  "uid": "4",
    +  "vat_id": "xyz789"
     }
     
    @@ -41143,8 +41376,8 @@
    Fields
    Example
    {
    -  "attribute_code": "xyz789",
    -  "value": "abc123"
    +  "attribute_code": "abc123",
    +  "value": "xyz789"
     }
     
    @@ -41284,17 +41517,17 @@
    Fields
    Example
    {
       "city": "xyz789",
    -  "company": "abc123",
    +  "company": "xyz789",
       "country_code": "AF",
       "custom_attributesV2": [AttributeValueInput],
    -  "default_billing": true,
    -  "default_shipping": false,
    +  "default_billing": false,
    +  "default_shipping": true,
       "fax": "abc123",
       "firstname": "xyz789",
       "lastname": "abc123",
       "middlename": "abc123",
       "postcode": "abc123",
    -  "prefix": "abc123",
    +  "prefix": "xyz789",
       "region": CustomerAddressRegionInput,
       "street": ["xyz789"],
       "suffix": "xyz789",
    @@ -41351,8 +41584,8 @@ 
    Fields
    Example
    {
    -  "region": "abc123",
    -  "region_code": "xyz789",
    +  "region": "xyz789",
    +  "region_code": "abc123",
       "region_id": 987
     }
     
    @@ -41408,7 +41641,7 @@
    Fields
    Example
    {
    -  "region": "abc123",
    +  "region": "xyz789",
       "region_code": "xyz789",
       "region_id": 987
     }
    @@ -41460,7 +41693,7 @@ 
    Example
    {
       "items": [CustomerAddress],
       "page_info": SearchResultPageInfo,
    -  "total_count": 123
    +  "total_count": 987
     }
     
    @@ -41562,14 +41795,14 @@
    Fields
    Example
    {
    -  "code": 4,
    -  "default_value": "xyz789",
    +  "code": "4",
    +  "default_value": "abc123",
       "entity_type": "CATALOG_PRODUCT",
       "frontend_class": "abc123",
       "frontend_input": "BOOLEAN",
       "input_filter": "NONE",
    -  "is_required": true,
    -  "is_unique": false,
    +  "is_required": false,
    +  "is_unique": true,
       "label": "abc123",
       "multiline_count": 123,
       "options": [CustomAttributeOptionInterface],
    @@ -41689,18 +41922,18 @@ 
    Fields
    Example
    {
    -  "allow_remote_shopping_assistance": true,
    +  "allow_remote_shopping_assistance": false,
       "custom_attributes": [AttributeValueInput],
    -  "date_of_birth": "xyz789",
    +  "date_of_birth": "abc123",
       "email": "xyz789",
       "firstname": "abc123",
       "gender": 987,
    -  "is_subscribed": false,
    -  "lastname": "abc123",
    -  "middlename": "abc123",
    -  "password": "xyz789",
    -  "prefix": "xyz789",
    -  "suffix": "xyz789",
    +  "is_subscribed": true,
    +  "lastname": "xyz789",
    +  "middlename": "xyz789",
    +  "password": "abc123",
    +  "prefix": "abc123",
    +  "suffix": "abc123",
       "taxvat": "abc123"
     }
     
    @@ -41763,10 +41996,10 @@
    Fields
    Example
    {
    -  "date": "abc123",
    -  "download_url": "abc123",
    +  "date": "xyz789",
    +  "download_url": "xyz789",
       "order_increment_id": "xyz789",
    -  "remaining_downloads": "xyz789",
    +  "remaining_downloads": "abc123",
       "status": "xyz789"
     }
     
    @@ -42065,7 +42298,7 @@
    currentPage
    Example
    {
    -  "admin_assisted_order": 987,
    +  "admin_assisted_order": 123,
       "applied_coupons": [AppliedCoupon],
       "applied_gift_cards": [ApplyGiftCardToOrder],
       "available_actions": ["REORDER"],
    @@ -42075,9 +42308,9 @@ 
    Example
    "credit_memos": [CreditMemo], "custom_attributes": [CustomAttribute], "customer_info": OrderCustomerInfo, - "email": "abc123", + "email": "xyz789", "gift_message": GiftMessage, - "gift_receipt_included": false, + "gift_receipt_included": true, "gift_wrapping": GiftWrapping, "id": 4, "invoices": [Invoice], @@ -42085,17 +42318,17 @@
    Example
    "items": [OrderItemInterface], "items_eligible_for_return": [OrderItemInterface], "negotiable_quote": NegotiableQuote, - "number": "abc123", + "number": "xyz789", "order_date": "abc123", "order_status_change_date": "abc123", "payment_methods": [OrderPaymentMethod], - "printed_card_included": true, + "printed_card_included": false, "returns": Returns, "shipments": [OrderShipment], "shipping_address": OrderAddress, "shipping_method": "abc123", "status": "xyz789", - "token": "abc123", + "token": "xyz789", "total": OrderTotal }
    @@ -42250,7 +42483,7 @@
    Example
    "date_of_first_order": "xyz789", "items": [CustomerOrder], "page_info": SearchResultPageInfo, - "total_count": 123 + "total_count": 987 }
    @@ -42507,7 +42740,7 @@
    Example
    {
       "balance_history": CustomerStoreCreditHistory,
       "current_balance": Money,
    -  "enabled": true
    +  "enabled": false
     }
     
    @@ -42621,7 +42854,7 @@
    Example
    "action": "xyz789", "actual_balance": Money, "balance_change": Money, - "date_time_changed": "xyz789" + "date_time_changed": "abc123" }
    @@ -42766,15 +42999,15 @@
    Example
    {
       "allow_remote_shopping_assistance": false,
       "custom_attributes": [AttributeValueInput],
    -  "date_of_birth": "xyz789",
    +  "date_of_birth": "abc123",
       "firstname": "abc123",
       "gender": 987,
       "is_subscribed": true,
    -  "lastname": "xyz789",
    -  "middlename": "xyz789",
    -  "prefix": "abc123",
    +  "lastname": "abc123",
    +  "middlename": "abc123",
    +  "prefix": "xyz789",
       "suffix": "abc123",
    -  "taxvat": "abc123"
    +  "taxvat": "xyz789"
     }
     
    @@ -42845,7 +43078,7 @@
    Example
    "required": true, "sort_order": 987, "title": "xyz789", - "uid": "4", + "uid": 4, "value": CustomizableAreaValue }
    @@ -42912,7 +43145,7 @@
    Example
    "price": 123.45, "price_type": "FIXED", "sku": "abc123", - "uid": 4 + "uid": "4" }
    @@ -42975,9 +43208,9 @@
    Fields
    Example
    {
       "required": false,
    -  "sort_order": 987,
    -  "title": "abc123",
    -  "uid": "4",
    +  "sort_order": 123,
    +  "title": "xyz789",
    +  "uid": 4,
       "value": [CustomizableCheckboxValue]
     }
     
    @@ -43050,13 +43283,13 @@
    Fields
    Example
    {
    -  "option_type_id": 987,
    -  "price": 987.65,
    +  "option_type_id": 123,
    +  "price": 123.45,
       "price_type": "FIXED",
       "sku": "abc123",
       "sort_order": 123,
       "title": "xyz789",
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -43125,7 +43358,7 @@
    Example
    {
       "product_sku": "xyz789",
       "required": true,
    -  "sort_order": 987,
    +  "sort_order": 123,
       "title": "xyz789",
       "uid": 4,
       "value": CustomizableDateValue
    @@ -43246,9 +43479,9 @@ 
    Fields
    Example
    {
    -  "price": 123.45,
    +  "price": 987.65,
       "price_type": "FIXED",
    -  "sku": "abc123",
    +  "sku": "xyz789",
       "type": "DATE",
       "uid": 4
     }
    @@ -43313,9 +43546,9 @@ 
    Fields
    Example
    {
       "required": false,
    -  "sort_order": 123,
    +  "sort_order": 987,
       "title": "abc123",
    -  "uid": "4",
    +  "uid": 4,
       "value": [CustomizableDropDownValue]
     }
     
    @@ -43388,12 +43621,12 @@
    Fields
    Example
    {
    -  "option_type_id": 123,
    -  "price": 123.45,
    +  "option_type_id": 987,
    +  "price": 987.65,
       "price_type": "FIXED",
    -  "sku": "xyz789",
    +  "sku": "abc123",
       "sort_order": 123,
    -  "title": "xyz789",
    +  "title": "abc123",
       "uid": 4
     }
     
    @@ -43461,10 +43694,10 @@
    Fields
    Example
    {
    -  "product_sku": "xyz789",
    -  "required": true,
    +  "product_sku": "abc123",
    +  "required": false,
       "sort_order": 123,
    -  "title": "xyz789",
    +  "title": "abc123",
       "uid": 4,
       "value": CustomizableFieldValue
     }
    @@ -43529,9 +43762,9 @@ 
    Fields
    Example
    {
       "max_characters": 987,
    -  "price": 123.45,
    +  "price": 987.65,
       "price_type": "FIXED",
    -  "sku": "xyz789",
    +  "sku": "abc123",
       "uid": "4"
     }
     
    @@ -43601,9 +43834,9 @@
    Example
    {
       "product_sku": "abc123",
       "required": false,
    -  "sort_order": 987,
    -  "title": "xyz789",
    -  "uid": "4",
    +  "sort_order": 123,
    +  "title": "abc123",
    +  "uid": 4,
       "value": CustomizableFileValue
     }
     
    @@ -43676,12 +43909,12 @@
    Fields
    Example
    {
    -  "file_extension": "abc123",
    +  "file_extension": "xyz789",
       "image_size_x": 123,
       "image_size_y": 987,
    -  "price": 123.45,
    +  "price": 987.65,
       "price_type": "FIXED",
    -  "sku": "xyz789",
    +  "sku": "abc123",
       "uid": 4
     }
     
    @@ -43744,7 +43977,7 @@
    Fields
    Example
    {
    -  "required": true,
    +  "required": false,
       "sort_order": 987,
       "title": "xyz789",
       "uid": 4,
    @@ -43824,9 +44057,9 @@ 
    Example
    "price": 123.45, "price_type": "FIXED", "sku": "abc123", - "sort_order": 123, + "sort_order": 987, "title": "xyz789", - "uid": "4" + "uid": 4 }
    @@ -43876,7 +44109,7 @@
    Fields
    Example
    {
       "uid": "4",
    -  "value_string": "abc123"
    +  "value_string": "xyz789"
     }
     
    @@ -43985,8 +44218,8 @@
    Possible Types
    Example
    {
    -  "required": true,
    -  "sort_order": 987,
    +  "required": false,
    +  "sort_order": 123,
       "title": "abc123",
       "uid": 4
     }
    @@ -44132,9 +44365,9 @@ 
    Fields
    Example
    {
    -  "required": true,
    +  "required": false,
       "sort_order": 123,
    -  "title": "abc123",
    +  "title": "xyz789",
       "uid": 4,
       "value": [CustomizableRadioValue]
     }
    @@ -44209,11 +44442,11 @@ 
    Fields
    Example
    {
       "option_type_id": 123,
    -  "price": 987.65,
    +  "price": 123.45,
       "price_type": "FIXED",
    -  "sku": "xyz789",
    +  "sku": "abc123",
       "sort_order": 123,
    -  "title": "abc123",
    +  "title": "xyz789",
       "uid": 4
     }
     
    @@ -44277,7 +44510,7 @@
    Fields
    Example
    -
    {"success": false}
    +                  
    {"success": true}
     
    @@ -44317,7 +44550,7 @@
    Fields
    Example
    -
    {"success": true}
    +                  
    {"success": false}
     
    @@ -44741,7 +44974,7 @@
    Fields
    Example
    {
       "customerPaymentTokens": CustomerPaymentTokens,
    -  "result": false
    +  "result": true
     }
     
    @@ -44873,7 +45106,7 @@
    Fields
    Example
    -
    {"approval_rule_uids": ["4"]}
    +                  
    {"approval_rule_uids": [4]}
     
    @@ -45117,9 +45350,9 @@
    Example
    "amount": Money, "applied_to": "ITEM", "coupon": AppliedCoupon, - "is_discounting_locked": false, + "is_discounting_locked": true, "label": "abc123", - "type": "xyz789", + "type": "abc123", "value": 123.45 }
    @@ -45254,19 +45487,19 @@
    Example
    "customizable_options": [SelectedCustomizableOption], "discount": [Discount], "errors": [CartItemError], - "is_available": false, - "is_salable": true, + "is_available": true, + "is_salable": false, "links": [DownloadableProductLinks], - "max_qty": 123.45, - "min_qty": 987.65, + "max_qty": 987.65, + "min_qty": 123.45, "not_available_message": "abc123", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 123.45, + "quantity": 987.65, "samples": [DownloadableProductSamples], - "uid": 4 + "uid": "4" }
    @@ -45351,12 +45584,12 @@
    Example
    "custom_attributes": [CustomAttribute], "discounts": [Discount], "downloadable_links": [DownloadableItemsLinks], - "id": 4, + "id": "4", "order_item": OrderItemInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, "product_sku": "abc123", - "quantity_refunded": 123.45 + "quantity_refunded": 987.65 }
    @@ -45441,7 +45674,7 @@
    Example
    "custom_attributes": [CustomAttribute], "discounts": [Discount], "downloadable_links": [DownloadableItemsLinks], - "id": 4, + "id": "4", "order_item": OrderItemInterface, "product_name": "abc123", "product_sale_price": Money, @@ -45498,8 +45731,8 @@
    Fields
    Example
    {
    -  "sort_order": 987,
    -  "title": "abc123",
    +  "sort_order": 123,
    +  "title": "xyz789",
       "uid": "4"
     }
     
    @@ -45661,7 +45894,7 @@
    Example
    "custom_attributes": [CustomAttribute], "discounts": [Discount], "downloadable_links": [DownloadableItemsLinks], - "eligible_for_return": false, + "eligible_for_return": true, "entered_options": [OrderItemOption], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, @@ -45671,15 +45904,15 @@
    Example
    "product_name": "xyz789", "product_sale_price": Money, "product_sku": "abc123", - "product_type": "abc123", + "product_type": "xyz789", "product_url_key": "xyz789", "quantity_canceled": 987.65, "quantity_invoiced": 123.45, "quantity_ordered": 987.65, - "quantity_refunded": 987.65, + "quantity_refunded": 123.45, "quantity_return_requested": 987.65, - "quantity_returned": 123.45, - "quantity_shipped": 987.65, + "quantity_returned": 987.65, + "quantity_shipped": 123.45, "selected_options": [OrderItemOption], "status": "xyz789" } @@ -45951,9 +46184,9 @@
    filters
    Example
    {
    -  "canonical_url": "abc123",
    +  "canonical_url": "xyz789",
       "categories": [CategoryInterface],
    -  "country_of_manufacture": "abc123",
    +  "country_of_manufacture": "xyz789",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    @@ -45963,20 +46196,20 @@ 
    Example
    "downloadable_product_samples": [ DownloadableProductSamples ], - "gift_message_available": true, + "gift_message_available": false, "gift_wrapping_available": true, "gift_wrapping_price": Money, "image": ProductImage, "is_returnable": "abc123", - "links_purchased_separately": 987, - "links_title": "abc123", + "links_purchased_separately": 123, + "links_title": "xyz789", "manufacturer": 987, - "max_sale_qty": 987.65, + "max_sale_qty": 123.45, "media_gallery": [MediaGalleryInterface], "meta_description": "xyz789", - "meta_keyword": "abc123", + "meta_keyword": "xyz789", "meta_title": "xyz789", - "min_sale_qty": 123.45, + "min_sale_qty": 987.65, "name": "xyz789", "new_from_date": "xyz789", "new_to_date": "xyz789", @@ -45986,15 +46219,15 @@
    Example
    "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], - "quantity": 987.65, + "quantity": 123.45, "related_products": [ProductInterface], "short_description": ComplexTextValue, - "sku": "abc123", + "sku": "xyz789", "small_image": ProductImage, "special_price": 987.65, - "special_to_date": "abc123", + "special_to_date": "xyz789", "stock_status": "IN_STOCK", - "swatch_image": "xyz789", + "swatch_image": "abc123", "thumbnail": ProductImage, "uid": 4, "upsell_products": [ProductInterface], @@ -46120,10 +46353,10 @@
    Fields
    Example
    {
       "price": 987.65,
    -  "sample_url": "abc123",
    -  "sort_order": 987,
    +  "sample_url": "xyz789",
    +  "sort_order": 123,
       "title": "xyz789",
    -  "uid": "4"
    +  "uid": 4
     }
     
    @@ -46217,8 +46450,8 @@
    Fields
    Example
    {
       "sample_url": "abc123",
    -  "sort_order": 123,
    -  "title": "xyz789"
    +  "sort_order": 987,
    +  "title": "abc123"
     }
     
    @@ -46293,7 +46526,7 @@
    Example
    "customizable_options": [SelectedCustomizableOption], "links": [DownloadableProductLinks], "product": ProductInterface, - "quantity": 987.65, + "quantity": 123.45, "samples": [DownloadableProductSamples], "sku": "abc123", "uid": "4" @@ -46374,10 +46607,10 @@
    Fields
    Example
    {
    -  "added_at": "abc123",
    +  "added_at": "xyz789",
       "customizable_options": [SelectedCustomizableOption],
       "description": "xyz789",
    -  "id": "4",
    +  "id": 4,
       "links_v2": [DownloadableProductLinks],
       "product": ProductInterface,
       "quantity": 987.65,
    @@ -46430,8 +46663,8 @@ 
    Fields
    Example
    {
    -  "duplicated_quote_uid": 4,
    -  "quote_uid": "4"
    +  "duplicated_quote_uid": "4",
    +  "quote_uid": 4
     }
     
    @@ -46521,7 +46754,7 @@
    Fields
    Example
    {
       "attribute_code": "abc123",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -46569,7 +46802,10 @@
    Fields
    Example
    -
    {"uid": 4, "value": "abc123"}
    +                  
    {
    +  "uid": "4",
    +  "value": "abc123"
    +}
     
    @@ -46702,7 +46938,7 @@
    Possible Types
    Example
    -
    {"message": "abc123"}
    +                  
    {"message": "xyz789"}
     
    @@ -46757,7 +46993,7 @@
    Fields
    Example
    {
       "country_code": "AF",
    -  "postcode": "abc123",
    +  "postcode": "xyz789",
       "region": CustomerAddressRegionInput
     }
     
    @@ -46986,7 +47222,7 @@
    Fields
    Example
    -
    {"currency_to": "xyz789", "rate": 987.65}
    +                  
    {"currency_to": "xyz789", "rate": 123.45}
     
    @@ -47058,14 +47294,14 @@
    Fields
    Example
    {
    -  "code": "abc123",
    -  "is_visible": true,
    -  "payment_intent": "abc123",
    +  "code": "xyz789",
    +  "is_visible": false,
    +  "payment_intent": "xyz789",
       "payment_source": "abc123",
       "sdk_params": [SDKParams],
       "sort_order": "xyz789",
       "three_ds_mode": "OFF",
    -  "title": "xyz789"
    +  "title": "abc123"
     }
     
    @@ -47394,7 +47630,7 @@
    Fields
    Example
    {
       "from": "abc123",
    -  "to": "abc123"
    +  "to": "xyz789"
     }
     
    @@ -47448,7 +47684,7 @@
    Fields
    Example
    {
    -  "name": "xyz789",
    +  "name": "abc123",
       "type": "UNKNOWN_FILTER_RULE_TYPE",
       "conditions": [ConditionInput]
     }
    @@ -47558,7 +47794,7 @@ 
    Fields
    Example
    {
       "eq": "xyz789",
    -  "in": ["xyz789"],
    +  "in": ["abc123"],
       "match": "abc123"
     }
     
    @@ -47681,17 +47917,17 @@
    Fields
    Example
    {
       "eq": "abc123",
    -  "from": "abc123",
    -  "gt": "abc123",
    -  "gteq": "abc123",
    -  "in": ["xyz789"],
    -  "like": "xyz789",
    -  "lt": "xyz789",
    +  "from": "xyz789",
    +  "gt": "xyz789",
    +  "gteq": "xyz789",
    +  "in": ["abc123"],
    +  "like": "abc123",
    +  "lt": "abc123",
       "lteq": "xyz789",
       "moreq": "xyz789",
    -  "neq": "abc123",
    -  "nin": ["xyz789"],
    -  "notnull": "abc123",
    +  "neq": "xyz789",
    +  "nin": ["abc123"],
    +  "notnull": "xyz789",
       "null": "abc123",
       "to": "abc123"
     }
    @@ -47750,8 +47986,8 @@ 
    Fields
    Example
    {
    -  "attribute": "xyz789",
    -  "frontendInput": "abc123",
    +  "attribute": "abc123",
    +  "frontendInput": "xyz789",
       "label": "abc123",
       "numeric": true
     }
    @@ -47801,7 +48037,7 @@ 
    Fields
    Example
    {
       "amount": Money,
    -  "label": "xyz789"
    +  "label": "abc123"
     }
     
    @@ -47970,7 +48206,7 @@
    Fields
    Example
    -
    {"customer_token": "abc123"}
    +                  
    {"customer_token": "xyz789"}
     
    @@ -48247,10 +48483,10 @@
    Fields
    Example
    {
    -  "attribute_id": 987,
    -  "uid": "4",
    +  "attribute_id": 123,
    +  "uid": 4,
       "value": 123.45,
    -  "website_id": 987,
    +  "website_id": 123,
       "website_value": 987.65
     }
     
    @@ -48424,20 +48660,20 @@
    Example
    "errors": [CartItemError], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "is_available": false, + "is_available": true, "is_salable": false, "max_qty": 987.65, - "message": "xyz789", - "min_qty": 987.65, + "message": "abc123", + "min_qty": 123.45, "not_available_message": "xyz789", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 123.45, - "recipient_email": "xyz789", + "quantity": 987.65, + "recipient_email": "abc123", "recipient_name": "abc123", - "sender_email": "xyz789", + "sender_email": "abc123", "sender_name": "xyz789", "uid": "4" } @@ -48520,12 +48756,12 @@
    Example
    "custom_attributes": [CustomAttribute], "discounts": [Discount], "gift_card": GiftCardItem, - "id": 4, + "id": "4", "order_item": OrderItemInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "xyz789", - "quantity_refunded": 987.65 + "product_sku": "abc123", + "quantity_refunded": 123.45 }
    @@ -48606,12 +48842,12 @@
    Example
    "custom_attributes": [CustomAttribute], "discounts": [Discount], "gift_card": GiftCardItem, - "id": "4", + "id": 4, "order_item": OrderItemInterface, "product_name": "abc123", "product_sale_price": Money, "product_sku": "xyz789", - "quantity_invoiced": 123.45 + "quantity_invoiced": 987.65 }
    @@ -48676,7 +48912,7 @@
    Example
    "message": "abc123", "recipient_email": "abc123", "recipient_name": "xyz789", - "sender_email": "xyz789", + "sender_email": "abc123", "sender_name": "abc123" }
    @@ -48752,10 +48988,10 @@
    Example
    "amount": Money, "custom_giftcard_amount": Money, "message": "xyz789", - "recipient_email": "abc123", - "recipient_name": "abc123", - "sender_email": "abc123", - "sender_name": "xyz789" + "recipient_email": "xyz789", + "recipient_name": "xyz789", + "sender_email": "xyz789", + "sender_name": "abc123" }
    @@ -48911,7 +49147,7 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "eligible_for_return": false,
    +  "eligible_for_return": true,
       "entered_options": [OrderItemOption],
       "gift_card": GiftCardItem,
       "gift_message": GiftMessage,
    @@ -48922,12 +49158,12 @@ 
    Example
    "product_name": "abc123", "product_sale_price": Money, "product_sku": "xyz789", - "product_type": "abc123", - "product_url_key": "xyz789", + "product_type": "xyz789", + "product_url_key": "abc123", "quantity_canceled": 123.45, "quantity_invoiced": 123.45, "quantity_ordered": 123.45, - "quantity_refunded": 987.65, + "quantity_refunded": 123.45, "quantity_return_requested": 123.45, "quantity_returned": 987.65, "quantity_shipped": 987.65, @@ -49237,54 +49473,54 @@
    filters
    Example
    {
    -  "allow_message": false,
    -  "allow_open_amount": false,
    -  "canonical_url": "abc123",
    +  "allow_message": true,
    +  "allow_open_amount": true,
    +  "canonical_url": "xyz789",
       "categories": [CategoryInterface],
       "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
       "gift_card_options": [CustomizableOptionInterface],
    -  "gift_message_available": false,
    +  "gift_message_available": true,
       "gift_wrapping_available": false,
       "gift_wrapping_price": Money,
       "giftcard_amounts": [GiftCardAmounts],
       "giftcard_type": "VIRTUAL",
       "image": ProductImage,
       "is_redeemable": true,
    -  "is_returnable": "abc123",
    -  "lifetime": 987,
    -  "manufacturer": 987,
    -  "max_sale_qty": 123.45,
    +  "is_returnable": "xyz789",
    +  "lifetime": 123,
    +  "manufacturer": 123,
    +  "max_sale_qty": 987.65,
       "media_gallery": [MediaGalleryInterface],
       "message_max_length": 123,
       "meta_description": "abc123",
    -  "meta_keyword": "xyz789",
    -  "meta_title": "abc123",
    +  "meta_keyword": "abc123",
    +  "meta_title": "xyz789",
       "min_sale_qty": 987.65,
    -  "name": "abc123",
    -  "new_from_date": "abc123",
    +  "name": "xyz789",
    +  "new_from_date": "xyz789",
       "new_to_date": "xyz789",
    -  "only_x_left_in_stock": 123.45,
    -  "open_amount_max": 987.65,
    -  "open_amount_min": 987.65,
    +  "only_x_left_in_stock": 987.65,
    +  "open_amount_max": 123.45,
    +  "open_amount_min": 123.45,
       "options": [CustomizableOptionInterface],
    -  "options_container": "xyz789",
    +  "options_container": "abc123",
       "price_range": PriceRange,
       "price_tiers": [TierPrice],
       "product_links": [ProductLinksInterface],
    -  "quantity": 123.45,
    +  "quantity": 987.65,
       "related_products": [ProductInterface],
       "short_description": ComplexTextValue,
    -  "sku": "abc123",
    +  "sku": "xyz789",
       "small_image": ProductImage,
    -  "special_price": 123.45,
    +  "special_price": 987.65,
       "special_to_date": "xyz789",
       "stock_status": "IN_STOCK",
    -  "swatch_image": "xyz789",
    +  "swatch_image": "abc123",
       "thumbnail": ProductImage,
    -  "uid": "4",
    +  "uid": 4,
       "upsell_products": [ProductInterface],
       "url_key": "abc123",
       "weight": 123.45
    @@ -49358,7 +49594,7 @@ 
    Example
    "customizable_options": [SelectedCustomizableOption], "gift_card_options": GiftCardOptions, "product": ProductInterface, - "quantity": 987.65, + "quantity": 123.45, "sku": "abc123", "uid": 4 } @@ -49429,11 +49665,11 @@
    Fields
    Example
    {
       "gift_card": GiftCardItem,
    -  "id": "4",
    +  "id": 4,
       "order_item": OrderItemInterface,
    -  "product_name": "xyz789",
    +  "product_name": "abc123",
       "product_sale_price": Money,
    -  "product_sku": "xyz789",
    +  "product_sku": "abc123",
       "quantity_shipped": 987.65
     }
     
    @@ -49565,7 +49801,7 @@
    Example
    {
       "added_at": "abc123",
       "customizable_options": [SelectedCustomizableOption],
    -  "description": "xyz789",
    +  "description": "abc123",
       "gift_card_options": GiftCardOptions,
       "id": 4,
       "product": ProductInterface,
    @@ -49622,7 +49858,7 @@ 
    Fields
    Example
    {
       "from": "xyz789",
    -  "message": "abc123",
    +  "message": "xyz789",
       "to": "abc123"
     }
     
    @@ -49678,9 +49914,9 @@
    Fields
    Example
    {
    -  "from": "abc123",
    -  "message": "abc123",
    -  "to": "abc123"
    +  "from": "xyz789",
    +  "message": "xyz789",
    +  "to": "xyz789"
     }
     
    @@ -49849,18 +50085,18 @@
    Fields
    Example
    {
    -  "created_at": "abc123",
    +  "created_at": "xyz789",
       "dynamic_attributes": [GiftRegistryDynamicAttribute],
    -  "event_name": "xyz789",
    +  "event_name": "abc123",
       "items": [GiftRegistryItemInterface],
    -  "message": "xyz789",
    +  "message": "abc123",
       "owner_name": "abc123",
       "privacy_settings": "PRIVATE",
       "registrants": [GiftRegistryRegistrant],
       "shipping_address": CustomerAddress,
       "status": "ACTIVE",
       "type": GiftRegistryType,
    -  "uid": "4"
    +  "uid": 4
     }
     
    @@ -49915,8 +50151,8 @@
    Example
    {
       "code": "4",
       "group": "EVENT_INFORMATION",
    -  "label": "xyz789",
    -  "value": "abc123"
    +  "label": "abc123",
    +  "value": "xyz789"
     }
     
    @@ -50041,10 +50277,7 @@
    Fields
    Example
    -
    {
    -  "code": "4",
    -  "value": "abc123"
    -}
    +                  
    {"code": 4, "value": "xyz789"}
     
    @@ -50113,9 +50346,9 @@
    Possible Types
    Example
    {
    -  "code": 4,
    -  "label": "xyz789",
    -  "value": "xyz789"
    +  "code": "4",
    +  "label": "abc123",
    +  "value": "abc123"
     }
     
    @@ -50179,11 +50412,11 @@
    Fields
    Example
    {
       "attribute_group": "abc123",
    -  "code": 4,
    +  "code": "4",
       "input_type": "xyz789",
       "is_required": true,
    -  "label": "xyz789",
    -  "sort_order": 987
    +  "label": "abc123",
    +  "sort_order": 123
     }
     
    @@ -50264,7 +50497,7 @@
    Possible Types
    Example
    {
       "attribute_group": "abc123",
    -  "code": 4,
    +  "code": "4",
       "input_type": "abc123",
       "is_required": false,
       "label": "abc123",
    @@ -50337,7 +50570,7 @@ 
    Example
    "product": ProductInterface, "quantity": 123.45, "quantity_fulfilled": 123.45, - "uid": 4 + "uid": "4" }
    @@ -50418,11 +50651,11 @@
    Possible Types
    Example
    {
    -  "created_at": "xyz789",
    -  "note": "abc123",
    +  "created_at": "abc123",
    +  "note": "xyz789",
       "product": ProductInterface,
       "quantity": 123.45,
    -  "quantity_fulfilled": 123.45,
    +  "quantity_fulfilled": 987.65,
       "uid": "4"
     }
     
    @@ -50554,7 +50787,7 @@
    Example
    "gift_registry_item_uid": "4", "gift_registry_uid": 4, "message": "abc123", - "product_uid": "4" + "product_uid": 4 }
    @@ -50778,10 +51011,10 @@
    Example
    "dynamic_attributes": [ GiftRegistryRegistrantDynamicAttribute ], - "email": "xyz789", - "firstname": "xyz789", + "email": "abc123", + "firstname": "abc123", "lastname": "abc123", - "uid": "4" + "uid": 4 }
    @@ -50829,9 +51062,9 @@
    Fields
    Example
    {
    -  "code": 4,
    +  "code": "4",
       "label": "abc123",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -50899,11 +51132,11 @@
    Fields
    Example
    {
       "event_date": "xyz789",
    -  "event_title": "xyz789",
    -  "gift_registry_uid": "4",
    -  "location": "xyz789",
    -  "name": "abc123",
    -  "type": "abc123"
    +  "event_title": "abc123",
    +  "gift_registry_uid": 4,
    +  "location": "abc123",
    +  "name": "xyz789",
    +  "type": "xyz789"
     }
     
    @@ -50960,7 +51193,7 @@
    Example
    {
       "address_data": CustomerAddressInput,
       "address_id": 4,
    -  "customer_address_uid": 4
    +  "customer_address_uid": "4"
     }
     
    @@ -51122,10 +51355,10 @@
    Fields
    Example
    {
    -  "design": "abc123",
    +  "design": "xyz789",
       "image": GiftWrappingImage,
       "price": Money,
    -  "uid": 4
    +  "uid": "4"
     }
     
    @@ -51173,7 +51406,7 @@
    Fields
    Example
    {
       "label": "abc123",
    -  "url": "abc123"
    +  "url": "xyz789"
     }
     
    @@ -51223,7 +51456,7 @@
    Example
    {
       "color": "xyz789",
       "height": 987,
    -  "type": "abc123"
    +  "type": "xyz789"
     }
     
    @@ -51303,13 +51536,13 @@
    Example
    {
       "button_styles": GooglePayButtonStyles,
       "code": "abc123",
    -  "is_visible": true,
    -  "payment_intent": "xyz789",
    +  "is_visible": false,
    +  "payment_intent": "abc123",
       "payment_source": "abc123",
       "sdk_params": [SDKParams],
       "sort_order": "abc123",
       "three_ds_mode": "OFF",
    -  "title": "xyz789"
    +  "title": "abc123"
     }
     
    @@ -51364,7 +51597,7 @@
    Fields
    Example
    {
    -  "payment_source": "xyz789",
    +  "payment_source": "abc123",
       "payments_order_id": "abc123",
       "paypal_order_id": "xyz789"
     }
    @@ -51621,7 +51854,7 @@ 
    filters
    Example
    {
    -  "canonical_url": "abc123",
    +  "canonical_url": "xyz789",
       "categories": [CategoryInterface],
       "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
    @@ -51639,8 +51872,8 @@ 
    Example
    "meta_description": "xyz789", "meta_keyword": "xyz789", "meta_title": "abc123", - "min_sale_qty": 987.65, - "name": "abc123", + "min_sale_qty": 123.45, + "name": "xyz789", "new_from_date": "xyz789", "new_to_date": "xyz789", "only_x_left_in_stock": 123.45, @@ -51648,20 +51881,20 @@
    Example
    "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], - "quantity": 987.65, + "quantity": 123.45, "related_products": [ProductInterface], "short_description": ComplexTextValue, "sku": "xyz789", "small_image": ProductImage, "special_price": 987.65, - "special_to_date": "xyz789", + "special_to_date": "abc123", "stock_status": "IN_STOCK", - "swatch_image": "abc123", + "swatch_image": "xyz789", "thumbnail": ProductImage, "uid": 4, "upsell_products": [ProductInterface], "url_key": "abc123", - "weight": 123.45 + "weight": 987.65 }
    @@ -51714,9 +51947,9 @@
    Fields
    Example
    {
    -  "position": 987,
    +  "position": 123,
       "product": ProductInterface,
    -  "qty": 987.65
    +  "qty": 123.45
     }
     
    @@ -51839,7 +52072,7 @@
    Fields
    Example
    {
       "reason": "xyz789",
    -  "token": "xyz789"
    +  "token": "abc123"
     }
     
    @@ -51950,7 +52183,7 @@
    Example
    {
       "attribute": "abc123",
       "matched_words": ["abc123"],
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -52017,12 +52250,12 @@
    Fields
    Example
    {
    -  "created_at": "xyz789",
    -  "creator_name": "abc123",
    -  "creator_type": "abc123",
    -  "item_id": 987,
    -  "note": "xyz789",
    -  "product_name": "xyz789"
    +  "created_at": "abc123",
    +  "creator_name": "xyz789",
    +  "creator_type": "xyz789",
    +  "item_id": 123,
    +  "note": "abc123",
    +  "product_name": "abc123"
     }
     
    @@ -52112,11 +52345,11 @@
    Example
    {
       "cc_vault_code": "xyz789",
       "code": "abc123",
    -  "is_vault_enabled": true,
    +  "is_vault_enabled": false,
       "is_visible": true,
    -  "payment_intent": "abc123",
    -  "payment_source": "xyz789",
    -  "requires_card_details": true,
    +  "payment_intent": "xyz789",
    +  "payment_source": "abc123",
    +  "requires_card_details": false,
       "sdk_params": [SDKParams],
       "sort_order": "abc123",
       "three_ds_mode": "OFF",
    @@ -52211,13 +52444,13 @@ 
    Fields
    Example
    {
    -  "cardBin": "xyz789",
    -  "cardExpiryMonth": "xyz789",
    +  "cardBin": "abc123",
    +  "cardExpiryMonth": "abc123",
       "cardExpiryYear": "abc123",
       "cardLast4": "abc123",
       "holderName": "abc123",
       "is_active_payment_token_enabler": false,
    -  "payment_source": "xyz789",
    +  "payment_source": "abc123",
       "payments_order_id": "xyz789",
       "paypal_order_id": "xyz789"
     }
    @@ -52284,8 +52517,8 @@ 
    Fields
    Example
    {
    -  "thumbnail": "xyz789",
    -  "value": "abc123"
    +  "thumbnail": "abc123",
    +  "value": "xyz789"
     }
     
    @@ -52447,7 +52680,7 @@
    Fields
    Example
    {
       "code": "PRODUCT_NOT_FOUND",
    -  "message": "abc123",
    +  "message": "xyz789",
       "quantity": 123.45
     }
     
    @@ -52471,7 +52704,7 @@
    Description
    Example
    -
    987
    +                  
    123
     
    @@ -52511,7 +52744,7 @@
    Fields
    Example
    -
    {"message": "xyz789"}
    +                  
    {"message": "abc123"}
     
    @@ -52579,9 +52812,9 @@
    Example
    {
       "comments": [SalesCommentItem],
       "custom_attributes": [CustomAttribute],
    -  "id": 4,
    +  "id": "4",
       "items": [InvoiceItemInterface],
    -  "number": "xyz789",
    +  "number": "abc123",
       "total": InvoiceTotal
     }
     
    @@ -52632,7 +52865,7 @@
    Fields
    Example
    {
       "custom_attributes": [CustomAttributeInput],
    -  "invoice_id": "abc123"
    +  "invoice_id": "xyz789"
     }
     
    @@ -52709,9 +52942,9 @@
    Example
    "discounts": [Discount], "id": "4", "order_item": OrderItemInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "xyz789", + "product_sku": "abc123", "quantity_invoiced": 123.45 }
    @@ -52768,7 +53001,7 @@
    Fields
    Example
    {
       "custom_attributes": [CustomAttributeInput],
    -  "invoice_id": "xyz789",
    +  "invoice_id": "abc123",
       "invoice_item_id": "abc123"
     }
     
    @@ -52880,7 +53113,7 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "id": 4,
    +  "id": "4",
       "order_item": OrderItemInterface,
       "product_name": "xyz789",
       "product_sale_price": Money,
    @@ -53050,7 +53283,7 @@ 
    Fields
    Example
    -
    {"is_email_available": false}
    +                  
    {"is_email_available": true}
     
    @@ -53130,7 +53363,7 @@
    Fields
    Example
    -
    {"is_role_name_available": true}
    +                  
    {"is_role_name_available": false}
     
    @@ -53210,7 +53443,7 @@
    Fields
    Example
    -
    {"is_email_available": true}
    +                  
    {"is_email_available": false}
     
    @@ -53255,7 +53488,7 @@
    Fields
    Example
    -
    {"type": "UNKNOWN_ISOPERATOR_TYPE", "value": true}
    +                  
    {"type": "UNKNOWN_ISOPERATOR_TYPE", "value": false}
     
    @@ -53343,7 +53576,7 @@
    Fields
    Example
    -
    {"isSubscribed": true, "message": "xyz789"}
    +                  
    {"isSubscribed": false, "message": "xyz789"}
     
    @@ -53414,12 +53647,12 @@
    Fields
    Example
    {
    -  "created_at": "abc123",
    -  "creator_id": 123,
    +  "created_at": "xyz789",
    +  "creator_id": 987,
       "creator_name": "xyz789",
       "creator_type": 123,
    -  "negotiable_quote_item_uid": "4",
    -  "note": "xyz789",
    +  "negotiable_quote_item_uid": 4,
    +  "note": "abc123",
       "note_uid": 4
     }
     
    @@ -53538,9 +53771,9 @@
    Example
    {
       "price": Money,
       "product_name": "abc123",
    -  "product_sku": "abc123",
    +  "product_sku": "xyz789",
       "quantity": 123.45,
    -  "uid": "4"
    +  "uid": 4
     }
     
    @@ -53609,8 +53842,8 @@
    Fields
    Example
    {
    -  "name": "xyz789",
    -  "value": "xyz789"
    +  "name": "abc123",
    +  "value": "abc123"
     }
     
    @@ -53666,7 +53899,7 @@
    Fields
    Example
    {
       "note": "xyz789",
    -  "quote_item_uid": "4",
    +  "quote_item_uid": 4,
       "quote_uid": "4"
     }
     
    @@ -53756,10 +53989,10 @@
    Possible Types
    Example
    {
    -  "disabled": false,
    +  "disabled": true,
       "label": "xyz789",
    -  "position": 123,
    -  "url": "xyz789"
    +  "position": 987,
    +  "url": "abc123"
     }
     
    @@ -53861,7 +54094,7 @@
    Fields
    Example
    -
    {"type": "xyz789"}
    +                  
    {"type": "abc123"}
     
    @@ -53903,7 +54136,7 @@
    Fields
    Example
    {
    -  "layout": "xyz789",
    +  "layout": "abc123",
       "logo": MessageStyleLogo
     }
     
    @@ -53950,7 +54183,7 @@
    Fields
    Example
    -
    {"currency": "AFN", "value": 123.45}
    +                  
    {"currency": "AFN", "value": 987.65}
     
    @@ -54148,8 +54381,8 @@
    Fields
    Example
    {
       "quote_item_uid": "4",
    -  "quote_uid": 4,
    -  "requisition_list_uid": 4
    +  "quote_uid": "4",
    +  "requisition_list_uid": "4"
     }
     
    @@ -54399,10 +54632,10 @@
    Example
    "billing_address": NegotiableQuoteBillingAddress, "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", + "created_at": "xyz789", "custom_attributes": [CustomAttribute], - "email": "abc123", - "expiration_date": "abc123", + "email": "xyz789", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "is_virtual": true, "items": [CartItemInterface], @@ -54417,7 +54650,7 @@
    Example
    "template_name": "abc123", "total_quantity": 123.45, "uid": 4, - "updated_at": "xyz789" + "updated_at": "abc123" }
    @@ -54464,8 +54697,8 @@
    Fields
    Example
    {
    -  "code": "abc123",
    -  "label": "abc123"
    +  "code": "xyz789",
    +  "label": "xyz789"
     }
     
    @@ -54604,23 +54837,23 @@
    Fields
    Example
    {
    -  "city": "xyz789",
    +  "city": "abc123",
       "company": "abc123",
    -  "country_code": "xyz789",
    +  "country_code": "abc123",
       "custom_attributes": [AttributeValueInput],
    -  "fax": "xyz789",
    +  "fax": "abc123",
       "firstname": "xyz789",
    -  "lastname": "xyz789",
    +  "lastname": "abc123",
       "middlename": "xyz789",
    -  "postcode": "xyz789",
    +  "postcode": "abc123",
       "prefix": "xyz789",
    -  "region": "abc123",
    -  "region_id": 123,
    -  "save_in_address_book": false,
    +  "region": "xyz789",
    +  "region_id": 987,
    +  "save_in_address_book": true,
       "street": ["abc123"],
       "suffix": "abc123",
       "telephone": "abc123",
    -  "vat_id": "xyz789"
    +  "vat_id": "abc123"
     }
     
    @@ -54760,22 +54993,22 @@
    Possible Types
    Example
    {
    -  "city": "xyz789",
    -  "company": "abc123",
    +  "city": "abc123",
    +  "company": "xyz789",
       "country": NegotiableQuoteAddressCountry,
       "custom_attributes": [AttributeValueInterface],
       "customer_address_uid": "4",
       "fax": "abc123",
    -  "firstname": "xyz789",
    +  "firstname": "abc123",
       "lastname": "abc123",
       "middlename": "abc123",
       "postcode": "xyz789",
    -  "prefix": "abc123",
    +  "prefix": "xyz789",
       "region": NegotiableQuoteAddressRegion,
    -  "street": ["xyz789"],
    +  "street": ["abc123"],
       "suffix": "abc123",
    -  "telephone": "abc123",
    -  "uid": "4",
    +  "telephone": "xyz789",
    +  "uid": 4,
       "vat_id": "abc123"
     }
     
    @@ -54829,7 +55062,7 @@
    Fields
    Example
    {
       "code": "xyz789",
    -  "label": "xyz789",
    +  "label": "abc123",
       "region_id": 987
     }
     
    @@ -54952,19 +55185,19 @@
    Example
    "company": "xyz789", "country": NegotiableQuoteAddressCountry, "custom_attributes": [AttributeValueInterface], - "customer_address_uid": "4", - "fax": "xyz789", + "customer_address_uid": 4, + "fax": "abc123", "firstname": "xyz789", "lastname": "abc123", - "middlename": "abc123", - "postcode": "abc123", + "middlename": "xyz789", + "postcode": "xyz789", "prefix": "xyz789", "region": NegotiableQuoteAddressRegion, - "street": ["xyz789"], + "street": ["abc123"], "suffix": "xyz789", "telephone": "xyz789", "uid": "4", - "vat_id": "xyz789" + "vat_id": "abc123" }
    @@ -55028,7 +55261,7 @@
    Example
    "address": NegotiableQuoteAddressInput, "customer_address_uid": "4", "same_as_shipping": true, - "use_for_shipping": false + "use_for_shipping": true }
    @@ -55147,8 +55380,8 @@
    Fields
    Example
    {
    -  "name": "xyz789",
    -  "url": "abc123"
    +  "name": "abc123",
    +  "url": "xyz789"
     }
     
    @@ -55336,9 +55569,9 @@
    Fields
    Example
    {
    -  "new_value": "xyz789",
    +  "new_value": "abc123",
       "old_value": "xyz789",
    -  "title": "abc123"
    +  "title": "xyz789"
     }
     
    @@ -55570,9 +55803,9 @@
    Example
    "author": NegotiableQuoteUser, "change_type": "CREATED", "changes": NegotiableQuoteHistoryChanges, - "created_at": "abc123", + "created_at": "xyz789", "item_note": HistoryItemNoteData, - "uid": 4 + "uid": "4" }
    @@ -55679,7 +55912,7 @@
    Fields
    Example
    {
       "new_expiration": "abc123",
    -  "old_expiration": "xyz789"
    +  "old_expiration": "abc123"
     }
     
    @@ -55902,7 +56135,7 @@
    Fields
    Example
    -
    {"message": "abc123"}
    +                  
    {"message": "xyz789"}
     
    @@ -55949,7 +56182,7 @@
    Fields
    Example
    -
    {"quantity": 123.45, "quote_item_uid": "4"}
    +                  
    {"quantity": 123.45, "quote_item_uid": 4}
     
    @@ -55997,8 +56230,8 @@
    Fields
    Example
    {
    -  "code": "xyz789",
    -  "purchase_order_number": "xyz789"
    +  "code": "abc123",
    +  "purchase_order_number": "abc123"
     }
     
    @@ -56056,7 +56289,7 @@
    Fields
    Example
    {
       "document_identifier": "abc123",
    -  "document_name": "abc123",
    +  "document_name": "xyz789",
       "link_id": 4,
       "reference_document_url": "abc123"
     }
    @@ -56188,23 +56421,23 @@ 
    Example
    {
       "available_shipping_methods": [AvailableShippingMethod],
       "city": "abc123",
    -  "company": "abc123",
    +  "company": "xyz789",
       "country": NegotiableQuoteAddressCountry,
       "custom_attributes": [AttributeValueInterface],
    -  "customer_address_uid": "4",
    -  "fax": "abc123",
    +  "customer_address_uid": 4,
    +  "fax": "xyz789",
       "firstname": "xyz789",
    -  "lastname": "xyz789",
    +  "lastname": "abc123",
       "middlename": "abc123",
    -  "postcode": "abc123",
    -  "prefix": "xyz789",
    +  "postcode": "xyz789",
    +  "prefix": "abc123",
       "region": NegotiableQuoteAddressRegion,
       "selected_shipping_method": SelectedShippingMethod,
       "street": ["xyz789"],
       "suffix": "xyz789",
       "telephone": "xyz789",
       "uid": "4",
    -  "vat_id": "xyz789"
    +  "vat_id": "abc123"
     }
     
    @@ -56260,7 +56493,7 @@
    Fields
    Example
    {
       "address": NegotiableQuoteAddressInput,
    -  "customer_address_uid": 4,
    +  "customer_address_uid": "4",
       "customer_notes": "xyz789"
     }
     
    @@ -56602,26 +56835,26 @@
    Example
    "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], "created_at": "abc123", - "expiration_date": "xyz789", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": false, "is_virtual": false, "items": [CartItemInterface], "max_order_commitment": 123, - "min_order_commitment": 987, - "name": "xyz789", + "min_order_commitment": 123, + "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "shipping_addresses": [NegotiableQuoteShippingAddress], - "status": "abc123", + "status": "xyz789", "template_id": 4, - "total_quantity": 123.45, - "uid": "4", + "total_quantity": 987.65, + "uid": 4, "updated_at": "xyz789" }
    @@ -56813,22 +57046,22 @@
    Example
    "company_name": "abc123", "created_at": "abc123", "expiration_date": "abc123", - "is_min_max_qty_used": false, + "is_min_max_qty_used": true, "last_ordered_at": "abc123", "last_shared_at": "xyz789", - "max_order_commitment": 987, + "max_order_commitment": 123, "min_negotiated_grand_total": 987.65, "min_order_commitment": 987, - "name": "xyz789", + "name": "abc123", "orders_placed": 123, "prices": CartPrices, - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "state": "abc123", - "status": "xyz789", - "submitted_by": "abc123", - "template_id": "4", - "uid": 4, - "updated_at": "abc123" + "status": "abc123", + "submitted_by": "xyz789", + "template_id": 4, + "uid": "4", + "updated_at": "xyz789" }
    @@ -57013,8 +57246,8 @@
    Fields
    Example
    {
    -  "new_status": "abc123",
    -  "old_status": "abc123"
    +  "new_status": "xyz789",
    +  "old_status": "xyz789"
     }
     
    @@ -57114,7 +57347,12 @@
    Fields
    Example
    -
    {"item_id": 4, "max_qty": 987.65, "min_qty": 987.65, "quantity": 123.45}
    +                  
    {
    +  "item_id": "4",
    +  "max_qty": 987.65,
    +  "min_qty": 987.65,
    +  "quantity": 123.45
    +}
     
    @@ -57176,8 +57414,8 @@
    Example
    {
       "document_identifier": "xyz789",
       "document_name": "xyz789",
    -  "link_id": "4",
    -  "reference_document_url": "xyz789"
    +  "link_id": 4,
    +  "reference_document_url": "abc123"
     }
     
    @@ -57233,8 +57471,8 @@
    Fields
    Example
    {
       "address": NegotiableQuoteAddressInput,
    -  "customer_address_uid": 4,
    -  "customer_notes": "xyz789"
    +  "customer_address_uid": "4",
    +  "customer_notes": "abc123"
     }
     
    @@ -57384,7 +57622,7 @@
    Example
    "items": [NegotiableQuoteTemplateGridItem], "page_info": SearchResultPageInfo, "sort_fields": SortFields, - "total_count": 987 + "total_count": 123 }
    @@ -57524,7 +57762,7 @@
    Fields
    Example
    {
    -  "firstname": "abc123",
    +  "firstname": "xyz789",
       "lastname": "xyz789"
     }
     
    @@ -57631,7 +57869,10 @@
    Fields
    Example
    -
    {"message": "abc123", "uid": 4}
    +                  
    {
    +  "message": "xyz789",
    +  "uid": "4"
    +}
     
    @@ -57806,7 +58047,7 @@
    Fields
    Example
    -
    {"template_id": "4"}
    +                  
    {"template_id": 4}
     
    @@ -58103,22 +58344,22 @@
    attributeCodes
    Example
    {
    -  "city": "abc123",
    -  "company": "xyz789",
    +  "city": "xyz789",
    +  "company": "abc123",
       "country_code": "AF",
       "custom_attributesV2": [AttributeValueInterface],
       "fax": "xyz789",
       "firstname": "abc123",
    -  "lastname": "abc123",
    +  "lastname": "xyz789",
       "middlename": "abc123",
    -  "postcode": "xyz789",
    +  "postcode": "abc123",
       "prefix": "abc123",
       "region": "abc123",
       "region_id": 4,
       "street": ["abc123"],
       "suffix": "abc123",
    -  "telephone": "abc123",
    -  "vat_id": "abc123"
    +  "telephone": "xyz789",
    +  "vat_id": "xyz789"
     }
     
    @@ -58177,9 +58418,9 @@
    Fields
    Example
    {
       "firstname": "abc123",
    -  "lastname": "xyz789",
    +  "lastname": "abc123",
       "middlename": "xyz789",
    -  "prefix": "xyz789",
    +  "prefix": "abc123",
       "suffix": "xyz789"
     }
     
    @@ -58331,25 +58572,25 @@
    Example
    {
       "custom_attributes": [CustomAttribute],
       "discounts": [Discount],
    -  "eligible_for_return": false,
    +  "eligible_for_return": true,
       "entered_options": [OrderItemOption],
       "gift_message": GiftMessage,
       "gift_wrapping": GiftWrapping,
       "id": 4,
       "prices": OrderItemPrices,
       "product": ProductInterface,
    -  "product_name": "abc123",
    +  "product_name": "xyz789",
       "product_sale_price": Money,
       "product_sku": "xyz789",
    -  "product_type": "xyz789",
    -  "product_url_key": "abc123",
    -  "quantity_canceled": 123.45,
    +  "product_type": "abc123",
    +  "product_url_key": "xyz789",
    +  "quantity_canceled": 987.65,
       "quantity_invoiced": 987.65,
    -  "quantity_ordered": 123.45,
    +  "quantity_ordered": 987.65,
       "quantity_refunded": 987.65,
       "quantity_return_requested": 123.45,
       "quantity_returned": 987.65,
    -  "quantity_shipped": 987.65,
    +  "quantity_shipped": 123.45,
       "selected_options": [OrderItemOption],
       "status": "abc123"
     }
    @@ -58547,21 +58788,21 @@ 
    Example
    "entered_options": [OrderItemOption], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "id": 4, + "id": "4", "prices": OrderItemPrices, "product": ProductInterface, "product_name": "abc123", "product_sale_price": Money, - "product_sku": "xyz789", + "product_sku": "abc123", "product_type": "xyz789", "product_url_key": "xyz789", "quantity_canceled": 123.45, "quantity_invoiced": 123.45, "quantity_ordered": 123.45, - "quantity_refunded": 123.45, + "quantity_refunded": 987.65, "quantity_return_requested": 123.45, - "quantity_returned": 123.45, - "quantity_shipped": 123.45, + "quantity_returned": 987.65, + "quantity_shipped": 987.65, "selected_options": [OrderItemOption], "status": "xyz789" } @@ -58764,7 +59005,7 @@
    Example
    {
       "additional_data": [KeyValue],
       "name": "abc123",
    -  "type": "xyz789"
    +  "type": "abc123"
     }
     
    @@ -58827,7 +59068,7 @@
    Fields
    Example
    {
       "comments": [SalesCommentItem],
    -  "id": 4,
    +  "id": "4",
       "items": [ShipmentItemInterface],
       "number": "xyz789",
       "tracking": [ShipmentTracking]
    @@ -58872,7 +59113,7 @@ 
    Fields
    Example
    -
    {"token": "abc123"}
    +                  
    {"token": "xyz789"}
     
    @@ -59119,8 +59360,8 @@
    Fields
    Example
    {
    -  "key": "xyz789",
    -  "value": "abc123"
    +  "key": "abc123",
    +  "value": "xyz789"
     }
     
    @@ -59224,12 +59465,12 @@
    Possible Types
    Example
    {
    -  "code": "xyz789",
    -  "is_visible": false,
    -  "payment_intent": "abc123",
    +  "code": "abc123",
    +  "is_visible": true,
    +  "payment_intent": "xyz789",
       "sdk_params": [SDKParams],
    -  "sort_order": "abc123",
    -  "title": "abc123"
    +  "sort_order": "xyz789",
    +  "title": "xyz789"
     }
     
    @@ -59521,10 +59762,10 @@
    Fields
    Example
    {
    -  "id": "abc123",
    -  "mp_order_id": "abc123",
    +  "id": "xyz789",
    +  "mp_order_id": "xyz789",
       "payment_source_details": PaymentSourceDetails,
    -  "status": "abc123"
    +  "status": "xyz789"
     }
     
    @@ -59742,8 +59983,8 @@
    Fields
    Example
    {
    -  "details": "xyz789",
    -  "payment_method_code": "xyz789",
    +  "details": "abc123",
    +  "payment_method_code": "abc123",
       "public_hash": "xyz789",
       "type": "card"
     }
    @@ -59870,7 +60111,7 @@ 
    Possible Types
    Example
    -
    {"weight": 987.65}
    +                  
    {"weight": 123.45}
     
    @@ -59996,18 +60237,18 @@
    Fields
    Example
    {
    -  "city": "xyz789",
    +  "city": "abc123",
       "contact_name": "abc123",
    -  "country_id": "xyz789",
    +  "country_id": "abc123",
       "description": "xyz789",
       "email": "xyz789",
    -  "fax": "xyz789",
    +  "fax": "abc123",
       "latitude": 123.45,
    -  "longitude": 123.45,
    +  "longitude": 987.65,
       "name": "xyz789",
    -  "phone": "abc123",
    -  "pickup_location_code": "xyz789",
    -  "postcode": "abc123",
    +  "phone": "xyz789",
    +  "pickup_location_code": "abc123",
    +  "postcode": "xyz789",
       "region": "abc123",
       "region_id": 987,
       "street": "abc123"
    @@ -60481,7 +60722,7 @@ 
    Fields
    Example
    {
       "code": "CART_NOT_FOUND",
    -  "message": "abc123"
    +  "message": "xyz789"
     }
     
    @@ -60589,7 +60830,7 @@
    Fields
    Example
    -
    {"purchase_order_uid": 4}
    +                  
    {"purchase_order_uid": "4"}
     
    @@ -60670,7 +60911,7 @@
    Fields
    Example
    -
    {"cart_id": "abc123"}
    +                  
    {"cart_id": "xyz789"}
     
    @@ -60759,7 +61000,7 @@
    Fields
    Example
    -
    {"cart_id": "abc123"}
    +                  
    {"cart_id": "xyz789"}
     
    @@ -60892,7 +61133,7 @@
    Fields
    Example
    -
    {"amount": 987.65, "code": "abc123"}
    +                  
    {"amount": 123.45, "code": "abc123"}
     
    @@ -60943,9 +61184,9 @@
    Fields
    Example
    {
    -  "discount_percentage": 987.65,
    -  "main_final_price": 987.65,
    -  "main_price": 123.45
    +  "discount_percentage": 123.45,
    +  "main_final_price": 123.45,
    +  "main_price": 987.65
     }
     
    @@ -61137,7 +61378,7 @@
    Fields
    Example
    -
    {"sku": "xyz789"}
    +                  
    {"sku": "abc123"}
     
    @@ -61218,7 +61459,7 @@
    Fields
    Example
    -
    {"message": "xyz789", "success": false}
    +                  
    {"message": "abc123", "success": true}
     
    @@ -61318,9 +61559,9 @@
    Fields
    Example
    {
    -  "attribute_type": "xyz789",
    +  "attribute_type": "abc123",
       "code": "4",
    -  "url": "xyz789",
    +  "url": "abc123",
       "value": "xyz789"
     }
     
    @@ -61471,10 +61712,10 @@
    Fields
    Example
    {
    -  "disabled": true,
    +  "disabled": false,
       "label": "abc123",
    -  "position": 987,
    -  "url": "xyz789"
    +  "position": 123,
    +  "url": "abc123"
     }
     
    @@ -61856,7 +62097,7 @@
    Example
    "crosssell_products": [ProductInterface], "custom_attributesV2": ProductCustomAttributes, "description": ComplexTextValue, - "gift_message_available": true, + "gift_message_available": false, "gift_wrapping_available": true, "gift_wrapping_price": Money, "image": ProductImage, @@ -61865,13 +62106,13 @@
    Example
    "max_sale_qty": 987.65, "media_gallery": [MediaGalleryInterface], "meta_description": "abc123", - "meta_keyword": "abc123", + "meta_keyword": "xyz789", "meta_title": "abc123", "min_sale_qty": 987.65, "name": "xyz789", "new_from_date": "xyz789", "new_to_date": "abc123", - "only_x_left_in_stock": 987.65, + "only_x_left_in_stock": 123.45, "options_container": "abc123", "price_range": PriceRange, "price_tiers": [TierPrice], @@ -61879,14 +62120,14 @@
    Example
    "quantity": 123.45, "related_products": [ProductInterface], "short_description": ComplexTextValue, - "sku": "abc123", + "sku": "xyz789", "small_image": ProductImage, "special_price": 987.65, "special_to_date": "abc123", "stock_status": "IN_STOCK", "swatch_image": "abc123", "thumbnail": ProductImage, - "uid": "4", + "uid": 4, "upsell_products": [ProductInterface], "url_key": "xyz789" } @@ -61950,10 +62191,10 @@
    Fields
    Example
    {
    -  "link_type": "xyz789",
    -  "linked_product_sku": "xyz789",
    +  "link_type": "abc123",
    +  "linked_product_sku": "abc123",
       "linked_product_type": "abc123",
    -  "position": 987,
    +  "position": 123,
       "sku": "abc123"
     }
     
    @@ -62036,7 +62277,7 @@
    Example
    "link_type": "xyz789", "linked_product_sku": "xyz789", "linked_product_type": "xyz789", - "position": 987, + "position": 123, "sku": "abc123" }
    @@ -62089,8 +62330,8 @@
    Fields
    Example
    {
    -  "asset_id": "abc123",
    -  "media_type": "xyz789",
    +  "asset_id": "xyz789",
    +  "media_type": "abc123",
       "media_url": "abc123"
     }
     
    @@ -62143,9 +62384,9 @@
    Fields
    Example
    {
    -  "media_type": "xyz789",
    -  "video_asset_id": "abc123",
    -  "video_media_url": "abc123"
    +  "media_type": "abc123",
    +  "video_asset_id": "xyz789",
    +  "video_media_url": "xyz789"
     }
     
    @@ -62212,12 +62453,12 @@
    Fields
    Example
    {
    -  "media_type": "xyz789",
    -  "video_description": "abc123",
    +  "media_type": "abc123",
    +  "video_description": "xyz789",
       "video_metadata": "abc123",
       "video_provider": "abc123",
    -  "video_title": "abc123",
    -  "video_url": "abc123"
    +  "video_title": "xyz789",
    +  "video_url": "xyz789"
     }
     
    @@ -62406,9 +62647,9 @@
    Example
    "facets": [Aggregation], "items": [ProductSearchItem], "page_info": SearchResultPageInfo, - "related_terms": ["abc123"], - "suggestions": ["xyz789"], - "total_count": 123, + "related_terms": ["xyz789"], + "suggestions": ["abc123"], + "total_count": 987, "warnings": [ProductSearchWarning] }
    @@ -62457,7 +62698,7 @@
    Fields
    Example
    -
    {"attribute": "xyz789", "direction": "ASC"}
    +                  
    {"attribute": "abc123", "direction": "ASC"}
     
    @@ -62504,7 +62745,7 @@
    Fields
    Example
    {
       "code": "xyz789",
    -  "message": "xyz789"
    +  "message": "abc123"
     }
     
    @@ -62616,8 +62857,8 @@
    Fields
    Example
    {
       "disabled": false,
    -  "label": "abc123",
    -  "position": 123,
    +  "label": "xyz789",
    +  "position": 987,
       "url": "abc123",
       "video_content": ProductMediaGalleryEntriesVideoContent
     }
    @@ -62838,22 +63079,22 @@ 
    Possible Types
    Example
    {
    -  "addToCartAllowed": true,
    +  "addToCartAllowed": false,
       "inStock": false,
    -  "lowStock": true,
    +  "lowStock": false,
       "attributes": [ProductViewAttribute],
    -  "description": "xyz789",
    -  "id": "4",
    +  "description": "abc123",
    +  "id": 4,
       "images": [ProductViewImage],
       "videos": [ProductViewVideo],
       "lastModifiedAt": "2007-12-03T10:15:30Z",
       "metaDescription": "abc123",
       "metaKeyword": "abc123",
    -  "metaTitle": "abc123",
    +  "metaTitle": "xyz789",
       "name": "abc123",
       "shortDescription": "abc123",
       "inputOptions": [ProductViewInputOption],
    -  "sku": "abc123",
    +  "sku": "xyz789",
       "externalId": "abc123",
       "url": "xyz789",
       "urlKey": "abc123",
    @@ -62917,8 +63158,8 @@ 
    Fields
    Example
    {
       "label": "abc123",
    -  "name": "abc123",
    -  "roles": ["xyz789"],
    +  "name": "xyz789",
    +  "roles": ["abc123"],
       "value": {}
     }
     
    @@ -64198,7 +64439,7 @@
    Example
    {
       "label": "abc123",
       "roles": ["xyz789"],
    -  "url": "xyz789"
    +  "url": "abc123"
     }
     
    @@ -64285,16 +64526,16 @@
    Fields
    Example
    {
    -  "id": "4",
    -  "title": "abc123",
    -  "required": false,
    -  "type": "abc123",
    +  "id": 4,
    +  "title": "xyz789",
    +  "required": true,
    +  "type": "xyz789",
       "markupAmount": 123.45,
       "suffix": "xyz789",
    -  "sortOrder": 987,
    +  "sortOrder": 123,
       "range": ProductViewInputOptionRange,
       "imageSize": ProductViewInputOptionImageSize,
    -  "fileExtensions": "xyz789"
    +  "fileExtensions": "abc123"
     }
     
    @@ -64385,7 +64626,7 @@
    Fields
    Example
    -
    {"from": 987.65, "to": 987.65}
    +                  
    {"from": 123.45, "to": 987.65}
     
    @@ -64432,7 +64673,7 @@
    Fields
    Example
    {
       "product": ProductView,
    -  "linkTypes": ["xyz789"]
    +  "linkTypes": ["abc123"]
     }
     
    @@ -64541,7 +64782,7 @@
    Example
    {
       "id": 4,
       "multi": true,
    -  "required": true,
    +  "required": false,
       "title": "xyz789",
       "values": [ProductViewOptionValue]
     }
    @@ -64676,7 +64917,7 @@ 
    Fields
    Example
    {
    -  "id": 4,
    +  "id": "4",
       "title": "abc123",
       "inStock": true
     }
    @@ -64746,10 +64987,10 @@ 
    Fields
    Example
    {
       "id": "4",
    -  "isDefault": true,
    +  "isDefault": false,
       "product": SimpleProductView,
    -  "quantity": 123.45,
    -  "title": "xyz789",
    +  "quantity": 987.65,
    +  "title": "abc123",
       "inStock": false
     }
     
    @@ -64812,11 +65053,11 @@
    Fields
    Example
    {
    -  "id": "4",
    -  "title": "abc123",
    +  "id": 4,
    +  "title": "xyz789",
       "type": "TEXT",
       "value": "abc123",
    -  "inStock": false
    +  "inStock": true
     }
     
    @@ -65252,8 +65493,8 @@
    Example
    {
       "preview": ProductViewImage,
       "url": "abc123",
    -  "description": "xyz789",
    -  "title": "abc123"
    +  "description": "abc123",
    +  "title": "xyz789"
     }
     
    @@ -65305,7 +65546,7 @@
    Fields
    Example
    {
       "date": "2007-12-03T10:15:30Z",
    -  "items": ["abc123"]
    +  "items": ["xyz789"]
     }
     
    @@ -65408,12 +65649,12 @@
    Example
    "created_at": "xyz789", "created_by": Customer, "history_log": [PurchaseOrderHistoryItem], - "number": "abc123", + "number": "xyz789", "order": CustomerOrder, "quote": Cart, "status": "PENDING", "uid": 4, - "updated_at": "xyz789" + "updated_at": "abc123" }
    @@ -65586,7 +65827,7 @@
    Fields
    Example
    {
    -  "message": "abc123",
    +  "message": "xyz789",
       "name": "xyz789",
       "role": "xyz789",
       "status": "PENDING",
    @@ -65733,12 +65974,12 @@ 
    Example
    "approver_roles": [CompanyRole], "condition": PurchaseOrderApprovalRuleConditionInterface, "created_at": "abc123", - "created_by": "abc123", - "description": "abc123", + "created_by": "xyz789", + "description": "xyz789", "name": "abc123", "status": "ENABLED", - "uid": "4", - "updated_at": "xyz789" + "uid": 4, + "updated_at": "abc123" }
    @@ -66044,7 +66285,7 @@
    Example
    "applies_to": [4], "approvers": ["4"], "condition": CreatePurchaseOrderApprovalRuleConditionInput, - "description": "abc123", + "description": "xyz789", "name": "xyz789", "status": "ENABLED" } @@ -66251,7 +66492,7 @@
    Example
    {
       "items": [PurchaseOrderApprovalRule],
       "page_info": SearchResultPageInfo,
    -  "total_count": 123
    +  "total_count": 987
     }
     
    @@ -66311,7 +66552,7 @@
    Example
    "author": Customer, "created_at": "abc123", "text": "xyz789", - "uid": 4 + "uid": "4" }
    @@ -66485,7 +66726,7 @@
    Fields
    Example
    {
       "events": [PurchaseOrderApprovalFlowEvent],
    -  "rule_name": "abc123"
    +  "rule_name": "xyz789"
     }
     
    @@ -66633,7 +66874,7 @@
    Example
    {
       "items": [PurchaseOrder],
       "page_info": SearchResultPageInfo,
    -  "total_count": 987
    +  "total_count": 123
     }
     
    @@ -66789,10 +67030,10 @@
    Fields
    Example
    {
    -  "company_purchase_orders": true,
    +  "company_purchase_orders": false,
       "created_date": FilterRangeTypeInput,
       "my_approvals": true,
    -  "require_my_approval": false,
    +  "require_my_approval": true,
       "status": "PENDING"
     }
     
    @@ -66936,7 +67177,7 @@
    Fields
    Example
    {
       "expiration_date": "xyz789",
    -  "template_id": 4
    +  "template_id": "4"
     }
     
    @@ -66997,10 +67238,10 @@
    Fields
    Example
    {
    -  "item_id": "4",
    -  "item_uid": 4,
    -  "note": "abc123",
    -  "templateId": 4
    +  "item_id": 4,
    +  "item_uid": "4",
    +  "note": "xyz789",
    +  "templateId": "4"
     }
     
    @@ -67048,7 +67289,7 @@
    Fields
    Example
    {
       "message": "xyz789",
    -  "type": "abc123"
    +  "type": "xyz789"
     }
     
    @@ -67106,9 +67347,9 @@
    Fields
    Example
    {
       "count": 123,
    -  "from": 987.65,
    -  "title": "abc123",
    -  "to": 123.45
    +  "from": 123.45,
    +  "title": "xyz789",
    +  "to": 987.65
     }
     
    @@ -67258,7 +67499,7 @@
    Fields
    Example
    -
    {"from": 987.65, "to": 987.65}
    +                  
    {"from": 123.45, "to": 987.65}
     
    @@ -67301,7 +67542,7 @@
    Fields
    Example
    {
       "configurations": ReCaptchaConfiguration,
    -  "is_enabled": true
    +  "is_enabled": false
     }
     
    @@ -67379,12 +67620,12 @@
    Fields
    Example
    {
    -  "badge_position": "xyz789",
    +  "badge_position": "abc123",
       "language_code": "xyz789",
    -  "minimum_score": 123.45,
    +  "minimum_score": 987.65,
       "re_captcha_type": "INVISIBLE",
       "technical_failure_message": "abc123",
    -  "theme": "abc123",
    +  "theme": "xyz789",
       "validation_failure_message": "xyz789",
       "website_key": "xyz789"
     }
    @@ -67463,10 +67704,10 @@ 
    Fields
    Example
    {
    -  "badge_position": "xyz789",
    +  "badge_position": "abc123",
       "failure_message": "xyz789",
       "forms": ["PLACE_ORDER"],
    -  "is_enabled": true,
    +  "is_enabled": false,
       "language_code": "abc123",
       "minimum_score": 123.45,
       "theme": "abc123",
    @@ -67524,7 +67765,7 @@ 
    Example
    {
       "configurations": ReCaptchaConfiguration,
       "form_type": "PLACE_ORDER",
    -  "is_enabled": false
    +  "is_enabled": true
     }
     
    @@ -67875,7 +68116,7 @@
    Fields
    Example
    {
       "code": "abc123",
    -  "id": 123,
    +  "id": 987,
       "name": "abc123"
     }
     
    @@ -67918,7 +68159,7 @@
    Fields
    Example
    -
    {"cart_id": "abc123"}
    +                  
    {"cart_id": "xyz789"}
     
    @@ -68006,7 +68247,7 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    +  "cart_id": "xyz789",
       "coupon_codes": ["abc123"]
     }
     
    @@ -68056,8 +68297,8 @@
    Fields
    Example
    {
    -  "cart_id": "xyz789",
    -  "gift_card_code": "abc123"
    +  "cart_id": "abc123",
    +  "gift_card_code": "xyz789"
     }
     
    @@ -68265,7 +68506,7 @@
    Fields
    Example
    -
    {"cart_id": "abc123", "cart_item_uid": 4}
    +                  
    {"cart_id": "xyz789", "cart_item_uid": 4}
     
    @@ -68352,7 +68593,10 @@
    Fields
    Example
    -
    {"quote_item_uids": ["4"], "quote_uid": 4}
    +                  
    {
    +  "quote_item_uids": ["4"],
    +  "quote_uid": "4"
    +}
     
    @@ -68575,7 +68819,7 @@
    Fields
    Example
    -
    {"return_shipping_tracking_uid": "4"}
    +                  
    {"return_shipping_tracking_uid": 4}
     
    @@ -68696,7 +68940,7 @@
    Fields
    Example
    -
    {"cart_id": "xyz789"}
    +                  
    {"cart_id": "abc123"}
     
    @@ -68790,8 +69034,8 @@
    Fields
    Example
    {
    -  "quote_comment": "abc123",
    -  "quote_name": "abc123",
    +  "quote_comment": "xyz789",
    +  "quote_name": "xyz789",
       "quote_uid": 4
     }
     
    @@ -68944,7 +69188,7 @@
    Example
    "comment_text": "abc123", "contact_email": "xyz789", "items": [RequestReturnItemInput], - "token": "abc123" + "token": "xyz789" }
    @@ -69007,7 +69251,7 @@
    Example
    {
       "cart_id": 4,
       "comment": NegotiableQuoteCommentInput,
    -  "is_draft": true,
    +  "is_draft": false,
       "quote_name": "xyz789"
     }
     
    @@ -69090,7 +69334,7 @@
    Fields
    Example
    -
    {"cart_id": "4"}
    +                  
    {"cart_id": 4}
     
    @@ -69150,10 +69394,10 @@
    Fields
    Example
    {
    -  "comment_text": "abc123",
    -  "contact_email": "xyz789",
    +  "comment_text": "xyz789",
    +  "contact_email": "abc123",
       "items": [RequestReturnItemInput],
    -  "order_uid": "4"
    +  "order_uid": 4
     }
     
    @@ -69218,7 +69462,7 @@
    Example
    EnteredCustomAttributeInput ], "order_item_uid": "4", - "quantity_to_return": 123.45, + "quantity_to_return": 987.65, "selected_custom_attributes": [ SelectedCustomAttributeInput ] @@ -69374,11 +69618,11 @@
    pageSize
    Example
    {
    -  "description": "abc123",
    +  "description": "xyz789",
       "items": RequistionListItems,
    -  "items_count": 987,
    -  "name": "abc123",
    -  "uid": "4",
    +  "items_count": 123,
    +  "name": "xyz789",
    +  "uid": 4,
       "updated_at": "xyz789"
     }
     
    @@ -69537,7 +69781,7 @@
    Example
    "customizable_options": [SelectedCustomizableOption], "product": ProductInterface, "quantity": 123.45, - "sku": "abc123", + "sku": "xyz789", "uid": "4" }
    @@ -69607,8 +69851,8 @@
    Example
    {
       "entered_options": [EnteredOptionInput],
       "parent_sku": "xyz789",
    -  "quantity": 987.65,
    -  "selected_options": ["abc123"],
    +  "quantity": 123.45,
    +  "selected_options": ["xyz789"],
       "sku": "abc123"
     }
     
    @@ -69759,7 +70003,7 @@
    Example
    "items": [RequisitionList], "page_info": SearchResultPageInfo, "sort_fields": SortFields, - "total_count": 123 + "total_count": 987 }
    @@ -69902,10 +70146,10 @@
    Example
    {
       "available_shipping_carriers": [ReturnShippingCarrier],
       "comments": [ReturnComment],
    -  "created_at": "abc123",
    +  "created_at": "xyz789",
       "customer": ReturnCustomer,
       "items": [ReturnItem],
    -  "number": "abc123",
    +  "number": "xyz789",
       "order": CustomerOrder,
       "shipping": ReturnShipping,
       "status": "PENDING",
    @@ -69969,7 +70213,7 @@ 
    Example
    "author_name": "xyz789", "created_at": "abc123", "text": "abc123", - "uid": "4" + "uid": 4 }
    @@ -70021,9 +70265,9 @@
    Fields
    Example
    {
    -  "email": "abc123",
    -  "firstname": "xyz789",
    -  "lastname": "abc123"
    +  "email": "xyz789",
    +  "firstname": "abc123",
    +  "lastname": "xyz789"
     }
     
    @@ -70095,7 +70339,7 @@
    Example
    "quantity": 987.65, "request_quantity": 123.45, "status": "PENDING", - "uid": "4" + "uid": 4 }
    @@ -70198,17 +70442,17 @@
    Fields
    Example
    {
       "code": 4,
    -  "default_value": "xyz789",
    +  "default_value": "abc123",
       "entity_type": "CATALOG_PRODUCT",
       "frontend_class": "xyz789",
       "frontend_input": "BOOLEAN",
       "input_filter": "NONE",
    -  "is_required": false,
    +  "is_required": true,
       "is_unique": true,
    -  "label": "abc123",
    +  "label": "xyz789",
       "multiline_count": 123,
       "options": [CustomAttributeOptionInterface],
    -  "sort_order": 987,
    +  "sort_order": 123,
       "validate_rules": [ValidationRule]
     }
     
    @@ -70416,11 +70660,11 @@
    Fields
    Example
    {
       "city": "abc123",
    -  "contact_name": "abc123",
    +  "contact_name": "xyz789",
       "country": Country,
    -  "postcode": "xyz789",
    +  "postcode": "abc123",
       "region": Region,
    -  "street": ["abc123"],
    +  "street": ["xyz789"],
       "telephone": "xyz789"
     }
     
    @@ -70467,10 +70711,7 @@
    Fields
    Example
    -
    {
    -  "label": "xyz789",
    -  "uid": "4"
    -}
    +                  
    {"label": "xyz789", "uid": 4}
     
    @@ -70528,8 +70769,8 @@
    Example
    {
       "carrier": ReturnShippingCarrier,
       "status": ReturnShippingTrackingStatus,
    -  "tracking_number": "abc123",
    -  "uid": 4
    +  "tracking_number": "xyz789",
    +  "uid": "4"
     }
     
    @@ -70795,7 +71036,7 @@
    Example
    {
       "items": [Return],
       "page_info": SearchResultPageInfo,
    -  "total_count": 123
    +  "total_count": 987
     }
     
    @@ -70836,7 +71077,7 @@
    Fields
    Example
    -
    {"result": true}
    +                  
    {"result": false}
     
    @@ -70995,8 +71236,8 @@
    Example
    {
       "balance": RewardPointsAmount,
       "change_reason": "abc123",
    -  "date": "abc123",
    -  "points_change": 987.65
    +  "date": "xyz789",
    +  "points_change": 123.45
     }
     
    @@ -71090,7 +71331,7 @@
    Fields
    Example
    -
    {"currency_amount": 987.65, "points": 987.65}
    +                  
    {"currency_amount": 987.65, "points": 123.45}
     
    @@ -71229,8 +71470,8 @@
    Fields
    Example
    {
    -  "name": "abc123",
    -  "value": "abc123"
    +  "name": "xyz789",
    +  "value": "xyz789"
     }
     
    @@ -71277,8 +71518,8 @@
    Fields
    Example
    {
    -  "message": "abc123",
    -  "timestamp": "abc123"
    +  "message": "xyz789",
    +  "timestamp": "xyz789"
     }
     
    @@ -71332,7 +71573,7 @@
    Example
    {
       "count": 123,
       "id": "4",
    -  "title": "xyz789"
    +  "title": "abc123"
     }
     
    @@ -71464,9 +71705,9 @@
    Example
    "attribute": "xyz789", "contains": "xyz789", "eq": "abc123", - "in": ["abc123"], + "in": ["xyz789"], "range": SearchRangeInput, - "startsWith": "abc123" + "startsWith": "xyz789" }
    @@ -71514,7 +71755,7 @@
    Fields
    Example
    -
    {"from": 987.65, "to": 987.65}
    +                  
    {"from": 123.45, "to": 987.65}
     
    @@ -71564,7 +71805,7 @@
    Fields
    Example
    -
    {"current_page": 987, "page_size": 123, "total_pages": 123}
    +                  
    {"current_page": 987, "page_size": 987, "total_pages": 123}
     
    @@ -71621,8 +71862,8 @@
    Fields
    Example
    {
       "label": "abc123",
    -  "type": "abc123",
    -  "uid": "4",
    +  "type": "xyz789",
    +  "uid": 4,
       "values": [SelectedBundleOptionValue]
     }
     
    @@ -71685,7 +71926,7 @@
    Fields
    Example
    {
    -  "label": "xyz789",
    +  "label": "abc123",
       "original_price": Money,
       "priceV2": Money,
       "quantity": 123.45,
    @@ -71746,9 +71987,9 @@ 
    Fields
    Example
    {
    -  "configurable_product_option_uid": 4,
    +  "configurable_product_option_uid": "4",
       "configurable_product_option_value_uid": "4",
    -  "option_label": "xyz789",
    +  "option_label": "abc123",
       "value_label": "xyz789"
     }
     
    @@ -71798,8 +72039,8 @@
    Fields
    Example
    {
    -  "attribute_code": "abc123",
    -  "value": "abc123"
    +  "attribute_code": "xyz789",
    +  "value": "xyz789"
     }
     
    @@ -71870,7 +72111,7 @@
    Example
    "is_required": false, "label": "abc123", "sort_order": 123, - "type": "abc123", + "type": "xyz789", "values": [SelectedCustomizableOptionValue] }
    @@ -71928,10 +72169,10 @@
    Fields
    Example
    {
    -  "customizable_option_value_uid": "4",
    -  "label": "abc123",
    +  "customizable_option_value_uid": 4,
    +  "label": "xyz789",
       "price": CartItemSelectedOptionValuePrice,
    -  "value": "xyz789"
    +  "value": "abc123"
     }
     
    @@ -71991,7 +72232,7 @@
    Example
    "code": "xyz789", "oope_payment_method_config": OopePaymentMethodConfig, "purchase_order_number": "abc123", - "title": "abc123" + "title": "xyz789" }
    @@ -72072,7 +72313,7 @@
    Example
    "amount": Money, "carrier_code": "abc123", "carrier_title": "abc123", - "method_code": "abc123", + "method_code": "xyz789", "method_title": "abc123", "price_excl_tax": Money, "price_incl_tax": Money @@ -72123,7 +72364,10 @@
    Fields
    Example
    -
    {"comment": NegotiableQuoteCommentInput, "quote_uid": 4}
    +                  
    {
    +  "comment": NegotiableQuoteCommentInput,
    +  "quote_uid": "4"
    +}
     
    @@ -72212,7 +72456,7 @@
    Fields
    Example
    {
       "billing_address": BillingAddressInput,
    -  "cart_id": "xyz789"
    +  "cart_id": "abc123"
     }
     
    @@ -72298,7 +72542,7 @@
    Fields
    Example
    -
    {"error": "abc123", "success": true}
    +                  
    {"error": "abc123", "success": false}
     
    @@ -72541,11 +72785,11 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    +  "cart_id": "xyz789",
       "gift_message": GiftMessageInput,
       "gift_receipt_included": true,
    -  "gift_wrapping_id": 4,
    -  "printed_card_included": false
    +  "gift_wrapping_id": "4",
    +  "printed_card_included": true
     }
     
    @@ -72635,7 +72879,7 @@
    Fields
    Example
    {
       "cart_id": "xyz789",
    -  "email": "abc123"
    +  "email": "xyz789"
     }
     
    @@ -72855,7 +73099,7 @@
    Fields
    Example
    {
       "payment_method": NegotiableQuotePaymentMethodInput,
    -  "quote_uid": 4
    +  "quote_uid": "4"
     }
     
    @@ -73176,7 +73420,7 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    +  "cart_id": "xyz789",
       "payment_method": PaymentMethodInput
     }
     
    @@ -73356,7 +73600,7 @@
    Fields
    Example
    {
    -  "cart_id": "abc123",
    +  "cart_id": "xyz789",
       "shipping_methods": [ShippingMethodInput]
     }
     
    @@ -73446,8 +73690,8 @@
    Fields
    Example
    {
    -  "email": "xyz789",
    -  "name": "xyz789"
    +  "email": "abc123",
    +  "name": "abc123"
     }
     
    @@ -73488,7 +73732,7 @@
    Fields
    Example
    -
    {"is_shared": true}
    +                  
    {"is_shared": false}
     
    @@ -73585,10 +73829,7 @@
    Fields
    Example
    -
    {
    -  "customerUids": ["4"],
    -  "requisitionListUid": "4"
    -}
    +                  
    {"customerUids": [4], "requisitionListUid": 4}
     
    @@ -73676,7 +73917,7 @@
    Fields
    Example
    -
    {"token": "abc123"}
    +                  
    {"token": "xyz789"}
     
    @@ -73834,7 +74075,7 @@
    Fields
    Example
    {
       "requisition_list": RequisitionList,
    -  "sender_name": "abc123"
    +  "sender_name": "xyz789"
     }
     
    @@ -73946,12 +74187,12 @@
    Fields
    Example
    {
    -  "id": "4",
    +  "id": 4,
       "order_item": OrderItemInterface,
    -  "product_name": "abc123",
    +  "product_name": "xyz789",
       "product_sale_price": Money,
       "product_sku": "xyz789",
    -  "quantity_shipped": 987.65
    +  "quantity_shipped": 123.45
     }
     
    @@ -74049,8 +74290,8 @@
    Example
    "order_item": OrderItemInterface, "product_name": "abc123", "product_sale_price": Money, - "product_sku": "abc123", - "quantity_shipped": 123.45 + "product_sku": "xyz789", + "quantity_shipped": 987.65 }
    @@ -74107,10 +74348,10 @@
    Fields
    Example
    {
    -  "carrier": "xyz789",
    +  "carrier": "abc123",
       "number": "xyz789",
       "title": "xyz789",
    -  "tracking_url": "abc123"
    +  "tracking_url": "xyz789"
     }
     
    @@ -74159,7 +74400,7 @@
    Fields
    Example
    {
    -  "key": "abc123",
    +  "key": "xyz789",
       "value": "xyz789"
     }
     
    @@ -74228,10 +74469,10 @@
    Fields
    Example
    {
       "address": CartAddressInput,
    -  "customer_address_id": 123,
    -  "customer_address_uid": 4,
    -  "customer_notes": "abc123",
    -  "pickup_location_code": "xyz789"
    +  "customer_address_id": 987,
    +  "customer_address_uid": "4",
    +  "customer_notes": "xyz789",
    +  "pickup_location_code": "abc123"
     }
     
    @@ -74396,24 +74637,24 @@
    Example
    "company": "xyz789", "country": CartAddressCountry, "custom_attributes": [AttributeValueInterface], - "customer_address_uid": 4, + "customer_address_uid": "4", "customer_notes": "abc123", "fax": "xyz789", "firstname": "xyz789", "id": 987, - "lastname": "xyz789", + "lastname": "abc123", "middlename": "abc123", - "pickup_location_code": "abc123", + "pickup_location_code": "xyz789", "postcode": "abc123", - "prefix": "abc123", + "prefix": "xyz789", "region": CartAddressRegion, "same_as_billing": false, "selected_shipping_method": SelectedShippingMethod, - "street": ["abc123"], - "suffix": "abc123", + "street": ["xyz789"], + "suffix": "xyz789", "telephone": "abc123", - "uid": 4, - "vat_id": "xyz789" + "uid": "4", + "vat_id": "abc123" }
    @@ -74568,7 +74809,7 @@
    Fields
    Example
    {
    -  "carrier_code": "xyz789",
    +  "carrier_code": "abc123",
       "method_code": "abc123"
     }
     
    @@ -74714,14 +74955,14 @@
    Example
    "is_available": true, "is_salable": false, "max_qty": 123.45, - "min_qty": 123.45, + "min_qty": 987.65, "not_available_message": "xyz789", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, "quantity": 987.65, - "uid": 4 + "uid": "4" }
    @@ -74976,47 +75217,47 @@
    filters
    Example
    {
    -  "canonical_url": "xyz789",
    +  "canonical_url": "abc123",
       "categories": [CategoryInterface],
    -  "country_of_manufacture": "abc123",
    +  "country_of_manufacture": "xyz789",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    -  "gift_message_available": false,
    -  "gift_wrapping_available": false,
    +  "gift_message_available": true,
    +  "gift_wrapping_available": true,
       "gift_wrapping_price": Money,
       "image": ProductImage,
    -  "is_returnable": "xyz789",
    +  "is_returnable": "abc123",
       "manufacturer": 987,
       "max_sale_qty": 123.45,
       "media_gallery": [MediaGalleryInterface],
       "meta_description": "abc123",
       "meta_keyword": "xyz789",
       "meta_title": "abc123",
    -  "min_sale_qty": 123.45,
    -  "name": "xyz789",
    +  "min_sale_qty": 987.65,
    +  "name": "abc123",
       "new_from_date": "abc123",
    -  "new_to_date": "xyz789",
    +  "new_to_date": "abc123",
       "only_x_left_in_stock": 123.45,
       "options": [CustomizableOptionInterface],
       "options_container": "abc123",
       "price_range": PriceRange,
       "price_tiers": [TierPrice],
       "product_links": [ProductLinksInterface],
    -  "quantity": 987.65,
    +  "quantity": 123.45,
       "related_products": [ProductInterface],
       "short_description": ComplexTextValue,
       "sku": "abc123",
       "small_image": ProductImage,
       "special_price": 987.65,
    -  "special_to_date": "abc123",
    +  "special_to_date": "xyz789",
       "stock_status": "IN_STOCK",
       "swatch_image": "xyz789",
       "thumbnail": ProductImage,
       "uid": 4,
       "upsell_products": [ProductInterface],
       "url_key": "abc123",
    -  "weight": 987.65
    +  "weight": 123.45
     }
     
    @@ -75222,26 +75463,26 @@
    Example
    {
       "addToCartAllowed": false,
       "inStock": true,
    -  "lowStock": false,
    +  "lowStock": true,
       "attributes": [ProductViewAttribute],
       "description": "xyz789",
    -  "id": "4",
    +  "id": 4,
       "images": [ProductViewImage],
       "videos": [ProductViewVideo],
       "inputOptions": [ProductViewInputOption],
       "lastModifiedAt": "2007-12-03T10:15:30Z",
    -  "metaDescription": "abc123",
    +  "metaDescription": "xyz789",
       "metaKeyword": "abc123",
       "metaTitle": "xyz789",
       "name": "xyz789",
       "price": ProductViewPrice,
       "shortDescription": "xyz789",
    -  "sku": "xyz789",
    +  "sku": "abc123",
       "externalId": "xyz789",
    -  "url": "xyz789",
    +  "url": "abc123",
       "urlKey": "abc123",
       "links": [ProductViewLink],
    -  "queryType": "abc123",
    +  "queryType": "xyz789",
       "visibility": "abc123"
     }
     
    @@ -75309,7 +75550,7 @@
    Example
    "product": ProductInterface, "quantity": 123.45, "sku": "xyz789", - "uid": "4" + "uid": 4 } @@ -75382,7 +75623,7 @@
    Example
    "description": "abc123", "id": 4, "product": ProductInterface, - "quantity": 123.45 + "quantity": 987.65 } @@ -75437,9 +75678,9 @@
    Fields
    Example
    {
    -  "payment_source": "abc123",
    +  "payment_source": "xyz789",
       "payments_order_id": "abc123",
    -  "paypal_order_id": "abc123"
    +  "paypal_order_id": "xyz789"
     }
     
    @@ -75532,12 +75773,12 @@
    Example
    "code": "abc123", "display_message": true, "display_venmo": true, - "is_visible": false, + "is_visible": true, "message_styles": MessageStyles, - "payment_intent": "xyz789", + "payment_intent": "abc123", "sdk_params": [SDKParams], "sort_order": "xyz789", - "title": "abc123" + "title": "xyz789" } @@ -75633,8 +75874,8 @@
    Fields
    Example
    {
    -  "label": "xyz789",
    -  "value": "xyz789"
    +  "label": "abc123",
    +  "value": "abc123"
     }
     
    @@ -75681,7 +75922,7 @@
    Fields
    Example
    {
    -  "default": "xyz789",
    +  "default": "abc123",
       "options": [SortField]
     }
     
    @@ -76005,9 +76246,9 @@
    Fields
    Example
    {
    -  "attribute": "abc123",
    -  "frontendInput": "abc123",
    -  "label": "abc123",
    +  "attribute": "xyz789",
    +  "frontendInput": "xyz789",
    +  "label": "xyz789",
       "numeric": true
     }
     
    @@ -76060,7 +76301,7 @@
    Fields
    Example
    {
    -  "max": 123.45,
    +  "max": 987.65,
       "min": 987.65,
       "title": "xyz789"
     }
    @@ -76829,151 +77070,151 @@ 
    Fields
    Example
    {
    -  "allow_company_registration": true,
    -  "allow_gift_receipt": "xyz789",
    +  "allow_company_registration": false,
    +  "allow_gift_receipt": "abc123",
       "allow_gift_wrapping_on_order": "xyz789",
       "allow_gift_wrapping_on_order_items": "abc123",
       "allow_items": "abc123",
    -  "allow_order": "xyz789",
    +  "allow_order": "abc123",
       "allow_printed_card": "xyz789",
       "autocomplete_on_storefront": true,
       "base_currency_code": "abc123",
    -  "base_link_url": "abc123",
    +  "base_link_url": "xyz789",
       "base_media_url": "xyz789",
    -  "base_static_url": "xyz789",
    +  "base_static_url": "abc123",
       "base_url": "xyz789",
       "cart_expires_in_days": 987,
       "cart_gift_wrapping": "xyz789",
       "cart_merge_preference": "abc123",
       "cart_printed_card": "xyz789",
    -  "cart_summary_display_quantity": 123,
    +  "cart_summary_display_quantity": 987,
       "catalog_default_sort_by": "xyz789",
       "category_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS",
    -  "category_url_suffix": "xyz789",
    +  "category_url_suffix": "abc123",
       "check_money_order_enable_for_specific_countries": false,
       "check_money_order_enabled": true,
    -  "check_money_order_make_check_payable_to": "abc123",
    -  "check_money_order_max_order_total": "xyz789",
    -  "check_money_order_min_order_total": "xyz789",
    -  "check_money_order_new_order_status": "abc123",
    -  "check_money_order_payment_from_specific_countries": "abc123",
    -  "check_money_order_send_check_to": "abc123",
    -  "check_money_order_sort_order": 123,
    +  "check_money_order_make_check_payable_to": "xyz789",
    +  "check_money_order_max_order_total": "abc123",
    +  "check_money_order_min_order_total": "abc123",
    +  "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": "xyz789",
       "company_credit_enabled": false,
    -  "company_enabled": true,
    +  "company_enabled": false,
       "configurable_product_image": "ITSELF",
       "configurable_thumbnail_source": "xyz789",
    -  "contact_enabled": false,
    +  "contact_enabled": true,
       "countries_with_required_region": "xyz789",
    -  "create_account_confirmation": true,
    -  "customer_access_token_lifetime": 123.45,
    +  "create_account_confirmation": false,
    +  "customer_access_token_lifetime": 987.65,
       "default_country": "xyz789",
    -  "default_display_currency_code": "abc123",
    -  "display_product_prices_in_catalog": 987,
    -  "display_shipping_prices": 123,
    -  "display_state_if_optional": true,
    -  "enable_multiple_wishlists": "xyz789",
    -  "fixed_product_taxes_apply_tax_to_fpt": true,
    -  "fixed_product_taxes_display_prices_in_emails": 987,
    -  "fixed_product_taxes_display_prices_in_product_lists": 123,
    +  "default_display_currency_code": "xyz789",
    +  "display_product_prices_in_catalog": 123,
    +  "display_shipping_prices": 987,
    +  "display_state_if_optional": false,
    +  "enable_multiple_wishlists": "abc123",
    +  "fixed_product_taxes_apply_tax_to_fpt": false,
    +  "fixed_product_taxes_display_prices_in_emails": 123,
    +  "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_display_prices_on_product_view_page": 987,
    +  "fixed_product_taxes_enable": true,
       "fixed_product_taxes_include_fpt_in_subtotal": true,
       "graphql_share_customer_group": false,
       "grid_per_page": 987,
    -  "grid_per_page_values": "xyz789",
    +  "grid_per_page_values": "abc123",
       "grouped_product_image": "ITSELF",
    -  "is_checkout_agreements_enabled": true,
    -  "is_default_store": true,
    +  "is_checkout_agreements_enabled": false,
    +  "is_default_store": false,
       "is_default_store_group": false,
    -  "is_guest_checkout_enabled": false,
    -  "is_negotiable_quote_active": false,
    -  "is_one_page_checkout_enabled": true,
    +  "is_guest_checkout_enabled": true,
    +  "is_negotiable_quote_active": true,
    +  "is_one_page_checkout_enabled": false,
       "is_requisition_list_active": "abc123",
       "list_mode": "xyz789",
       "list_per_page": 123,
    -  "list_per_page_values": "xyz789",
    -  "locale": "xyz789",
    -  "magento_reward_general_is_enabled": "abc123",
    -  "magento_reward_general_is_enabled_on_front": "xyz789",
    -  "magento_reward_general_min_points_balance": "xyz789",
    -  "magento_reward_general_publish_history": "abc123",
    -  "magento_reward_points_invitation_customer": "abc123",
    -  "magento_reward_points_invitation_customer_limit": "abc123",
    -  "magento_reward_points_invitation_order": "abc123",
    +  "list_per_page_values": "abc123",
    +  "locale": "abc123",
    +  "magento_reward_general_is_enabled": "xyz789",
    +  "magento_reward_general_is_enabled_on_front": "abc123",
    +  "magento_reward_general_min_points_balance": "abc123",
    +  "magento_reward_general_publish_history": "xyz789",
    +  "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": "xyz789",
       "magento_reward_points_newsletter": "abc123",
    -  "magento_reward_points_order": "xyz789",
    +  "magento_reward_points_order": "abc123",
       "magento_reward_points_register": "xyz789",
       "magento_reward_points_review": "abc123",
       "magento_reward_points_review_limit": "xyz789",
       "magento_wishlist_general_is_enabled": "abc123",
    -  "max_items_in_order_summary": 123,
    +  "max_items_in_order_summary": 987,
       "maximum_number_of_wishlists": "abc123",
    -  "minicart_display": false,
    +  "minicart_display": true,
       "minicart_max_items": 987,
    -  "minimum_password_length": "xyz789",
    +  "minimum_password_length": "abc123",
       "newsletter_enabled": true,
    -  "optional_zip_countries": "abc123",
    -  "order_cancellation_enabled": true,
    +  "optional_zip_countries": "xyz789",
    +  "order_cancellation_enabled": false,
       "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_price": 987,
       "orders_invoices_credit_memos_display_shipping_amount": 987,
       "orders_invoices_credit_memos_display_subtotal": 987,
    -  "orders_invoices_credit_memos_display_zero_tax": true,
    +  "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": 123.45,
    -  "quote_minimum_amount_message": "xyz789",
    +  "product_url_suffix": "xyz789",
    +  "quickorder_active": true,
    +  "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_link_validity_days": 987,
       "requisition_list_share_max_recipients": 123,
    -  "requisition_list_share_storefront_path": "xyz789",
    -  "requisition_list_sharing_enabled": false,
    -  "returns_enabled": "abc123",
    -  "root_category_uid": 4,
    +  "requisition_list_share_storefront_path": "abc123",
    +  "requisition_list_sharing_enabled": true,
    +  "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",
    +  "sales_gift_wrapping": "xyz789",
    +  "sales_printed_card": "xyz789",
       "secure_base_link_url": "abc123",
       "secure_base_media_url": "abc123",
    -  "secure_base_static_url": "xyz789",
    -  "secure_base_url": "abc123",
    -  "share_active_segments": true,
    +  "secure_base_static_url": "abc123",
    +  "secure_base_url": "xyz789",
    +  "share_active_segments": false,
       "share_applied_cart_rule": false,
    -  "shopping_assistance_checkbox_title": "abc123",
    -  "shopping_assistance_checkbox_tooltip": "xyz789",
    +  "shopping_assistance_checkbox_title": "xyz789",
    +  "shopping_assistance_checkbox_tooltip": "abc123",
       "shopping_assistance_enabled": false,
    -  "shopping_cart_display_full_summary": true,
    +  "shopping_cart_display_full_summary": false,
       "shopping_cart_display_grand_total": false,
    -  "shopping_cart_display_price": 987,
    +  "shopping_cart_display_price": 123,
       "shopping_cart_display_shipping": 987,
    -  "shopping_cart_display_subtotal": 123,
    +  "shopping_cart_display_subtotal": 987,
       "shopping_cart_display_tax_gift_wrapping": "DISPLAY_EXCLUDING_TAX",
    -  "shopping_cart_display_zero_tax": true,
    -  "store_code": 4,
    +  "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",
    +  "timezone": "xyz789",
       "title_separator": "abc123",
       "use_store_in_url": false,
       "website_code": "4",
       "website_name": "abc123",
    -  "weight_unit": "abc123",
    -  "zero_subtotal_enable_for_specific_countries": true,
    +  "weight_unit": "xyz789",
    +  "zero_subtotal_enable_for_specific_countries": false,
       "zero_subtotal_enabled": false,
       "zero_subtotal_new_order_status": "xyz789",
       "zero_subtotal_payment_action": "abc123",
    -  "zero_subtotal_payment_from_specific_countries": "xyz789",
    -  "zero_subtotal_sort_order": 987,
    +  "zero_subtotal_payment_from_specific_countries": "abc123",
    +  "zero_subtotal_sort_order": 123,
       "zero_subtotal_title": "xyz789"
     }
     
    @@ -76997,7 +77238,7 @@
    Description
    Example
    -
    "xyz789"
    +                  
    "abc123"
     
    @@ -77167,7 +77408,7 @@
    Example
    {
       "attachments": [NegotiableQuoteCommentAttachmentInput],
       "comment": "xyz789",
    -  "max_order_commitment": 123,
    +  "max_order_commitment": 987,
       "min_order_commitment": 987,
       "name": "xyz789",
       "reference_document_links": [
    @@ -77660,7 +77901,7 @@ 
    Fields
    Example
    {
       "cartId": "xyz789",
    -  "id": "abc123"
    +  "id": "xyz789"
     }
     
    @@ -77914,6 +78155,87 @@
    Example
    "final_price": Money, "quantity": 987.65 } +
    +
    +
    + back to top +
    +
    +
    +
    + Types +
    +

    UnassignChildCompanyInput

    +
    +
    +
    +
    Description
    +

    Defines the input schema for unassigning a child company from its parent company.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + +
    Input FieldDescription
    + child_company_id - ID! + The unique ID of the child company.
    +
    +
    +
    +
    +
    Example
    +
    {"child_company_id": "4"}
    +
    +
    +
    + back to top +
    +
    +
    +
    + Types +
    +

    UnassignChildCompanyOutput

    +
    +
    +
    +
    Description
    +

    Contains the response to the request to unassign a child company.

    +
    +
    +
    Fields
    + + + + + + + + + + + + + +
    Field NameDescription
    company_hierarchy - CompanyHierarchy! + The updated company relation hierarchy for the current company.
    +
    +
    +
    +
    +
    Example
    +
    {"company_hierarchy": CompanyHierarchy}
     
    @@ -78002,11 +78324,11 @@
    Fields
    Example
    {
       "unitName": "xyz789",
    -  "storefrontLabel": "abc123",
    +  "storefrontLabel": "xyz789",
       "pagePlacement": "abc123",
       "displayNumber": 123,
       "pageType": "abc123",
    -  "unitStatus": "xyz789",
    +  "unitStatus": "abc123",
       "typeId": "abc123",
       "filterRules": [FilterRuleInput]
     }
    @@ -78382,7 +78704,7 @@ 
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "event_name": "abc123", + "event_name": "xyz789", "message": "xyz789", "privacy_settings": "PRIVATE", "shipping_address": GiftRegistryShippingAddressInput, @@ -78441,9 +78763,9 @@
    Fields
    Example
    {
    -  "gift_registry_item_uid": "4",
    -  "note": "xyz789",
    -  "quantity": 987.65
    +  "gift_registry_item_uid": 4,
    +  "note": "abc123",
    +  "quantity": 123.45
     }
     
    @@ -78593,8 +78915,8 @@
    Example
    "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "email": "xyz789", - "firstname": "abc123", + "email": "abc123", + "firstname": "xyz789", "gift_registry_registrant_uid": 4, "lastname": "abc123" } @@ -78726,7 +79048,7 @@
    Fields
    Example
    {
       "items": [NegotiableQuoteItemQuantityInput],
    -  "quote_uid": 4
    +  "quote_uid": "4"
     }
     
    @@ -78816,7 +79138,7 @@
    Fields
    Example
    {
       "items": [NegotiableQuoteTemplateItemQuantityInput],
    -  "template_id": 4
    +  "template_id": "4"
     }
     
    @@ -78943,11 +79265,11 @@
    Fields
    Example
    {
    -  "applies_to": [4],
    +  "applies_to": ["4"],
       "approvers": [4],
       "condition": CreatePurchaseOrderApprovalRuleConditionInput,
    -  "description": "xyz789",
    -  "name": "abc123",
    +  "description": "abc123",
    +  "name": "xyz789",
       "status": "ENABLED",
       "uid": "4"
     }
    @@ -78999,7 +79321,7 @@ 
    Fields
    Example
    {
       "description": "xyz789",
    -  "name": "abc123"
    +  "name": "xyz789"
     }
     
    @@ -79062,8 +79384,8 @@
    Example
    {
       "entered_options": [EnteredOptionInput],
       "item_id": 4,
    -  "quantity": 987.65,
    -  "selected_options": ["xyz789"]
    +  "quantity": 123.45,
    +  "selected_options": ["abc123"]
     }
     
    @@ -79196,7 +79518,7 @@
    Fields
    Example
    {
       "name": "xyz789",
    -  "uid": "4",
    +  "uid": 4,
       "visibility": "PUBLIC"
     }
     
    @@ -79253,7 +79575,7 @@
    Fields
    Example
    {
       "currentPage": 987,
    -  "pageSize": 987,
    +  "pageSize": 123,
       "sort": [CompaniesSortInput]
     }
     
    @@ -79455,7 +79777,7 @@
    Fields
    Example
    -
    {"purchase_order_uids": [4]}
    +                  
    {"purchase_order_uids": ["4"]}
     
    @@ -79550,7 +79872,7 @@
    Fields
    Example
    {
       "name": "DATE_RANGE_MAX",
    -  "value": "abc123"
    +  "value": "xyz789"
     }
     
    @@ -79736,7 +80058,7 @@
    Fields
    Example
    {
    -  "is_vault_enabled": false,
    +  "is_vault_enabled": true,
       "sdk_params": [SDKParams],
       "three_ds_mode": "OFF"
     }
    @@ -79799,10 +80121,10 @@ 
    Fields
    Example
    {
    -  "payment_source": "xyz789",
    +  "payment_source": "abc123",
       "payments_order_id": "abc123",
       "paypal_order_id": "abc123",
    -  "public_hash": "xyz789"
    +  "public_hash": "abc123"
     }
     
    @@ -80071,17 +80393,17 @@
    Example
    "customizable_options": [SelectedCustomizableOption], "discount": [Discount], "errors": [CartItemError], - "is_available": true, - "is_salable": true, + "is_available": false, + "is_salable": false, "max_qty": 123.45, "min_qty": 987.65, - "not_available_message": "abc123", + "not_available_message": "xyz789", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, "quantity": 987.65, - "uid": 4 + "uid": "4" }
    @@ -80331,40 +80653,40 @@
    filters
    Example
    {
    -  "canonical_url": "xyz789",
    +  "canonical_url": "abc123",
       "categories": [CategoryInterface],
    -  "country_of_manufacture": "xyz789",
    +  "country_of_manufacture": "abc123",
       "crosssell_products": [ProductInterface],
       "custom_attributesV2": ProductCustomAttributes,
       "description": ComplexTextValue,
    -  "gift_message_available": true,
    -  "gift_wrapping_available": false,
    +  "gift_message_available": false,
    +  "gift_wrapping_available": true,
       "gift_wrapping_price": Money,
       "image": ProductImage,
       "is_returnable": "abc123",
       "manufacturer": 987,
       "max_sale_qty": 987.65,
       "media_gallery": [MediaGalleryInterface],
    -  "meta_description": "xyz789",
    +  "meta_description": "abc123",
       "meta_keyword": "abc123",
       "meta_title": "xyz789",
    -  "min_sale_qty": 123.45,
    +  "min_sale_qty": 987.65,
       "name": "abc123",
    -  "new_from_date": "xyz789",
    -  "new_to_date": "abc123",
    +  "new_from_date": "abc123",
    +  "new_to_date": "xyz789",
       "only_x_left_in_stock": 123.45,
       "options": [CustomizableOptionInterface],
    -  "options_container": "abc123",
    +  "options_container": "xyz789",
       "price_range": PriceRange,
       "price_tiers": [TierPrice],
       "product_links": [ProductLinksInterface],
    -  "quantity": 123.45,
    +  "quantity": 987.65,
       "related_products": [ProductInterface],
       "short_description": ComplexTextValue,
       "sku": "xyz789",
       "small_image": ProductImage,
    -  "special_price": 987.65,
    -  "special_to_date": "xyz789",
    +  "special_price": 123.45,
    +  "special_to_date": "abc123",
       "stock_status": "IN_STOCK",
       "swatch_image": "xyz789",
       "thumbnail": ProductImage,
    @@ -80435,8 +80757,8 @@ 
    Example
    {
       "customizable_options": [SelectedCustomizableOption],
       "product": ProductInterface,
    -  "quantity": 123.45,
    -  "sku": "abc123",
    +  "quantity": 987.65,
    +  "sku": "xyz789",
       "uid": "4"
     }
     
    @@ -80505,12 +80827,12 @@
    Fields
    Example
    {
    -  "added_at": "abc123",
    +  "added_at": "xyz789",
       "customizable_options": [SelectedCustomizableOption],
       "description": "abc123",
       "id": "4",
       "product": ProductInterface,
    -  "quantity": 987.65
    +  "quantity": 123.45
     }
     
    @@ -80696,12 +81018,12 @@
    pageSize
    Example
    {
    -  "id": "4",
    -  "items_count": 987,
    +  "id": 4,
    +  "items_count": 123,
       "items_v2": WishlistItems,
    -  "name": "xyz789",
    +  "name": "abc123",
       "sharing_code": "xyz789",
    -  "updated_at": "xyz789",
    +  "updated_at": "abc123",
       "visibility": "PUBLIC"
     }
     
    @@ -80760,8 +81082,8 @@
    Fields
    Example
    {
       "code": "PRODUCT_NOT_FOUND",
    -  "message": "abc123",
    -  "wishlistId": "4",
    +  "message": "xyz789",
    +  "wishlistId": 4,
       "wishlistItemId": "4"
     }
     
    @@ -80880,10 +81202,7 @@
    Fields
    Example
    -
    {
    -  "quantity": 123.45,
    -  "wishlist_item_id": "4"
    -}
    +                  
    {"quantity": 123.45, "wishlist_item_id": 4}
     
    @@ -80951,8 +81270,8 @@
    Example
    {
       "entered_options": [EnteredOptionInput],
       "parent_sku": "xyz789",
    -  "quantity": 123.45,
    -  "selected_options": [4],
    +  "quantity": 987.65,
    +  "selected_options": ["4"],
       "sku": "abc123"
     }
     
    @@ -81068,10 +81387,10 @@
    Possible Types
    Example
    {
    -  "added_at": "xyz789",
    +  "added_at": "abc123",
       "customizable_options": [SelectedCustomizableOption],
       "description": "abc123",
    -  "id": "4",
    +  "id": 4,
       "product": ProductInterface,
       "quantity": 123.45
     }
    @@ -81122,7 +81441,7 @@ 
    Fields
    Example
    {
    -  "quantity": 123.45,
    +  "quantity": 987.65,
       "wishlist_item_id": "4"
     }
     
    @@ -81190,10 +81509,10 @@
    Fields
    Example
    {
    -  "description": "xyz789",
    +  "description": "abc123",
       "entered_options": [EnteredOptionInput],
       "quantity": 987.65,
    -  "selected_options": [4],
    +  "selected_options": ["4"],
       "wishlist_item_id": 4
     }
     
    @@ -81336,7 +81655,7 @@
    Fields
    Example
    {
    -  "key": "xyz789",
    +  "key": "abc123",
       "media_resource_type": "NEGOTIABLE_QUOTE_ATTACHMENT"
     }
     
    @@ -81385,8 +81704,8 @@
    Fields
    Example
    {
    -  "key": "xyz789",
    -  "message": "abc123",
    +  "key": "abc123",
    +  "message": "xyz789",
       "success": false
     }
     
    @@ -81432,7 +81751,7 @@
    Fields
    Example
    {
    -  "key": "abc123",
    +  "key": "xyz789",
       "media_resource_type": "NEGOTIABLE_QUOTE_ATTACHMENT"
     }
     
    @@ -81481,9 +81800,9 @@
    Fields
    Example
    {
    -  "expires_at": "abc123",
    +  "expires_at": "xyz789",
       "key": "xyz789",
    -  "upload_url": "abc123"
    +  "upload_url": "xyz789"
     }
     
    From e221dd331b6e1095fd431de94bda0067904f8cc4 Mon Sep 17 00:00:00 2001 From: Dima Shevtsov Date: Wed, 3 Jun 2026 16:59:58 -0500 Subject: [PATCH 8/9] Regenerate the GraphQL docs for ACCS --- .../graphql-api-saas-mutations.md | 609 +++++++--- .../autogenerated/graphql-api-saas-queries.md | 834 ++++++------- .../autogenerated/graphql-api-saas-types-1.md | 1035 ++++++++--------- .../autogenerated/graphql-api-saas-types-2.md | 920 +++++++-------- .../autogenerated/graphql-api-saas-types-3.md | 842 ++++++++------ .../autogenerated/graphql-api-saas-types-4.md | 298 +++-- 6 files changed, 2369 insertions(+), 2169 deletions(-) diff --git a/src/pages/includes/autogenerated/graphql-api-saas-mutations.md b/src/pages/includes/autogenerated/graphql-api-saas-mutations.md index 505742db5..65caaecf6 100644 --- a/src/pages/includes/autogenerated/graphql-api-saas-mutations.md +++ b/src/pages/includes/autogenerated/graphql-api-saas-mutations.md @@ -115,30 +115,30 @@ mutation acceptNegotiableQuoteTemplate($input: AcceptNegotiableQuoteTemplateInpu "acceptNegotiableQuoteTemplate": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", + "created_at": "xyz789", "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": false, - "is_virtual": false, + "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 123, "min_order_commitment": 123, - "name": "xyz789", + "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", + "status": "xyz789", "template_id": "4", - "total_quantity": 987.65, - "uid": 4, - "updated_at": "xyz789" + "total_quantity": 123.45, + "uid": "4", + "updated_at": "abc123" } } } @@ -227,7 +227,7 @@ mutation addGiftRegistryRegistrants( ```json { - "giftRegistryUid": 4, + "giftRegistryUid": "4", "registrants": [AddGiftRegistryRegistrantInput] } ``` @@ -350,9 +350,9 @@ mutation addProductsToCompareList($input: AddProductsToCompareListInput) { "data": { "addProductsToCompareList": { "attributes": [ComparableAttribute], - "item_count": 987, + "item_count": 123, "items": [ComparableItem], - "uid": 4 + "uid": "4" } } } @@ -659,10 +659,7 @@ mutation addRequisitionListItemsToCart( ##### Variables ```json -{ - "requisitionListUid": "4", - "requisitionListItemUids": [4] -} +{"requisitionListUid": 4, "requisitionListItemUids": [4]} ``` ##### Response @@ -675,7 +672,7 @@ mutation addRequisitionListItemsToCart( AddRequisitionListItemToCartUserError ], "cart": Cart, - "status": true + "status": false } } } @@ -813,7 +810,10 @@ mutation addWishlistItemsToCart( ##### Variables ```json -{"wishlistId": 4, "wishlistItemIds": ["4"]} +{ + "wishlistId": "4", + "wishlistItemIds": ["4"] +} ``` ##### Response @@ -983,7 +983,7 @@ mutation applyRewardPointsToCart($cartId: ID!) { ##### Variables ```json -{"cartId": "4"} +{"cartId": 4} ``` ##### Response @@ -1084,6 +1084,52 @@ mutation approvePurchaseOrders($input: PurchaseOrdersActionInput!) { +### assignChildCompany + +Assign a child company to a parent company within the company relation hierarchy. + +**Response:** [`AssignChildCompanyOutput`](#assignchildcompanyoutput) + +#### Arguments + +| Name | Description | +|------|-------------| +| `input` - [`AssignChildCompanyInput!`](#assignchildcompanyinput) | An input object that defines which companies to relate. | + +#### Example + +##### Query + +```graphql +mutation assignChildCompany($input: AssignChildCompanyInput!) { + assignChildCompany(input: $input) { + company_hierarchy { + ...CompanyHierarchyFragment + } + } +} +``` + +##### Variables + +```json +{"input": AssignChildCompanyInput} +``` + +##### Response + +```json +{ + "data": { + "assignChildCompany": { + "company_hierarchy": CompanyHierarchy + } + } +} +``` + + + ### assignCompareListToCustomer Assign the specified compare list to the logged in customer. @@ -1114,7 +1160,7 @@ mutation assignCompareListToCustomer($uid: ID!) { ##### Variables ```json -{"uid": 4} +{"uid": "4"} ``` ##### Response @@ -1124,7 +1170,7 @@ mutation assignCompareListToCustomer($uid: ID!) { "data": { "assignCompareListToCustomer": { "compare_list": CompareList, - "result": true + "result": false } } } @@ -1228,12 +1274,12 @@ mutation assignCustomerToGuestCart($cart_id: String!) { ], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "abc123", + "email": "xyz789", "gift_message": GiftMessage, - "gift_receipt_included": false, + "gift_receipt_included": true, "gift_wrapping": GiftWrapping, "id": 4, - "is_virtual": false, + "is_virtual": true, "itemsV2": CartItems, "prices": CartPrices, "printed_card_included": false, @@ -1325,16 +1371,16 @@ mutation cancelNegotiableQuoteTemplate($input: CancelNegotiableQuoteTemplateInpu "cancelNegotiableQuoteTemplate": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "xyz789", + "created_at": "abc123", "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": false, - "is_virtual": true, + "is_virtual": false, "items": [CartItemInterface], - "max_order_commitment": 987, + "max_order_commitment": 123, "min_order_commitment": 123, - "name": "abc123", + "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ @@ -1344,9 +1390,9 @@ mutation cancelNegotiableQuoteTemplate($input: CancelNegotiableQuoteTemplateInpu "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", + "status": "xyz789", "template_id": "4", - "total_quantity": 987.65, + "total_quantity": 123.45, "uid": "4", "updated_at": "abc123" } @@ -1490,10 +1536,16 @@ mutation changeCustomerPassword( addressesV2 { ...CustomerAddressesFragment } + admin_assistance_actions { + ...AdminAssistanceActionsFragment + } allow_remote_shopping_assistance companies { ...UserCompaniesOutputFragment } + company_hierarchy { + ...CompanyHierarchyFragment + } compare_list { ...CompareListFragment } @@ -1586,8 +1638,8 @@ mutation changeCustomerPassword( ```json { - "currentPassword": "abc123", - "newPassword": "abc123" + "currentPassword": "xyz789", + "newPassword": "xyz789" } ``` @@ -1599,15 +1651,17 @@ mutation changeCustomerPassword( "changeCustomerPassword": { "addresses": [CustomerAddress], "addressesV2": CustomerAddresses, + "admin_assistance_actions": AdminAssistanceActions, "allow_remote_shopping_assistance": false, "companies": UserCompaniesOutput, + "company_hierarchy": [CompanyHierarchy], "compare_list": CompareList, "confirmation_status": "ACCOUNT_CONFIRMED", - "created_at": "abc123", + "created_at": "xyz789", "custom_attributes": [AttributeValueInterface], "date_of_birth": "xyz789", - "default_billing": "abc123", - "default_shipping": "abc123", + "default_billing": "xyz789", + "default_shipping": "xyz789", "email": "xyz789", "firstname": "xyz789", "gender": 987, @@ -1620,14 +1674,14 @@ mutation changeCustomerPassword( "lastname": "xyz789", "middlename": "abc123", "orders": CustomerOrders, - "prefix": "xyz789", + "prefix": "abc123", "purchase_order": PurchaseOrder, "purchase_order_approval_rule": PurchaseOrderApprovalRule, "purchase_order_approval_rule_metadata": PurchaseOrderApprovalRuleMetadata, "purchase_order_approval_rules": PurchaseOrderApprovalRules, "purchase_orders": PurchaseOrders, - "purchase_orders_enabled": false, - "quote_enabled": false, + "purchase_orders_enabled": true, + "quote_enabled": true, "requisition_lists": RequisitionLists, "return": Return, "returns": Returns, @@ -1637,10 +1691,10 @@ mutation changeCustomerPassword( "status": "ACTIVE", "store_credit": CustomerStoreCredit, "structure_id": "4", - "suffix": "abc123", + "suffix": "xyz789", "taxvat": "xyz789", "team": CompanyTeam, - "telephone": "abc123", + "telephone": "xyz789", "wishlist_v2": Wishlist, "wishlists": [Wishlist] } @@ -1727,7 +1781,7 @@ mutation clearWishlist($wishlistId: ID!) { ##### Variables ```json -{"wishlistId": "4"} +{"wishlistId": 4} ``` ##### Response @@ -2029,7 +2083,7 @@ mutation contactUs($input: ContactUsInput!) { ##### Response ```json -{"data": {"contactUs": {"status": false}}} +{"data": {"contactUs": {"status": true}}} ``` @@ -2074,7 +2128,7 @@ mutation copyItemsBetweenRequisitionLists( ```json { - "sourceRequisitionListUid": 4, + "sourceRequisitionListUid": "4", "destinationRequisitionListUid": "4", "requisitionListItem": CopyItemsBetweenRequisitionListsInput } @@ -2141,7 +2195,7 @@ mutation copyProductsBetweenWishlists( ```json { "sourceWishlistUid": "4", - "destinationWishlistUid": 4, + "destinationWishlistUid": "4", "wishlistItems": [WishlistItemCopyInput] } ``` @@ -2368,7 +2422,7 @@ mutation createCompareList($input: CreateCompareListInput) { "attributes": [ComparableAttribute], "item_count": 987, "items": [ComparableItem], - "uid": 4 + "uid": "4" } } } @@ -2439,25 +2493,25 @@ mutation createCustomerAddress($input: CustomerAddressInput!) { "data": { "createCustomerAddress": { "city": "xyz789", - "company": "xyz789", + "company": "abc123", "country_code": "AF", "custom_attributesV2": [AttributeValueInterface], - "default_billing": false, + "default_billing": true, "default_shipping": false, "extension_attributes": [CustomerAddressAttribute], - "fax": "xyz789", + "fax": "abc123", "firstname": "xyz789", "id": 987, - "lastname": "xyz789", - "middlename": "abc123", - "postcode": "xyz789", + "lastname": "abc123", + "middlename": "xyz789", + "postcode": "abc123", "prefix": "abc123", "region": CustomerAddressRegion, - "region_id": 123, - "street": ["abc123"], - "suffix": "xyz789", - "telephone": "abc123", - "uid": "4", + "region_id": 987, + "street": ["xyz789"], + "suffix": "abc123", + "telephone": "xyz789", + "uid": 4, "vat_id": "abc123" } } @@ -2630,8 +2684,8 @@ mutation createPaymentOrder($input: CreatePaymentOrderInput!) { { "data": { "createPaymentOrder": { - "amount": 123.45, - "currency_code": "xyz789", + "amount": 987.65, + "currency_code": "abc123", "id": "abc123", "mp_order_id": "xyz789", "status": "abc123" @@ -2698,7 +2752,7 @@ mutation createPurchaseOrderApprovalRule($input: PurchaseOrderApprovalRuleInput! "condition": PurchaseOrderApprovalRuleConditionInterface, "created_at": "abc123", "created_by": "abc123", - "description": "abc123", + "description": "xyz789", "name": "xyz789", "status": "ENABLED", "uid": "4", @@ -2796,7 +2850,7 @@ mutation createVaultCardPaymentToken($input: CreateVaultCardPaymentTokenInput!) "data": { "createVaultCardPaymentToken": { "payment_source": PaymentSourceOutput, - "vault_token_id": "abc123" + "vault_token_id": "xyz789" } } } @@ -2915,7 +2969,7 @@ mutation deleteCompanyRole($id: ID!) { ##### Variables ```json -{"id": 4} +{"id": "4"} ``` ##### Response @@ -2959,7 +3013,7 @@ mutation deleteCompanyTeam($id: ID!) { ##### Response ```json -{"data": {"deleteCompanyTeam": {"success": false}}} +{"data": {"deleteCompanyTeam": {"success": true}}} ``` @@ -2991,13 +3045,13 @@ mutation deleteCompanyUserV2($id: ID!) { ##### Variables ```json -{"id": 4} +{"id": "4"} ``` ##### Response ```json -{"data": {"deleteCompanyUserV2": {"success": false}}} +{"data": {"deleteCompanyUserV2": {"success": true}}} ``` @@ -3029,13 +3083,13 @@ mutation deleteCompareList($uid: ID!) { ##### Variables ```json -{"uid": 4} +{"uid": "4"} ``` ##### Response ```json -{"data": {"deleteCompareList": {"result": false}}} +{"data": {"deleteCompareList": {"result": true}}} ``` @@ -3059,7 +3113,7 @@ mutation deleteCustomer { ##### Response ```json -{"data": {"deleteCustomer": true}} +{"data": {"deleteCustomer": false}} ``` @@ -3265,7 +3319,7 @@ mutation deletePaymentToken($public_hash: String!) { ##### Variables ```json -{"public_hash": "xyz789"} +{"public_hash": "abc123"} ``` ##### Response @@ -3275,7 +3329,7 @@ mutation deletePaymentToken($public_hash: String!) { "data": { "deletePaymentToken": { "customerPaymentTokens": CustomerPaymentTokens, - "result": false + "result": true } } } @@ -3414,8 +3468,8 @@ mutation deleteRequisitionListItems( ```json { - "requisitionListUid": "4", - "requisitionListItemUids": [4] + "requisitionListUid": 4, + "requisitionListItemUids": ["4"] } ``` @@ -3463,7 +3517,7 @@ mutation deleteWishlist($wishlistId: ID!) { ##### Variables ```json -{"wishlistId": "4"} +{"wishlistId": 4} ``` ##### Response @@ -3472,7 +3526,7 @@ mutation deleteWishlist($wishlistId: ID!) { { "data": { "deleteWishlist": { - "status": false, + "status": true, "wishlists": [Wishlist] } } @@ -3582,11 +3636,11 @@ mutation estimateShippingMethods($input: EstimateTotalsInput!) { "additional_data": [ShippingAdditionalData], "amount": Money, "available": false, - "carrier_code": "abc123", + "carrier_code": "xyz789", "carrier_title": "abc123", - "error_message": "abc123", - "method_code": "abc123", - "method_title": "xyz789", + "error_message": "xyz789", + "method_code": "xyz789", + "method_title": "abc123", "price_excl_tax": Money, "price_incl_tax": Money } @@ -3687,7 +3741,7 @@ mutation exchangeExternalCustomerToken($input: ExchangeExternalCustomerTokenInpu ### exchangeOtpForCustomerToken -Exchange a customer's one time password for a customer token. +Exchange one time login code for customer token. **Response:** [`CustomerToken`](#customertoken) @@ -3721,7 +3775,7 @@ mutation exchangeOtpForCustomerToken( ```json { "email": "xyz789", - "otp": "xyz789" + "otp": "abc123" } ``` @@ -3776,7 +3830,7 @@ mutation finishUpload($input: finishUploadInput!) { "data": { "finishUpload": { "key": "xyz789", - "message": "xyz789", + "message": "abc123", "success": false } } @@ -3875,7 +3929,7 @@ mutation generateCustomerTokenAsAdmin($input: GenerateCustomerTokenAsAdminInput! { "data": { "generateCustomerTokenAsAdmin": { - "customer_token": "xyz789" + "customer_token": "abc123" } } } @@ -3927,6 +3981,56 @@ mutation generateNegotiableQuoteFromTemplate($input: GenerateNegotiableQuoteFrom +### importSharedRequisitionList + +Import a shared requisition list into the current customer account. + +**Response:** [`ImportSharedRequisitionListOutput`](#importsharedrequisitionlistoutput) + +#### Arguments + +| Name | Description | +|------|-------------| +| `token` - [`String!`](#string) | The token for the shared requisition list. | + +#### Example + +##### Query + +```graphql +mutation importSharedRequisitionList($token: String!) { + importSharedRequisitionList(token: $token) { + requisition_list { + ...RequisitionListFragment + } + user_errors { + ...ShareRequisitionListUserErrorFragment + } + } +} +``` + +##### Variables + +```json +{"token": "xyz789"} +``` + +##### Response + +```json +{ + "data": { + "importSharedRequisitionList": { + "requisition_list": RequisitionList, + "user_errors": [ShareRequisitionListUserError] + } + } +} +``` + + + ### initiateUpload **Response:** [`initiateUploadOutput`](#initiateuploadoutput) @@ -3963,9 +4067,9 @@ mutation initiateUpload($input: initiateUploadInput!) { { "data": { "initiateUpload": { - "expires_at": "xyz789", - "key": "abc123", - "upload_url": "xyz789" + "expires_at": "abc123", + "key": "xyz789", + "upload_url": "abc123" } } } @@ -4059,7 +4163,7 @@ mutation mergeCarts( ```json { "source_cart_id": "abc123", - "destination_cart_id": "xyz789" + "destination_cart_id": "abc123" } ``` @@ -4087,11 +4191,11 @@ mutation mergeCarts( "is_virtual": false, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": true, + "printed_card_included": false, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], - "total_quantity": 987.65 + "total_quantity": 123.45 } } } @@ -4149,7 +4253,7 @@ mutation moveCartItemsToGiftRegistry( "data": { "moveCartItemsToGiftRegistry": { "gift_registry": GiftRegistry, - "status": false, + "status": true, "user_errors": [GiftRegistryItemsUserError] } } @@ -4314,7 +4418,7 @@ mutation moveProductsBetweenWishlists( ```json { - "sourceWishlistUid": 4, + "sourceWishlistUid": "4", "destinationWishlistUid": 4, "wishlistItems": [WishlistItemMoveInput] } @@ -4414,13 +4518,13 @@ mutation openNegotiableQuoteTemplate($input: OpenNegotiableQuoteTemplateInput!) "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], "created_at": "abc123", - "expiration_date": "xyz789", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": false, "is_virtual": true, "items": [CartItemInterface], - "max_order_commitment": 987, + "max_order_commitment": 123, "min_order_commitment": 987, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], @@ -4428,14 +4532,14 @@ mutation openNegotiableQuoteTemplate($input: OpenNegotiableQuoteTemplateInput!) "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "shipping_addresses": [ NegotiableQuoteShippingAddress ], "status": "abc123", "template_id": 4, "total_quantity": 123.45, - "uid": "4", + "uid": 4, "updated_at": "xyz789" } } @@ -4719,7 +4823,7 @@ mutation redeemGiftCardBalanceAsStoreCredit($input: GiftCardAccountInput!) { "data": { "redeemGiftCardBalanceAsStoreCredit": { "balance": Money, - "code": "abc123", + "code": "xyz789", "expiration_date": "abc123" } } @@ -4925,7 +5029,7 @@ mutation removeGiftRegistry($giftRegistryUid: ID!) { ##### Variables ```json -{"giftRegistryUid": 4} +{"giftRegistryUid": "4"} ``` ##### Response @@ -4972,10 +5076,7 @@ mutation removeGiftRegistryItems( ##### Variables ```json -{ - "giftRegistryUid": "4", - "itemsUid": ["4"] -} +{"giftRegistryUid": "4", "itemsUid": [4]} ``` ##### Response @@ -5030,7 +5131,7 @@ mutation removeGiftRegistryRegistrants( ```json { "giftRegistryUid": "4", - "registrantsUid": ["4"] + "registrantsUid": [4] } ``` @@ -5211,14 +5312,14 @@ mutation removeNegotiableQuoteTemplateItems($input: RemoveNegotiableQuoteTemplat "removeNegotiableQuoteTemplateItems": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", - "expiration_date": "abc123", + "created_at": "xyz789", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": false, + "is_min_max_qty_used": true, "is_virtual": true, "items": [CartItemInterface], - "max_order_commitment": 987, + "max_order_commitment": 123, "min_order_commitment": 987, "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], @@ -5231,9 +5332,9 @@ mutation removeNegotiableQuoteTemplateItems($input: RemoveNegotiableQuoteTemplat NegotiableQuoteShippingAddress ], "status": "xyz789", - "template_id": "4", + "template_id": 4, "total_quantity": 123.45, - "uid": "4", + "uid": 4, "updated_at": "abc123" } } @@ -5286,7 +5387,7 @@ mutation removeProductsFromCompareList($input: RemoveProductsFromCompareListInpu "data": { "removeProductsFromCompareList": { "attributes": [ComparableAttribute], - "item_count": 123, + "item_count": 987, "items": [ComparableItem], "uid": "4" } @@ -5335,7 +5436,7 @@ mutation removeProductsFromWishlist( ##### Variables ```json -{"wishlistId": "4", "wishlistItemsIds": [4]} +{"wishlistId": 4, "wishlistItemsIds": [4]} ``` ##### Response @@ -5422,7 +5523,7 @@ mutation removeRewardPointsFromCart($cartId: ID!) { ##### Variables ```json -{"cartId": "4"} +{"cartId": 4} ``` ##### Response @@ -5789,29 +5890,29 @@ mutation requestNegotiableQuoteTemplateFromQuote($input: RequestNegotiableQuoteT "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], "created_at": "xyz789", - "expiration_date": "xyz789", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": false, - "is_virtual": true, + "is_virtual": false, "items": [CartItemInterface], "max_order_commitment": 123, "min_order_commitment": 123, - "name": "abc123", + "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", - "template_id": 4, + "status": "xyz789", + "template_id": "4", "total_quantity": 123.45, "uid": "4", - "updated_at": "xyz789" + "updated_at": "abc123" } } } @@ -5930,13 +6031,13 @@ mutation resendConfirmationEmail($email: String!) { ##### Variables ```json -{"email": "abc123"} +{"email": "xyz789"} ``` ##### Response ```json -{"data": {"resendConfirmationEmail": false}} +{"data": {"resendConfirmationEmail": true}} ``` @@ -5977,7 +6078,7 @@ mutation resetPassword( ```json { - "email": "abc123", + "email": "xyz789", "resetPasswordToken": "xyz789", "newPassword": "xyz789" } @@ -5986,7 +6087,7 @@ mutation resetPassword( ##### Response ```json -{"data": {"resetPassword": true}} +{"data": {"resetPassword": false}} ``` @@ -6131,7 +6232,7 @@ mutation setCartAsInactive($cartId: String!) { ##### Variables ```json -{"cartId": "xyz789"} +{"cartId": "abc123"} ``` ##### Response @@ -6140,7 +6241,7 @@ mutation setCartAsInactive($cartId: String!) { { "data": { "setCartAsInactive": { - "error": "xyz789", + "error": "abc123", "success": false } } @@ -6891,10 +6992,10 @@ mutation setNegotiableQuoteTemplateShippingAddress($input: SetNegotiableQuoteTem "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": true, - "is_virtual": false, + "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 123, - "min_order_commitment": 987, + "min_order_commitment": 123, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, @@ -6905,10 +7006,10 @@ mutation setNegotiableQuoteTemplateShippingAddress($input: SetNegotiableQuoteTem "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", + "status": "xyz789", "template_id": "4", - "total_quantity": 987.65, - "uid": "4", + "total_quantity": 123.45, + "uid": 4, "updated_at": "xyz789" } } @@ -7034,16 +7135,16 @@ mutation setQuoteTemplateExpirationDate($input: QuoteTemplateExpirationDateInput "setQuoteTemplateExpirationDate": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "xyz789", + "created_at": "abc123", "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], - "is_min_max_qty_used": false, - "is_virtual": false, + "is_min_max_qty_used": true, + "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 123, "min_order_commitment": 123, - "name": "xyz789", + "name": "abc123", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ @@ -7054,10 +7155,10 @@ mutation setQuoteTemplateExpirationDate($input: QuoteTemplateExpirationDateInput NegotiableQuoteShippingAddress ], "status": "xyz789", - "template_id": 4, - "total_quantity": 987.65, + "template_id": "4", + "total_quantity": 123.45, "uid": "4", - "updated_at": "xyz789" + "updated_at": "abc123" } } } @@ -7143,13 +7244,13 @@ mutation setQuoteTemplateLineItemNote($input: QuoteTemplateLineItemNoteInput!) { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], "created_at": "abc123", - "expiration_date": "xyz789", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": true, - "is_virtual": true, + "is_virtual": false, "items": [CartItemInterface], - "max_order_commitment": 987, + "max_order_commitment": 123, "min_order_commitment": 987, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], @@ -7164,7 +7265,7 @@ mutation setQuoteTemplateLineItemNote($input: QuoteTemplateLineItemNoteInput!) { "status": "abc123", "template_id": 4, "total_quantity": 123.45, - "uid": 4, + "uid": "4", "updated_at": "xyz789" } } @@ -7305,6 +7406,98 @@ mutation shareGiftRegistry( +### shareRequisitionListByEmail + +Share a requisition list with company colleagues via email using a secure link. + +**Response:** [`ShareRequisitionListByEmailOutput`](#sharerequisitionlistbyemailoutput) + +#### Arguments + +| Name | Description | +|------|-------------| +| `input` - [`ShareRequisitionListByEmailInput!`](#sharerequisitionlistbyemailinput) | | + +#### Example + +##### Query + +```graphql +mutation shareRequisitionListByEmail($input: ShareRequisitionListByEmailInput!) { + shareRequisitionListByEmail(input: $input) { + sent_count + user_errors { + ...ShareRequisitionListUserErrorFragment + } + } +} +``` + +##### Variables + +```json +{"input": ShareRequisitionListByEmailInput} +``` + +##### Response + +```json +{ + "data": { + "shareRequisitionListByEmail": { + "sent_count": 123, + "user_errors": [ShareRequisitionListUserError] + } + } +} +``` + + + +### shareRequisitionListByToken + +Share a requisition list by issuing a token for colleagues in the same company. Use the token to build a shareable link on the storefront. + +**Response:** [`ShareRequisitionListByTokenOutput`](#sharerequisitionlistbytokenoutput) + +#### Arguments + +| Name | Description | +|------|-------------| +| `requisitionListUid` - [`ID!`](#id) | The unique ID of the requisition list. | + +#### Example + +##### Query + +```graphql +mutation shareRequisitionListByToken($requisitionListUid: ID!) { + shareRequisitionListByToken(requisitionListUid: $requisitionListUid) { + token + } +} +``` + +##### Variables + +```json +{"requisitionListUid": 4} +``` + +##### Response + +```json +{ + "data": { + "shareRequisitionListByToken": { + "token": "xyz789" + } + } +} +``` + + + ### submitNegotiableQuoteTemplateForReview Accept an existing negotiable quote template. @@ -7382,30 +7575,30 @@ mutation submitNegotiableQuoteTemplateForReview($input: SubmitNegotiableQuoteTem "submitNegotiableQuoteTemplateForReview": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", - "expiration_date": "xyz789", + "created_at": "xyz789", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": true, - "is_virtual": false, + "is_virtual": true, "items": [CartItemInterface], "max_order_commitment": 987, - "min_order_commitment": 123, - "name": "abc123", + "min_order_commitment": 987, + "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "xyz789", - "template_id": 4, + "status": "abc123", + "template_id": "4", "total_quantity": 987.65, "uid": 4, - "updated_at": "xyz789" + "updated_at": "abc123" } } } @@ -7574,7 +7767,53 @@ mutation syncPaymentOrder($input: SyncPaymentOrderInput) { ##### Response ```json -{"data": {"syncPaymentOrder": true}} +{"data": {"syncPaymentOrder": false}} +``` + + + +### unassignChildCompany + +Unassign a child company from its parent company within the company relation hierarchy. + +**Response:** [`UnassignChildCompanyOutput`](#unassignchildcompanyoutput) + +#### Arguments + +| Name | Description | +|------|-------------| +| `input` - [`UnassignChildCompanyInput!`](#unassignchildcompanyinput) | An input object that defines which company to unassign. | + +#### Example + +##### Query + +```graphql +mutation unassignChildCompany($input: UnassignChildCompanyInput!) { + unassignChildCompany(input: $input) { + company_hierarchy { + ...CompanyHierarchyFragment + } + } +} +``` + +##### Variables + +```json +{"input": UnassignChildCompanyInput} +``` + +##### Response + +```json +{ + "data": { + "unassignChildCompany": { + "company_hierarchy": CompanyHierarchy + } + } +} ``` @@ -7617,7 +7856,7 @@ mutation unsubscribeProductAlertPrice($input: ProductAlertPriceInput!) { "data": { "unsubscribeProductAlertPrice": { "message": "abc123", - "success": true + "success": false } } } @@ -7651,7 +7890,7 @@ mutation unsubscribeProductAlertPriceAll { "data": { "unsubscribeProductAlertPriceAll": { "message": "abc123", - "success": true + "success": false } } } @@ -7730,8 +7969,8 @@ mutation unsubscribeProductAlertStockAll { { "data": { "unsubscribeProductAlertStockAll": { - "message": "abc123", - "success": true + "message": "xyz789", + "success": false } } } @@ -8062,27 +8301,27 @@ mutation updateCustomerAddress( { "data": { "updateCustomerAddress": { - "city": "abc123", - "company": "abc123", + "city": "xyz789", + "company": "xyz789", "country_code": "AF", "custom_attributesV2": [AttributeValueInterface], - "default_billing": true, - "default_shipping": false, + "default_billing": false, + "default_shipping": true, "extension_attributes": [CustomerAddressAttribute], "fax": "xyz789", "firstname": "abc123", - "id": 123, + "id": 987, "lastname": "abc123", - "middlename": "xyz789", - "postcode": "xyz789", - "prefix": "abc123", + "middlename": "abc123", + "postcode": "abc123", + "prefix": "xyz789", "region": CustomerAddressRegion, - "region_id": 987, - "street": ["xyz789"], - "suffix": "xyz789", - "telephone": "abc123", - "uid": "4", - "vat_id": "abc123" + "region_id": 123, + "street": ["abc123"], + "suffix": "abc123", + "telephone": "xyz789", + "uid": 4, + "vat_id": "xyz789" } } } @@ -8159,26 +8398,26 @@ mutation updateCustomerAddressV2( { "data": { "updateCustomerAddressV2": { - "city": "abc123", - "company": "xyz789", + "city": "xyz789", + "company": "abc123", "country_code": "AF", "custom_attributesV2": [AttributeValueInterface], "default_billing": true, "default_shipping": true, "extension_attributes": [CustomerAddressAttribute], - "fax": "abc123", - "firstname": "abc123", + "fax": "xyz789", + "firstname": "xyz789", "id": 987, - "lastname": "abc123", + "lastname": "xyz789", "middlename": "abc123", "postcode": "xyz789", - "prefix": "abc123", + "prefix": "xyz789", "region": CustomerAddressRegion, "region_id": 123, - "street": ["abc123"], + "street": ["xyz789"], "suffix": "xyz789", - "telephone": "abc123", - "uid": "4", + "telephone": "xyz789", + "uid": 4, "vat_id": "xyz789" } } @@ -8225,7 +8464,7 @@ mutation updateCustomerEmail( ```json { "email": "xyz789", - "password": "abc123" + "password": "xyz789" } ``` @@ -8368,7 +8607,7 @@ mutation updateGiftRegistryItems( ```json { - "giftRegistryUid": 4, + "giftRegistryUid": "4", "items": [UpdateGiftRegistryItemInput] } ``` @@ -8424,7 +8663,7 @@ mutation updateGiftRegistryRegistrants( ```json { - "giftRegistryUid": 4, + "giftRegistryUid": "4", "registrants": [UpdateGiftRegistryRegistrantInput] } ``` @@ -8575,7 +8814,7 @@ mutation updateProductsInWishlist( ```json { - "wishlistId": "4", + "wishlistId": 4, "wishlistItems": [WishlistItemUpdateInput] } ``` @@ -8649,13 +8888,13 @@ mutation updatePurchaseOrderApprovalRule($input: UpdatePurchaseOrderApprovalRule "applies_to_roles": [CompanyRole], "approver_roles": [CompanyRole], "condition": PurchaseOrderApprovalRuleConditionInterface, - "created_at": "xyz789", + "created_at": "abc123", "created_by": "abc123", - "description": "xyz789", + "description": "abc123", "name": "xyz789", "status": "ENABLED", "uid": "4", - "updated_at": "xyz789" + "updated_at": "abc123" } } } @@ -8700,7 +8939,7 @@ mutation updateRequisitionList( ```json { - "requisitionListUid": 4, + "requisitionListUid": "4", "input": UpdateRequisitionListInput } ``` @@ -8817,8 +9056,8 @@ mutation updateWishlist( ```json { - "wishlistId": 4, - "name": "xyz789", + "wishlistId": "4", + "name": "abc123", "visibility": "PUBLIC" } ``` @@ -8830,7 +9069,7 @@ mutation updateWishlist( "data": { "updateWishlist": { "name": "xyz789", - "uid": 4, + "uid": "4", "visibility": "PUBLIC" } } diff --git a/src/pages/includes/autogenerated/graphql-api-saas-queries.md b/src/pages/includes/autogenerated/graphql-api-saas-queries.md index 9e06474de..ea65f1d2c 100644 --- a/src/pages/includes/autogenerated/graphql-api-saas-queries.md +++ b/src/pages/includes/autogenerated/graphql-api-saas-queries.md @@ -290,6 +290,10 @@ query availableStores($useCurrentGroup: Boolean) { quote_minimum_amount quote_minimum_amount_message required_character_classes_number + requisition_list_share_link_validity_days + requisition_list_share_max_recipients + requisition_list_share_storefront_path + requisition_list_sharing_enabled returns_enabled root_category_uid sales_fixed_product_tax_display_setting @@ -301,6 +305,9 @@ query availableStores($useCurrentGroup: Boolean) { secure_base_url share_active_segments share_applied_cart_rule + shopping_assistance_checkbox_title + shopping_assistance_checkbox_tooltip + shopping_assistance_enabled shopping_cart_display_full_summary shopping_cart_display_grand_total shopping_cart_display_price @@ -333,7 +340,7 @@ query availableStores($useCurrentGroup: Boolean) { ##### Variables ```json -{"useCurrentGroup": true} +{"useCurrentGroup": false} ``` ##### Response @@ -344,64 +351,64 @@ query availableStores($useCurrentGroup: Boolean) { "availableStores": [ { "allow_company_registration": true, - "allow_gift_receipt": "abc123", + "allow_gift_receipt": "xyz789", "allow_gift_wrapping_on_order": "xyz789", "allow_gift_wrapping_on_order_items": "abc123", - "allow_items": "xyz789", - "allow_order": "xyz789", - "allow_printed_card": "xyz789", + "allow_items": "abc123", + "allow_order": "abc123", + "allow_printed_card": "abc123", "autocomplete_on_storefront": true, - "base_currency_code": "abc123", - "base_link_url": "abc123", - "base_media_url": "abc123", - "base_static_url": "abc123", - "base_url": "xyz789", + "base_currency_code": "xyz789", + "base_link_url": "xyz789", + "base_media_url": "xyz789", + "base_static_url": "xyz789", + "base_url": "abc123", "cart_expires_in_days": 987, "cart_gift_wrapping": "xyz789", - "cart_merge_preference": "xyz789", + "cart_merge_preference": "abc123", "cart_printed_card": "xyz789", - "cart_summary_display_quantity": 987, - "catalog_default_sort_by": "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, + "category_url_suffix": "abc123", + "check_money_order_enable_for_specific_countries": true, "check_money_order_enabled": false, "check_money_order_make_check_payable_to": "xyz789", - "check_money_order_max_order_total": "xyz789", - "check_money_order_min_order_total": "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": "abc123", + "check_money_order_send_check_to": "xyz789", "check_money_order_sort_order": 987, "check_money_order_title": "xyz789", - "company_credit_enabled": true, - "company_enabled": true, + "company_credit_enabled": false, + "company_enabled": false, "configurable_product_image": "ITSELF", "configurable_thumbnail_source": "abc123", "contact_enabled": false, - "countries_with_required_region": "abc123", + "countries_with_required_region": "xyz789", "create_account_confirmation": true, "customer_access_token_lifetime": 987.65, "default_country": "abc123", "default_display_currency_code": "abc123", - "display_product_prices_in_catalog": 987, - "display_shipping_prices": 123, + "display_product_prices_in_catalog": 123, + "display_shipping_prices": 987, "display_state_if_optional": true, "enable_multiple_wishlists": "xyz789", - "fixed_product_taxes_apply_tax_to_fpt": true, - "fixed_product_taxes_display_prices_in_emails": 987, - "fixed_product_taxes_display_prices_in_product_lists": 123, - "fixed_product_taxes_display_prices_in_sales_modules": 987, - "fixed_product_taxes_display_prices_on_product_view_page": 987, + "fixed_product_taxes_apply_tax_to_fpt": false, + "fixed_product_taxes_display_prices_in_emails": 123, + "fixed_product_taxes_display_prices_in_product_lists": 987, + "fixed_product_taxes_display_prices_in_sales_modules": 123, + "fixed_product_taxes_display_prices_on_product_view_page": 123, "fixed_product_taxes_enable": false, "fixed_product_taxes_include_fpt_in_subtotal": false, - "graphql_share_customer_group": false, + "graphql_share_customer_group": true, "grid_per_page": 123, "grid_per_page_values": "abc123", "grouped_product_image": "ITSELF", "is_checkout_agreements_enabled": true, - "is_default_store": false, - "is_default_store_group": 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": true, @@ -410,25 +417,25 @@ query availableStores($useCurrentGroup: Boolean) { "list_per_page": 123, "list_per_page_values": "abc123", "locale": "abc123", - "magento_reward_general_is_enabled": "abc123", + "magento_reward_general_is_enabled": "xyz789", "magento_reward_general_is_enabled_on_front": "xyz789", "magento_reward_general_min_points_balance": "abc123", - "magento_reward_general_publish_history": "xyz789", - "magento_reward_points_invitation_customer": "xyz789", + "magento_reward_general_publish_history": "abc123", + "magento_reward_points_invitation_customer": "abc123", "magento_reward_points_invitation_customer_limit": "abc123", "magento_reward_points_invitation_order": "abc123", "magento_reward_points_invitation_order_limit": "abc123", - "magento_reward_points_newsletter": "xyz789", - "magento_reward_points_order": "xyz789", - "magento_reward_points_register": "xyz789", + "magento_reward_points_newsletter": "abc123", + "magento_reward_points_order": "abc123", + "magento_reward_points_register": "abc123", "magento_reward_points_review": "xyz789", - "magento_reward_points_review_limit": "xyz789", - "magento_wishlist_general_is_enabled": "abc123", - "max_items_in_order_summary": 123, + "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": 987, - "minimum_password_length": "abc123", + "minicart_display": true, + "minicart_max_items": 123, + "minimum_password_length": "xyz789", "newsletter_enabled": false, "optional_zip_countries": "abc123", "order_cancellation_enabled": true, @@ -436,54 +443,61 @@ query availableStores($useCurrentGroup: Boolean) { 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": 123, - "orders_invoices_credit_memos_display_subtotal": 987, + "orders_invoices_credit_memos_display_grandtotal": false, + "orders_invoices_credit_memos_display_price": 987, + "orders_invoices_credit_memos_display_shipping_amount": 987, + "orders_invoices_credit_memos_display_subtotal": 123, "orders_invoices_credit_memos_display_zero_tax": true, "printed_card_priceV2": Money, "product_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", - "product_url_suffix": "abc123", - "quickorder_active": true, - "quote_minimum_amount": 987.65, - "quote_minimum_amount_message": "xyz789", - "required_character_classes_number": "abc123", + "product_url_suffix": "xyz789", + "quickorder_active": false, + "quote_minimum_amount": 123.45, + "quote_minimum_amount_message": "abc123", + "required_character_classes_number": "xyz789", + "requisition_list_share_link_validity_days": 987, + "requisition_list_share_max_recipients": 987, + "requisition_list_share_storefront_path": "abc123", + "requisition_list_sharing_enabled": true, "returns_enabled": "xyz789", - "root_category_uid": 4, + "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": "xyz789", + "sales_gift_wrapping": "xyz789", + "sales_printed_card": "xyz789", + "secure_base_link_url": "abc123", "secure_base_media_url": "xyz789", "secure_base_static_url": "xyz789", "secure_base_url": "xyz789", "share_active_segments": true, - "share_applied_cart_rule": true, + "share_applied_cart_rule": false, + "shopping_assistance_checkbox_title": "xyz789", + "shopping_assistance_checkbox_tooltip": "abc123", + "shopping_assistance_enabled": true, "shopping_cart_display_full_summary": false, - "shopping_cart_display_grand_total": false, + "shopping_cart_display_grand_total": true, "shopping_cart_display_price": 123, "shopping_cart_display_shipping": 123, - "shopping_cart_display_subtotal": 123, + "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": "xyz789", - "store_name": "xyz789", - "store_sort_order": 123, + "shopping_cart_display_zero_tax": true, + "store_code": 4, + "store_group_code": "4", + "store_group_name": "abc123", + "store_name": "abc123", + "store_sort_order": 987, "timezone": "xyz789", - "title_separator": "xyz789", + "title_separator": "abc123", "use_store_in_url": true, - "website_code": "4", + "website_code": 4, "website_name": "xyz789", "weight_unit": "xyz789", "zero_subtotal_enable_for_specific_countries": false, - "zero_subtotal_enabled": true, + "zero_subtotal_enabled": false, "zero_subtotal_new_order_status": "abc123", - "zero_subtotal_payment_action": "xyz789", - "zero_subtotal_payment_from_specific_countries": "abc123", - "zero_subtotal_sort_order": 123, - "zero_subtotal_title": "abc123" + "zero_subtotal_payment_action": "abc123", + "zero_subtotal_payment_from_specific_countries": "xyz789", + "zero_subtotal_sort_order": 987, + "zero_subtotal_title": "xyz789" } ] } @@ -588,19 +602,19 @@ query cart($cart_id: String!) { ], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "abc123", + "email": "xyz789", "gift_message": GiftMessage, - "gift_receipt_included": false, + "gift_receipt_included": true, "gift_wrapping": GiftWrapping, "id": 4, - "is_virtual": true, + "is_virtual": false, "itemsV2": CartItems, "prices": CartPrices, "printed_card_included": false, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], - "total_quantity": 987.65 + "total_quantity": 123.45 } } } @@ -648,6 +662,7 @@ query categories( level name parentId + position path roles urlKey @@ -663,7 +678,7 @@ query categories( ```json { "ids": ["abc123"], - "roles": ["abc123"], + "roles": ["xyz789"], "subtree": Subtree } ``` @@ -675,97 +690,20 @@ query categories( "data": { "categories": [ { - "availableSortBy": ["xyz789"], + "availableSortBy": ["abc123"], "children": ["xyz789"], "defaultSortBy": "abc123", "id": 4, - "level": 123, + "level": 987, "name": "abc123", - "parentId": "abc123", + "parentId": "xyz789", + "position": 987, "path": "abc123", "roles": ["abc123"], - "urlKey": "abc123", + "urlKey": "xyz789", "urlPath": "xyz789", "count": 987, - "title": "abc123" - } - ] - } -} -``` - - - -### categoryTree - -Retrieves category tree nodes, optionally filtered by family, slugs and limited by depth. - -**Response:** [`[CategoryTreeView]`](#categorytreeview) - -#### Arguments - -| Name | Description | -|------|-------------| -| `family` - [`String`](#string) | The product family to retrieve the category tree for. Ex: clothing, electronics, books | -| `slugs` - [`[String!]`](#string) | The slugs of the categories to retrieve the category tree for. Ex: men/clothing/shorts | -| `depth` - [`Int`](#int) | The depth of the category tree to retrieve. When used without an initial slug, it will specify the maximum level allowed for a category. When used with a starting slug, it specifies depth from that slug, counting the slug itself as level 1. | - -#### Example - -##### Query - -```graphql -query categoryTree( - $family: String, - $slugs: [String!], - $depth: Int -) { - categoryTree( - family: $family, - slugs: $slugs, - depth: $depth - ) { - slug - name - description - metaTags { - ...CategoryMetaTagsFragment - } - images { - ...CategoryImageFragment - } - level - parentSlug - childrenSlugs - } -} -``` - -##### Variables - -```json -{ - "family": "xyz789", - "slugs": ["xyz789"], - "depth": 123 -} -``` - -##### Response - -```json -{ - "data": { - "categoryTree": [ - { - "slug": "xyz789", - "name": "xyz789", - "description": "abc123", - "metaTags": CategoryMetaTags, - "images": [CategoryImage], - "level": 123, - "parentSlug": "xyz789", - "childrenSlugs": ["xyz789"] + "title": "xyz789" } ] } @@ -805,10 +743,10 @@ query checkoutAgreements { "data": { "checkoutAgreements": [ { - "agreement_id": 123, + "agreement_id": 987, "checkbox_text": "xyz789", - "content": "abc123", - "content_height": "abc123", + "content": "xyz789", + "content_height": "xyz789", "is_html": false, "mode": "AUTO", "name": "xyz789" @@ -942,10 +880,10 @@ query company { "email": "xyz789", "id": 4, "legal_address": CompanyLegalAddress, - "legal_name": "abc123", + "legal_name": "xyz789", "name": "abc123", - "payment_methods": ["abc123"], - "reseller_id": "abc123", + "payment_methods": ["xyz789"], + "reseller_id": "xyz789", "role": CompanyRole, "roles": CompanyRoles, "sales_representative": CompanySalesRepresentative, @@ -954,7 +892,7 @@ query company { "team": CompanyTeam, "user": Customer, "users": CompanyUsers, - "vat_tax_id": "xyz789" + "vat_tax_id": "abc123" } } } @@ -1008,7 +946,7 @@ query compareList($uid: ID!) { "attributes": [ComparableAttribute], "item_count": 987, "items": [ComparableItem], - "uid": "4" + "uid": 4 } } } @@ -1050,9 +988,9 @@ query countries { { "available_regions": [Region], "full_name_english": "abc123", - "full_name_locale": "xyz789", + "full_name_locale": "abc123", "id": "xyz789", - "three_letter_abbreviation": "abc123", + "three_letter_abbreviation": "xyz789", "two_letter_abbreviation": "abc123" } ] @@ -1107,10 +1045,10 @@ query country($id: String) { "country": { "available_regions": [Region], "full_name_english": "abc123", - "full_name_locale": "abc123", - "id": "xyz789", - "three_letter_abbreviation": "abc123", - "two_letter_abbreviation": "abc123" + "full_name_locale": "xyz789", + "id": "abc123", + "three_letter_abbreviation": "xyz789", + "two_letter_abbreviation": "xyz789" } } } @@ -1153,9 +1091,9 @@ query currency { "xyz789" ], "base_currency_code": "abc123", - "base_currency_symbol": "abc123", - "default_display_currency_code": "abc123", - "default_display_currency_symbol": "xyz789", + "base_currency_symbol": "xyz789", + "default_display_currency_code": "xyz789", + "default_display_currency_symbol": "abc123", "exchange_rates": [ExchangeRate] } } @@ -1233,10 +1171,16 @@ query customer { addressesV2 { ...CustomerAddressesFragment } + admin_assistance_actions { + ...AdminAssistanceActionsFragment + } allow_remote_shopping_assistance companies { ...UserCompaniesOutputFragment } + company_hierarchy { + ...CompanyHierarchyFragment + } compare_list { ...CompareListFragment } @@ -1333,24 +1277,26 @@ query customer { "customer": { "addresses": [CustomerAddress], "addressesV2": CustomerAddresses, - "allow_remote_shopping_assistance": true, + "admin_assistance_actions": AdminAssistanceActions, + "allow_remote_shopping_assistance": false, "companies": UserCompaniesOutput, + "company_hierarchy": [CompanyHierarchy], "compare_list": CompareList, "confirmation_status": "ACCOUNT_CONFIRMED", "created_at": "xyz789", "custom_attributes": [AttributeValueInterface], - "date_of_birth": "xyz789", + "date_of_birth": "abc123", "default_billing": "abc123", - "default_shipping": "abc123", + "default_shipping": "xyz789", "email": "xyz789", "firstname": "xyz789", "gender": 987, "gift_registries": [GiftRegistry], "gift_registry": GiftRegistry, "group": CustomerGroupStorefront, - "id": "4", + "id": 4, "is_subscribed": false, - "job_title": "abc123", + "job_title": "xyz789", "lastname": "xyz789", "middlename": "abc123", "orders": CustomerOrders, @@ -1361,7 +1307,7 @@ query customer { "purchase_order_approval_rules": PurchaseOrderApprovalRules, "purchase_orders": PurchaseOrders, "purchase_orders_enabled": true, - "quote_enabled": true, + "quote_enabled": false, "requisition_lists": RequisitionLists, "return": Return, "returns": Returns, @@ -1370,11 +1316,11 @@ query customer { "segments": [CustomerSegmentStorefront], "status": "ACTIVE", "store_credit": CustomerStoreCredit, - "structure_id": "4", + "structure_id": 4, "suffix": "abc123", "taxvat": "abc123", "team": CompanyTeam, - "telephone": "abc123", + "telephone": "xyz789", "wishlist_v2": Wishlist, "wishlists": [Wishlist] } @@ -1468,19 +1414,19 @@ query customerCart { ], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "abc123", + "email": "xyz789", "gift_message": GiftMessage, "gift_receipt_included": false, "gift_wrapping": GiftWrapping, - "id": "4", - "is_virtual": false, + "id": 4, + "is_virtual": true, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": true, + "printed_card_included": false, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], - "total_quantity": 987.65 + "total_quantity": 123.45 } } } @@ -1607,13 +1553,17 @@ query customerSegments($cartId: String!) { ##### Variables ```json -{"cartId": "abc123"} +{"cartId": "xyz789"} ``` ##### Response ```json -{"data": {"customerSegments": [{"uid": 4}]}} +{ + "data": { + "customerSegments": [{"uid": "4"}] + } +} ``` @@ -1720,7 +1670,7 @@ query getPaymentOrder( ```json { - "cartId": "xyz789", + "cartId": "abc123", "id": "abc123" } ``` @@ -1731,10 +1681,10 @@ query getPaymentOrder( { "data": { "getPaymentOrder": { - "id": "xyz789", + "id": "abc123", "mp_order_id": "abc123", "payment_source_details": PaymentSourceDetails, - "status": "abc123" + "status": "xyz789" } } } @@ -1862,7 +1812,7 @@ query giftCardAccount($input: GiftCardAccountInput!) { "giftCardAccount": { "balance": Money, "code": "abc123", - "expiration_date": "xyz789" + "expiration_date": "abc123" } } } @@ -1931,10 +1881,10 @@ query giftRegistry($giftRegistryUid: ID!) { "dynamic_attributes": [ GiftRegistryDynamicAttribute ], - "event_name": "xyz789", + "event_name": "abc123", "items": [GiftRegistryItemInterface], - "message": "abc123", - "owner_name": "xyz789", + "message": "xyz789", + "owner_name": "abc123", "privacy_settings": "PRIVATE", "registrants": [GiftRegistryRegistrant], "shipping_address": CustomerAddress, @@ -1980,7 +1930,7 @@ query giftRegistryEmailSearch($email: String!) { ##### Variables ```json -{"email": "xyz789"} +{"email": "abc123"} ``` ##### Response @@ -1990,12 +1940,12 @@ query giftRegistryEmailSearch($email: String!) { "data": { "giftRegistryEmailSearch": [ { - "event_date": "xyz789", - "event_title": "xyz789", - "gift_registry_uid": "4", - "location": "xyz789", + "event_date": "abc123", + "event_title": "abc123", + "gift_registry_uid": 4, + "location": "abc123", "name": "abc123", - "type": "abc123" + "type": "xyz789" } ] } @@ -2047,10 +1997,10 @@ query giftRegistryIdSearch($giftRegistryUid: ID!) { "giftRegistryIdSearch": [ { "event_date": "xyz789", - "event_title": "xyz789", + "event_title": "abc123", "gift_registry_uid": 4, - "location": "abc123", - "name": "xyz789", + "location": "xyz789", + "name": "abc123", "type": "abc123" } ] @@ -2104,8 +2054,8 @@ query giftRegistryTypeSearch( ```json { "firstName": "xyz789", - "lastName": "abc123", - "giftRegistryTypeUid": "4" + "lastName": "xyz789", + "giftRegistryTypeUid": 4 } ``` @@ -2116,11 +2066,11 @@ query giftRegistryTypeSearch( "data": { "giftRegistryTypeSearch": [ { - "event_date": "xyz789", + "event_date": "abc123", "event_title": "abc123", "gift_registry_uid": 4, "location": "xyz789", - "name": "xyz789", + "name": "abc123", "type": "abc123" } ] @@ -2162,8 +2112,8 @@ query giftRegistryTypes { "dynamic_attributes_metadata": [ GiftRegistryDynamicAttributeMetadataInterface ], - "label": "xyz789", - "uid": 4 + "label": "abc123", + "uid": "4" } ] } @@ -2191,6 +2141,7 @@ Retrieve guest order details based on number, email and billing last name. ```graphql query guestOrder($input: GuestOrderInformationInput!) { guestOrder(input: $input) { + admin_assisted_order applied_coupons { ...AppliedCouponFragment } @@ -2274,36 +2225,37 @@ query guestOrder($input: GuestOrderInformationInput!) { { "data": { "guestOrder": { + "admin_assisted_order": 123, "applied_coupons": [AppliedCoupon], "applied_gift_cards": [ApplyGiftCardToOrder], "available_actions": ["REORDER"], "billing_address": OrderAddress, - "carrier": "xyz789", + "carrier": "abc123", "comments": [SalesCommentItem], "credit_memos": [CreditMemo], "custom_attributes": [CustomAttribute], "customer_info": OrderCustomerInfo, - "email": "abc123", + "email": "xyz789", "gift_message": GiftMessage, "gift_receipt_included": false, "gift_wrapping": GiftWrapping, - "id": 4, + "id": "4", "invoices": [Invoice], - "is_virtual": true, + "is_virtual": false, "items": [OrderItemInterface], "items_eligible_for_return": [OrderItemInterface], "negotiable_quote": NegotiableQuote, - "number": "xyz789", - "order_date": "xyz789", + "number": "abc123", + "order_date": "abc123", "order_status_change_date": "abc123", "payment_methods": [OrderPaymentMethod], - "printed_card_included": false, + "printed_card_included": true, "returns": Returns, "shipments": [OrderShipment], "shipping_address": OrderAddress, - "shipping_method": "xyz789", + "shipping_method": "abc123", "status": "abc123", - "token": "abc123", + "token": "xyz789", "total": OrderTotal } } @@ -2331,6 +2283,7 @@ Retrieve guest order details based on token. ```graphql query guestOrderByToken($input: OrderTokenInput!) { guestOrderByToken(input: $input) { + admin_assisted_order applied_coupons { ...AppliedCouponFragment } @@ -2414,6 +2367,7 @@ query guestOrderByToken($input: OrderTokenInput!) { { "data": { "guestOrderByToken": { + "admin_assisted_order": 987, "applied_coupons": [AppliedCoupon], "applied_gift_cards": [ApplyGiftCardToOrder], "available_actions": ["REORDER"], @@ -2425,11 +2379,11 @@ query guestOrderByToken($input: OrderTokenInput!) { "customer_info": OrderCustomerInfo, "email": "xyz789", "gift_message": GiftMessage, - "gift_receipt_included": true, + "gift_receipt_included": false, "gift_wrapping": GiftWrapping, - "id": 4, + "id": "4", "invoices": [Invoice], - "is_virtual": false, + "is_virtual": true, "items": [OrderItemInterface], "items_eligible_for_return": [OrderItemInterface], "negotiable_quote": NegotiableQuote, @@ -2442,7 +2396,7 @@ query guestOrderByToken($input: OrderTokenInput!) { "shipments": [OrderShipment], "shipping_address": OrderAddress, "shipping_method": "xyz789", - "status": "abc123", + "status": "xyz789", "token": "abc123", "total": OrderTotal } @@ -2479,13 +2433,13 @@ query isCompanyAdminEmailAvailable($email: String!) { ##### Variables ```json -{"email": "xyz789"} +{"email": "abc123"} ``` ##### Response ```json -{"data": {"isCompanyAdminEmailAvailable": {"is_email_available": false}}} +{"data": {"isCompanyAdminEmailAvailable": {"is_email_available": true}}} ``` @@ -2517,13 +2471,13 @@ query isCompanyEmailAvailable($email: String!) { ##### Variables ```json -{"email": "abc123"} +{"email": "xyz789"} ``` ##### Response ```json -{"data": {"isCompanyEmailAvailable": {"is_email_available": false}}} +{"data": {"isCompanyEmailAvailable": {"is_email_available": true}}} ``` @@ -2555,7 +2509,7 @@ query isCompanyRoleNameAvailable($name: String!) { ##### Variables ```json -{"name": "abc123"} +{"name": "xyz789"} ``` ##### Response @@ -2599,7 +2553,7 @@ query isCompanyUserEmailAvailable($email: String!) { ##### Response ```json -{"data": {"isCompanyUserEmailAvailable": {"is_email_available": false}}} +{"data": {"isCompanyUserEmailAvailable": {"is_email_available": true}}} ``` @@ -2631,13 +2585,13 @@ query isEmailAvailable($email: String!) { ##### Variables ```json -{"email": "xyz789"} +{"email": "abc123"} ``` ##### Response ```json -{"data": {"isEmailAvailable": {"is_email_available": true}}} +{"data": {"isEmailAvailable": {"is_email_available": false}}} ``` @@ -2679,8 +2633,8 @@ query isSubscribedProductAlertPrice($input: ProductAlertPriceInput!) { { "data": { "isSubscribedProductAlertPrice": { - "isSubscribed": false, - "message": "xyz789" + "isSubscribed": true, + "message": "abc123" } } } @@ -2725,65 +2679,13 @@ query isSubscribedProductAlertStock($input: ProductAlertStockInput!) { { "data": { "isSubscribedProductAlertStock": { - "isSubscribed": false, - "message": "abc123" - } - } -} -``` - - - -### navigation - -Retrieves the navigation tree for a given product family. - -**Response:** [`[CategoryNavigationView]`](#categorynavigationview) - -#### Arguments - -| Name | Description | -|------|-------------| -| `family` - [`String!`](#string) | The product family to retrieve the navigation tree for. For example, clothing, electronics or books | - -#### Example - -##### Query - -```graphql -query navigation($family: String!) { - navigation(family: $family) { - slug - name - children { - ...CategoryNavigationViewFragment + "isSubscribed": true, + "message": "xyz789" } } } ``` -##### Variables - -```json -{"family": "xyz789"} -``` - -##### Response - -```json -{ - "data": { - "navigation": [ - { - "slug": "xyz789", - "name": "xyz789", - "children": [CategoryNavigationView] - } - ] - } -} -``` - ### negotiableQuote @@ -2875,9 +2777,9 @@ query negotiableQuote($uid: ID!) { "created_at": "xyz789", "custom_attributes": [CustomAttribute], "email": "abc123", - "expiration_date": "abc123", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], - "is_virtual": true, + "is_virtual": false, "items": [CartItemInterface], "name": "xyz789", "order": CustomerOrder, @@ -2889,10 +2791,10 @@ query negotiableQuote($uid: ID!) { ], "status": "SUBMITTED", "template_id": 4, - "template_name": "abc123", + "template_name": "xyz789", "total_quantity": 987.65, "uid": "4", - "updated_at": "xyz789" + "updated_at": "abc123" } } } @@ -2966,7 +2868,7 @@ query negotiableQuoteTemplate($templateId: ID!) { ##### Variables ```json -{"templateId": 4} +{"templateId": "4"} ``` ##### Response @@ -2977,8 +2879,8 @@ query negotiableQuoteTemplate($templateId: ID!) { "negotiableQuoteTemplate": { "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], - "created_at": "abc123", - "expiration_date": "abc123", + "created_at": "xyz789", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": true, @@ -2986,21 +2888,21 @@ query negotiableQuoteTemplate($templateId: ID!) { "items": [CartItemInterface], "max_order_commitment": 123, "min_order_commitment": 987, - "name": "abc123", + "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "shipping_addresses": [ NegotiableQuoteShippingAddress ], - "status": "abc123", - "template_id": "4", - "total_quantity": 987.65, - "uid": 4, - "updated_at": "xyz789" + "status": "xyz789", + "template_id": 4, + "total_quantity": 123.45, + "uid": "4", + "updated_at": "abc123" } } } @@ -3226,7 +3128,7 @@ query pickupLocations( "pickupLocations": { "items": [PickupLocation], "page_info": SearchResultPageInfo, - "total_count": 123 + "total_count": 987 } } } @@ -3299,7 +3201,7 @@ query productSearch( "current_page": 1, "filter": [SearchClauseInput], "page_size": 20, - "phrase": "abc123", + "phrase": "xyz789", "sort": [ProductSearchSortInput] } ``` @@ -3314,8 +3216,8 @@ query productSearch( "items": [ProductSearchItem], "page_info": SearchResultPageInfo, "related_terms": ["abc123"], - "suggestions": ["xyz789"], - "total_count": 987, + "suggestions": ["abc123"], + "total_count": 123, "warnings": [ProductSearchWarning] } } @@ -3373,9 +3275,6 @@ query products($skus: [String]) { links { ...ProductViewLinkFragment } - categories { - ...CategoryProductViewFragment - } queryType visibility } @@ -3396,15 +3295,15 @@ query products($skus: [String]) { "products": [ { "addToCartAllowed": true, - "inStock": false, - "lowStock": true, + "inStock": true, + "lowStock": false, "attributes": [ProductViewAttribute], "description": "xyz789", "id": 4, "images": [ProductViewImage], "videos": [ProductViewVideo], "lastModifiedAt": "2007-12-03T10:15:30Z", - "metaDescription": "xyz789", + "metaDescription": "abc123", "metaKeyword": "xyz789", "metaTitle": "xyz789", "name": "abc123", @@ -3413,10 +3312,9 @@ query products($skus: [String]) { "sku": "abc123", "externalId": "abc123", "url": "xyz789", - "urlKey": "xyz789", + "urlKey": "abc123", "links": [ProductViewLink], - "categories": [CategoryProductView], - "queryType": "xyz789", + "queryType": "abc123", "visibility": "xyz789" } ] @@ -3464,7 +3362,7 @@ query recaptchaFormConfig($formType: ReCaptchaFormEnum!) { "data": { "recaptchaFormConfig": { "configurations": ReCaptchaConfiguration, - "is_enabled": false + "is_enabled": true } } } @@ -3515,7 +3413,7 @@ query recaptchaFormConfigs($formTypes: [ReCaptchaFormEnum!]!) { { "configurations": ReCaptchaConfiguration, "form_type": "PLACE_ORDER", - "is_enabled": true + "is_enabled": false } ] } @@ -3555,14 +3453,14 @@ query recaptchaV3Config { { "data": { "recaptchaV3Config": { - "badge_position": "abc123", - "failure_message": "abc123", + "badge_position": "xyz789", + "failure_message": "xyz789", "forms": ["PLACE_ORDER"], - "is_enabled": true, + "is_enabled": false, "language_code": "xyz789", - "minimum_score": 987.65, - "theme": "abc123", - "website_key": "abc123" + "minimum_score": 123.45, + "theme": "xyz789", + "website_key": "xyz789" } } } @@ -3583,6 +3481,7 @@ Get Recommendations | `cartSkus` - [`[String]`](#string) | SKUs of products in the cart | | `category` - [`String`](#string) | Category currently being viewed | | `currentSku` - [`String`](#string) | SKU of the product currently being viewed on PDP | +| `currentProduct` - [`CurrentProductInput`](#currentproductinput) | Current product context from PDP (SKU, price, category, etc.) | | `pageType` - [`PageType`](#pagetype) | Type of page on which recommendations are requested | | `userPurchaseHistory` - [`[PurchaseHistory]`](#purchasehistory) | User purchase history with timestamp | | `userViewHistory` - [`[ViewHistory]`](#viewhistory) | User view history with timestamp | @@ -3597,6 +3496,7 @@ query recommendations( $cartSkus: [String], $category: String, $currentSku: String, + $currentProduct: CurrentProductInput, $pageType: PageType, $userPurchaseHistory: [PurchaseHistory], $userViewHistory: [ViewHistory], @@ -3606,6 +3506,7 @@ query recommendations( cartSkus: $cartSkus, category: $category, currentSku: $currentSku, + currentProduct: $currentProduct, pageType: $pageType, userPurchaseHistory: $userPurchaseHistory, userViewHistory: $userViewHistory, @@ -3625,7 +3526,8 @@ query recommendations( { "cartSkus": ["abc123"], "category": "abc123", - "currentSku": "abc123", + "currentSku": "xyz789", + "currentProduct": CurrentProductInput, "pageType": "CMS", "userPurchaseHistory": [PurchaseHistory], "userViewHistory": [ViewHistory], @@ -3639,74 +3541,6 @@ query recommendations( { "data": { "recommendations": { - "results": [RecommendationUnit], - "totalResults": 123 - } - } -} -``` - - - -### recommendationsByUnitIds - -**Response:** [`Recommendations`](#recommendations) - -#### Arguments - -| Name | Description | -|------|-------------| -| `unitIds` - [`[String!]!`](#string) | List unit IDs of preconfigured units | -| `currentSku` - [`String`](#string) | SKU of the product currently being viewed on PDP | -| `userPurchaseHistory` - [`[PurchaseHistory]`](#purchasehistory) | User purchase history with timestamp | -| `userViewHistory` - [`[ViewHistory]`](#viewhistory) | User view history with timestamp | -| `cartSkus` - [`[String]`](#string) | SKUs of products in the cart | - -#### Example - -##### Query - -```graphql -query recommendationsByUnitIds( - $unitIds: [String!]!, - $currentSku: String, - $userPurchaseHistory: [PurchaseHistory], - $userViewHistory: [ViewHistory], - $cartSkus: [String] -) { - recommendationsByUnitIds( - unitIds: $unitIds, - currentSku: $currentSku, - userPurchaseHistory: $userPurchaseHistory, - userViewHistory: $userViewHistory, - cartSkus: $cartSkus - ) { - results { - ...RecommendationUnitFragment - } - totalResults - } -} -``` - -##### Variables - -```json -{ - "unitIds": ["abc123"], - "currentSku": "abc123", - "userPurchaseHistory": [PurchaseHistory], - "userViewHistory": [ViewHistory], - "cartSkus": ["abc123"] -} -``` - -##### Response - -```json -{ - "data": { - "recommendationsByUnitIds": { "results": [RecommendationUnit], "totalResults": 987 } @@ -3772,9 +3606,6 @@ query refineProduct( links { ...ProductViewLinkFragment } - categories { - ...CategoryProductViewFragment - } queryType visibility } @@ -3785,7 +3616,7 @@ query refineProduct( ```json { - "optionIds": ["xyz789"], + "optionIds": ["abc123"], "sku": "xyz789" } ``` @@ -3797,28 +3628,27 @@ query refineProduct( "data": { "refineProduct": { "addToCartAllowed": false, - "inStock": false, - "lowStock": false, + "inStock": true, + "lowStock": true, "attributes": [ProductViewAttribute], "description": "xyz789", - "id": 4, + "id": "4", "images": [ProductViewImage], "videos": [ProductViewVideo], "lastModifiedAt": "2007-12-03T10:15:30Z", - "metaDescription": "abc123", + "metaDescription": "xyz789", "metaKeyword": "xyz789", - "metaTitle": "xyz789", + "metaTitle": "abc123", "name": "xyz789", - "shortDescription": "abc123", + "shortDescription": "xyz789", "inputOptions": [ProductViewInputOption], - "sku": "abc123", - "externalId": "abc123", - "url": "xyz789", + "sku": "xyz789", + "externalId": "xyz789", + "url": "abc123", "urlKey": "xyz789", "links": [ProductViewLink], - "categories": [CategoryProductView], "queryType": "xyz789", - "visibility": "abc123" + "visibility": "xyz789" } } } @@ -3826,45 +3656,29 @@ query refineProduct( -### searchCategory +### sharedRequisitionList -Search for categories by name with optional filtering and pagination. +View a shared requisition list when the receiver is logged in and belongs to the same company as the sender. -**Response:** [`SearchCategoryResultPage`](#searchcategoryresultpage) +**Response:** [`SharedRequisitionListOutput`](#sharedrequisitionlistoutput) #### Arguments | Name | Description | |------|-------------| -| `searchTerm` - [`String!`](#string) | The search term to match against category names. | -| `family` - [`String`](#string) | Optional product family filter to limit search results. For example, clothing, electronics or books. | -| `pageSize` - [`Int`](#int) | The number of results to return per page (default: 20). Default: `20` | -| `currentPage` - [`Int`](#int) | The page number to retrieve (1-based indexing, default: 1). Default: `1` | +| `token` - [`String!`](#string) | The share token which is extracted from the requisition list share link and acts as an identifier for the requisition list. | #### Example ##### Query ```graphql -query searchCategory( - $searchTerm: String!, - $family: String, - $pageSize: Int, - $currentPage: Int -) { - searchCategory( - searchTerm: $searchTerm, - family: $family, - pageSize: $pageSize, - currentPage: $currentPage - ) { - items { - ...CategoryTreeViewFragment - } - totalCount - pageInfo { - ...PageInfoFragment +query sharedRequisitionList($token: String!) { + sharedRequisitionList(token: $token) { + requisition_list { + ...RequisitionListFragment } + sender_name } } ``` @@ -3872,12 +3686,7 @@ query searchCategory( ##### Variables ```json -{ - "searchTerm": "abc123", - "family": "xyz789", - "pageSize": 20, - "currentPage": 1 -} +{"token": "abc123"} ``` ##### Response @@ -3885,10 +3694,9 @@ query searchCategory( ```json { "data": { - "searchCategory": { - "items": [CategoryTreeView], - "totalCount": 123, - "pageInfo": PageInfo + "sharedRequisitionList": { + "requisition_list": RequisitionList, + "sender_name": "xyz789" } } } @@ -4016,6 +3824,10 @@ query storeConfig { quote_minimum_amount quote_minimum_amount_message required_character_classes_number + requisition_list_share_link_validity_days + requisition_list_share_max_recipients + requisition_list_share_storefront_path + requisition_list_sharing_enabled returns_enabled root_category_uid sales_fixed_product_tax_display_setting @@ -4027,6 +3839,9 @@ query storeConfig { secure_base_url share_active_segments share_applied_cart_rule + shopping_assistance_checkbox_title + shopping_assistance_checkbox_tooltip + shopping_assistance_enabled shopping_cart_display_full_summary shopping_cart_display_grand_total shopping_cart_display_price @@ -4063,134 +3878,141 @@ query storeConfig { "data": { "storeConfig": { "allow_company_registration": true, - "allow_gift_receipt": "xyz789", + "allow_gift_receipt": "abc123", "allow_gift_wrapping_on_order": "xyz789", - "allow_gift_wrapping_on_order_items": "abc123", + "allow_gift_wrapping_on_order_items": "xyz789", "allow_items": "xyz789", "allow_order": "xyz789", "allow_printed_card": "xyz789", - "autocomplete_on_storefront": true, - "base_currency_code": "xyz789", - "base_link_url": "xyz789", - "base_media_url": "abc123", - "base_static_url": "abc123", + "autocomplete_on_storefront": false, + "base_currency_code": "abc123", + "base_link_url": "abc123", + "base_media_url": "xyz789", + "base_static_url": "xyz789", "base_url": "xyz789", "cart_expires_in_days": 123, - "cart_gift_wrapping": "xyz789", - "cart_merge_preference": "abc123", + "cart_gift_wrapping": "abc123", + "cart_merge_preference": "xyz789", "cart_printed_card": "abc123", "cart_summary_display_quantity": 987, - "catalog_default_sort_by": "xyz789", + "catalog_default_sort_by": "abc123", "category_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS", - "category_url_suffix": "xyz789", + "category_url_suffix": "abc123", "check_money_order_enable_for_specific_countries": true, - "check_money_order_enabled": false, - "check_money_order_make_check_payable_to": "abc123", + "check_money_order_enabled": true, + "check_money_order_make_check_payable_to": "xyz789", "check_money_order_max_order_total": "abc123", "check_money_order_min_order_total": "abc123", "check_money_order_new_order_status": "abc123", "check_money_order_payment_from_specific_countries": "xyz789", "check_money_order_send_check_to": "xyz789", - "check_money_order_sort_order": 123, + "check_money_order_sort_order": 987, "check_money_order_title": "xyz789", "company_credit_enabled": true, "company_enabled": false, "configurable_product_image": "ITSELF", - "configurable_thumbnail_source": "xyz789", - "contact_enabled": false, - "countries_with_required_region": "abc123", - "create_account_confirmation": false, + "configurable_thumbnail_source": "abc123", + "contact_enabled": true, + "countries_with_required_region": "xyz789", + "create_account_confirmation": true, "customer_access_token_lifetime": 987.65, "default_country": "abc123", "default_display_currency_code": "abc123", "display_product_prices_in_catalog": 987, - "display_shipping_prices": 987, - "display_state_if_optional": false, - "enable_multiple_wishlists": "xyz789", + "display_shipping_prices": 123, + "display_state_if_optional": true, + "enable_multiple_wishlists": "abc123", "fixed_product_taxes_apply_tax_to_fpt": true, "fixed_product_taxes_display_prices_in_emails": 123, - "fixed_product_taxes_display_prices_in_product_lists": 987, - "fixed_product_taxes_display_prices_in_sales_modules": 123, - "fixed_product_taxes_display_prices_on_product_view_page": 987, - "fixed_product_taxes_enable": false, + "fixed_product_taxes_display_prices_in_product_lists": 123, + "fixed_product_taxes_display_prices_in_sales_modules": 987, + "fixed_product_taxes_display_prices_on_product_view_page": 123, + "fixed_product_taxes_enable": true, "fixed_product_taxes_include_fpt_in_subtotal": false, "graphql_share_customer_group": true, - "grid_per_page": 123, + "grid_per_page": 987, "grid_per_page_values": "abc123", "grouped_product_image": "ITSELF", - "is_checkout_agreements_enabled": true, - "is_default_store": true, + "is_checkout_agreements_enabled": false, + "is_default_store": false, "is_default_store_group": false, "is_guest_checkout_enabled": true, "is_negotiable_quote_active": true, - "is_one_page_checkout_enabled": true, + "is_one_page_checkout_enabled": false, "is_requisition_list_active": "abc123", "list_mode": "xyz789", "list_per_page": 123, - "list_per_page_values": "xyz789", + "list_per_page_values": "abc123", "locale": "xyz789", - "magento_reward_general_is_enabled": "abc123", - "magento_reward_general_is_enabled_on_front": "abc123", + "magento_reward_general_is_enabled": "xyz789", + "magento_reward_general_is_enabled_on_front": "xyz789", "magento_reward_general_min_points_balance": "xyz789", "magento_reward_general_publish_history": "xyz789", - "magento_reward_points_invitation_customer": "xyz789", + "magento_reward_points_invitation_customer": "abc123", "magento_reward_points_invitation_customer_limit": "xyz789", "magento_reward_points_invitation_order": "abc123", "magento_reward_points_invitation_order_limit": "xyz789", "magento_reward_points_newsletter": "abc123", - "magento_reward_points_order": "abc123", + "magento_reward_points_order": "xyz789", "magento_reward_points_register": "xyz789", - "magento_reward_points_review": "abc123", + "magento_reward_points_review": "xyz789", "magento_reward_points_review_limit": "abc123", - "magento_wishlist_general_is_enabled": "xyz789", - "max_items_in_order_summary": 123, - "maximum_number_of_wishlists": "xyz789", + "magento_wishlist_general_is_enabled": "abc123", + "max_items_in_order_summary": 987, + "maximum_number_of_wishlists": "abc123", "minicart_display": false, "minicart_max_items": 987, - "minimum_password_length": "xyz789", + "minimum_password_length": "abc123", "newsletter_enabled": true, "optional_zip_countries": "xyz789", - "order_cancellation_enabled": false, + "order_cancellation_enabled": true, "order_cancellation_reasons": [CancellationReason], "orders_invoices_credit_memos_display_full_summary": true, - "orders_invoices_credit_memos_display_grandtotal": false, - "orders_invoices_credit_memos_display_price": 987, + "orders_invoices_credit_memos_display_grandtotal": true, + "orders_invoices_credit_memos_display_price": 123, "orders_invoices_credit_memos_display_shipping_amount": 123, "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", + "product_url_suffix": "xyz789", "quickorder_active": false, "quote_minimum_amount": 123.45, "quote_minimum_amount_message": "xyz789", "required_character_classes_number": "xyz789", - "returns_enabled": "abc123", + "requisition_list_share_link_validity_days": 987, + "requisition_list_share_max_recipients": 987, + "requisition_list_share_storefront_path": "abc123", + "requisition_list_sharing_enabled": true, + "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": "xyz789", + "sales_gift_wrapping": "xyz789", + "sales_printed_card": "xyz789", + "secure_base_link_url": "abc123", "secure_base_media_url": "xyz789", "secure_base_static_url": "abc123", - "secure_base_url": "xyz789", - "share_active_segments": false, - "share_applied_cart_rule": false, - "shopping_cart_display_full_summary": false, + "secure_base_url": "abc123", + "share_active_segments": true, + "share_applied_cart_rule": true, + "shopping_assistance_checkbox_title": "abc123", + "shopping_assistance_checkbox_tooltip": "xyz789", + "shopping_assistance_enabled": true, + "shopping_cart_display_full_summary": true, "shopping_cart_display_grand_total": false, - "shopping_cart_display_price": 123, + "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_code": 4, "store_group_code": 4, - "store_group_name": "xyz789", - "store_name": "xyz789", + "store_group_name": "abc123", + "store_name": "abc123", "store_sort_order": 987, "timezone": "xyz789", "title_separator": "xyz789", - "use_store_in_url": true, + "use_store_in_url": false, "website_code": 4, "website_name": "abc123", "weight_unit": "abc123", @@ -4199,7 +4021,7 @@ query storeConfig { "zero_subtotal_new_order_status": "xyz789", "zero_subtotal_payment_action": "xyz789", "zero_subtotal_payment_from_specific_countries": "xyz789", - "zero_subtotal_sort_order": 123, + "zero_subtotal_sort_order": 987, "zero_subtotal_title": "xyz789" } } @@ -4251,9 +4073,9 @@ query variants( ```json { "sku": "abc123", - "optionIds": ["xyz789"], - "pageSize": 123, - "cursor": "abc123" + "optionIds": ["abc123"], + "pageSize": 987, + "cursor": "xyz789" } ``` @@ -4264,7 +4086,7 @@ query variants( "data": { "variants": { "variants": [ProductViewVariant], - "cursor": "abc123" + "cursor": "xyz789" } } } diff --git a/src/pages/includes/autogenerated/graphql-api-saas-types-1.md b/src/pages/includes/autogenerated/graphql-api-saas-types-1.md index ebbcfffab..533ff43f9 100644 --- a/src/pages/includes/autogenerated/graphql-api-saas-types-1.md +++ b/src/pages/includes/autogenerated/graphql-api-saas-types-1.md @@ -49,7 +49,7 @@ Contains details about the cart after adding custom attributes to it items. ```json { - "cart_id": "xyz789", + "cart_id": "abc123", "cart_items": [DownloadableProductCartItemInput] } ``` @@ -94,9 +94,9 @@ Defines a new registrant. "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "email": "xyz789", + "email": "abc123", "firstname": "abc123", - "lastname": "abc123" + "lastname": "xyz789" } ``` @@ -238,7 +238,7 @@ Contains the comment to be added to a purchase order. ```json { - "comment": "xyz789", + "comment": "abc123", "purchase_order_uid": "4" } ``` @@ -279,9 +279,9 @@ Defines the purchase order and cart to act on. ```json { - "cart_id": "xyz789", + "cart_id": "abc123", "purchase_order_uid": 4, - "replace_existing_cart_items": false + "replace_existing_cart_items": true } ``` @@ -410,8 +410,8 @@ Defines tracking information to be added to the return. ```json { - "carrier_uid": "4", - "return_uid": "4", + "carrier_uid": 4, + "return_uid": 4, "tracking_number": "abc123" } ``` @@ -459,13 +459,61 @@ Contains the resultant wish list and any error information. "add_wishlist_items_to_cart_user_errors": [ WishlistCartUserInputError ], - "status": false, + "status": true, "wishlist": Wishlist } ``` +### AdminAssistanceAction + +A single admin assistance action performed on behalf of the customer. + +#### Fields + +| Field Name | Description | +|------------|-------------| +| `action` - [`String!`](#string) | Action identifier, e.g. add_to_cart, place_order. | +| `date` - [`String!`](#string) | When the action occurred. | +| `details` - [`String`](#string) | Action related details, e.g. product SKUs, order id. | + +#### Example + +```json +{ + "action": "xyz789", + "date": "xyz789", + "details": "xyz789" +} +``` + + + +### AdminAssistanceActions + +Paginated admin assistance actions for the customer. + +#### Fields + +| Field Name | Description | +|------------|-------------| +| `items` - [`[AdminAssistanceAction]!`](#adminassistanceaction) | Admin assistance actions for the current page. | +| `page_info` - [`SearchResultPageInfo!`](#searchresultpageinfo) | Contains pagination metadata. | +| `total_count` - [`Int!`](#int) | The total count of admin assistance actions for the customer. | + +#### Example + +```json +{ + "items": [AdminAssistanceAction], + "page_info": SearchResultPageInfo, + "total_count": 123 +} +``` + + + ### Aggregation A bucket that contains information for each filterable option @@ -483,9 +531,9 @@ A bucket that contains information for each filterable option ```json { - "attribute": "xyz789", + "attribute": "abc123", "buckets": [Bucket], - "title": "xyz789", + "title": "abc123", "type": "INTELLIGENT" } ``` @@ -532,13 +580,13 @@ Identifies the data type of the aggregation ```json { "button_styles": ButtonStyles, - "code": "xyz789", - "is_visible": true, + "code": "abc123", + "is_visible": false, "payment_intent": "abc123", "payment_source": "abc123", "sdk_params": [SDKParams], - "sort_order": "abc123", - "title": "abc123" + "sort_order": "xyz789", + "title": "xyz789" } ``` @@ -560,9 +608,9 @@ Apple Pay inputs ```json { - "payment_source": "xyz789", + "payment_source": "abc123", "payments_order_id": "abc123", - "paypal_order_id": "xyz789" + "paypal_order_id": "abc123" } ``` @@ -604,9 +652,9 @@ Contains an applied gift card with applied and remaining balance. ```json { "applied_balance": Money, - "code": "abc123", + "code": "xyz789", "current_balance": Money, - "expiration_date": "abc123" + "expiration_date": "xyz789" } ``` @@ -695,8 +743,8 @@ Specifies the coupon code to apply to the cart. ```json { - "cart_id": "abc123", - "coupon_code": "xyz789" + "cart_id": "xyz789", + "coupon_code": "abc123" } ``` @@ -819,7 +867,7 @@ Contains applied gift cards with gift card code and amount. ```json { "applied_balance": Money, - "code": "abc123" + "code": "xyz789" } ``` @@ -856,7 +904,7 @@ Defines the input required to run the `applyStoreCreditToCart` mutation. #### Example ```json -{"cart_id": "xyz789"} +{"cart_id": "abc123"} ``` @@ -893,7 +941,7 @@ AreaInput defines the parameters which will be used for filter by specified loca #### Example ```json -{"radius": 987, "search_term": "xyz789"} +{"radius": 123, "search_term": "xyz789"} ``` @@ -946,14 +994,51 @@ Contains information about an asset video. { "asset_video": ProductMediaGalleryEntriesAssetVideo, "disabled": false, - "label": "abc123", + "label": "xyz789", "position": 123, - "url": "abc123" + "url": "xyz789" } ``` +### AssignChildCompanyInput + +Defines the input schema for assigning a child company to a parent company. + +#### Input Fields + +| Input Field | Description | +|-------------|-------------| +| `child_company_id` - [`ID!`](#id) | The unique ID of the child company. | +| `parent_company_id` - [`ID!`](#id) | The unique ID of the parent company. | + +#### Example + +```json +{"child_company_id": 4, "parent_company_id": 4} +``` + + + +### AssignChildCompanyOutput + +Contains the response to the request to assign a child company. + +#### Fields + +| Field Name | Description | +|------------|-------------| +| `company_hierarchy` - [`CompanyHierarchy!`](#companyhierarchy) | The updated company hierarchy for the parent company. | + +#### Example + +```json +{"company_hierarchy": CompanyHierarchy} +``` + + + ### AssignCompareListToCustomerOutput Contains the results of the request to assign a compare list. @@ -1010,10 +1095,10 @@ List of all entity types. Populated by the modules introducing EAV entities. ```json { - "attribute_type": "abc123", + "attribute_type": "xyz789", "code": "4", "url": "abc123", - "value": "abc123" + "value": "xyz789" } ``` @@ -1044,18 +1129,18 @@ An input object that specifies the filters used for attributes. ```json { - "is_comparable": true, - "is_filterable": false, + "is_comparable": false, + "is_filterable": true, "is_filterable_in_search": false, - "is_html_allowed_on_front": false, - "is_searchable": false, + "is_html_allowed_on_front": true, + "is_searchable": true, "is_used_for_customer_segment": true, "is_used_for_price_rules": true, "is_used_for_promo_rules": false, "is_visible_in_advanced_search": true, "is_visible_on_front": false, - "is_wysiwyg_enabled": true, - "used_in_product_listing": false + "is_wysiwyg_enabled": false, + "used_in_product_listing": true } ``` @@ -1110,7 +1195,7 @@ EAV attribute frontend input types. ```json { "attribute_type": "xyz789", - "code": 4, + "code": "4", "url": "xyz789", "value": "xyz789" } @@ -1153,7 +1238,7 @@ Specifies selected option for a select or multiselect attribute value. #### Example ```json -{"value": "xyz789"} +{"value": "abc123"} ``` @@ -1186,7 +1271,7 @@ Base EAV implementation of CustomAttributeMetadataInterface. "frontend_class": "abc123", "frontend_input": "BOOLEAN", "is_required": true, - "is_unique": true, + "is_unique": false, "label": "xyz789", "options": [CustomAttributeOptionInterface] } @@ -1209,7 +1294,7 @@ Attribute metadata retrieval error. ```json { - "message": "xyz789", + "message": "abc123", "type": "ENTITY_NOT_FOUND" } ``` @@ -1276,8 +1361,8 @@ Base EAV implementation of CustomAttributeOptionInterface. ```json { "is_default": true, - "label": "abc123", - "value": "abc123" + "label": "xyz789", + "value": "xyz789" } ``` @@ -1296,7 +1381,7 @@ Base EAV implementation of CustomAttributeOptionInterface. ```json { - "label": "abc123", + "label": "xyz789", "value": "abc123" } ``` @@ -1323,7 +1408,7 @@ Base EAV implementation of CustomAttributeOptionInterface. ```json { "label": "xyz789", - "value": "abc123" + "value": "xyz789" } ``` @@ -1343,8 +1428,8 @@ Base EAV implementation of CustomAttributeOptionInterface. ```json { - "attribute_type": "xyz789", - "code": 4, + "attribute_type": "abc123", + "code": "4", "selected_options": [AttributeSelectedOptionInterface] } ``` @@ -1366,8 +1451,8 @@ Base EAV implementation of CustomAttributeOptionInterface. ```json { "attribute_type": "abc123", - "code": "4", - "value": "abc123" + "code": 4, + "value": "xyz789" } ``` @@ -1419,7 +1504,7 @@ Specifies the value for attribute. #### Example ```json -{"attribute_type": "abc123", "code": 4} +{"attribute_type": "xyz789", "code": 4} ``` @@ -1482,7 +1567,7 @@ Defines the code and symbol of a currency that can be used for purchase orders. #### Example ```json -{"code": "AFN", "symbol": "abc123"} +{"code": "AFN", "symbol": "xyz789"} ``` @@ -1505,7 +1590,7 @@ Describes a payment method that the shopper can use to pay for the order. ```json { "code": "xyz789", - "is_deferred": true, + "is_deferred": false, "oope_payment_method_config": OopePaymentMethodConfig, "title": "xyz789" } @@ -1538,10 +1623,10 @@ Contains details about the possible shipping methods and carriers. { "additional_data": [ShippingAdditionalData], "amount": Money, - "available": true, + "available": false, "carrier_code": "abc123", "carrier_title": "xyz789", - "error_message": "abc123", + "error_message": "xyz789", "method_code": "abc123", "method_title": "abc123", "price_excl_tax": Money, @@ -1589,9 +1674,9 @@ Defines the billing address. { "address": CartAddressInput, "customer_address_id": 987, - "customer_address_uid": "4", - "same_as_shipping": true, - "use_for_shipping": false + "customer_address_uid": 4, + "same_as_shipping": false, + "use_for_shipping": true } ``` @@ -1619,9 +1704,9 @@ The billing address information "address_line_1": "abc123", "address_line_2": "abc123", "city": "abc123", - "country_code": "abc123", - "postal_code": "abc123", - "region": "abc123" + "country_code": "xyz789", + "postal_code": "xyz789", + "region": "xyz789" } ``` @@ -1659,16 +1744,16 @@ Contains details about the billing address. ```json { "city": "xyz789", - "company": "abc123", + "company": "xyz789", "country": CartAddressCountry, "custom_attributes": [AttributeValueInterface], "customer_address_uid": "4", "fax": "abc123", "firstname": "xyz789", - "id": 987, - "lastname": "xyz789", + "id": 123, + "lastname": "abc123", "middlename": "abc123", - "postcode": "abc123", + "postcode": "xyz789", "prefix": "xyz789", "region": CartAddressRegion, "street": ["xyz789"], @@ -1711,11 +1796,11 @@ Contains details about an individual category that comprises a breadcrumb. ```json { - "category_level": 123, - "category_name": "abc123", - "category_uid": "4", + "category_level": 987, + "category_name": "xyz789", + "category_uid": 4, "category_url_key": "abc123", - "category_url_path": "abc123" + "category_url_path": "xyz789" } ``` @@ -1758,6 +1843,7 @@ An implementation for bundle product cart items. | Field Name | Description | |------------|-------------| | `available_gift_wrapping` - [`[GiftWrapping]!`](#giftwrapping) | The list of available gift wrapping options for the cart item. | +| `backorder_message` - [`String`](#string) | Customer-facing hint when the line is salable on notify backorders with insufficient physical quantity; null otherwise. | | `bundle_options` - [`[SelectedBundleOption]!`](#selectedbundleoption) | An array containing the bundle options the shopper selected. | | `custom_attributes` - [`[CustomAttribute]`](#customattribute) | The custom attributes for the cart item | | `customizable_options` - [`[SelectedCustomizableOption]!`](#selectedcustomizableoption) | An array containing the customizable options the shopper selected. | @@ -1765,10 +1851,11 @@ An implementation for bundle product cart items. | `errors` - [`[CartItemError]`](#cartitemerror) | An array of errors encountered while loading the cart item | | `gift_message` - [`GiftMessage`](#giftmessage) | The entered gift message for the cart item | | `gift_wrapping` - [`GiftWrapping`](#giftwrapping) | The selected gift wrapping for the cart item. | -| `is_available` - [`Boolean!`](#boolean) | True if requested quantity is less than available stock, false otherwise. | +| `is_available` - [`Boolean!`](#boolean) | True if requested quantity is less than available stock, false otherwise. *(Deprecated: Use `is_salable` instead. It indicates whether the line can be purchased, including backorder configuration.)* | +| `is_salable` - [`Boolean!`](#boolean) | True when the item can be purchased and should not block checkout: stock status is in stock and either physical quantity covers the requested quantity or backorders are allowed. | | `max_qty` - [`Float`](#float) | Line item max qty in quote template | | `min_qty` - [`Float`](#float) | Line item min qty in quote template | -| `not_available_message` - [`String`](#string) | Message to display when the product is not available with this selected option. | +| `not_available_message` - [`String`](#string) | Shortage or unavailability message for the line; null when the item is salable. | | `note_from_buyer` - [`[ItemNote]`](#itemnote) | The buyer's quote line item note. | | `note_from_seller` - [`[ItemNote]`](#itemnote) | The seller's quote line item note. | | `prices` - [`CartItemPrices`](#cartitemprices) | Contains details about the price of the item, including taxes and discounts. | @@ -1781,6 +1868,7 @@ An implementation for bundle product cart items. ```json { "available_gift_wrapping": [GiftWrapping], + "backorder_message": "xyz789", "bundle_options": [SelectedBundleOption], "custom_attributes": [CustomAttribute], "customizable_options": [SelectedCustomizableOption], @@ -1789,15 +1877,16 @@ An implementation for bundle product cart items. "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, "is_available": false, - "max_qty": 123.45, - "min_qty": 123.45, - "not_available_message": "xyz789", + "is_salable": true, + "max_qty": 987.65, + "min_qty": 987.65, + "not_available_message": "abc123", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, "quantity": 123.45, - "uid": 4 + "uid": "4" } ``` @@ -1828,12 +1917,12 @@ Defines bundle product options for `CreditMemoItemInterface`. "bundle_options": [ItemSelectedBundleOption], "custom_attributes": [CustomAttribute], "discounts": [Discount], - "id": "4", + "id": 4, "order_item": OrderItemInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, - "product_sku": "abc123", - "quantity_refunded": 123.45 + "product_sku": "xyz789", + "quantity_refunded": 987.65 } ``` @@ -1866,10 +1955,10 @@ Defines bundle product options for `InvoiceItemInterface`. "discounts": [Discount], "id": 4, "order_item": OrderItemInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, - "product_sku": "abc123", - "quantity_invoiced": 987.65 + "product_sku": "xyz789", + "quantity_invoiced": 123.45 } ``` @@ -1897,10 +1986,10 @@ Defines an individual item within a bundle product. ```json { "options": [BundleItemOption], - "position": 987, + "position": 123, "price_range": PriceRange, "required": true, - "sku": "abc123", + "sku": "xyz789", "title": "xyz789", "type": "xyz789", "uid": 4 @@ -1931,15 +2020,15 @@ Defines the characteristics that comprise a specific bundle item and its options ```json { - "can_change_quantity": true, + "can_change_quantity": false, "is_default": true, - "label": "abc123", - "position": 987, + "label": "xyz789", + "position": 123, "price": 987.65, "price_type": "FIXED", "product": ProductInterface, "quantity": 123.45, - "uid": "4" + "uid": 4 } ``` @@ -1986,7 +2075,7 @@ Defines bundle product options for `OrderItemInterface`. "bundle_options": [ItemSelectedBundleOption], "custom_attributes": [CustomAttribute], "discounts": [Discount], - "eligible_for_return": true, + "eligible_for_return": false, "entered_options": [OrderItemOption], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, @@ -1996,10 +2085,10 @@ Defines bundle product options for `OrderItemInterface`. "product": ProductInterface, "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "abc123", + "product_sku": "xyz789", "product_type": "xyz789", - "product_url_key": "abc123", - "quantity_canceled": 123.45, + "product_url_key": "xyz789", + "quantity_canceled": 987.65, "quantity_invoiced": 987.65, "quantity_ordered": 123.45, "quantity_refunded": 987.65, @@ -2074,54 +2163,54 @@ Defines basic features of a bundle product and contains multiple BundleItems. ```json { - "canonical_url": "xyz789", + "canonical_url": "abc123", "categories": [CategoryInterface], - "country_of_manufacture": "abc123", + "country_of_manufacture": "xyz789", "crosssell_products": [ProductInterface], "custom_attributesV2": ProductCustomAttributes, "description": ComplexTextValue, "dynamic_price": true, - "dynamic_sku": false, + "dynamic_sku": true, "dynamic_weight": false, - "gift_message_available": true, - "gift_wrapping_available": true, + "gift_message_available": false, + "gift_wrapping_available": false, "gift_wrapping_price": Money, "image": ProductImage, "is_returnable": "abc123", "items": [BundleItem], - "manufacturer": 987, + "manufacturer": 123, "max_sale_qty": 987.65, "media_gallery": [MediaGalleryInterface], "meta_description": "abc123", - "meta_keyword": "abc123", - "meta_title": "xyz789", + "meta_keyword": "xyz789", + "meta_title": "abc123", "min_sale_qty": 987.65, - "name": "xyz789", - "new_from_date": "abc123", + "name": "abc123", + "new_from_date": "xyz789", "new_to_date": "abc123", - "only_x_left_in_stock": 987.65, + "only_x_left_in_stock": 123.45, "options": [CustomizableOptionInterface], - "options_container": "xyz789", + "options_container": "abc123", "price_details": PriceDetails, "price_range": PriceRange, "price_tiers": [TierPrice], "price_view": "PRICE_RANGE", "product_links": [ProductLinksInterface], - "quantity": 123.45, + "quantity": 987.65, "related_products": [ProductInterface], "ship_bundle_items": "TOGETHER", "short_description": ComplexTextValue, - "sku": "abc123", + "sku": "xyz789", "small_image": ProductImage, "special_price": 987.65, - "special_to_date": "abc123", + "special_to_date": "xyz789", "stock_status": "IN_STOCK", - "swatch_image": "xyz789", + "swatch_image": "abc123", "thumbnail": ProductImage, "uid": "4", "upsell_products": [ProductInterface], - "url_key": "xyz789", - "weight": 123.45 + "url_key": "abc123", + "weight": 987.65 } ``` @@ -2149,9 +2238,9 @@ Contains details about bundle products added to a requisition list. "bundle_options": [SelectedBundleOption], "customizable_options": [SelectedCustomizableOption], "product": ProductInterface, - "quantity": 123.45, - "sku": "xyz789", - "uid": "4" + "quantity": 987.65, + "sku": "abc123", + "uid": 4 } ``` @@ -2178,12 +2267,12 @@ Defines bundle product options for `ShipmentItemInterface`. ```json { "bundle_options": [ItemSelectedBundleOption], - "id": 4, + "id": "4", "order_item": OrderItemInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, "product_sku": "abc123", - "quantity_shipped": 987.65 + "quantity_shipped": 123.45 } ``` @@ -2209,11 +2298,11 @@ Defines bundle product options for `WishlistItemInterface`. ```json { - "added_at": "xyz789", + "added_at": "abc123", "bundle_options": [SelectedBundleOption], "customizable_options": [SelectedCustomizableOption], - "description": "xyz789", - "id": "4", + "description": "abc123", + "id": 4, "product": ProductInterface, "quantity": 987.65 } @@ -2239,12 +2328,12 @@ Defines bundle product options for `WishlistItemInterface`. ```json { - "color": "abc123", + "color": "xyz789", "height": 123, "label": "abc123", "layout": "abc123", - "shape": "abc123", - "tagline": false, + "shape": "xyz789", + "tagline": true, "use_default_height": true } ``` @@ -2267,7 +2356,7 @@ Specifies the quote template id of the quote template to cancel ```json { "cancellation_comment": "xyz789", - "template_id": "4" + "template_id": 4 } ``` @@ -2287,7 +2376,7 @@ Specifies the quote template id of the quote template to cancel ```json { "code": "ORDER_CANCELLATION_DISABLED", - "message": "abc123" + "message": "xyz789" } ``` @@ -2330,7 +2419,7 @@ Defines the order to cancel. ```json { "order_id": "4", - "reason": "xyz789" + "reason": "abc123" } ``` @@ -2394,9 +2483,9 @@ Contains the updated customer order and error message if any. { "bin_details": CardBin, "card_expiry_month": "abc123", - "card_expiry_year": "abc123", + "card_expiry_year": "xyz789", "last_digits": "xyz789", - "name": "abc123" + "name": "xyz789" } ``` @@ -2434,7 +2523,7 @@ The card payment source information ```json { "billing_address": BillingAddressPaymentSourceInput, - "name": "abc123" + "name": "xyz789" } ``` @@ -2457,7 +2546,7 @@ The card payment source information ```json { "brand": "abc123", - "expiry": "abc123", + "expiry": "xyz789", "last_digits": "abc123" } ``` @@ -2506,19 +2595,19 @@ Contains the contents and other details about a guest or customer cart. "available_payment_methods": [AvailablePaymentMethod], "billing_address": BillingCartAddress, "custom_attributes": [CustomAttribute], - "email": "abc123", + "email": "xyz789", "gift_message": GiftMessage, "gift_receipt_included": true, "gift_wrapping": GiftWrapping, - "id": "4", + "id": 4, "is_virtual": false, "itemsV2": CartItems, "prices": CartPrices, - "printed_card_included": false, + "printed_card_included": true, "rules": [CartRuleStorefront], "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [ShippingCartAddress], - "total_quantity": 987.65 + "total_quantity": 123.45 } ``` @@ -2539,8 +2628,8 @@ Contains details the country in a billing or shipping address. ```json { - "code": "xyz789", - "label": "xyz789" + "code": "abc123", + "label": "abc123" } ``` @@ -2576,23 +2665,23 @@ Defines the billing or shipping address to be applied to the cart. ```json { - "city": "abc123", - "company": "abc123", + "city": "xyz789", + "company": "xyz789", "country_code": "abc123", "custom_attributes": [AttributeValueInput], "fax": "xyz789", "firstname": "abc123", - "lastname": "abc123", + "lastname": "xyz789", "middlename": "abc123", "postcode": "xyz789", "prefix": "xyz789", "region": "xyz789", "region_id": 987, - "save_in_address_book": true, + "save_in_address_book": false, "street": ["abc123"], - "suffix": "xyz789", + "suffix": "abc123", "telephone": "abc123", - "vat_id": "abc123" + "vat_id": "xyz789" } ``` @@ -2634,8 +2723,8 @@ Defines the billing or shipping address to be applied to the cart. ```json { - "city": "abc123", - "company": "abc123", + "city": "xyz789", + "company": "xyz789", "country": CartAddressCountry, "custom_attributes": [AttributeValueInterface], "customer_address_uid": "4", @@ -2644,12 +2733,12 @@ Defines the billing or shipping address to be applied to the cart. "id": 987, "lastname": "abc123", "middlename": "xyz789", - "postcode": "xyz789", + "postcode": "abc123", "prefix": "abc123", "region": CartAddressRegion, - "street": ["xyz789"], - "suffix": "abc123", - "telephone": "abc123", + "street": ["abc123"], + "suffix": "xyz789", + "telephone": "xyz789", "uid": "4", "vat_id": "xyz789" } @@ -2736,7 +2825,7 @@ Defines a cart item custom attributes. ```json { - "cart_id": "xyz789", + "cart_id": "abc123", "cart_item_id": "abc123", "custom_attributes": [CustomAttributeInput] } @@ -2756,7 +2845,7 @@ Defines a cart item custom attributes. #### Example ```json -{"code": "UNDEFINED", "message": "xyz789"} +{"code": "UNDEFINED", "message": "abc123"} ``` @@ -2798,10 +2887,10 @@ Defines an item to be added to the cart. ```json { "entered_options": [EnteredOptionInput], - "parent_sku": "xyz789", + "parent_sku": "abc123", "quantity": 123.45, - "selected_options": ["4"], - "sku": "abc123" + "selected_options": [4], + "sku": "xyz789" } ``` @@ -2815,13 +2904,15 @@ An interface for products in a cart. | Field Name | Description | |------------|-------------| +| `backorder_message` - [`String`](#string) | Customer-facing hint when the line is salable on notify backorders with insufficient physical quantity; null otherwise. | | `custom_attributes` - [`[CustomAttribute]`](#customattribute) | The custom attributes for the cart item | | `discount` - [`[Discount]`](#discount) | Contains discount for quote line item. | | `errors` - [`[CartItemError]`](#cartitemerror) | An array of errors encountered while loading the cart item | -| `is_available` - [`Boolean!`](#boolean) | True if requested quantity is less than available stock, false otherwise. | +| `is_available` - [`Boolean!`](#boolean) | True if requested quantity is less than available stock, false otherwise. *(Deprecated: Use `is_salable` instead. It indicates whether the line can be purchased, including backorder configuration.)* | +| `is_salable` - [`Boolean!`](#boolean) | True when the item can be purchased and should not block checkout: stock status is in stock and either physical quantity covers the requested quantity or backorders are allowed. | | `max_qty` - [`Float`](#float) | Line item max qty in quote template | | `min_qty` - [`Float`](#float) | Line item min qty in quote template | -| `not_available_message` - [`String`](#string) | Message to display when the product is not available with this selected option. | +| `not_available_message` - [`String`](#string) | Shortage or unavailability message for the line; null when the item is salable. | | `note_from_buyer` - [`[ItemNote]`](#itemnote) | The buyer's quote line item note. | | `note_from_seller` - [`[ItemNote]`](#itemnote) | The seller's quote line item note. | | `prices` - [`CartItemPrices`](#cartitemprices) | Contains details about the price of the item, including taxes and discounts. | @@ -2844,19 +2935,21 @@ An interface for products in a cart. ```json { + "backorder_message": "abc123", "custom_attributes": [CustomAttribute], "discount": [Discount], "errors": [CartItemError], - "is_available": false, + "is_available": true, + "is_salable": false, "max_qty": 123.45, "min_qty": 123.45, - "not_available_message": "xyz789", + "not_available_message": "abc123", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 987.65, - "uid": 4 + "quantity": 123.45, + "uid": "4" } ``` @@ -2919,8 +3012,8 @@ Contains details about the price of a selected customizable value. ```json { "type": "FIXED", - "units": "abc123", - "value": 123.45 + "units": "xyz789", + "value": 987.65 } ``` @@ -2948,7 +3041,7 @@ A single item to be updated. "customizable_options": [CustomizableOptionInput], "gift_message": GiftMessageInput, "gift_wrapping_id": "4", - "quantity": 987.65 + "quantity": 123.45 } ``` @@ -2970,7 +3063,7 @@ A single item to be updated. { "items": [CartItemInterface], "page_info": SearchResultPageInfo, - "total_count": 987 + "total_count": 123 } ``` @@ -3042,7 +3135,7 @@ Contains tax information about an item in the cart. ```json { "amount": Money, - "label": "xyz789" + "label": "abc123" } ``` @@ -3152,27 +3245,27 @@ Swatch attribute metadata. { "apply_to": ["SIMPLE"], "code": "4", - "default_value": "xyz789", + "default_value": "abc123", "entity_type": "CATALOG_PRODUCT", - "frontend_class": "abc123", + "frontend_class": "xyz789", "frontend_input": "BOOLEAN", "is_comparable": false, - "is_filterable": true, + "is_filterable": false, "is_filterable_in_search": true, - "is_html_allowed_on_front": true, + "is_html_allowed_on_front": false, "is_required": false, "is_searchable": true, "is_unique": true, "is_used_for_price_rules": true, - "is_used_for_promo_rules": true, + "is_used_for_promo_rules": false, "is_visible_in_advanced_search": false, - "is_visible_on_front": false, + "is_visible_on_front": true, "is_wysiwyg_enabled": true, "label": "xyz789", "options": [CustomAttributeOptionInterface], "swatch_input_type": "BOOLEAN", "update_product_preview_image": true, - "use_product_image_for_swatch": false, + "use_product_image_for_swatch": true, "used_in_product_listing": true } ``` @@ -3197,9 +3290,9 @@ New category bucket for federation ```json { "count": 123, - "id": 4, - "path": "abc123", - "title": "abc123" + "id": "4", + "path": "xyz789", + "title": "xyz789" } ``` @@ -3222,33 +3315,7 @@ New category bucket for federation #### Example ```json -{"id": "4"} -``` - - - -### CategoryImage - -Represents an image associated with a category. - -#### Fields - -| Field Name | Description | -|------------|-------------| -| `url` - [`String!`](#string) | The URL where the image is hosted. | -| `label` - [`String`](#string) | A descriptive label or alt text for the image. | -| `roles` - [`[String]`](#string) | Standard predefined roles for the image. | -| `customRoles` - [`[String]`](#string) | Custom roles specific to the implementation. | - -#### Example - -```json -{ - "url": "xyz789", - "label": "abc123", - "roles": ["xyz789"], - "customRoles": ["abc123"] -} +{"id": 4} ``` @@ -3297,105 +3364,31 @@ Contains the full set of attributes that can be returned in a category search. ```json { - "available_sort_by": ["xyz789"], + "available_sort_by": ["abc123"], "breadcrumbs": [Breadcrumb], - "canonical_url": "abc123", + "canonical_url": "xyz789", "children_count": "abc123", - "custom_layout_update_file": "xyz789", - "default_sort_by": "xyz789", + "custom_layout_update_file": "abc123", + "default_sort_by": "abc123", "description": "abc123", - "display_mode": "xyz789", - "filter_price_range": 123.45, + "display_mode": "abc123", + "filter_price_range": 987.65, "image": "abc123", - "include_in_menu": 123, - "is_anchor": 123, - "landing_page": 123, - "level": 987, + "include_in_menu": 987, + "is_anchor": 987, + "landing_page": 987, + "level": 123, "meta_description": "xyz789", - "meta_keywords": "abc123", + "meta_keywords": "xyz789", "meta_title": "abc123", "name": "xyz789", - "path": "xyz789", + "path": "abc123", "path_in_store": "xyz789", - "position": 987, + "position": 123, "product_count": 987, "uid": 4, "url_key": "abc123", - "url_path": "abc123" -} -``` - - - -### CategoryMetaTags - -SEO metadata tags for the category. - -#### Fields - -| Field Name | Description | -|------------|-------------| -| `title` - [`String`](#string) | The page title for SEO purposes. | -| `description` - [`String`](#string) | The meta description for SEO purposes. | -| `keywords` - [`[String]`](#string) | Keywords associated with the category for SEO. | - -#### Example - -```json -{ - "title": "abc123", - "description": "xyz789", - "keywords": ["xyz789"] -} -``` - - - -### CategoryNavigationView - -Represents a category optimized for navigation menus, with nested children for building navigation trees. - -#### Fields - -| Field Name | Description | -|------------|-------------| -| `slug` - [`String!`](#string) | The unique URL-friendly identifier for the category. | -| `name` - [`String!`](#string) | Category name. For example, `Electronics`, `Clothing` or `Books`. | -| `children` - [`[CategoryNavigationView]`](#categorynavigationview) | The direct child categories for building nested navigation menus. | - -#### Example - -```json -{ - "slug": "abc123", - "name": "xyz789", - "children": [CategoryNavigationView] -} -``` - - - -### CategoryProductView - -Represents category information associated with a product, including hierarchical parent relationships. - -#### Fields - -| Field Name | Description | -|------------|-------------| -| `name` - [`String!`](#string) | Category name. For example, `Electronics`, `Clothing` or `Books`. | -| `slug` - [`String!`](#string) | The unique URL-friendly identifier for the category. | -| `level` - [`Int!`](#int) | The level of the category. The root category is a level 1 category. For example, men -> level 1, men/clothing -> level 2, men/clothing/shorts -> level 3 | -| `parents` - [`[CategoryProductView!]`](#categoryproductview) | The ancestor categories in the hierarchy, ordered from root to immediate parent. | - -#### Example - -```json -{ - "name": "abc123", - "slug": "xyz789", - "level": 123, - "parents": [CategoryProductView] + "url_path": "xyz789" } ``` @@ -3439,65 +3432,31 @@ Contains the hierarchy of categories. ```json { - "available_sort_by": ["xyz789"], + "available_sort_by": ["abc123"], "breadcrumbs": [Breadcrumb], - "canonical_url": "abc123", + "canonical_url": "xyz789", "children_count": "xyz789", - "custom_layout_update_file": "xyz789", - "default_sort_by": "xyz789", - "description": "xyz789", - "display_mode": "xyz789", - "filter_price_range": 123.45, - "image": "abc123", - "include_in_menu": 123, - "is_anchor": 987, - "landing_page": 987, - "level": 987, - "meta_description": "xyz789", - "meta_keywords": "abc123", - "meta_title": "abc123", - "name": "abc123", - "path": "abc123", - "path_in_store": "abc123", - "position": 123, - "product_count": 987, - "uid": 4, - "url_key": "xyz789", - "url_path": "xyz789" -} -``` - - - -### CategoryTreeView - -Represents a category within a hierarchical tree structure, including parent and children relationships. - -#### Fields - -| Field Name | Description | -|------------|-------------| -| `slug` - [`String!`](#string) | The unique URL-friendly identifier for the category. | -| `name` - [`String!`](#string) | Category name. For example, `Electronics`, `Clothing` or `Books`. | -| `description` - [`String`](#string) | A detailed description of the category. | -| `metaTags` - [`CategoryMetaTags`](#categorymetatags) | SEO metadata tags for the category. | -| `images` - [`[CategoryImage]`](#categoryimage) | Visual images associated with the category. | -| `level` - [`Int`](#int) | The root category is a level 1 category. For example, men -> level 1, men/clothing -> level 2, men/clothing/shorts -> level 3 | -| `parentSlug` - [`String`](#string) | The slug of the parent category, if any. | -| `childrenSlugs` - [`[String]`](#string) | The slugs of all direct child categories. Ex: men/clothing/shorts -> [men/clothing/shorts/athletic, men/clothing/shorts/swimwear] | - -#### Example - -```json -{ - "slug": "xyz789", - "name": "xyz789", - "description": "xyz789", - "metaTags": CategoryMetaTags, - "images": [CategoryImage], + "custom_layout_update_file": "abc123", + "default_sort_by": "abc123", + "description": "abc123", + "display_mode": "xyz789", + "filter_price_range": 123.45, + "image": "abc123", + "include_in_menu": 987, + "is_anchor": 987, + "landing_page": 987, "level": 123, - "parentSlug": "abc123", - "childrenSlugs": ["xyz789"] + "meta_description": "abc123", + "meta_keywords": "xyz789", + "meta_title": "abc123", + "name": "xyz789", + "path": "xyz789", + "path_in_store": "xyz789", + "position": 987, + "product_count": 123, + "uid": 4, + "url_key": "abc123", + "url_path": "xyz789" } ``` @@ -3518,6 +3477,7 @@ Represents a category. Contains information about a category, including the cate | `level` - [`Int`](#int) | The level of the category. The root category is a level 1 category. For example, men -> level 1, men/clothing -> level 2, men/clothing/shorts -> level 3 | | `name` - [`String`](#string) | Category name. For example, `Electronics`, `Clothing` or `Books`. | | `parentId` - [`String!`](#string) | Parent category ID. For example, `123`, `456` or `789`. | +| `position` - [`Int`](#int) | The position of the category in sort order. For example, `1`, `2`, `3` or `10`. | | `path` - [`String`](#string) | Category path. For example, `/electronics/laptops`, `/clothing/shirts` or `/books/fiction`. *(Deprecated: 'CategoryView' is deprecated for use as a Bucket in 'productSearch' facet (to be removed after Sep 1, 2024). Use 'CategoryBucket' instead.)* | | `roles` - [`[String!]!`](#string) | List of roles for the category. For example, `show_on_plp`, `show_in_pdp` or `show_in_search`. | | `urlKey` - [`String`](#string) | Category URL key. For example, `electronics`, `clothing` or `books`. | @@ -3529,17 +3489,18 @@ Represents a category. Contains information about a category, including the cate ```json { - "availableSortBy": ["abc123"], - "children": ["xyz789"], + "availableSortBy": ["xyz789"], + "children": ["abc123"], "defaultSortBy": "abc123", - "id": "4", + "id": 4, "level": 123, - "name": "abc123", - "parentId": "xyz789", - "path": "xyz789", - "roles": ["xyz789"], - "urlKey": "xyz789", - "urlPath": "xyz789", + "name": "xyz789", + "parentId": "abc123", + "position": 123, + "path": "abc123", + "roles": ["abc123"], + "urlKey": "abc123", + "urlPath": "abc123", "count": 987, "title": "xyz789" } @@ -3578,47 +3539,17 @@ Base interface defining essential category fields shared across all category vie "availableSortBy": ["xyz789"], "defaultSortBy": "abc123", "id": 4, - "level": 987, + "level": 123, "name": "abc123", "path": "abc123", - "roles": ["abc123"], - "urlKey": "xyz789", + "roles": ["xyz789"], + "urlKey": "abc123", "urlPath": "xyz789" } ``` -### CategoryViewV2 - -Base interface defining essential category fields shared across all category views. - -#### Fields - -| Field Name | Description | -|------------|-------------| -| `slug` - [`String!`](#string) | The unique URL-friendly identifier for the category. | -| `name` - [`String!`](#string) | Category name. For example, `Electronics`, `Clothing` or `Books`. | - -#### Possible Types - -| CategoryViewV2 Types | -|----------------| -| [`CategoryNavigationView`](#categorynavigationview) | -| [`CategoryProductView`](#categoryproductview) | -| [`CategoryTreeView`](#categorytreeview) | - -#### Example - -```json -{ - "slug": "abc123", - "name": "xyz789" -} -``` - - - ### CheckoutAgreement Defines details about an individual checkout agreement. @@ -3640,9 +3571,9 @@ Defines details about an individual checkout agreement. ```json { "agreement_id": 123, - "checkbox_text": "abc123", - "content": "xyz789", - "content_height": "abc123", + "checkbox_text": "xyz789", + "content": "abc123", + "content_height": "xyz789", "is_html": false, "mode": "AUTO", "name": "xyz789" @@ -3688,7 +3619,7 @@ An error encountered while adding an item to the cart. { "code": "REORDER_NOT_AVAILABLE", "message": "abc123", - "path": ["xyz789"] + "path": ["abc123"] } ``` @@ -3728,7 +3659,7 @@ Output of the request to clear the customer cart. #### Example ```json -{"cart": Cart, "status": true} +{"cart": Cart, "status": false} ``` @@ -3767,7 +3698,7 @@ Contains details about a failed close operation on a negotiable quote. ```json { "errors": [NegotiableQuoteInvalidStateError], - "quote_uid": 4 + "quote_uid": "4" } ``` @@ -3803,7 +3734,7 @@ Defines the negotiable quotes to mark as closed. #### Example ```json -{"quote_uids": ["4"]} +{"quote_uids": [4]} ``` @@ -3845,7 +3776,7 @@ Contains the closed negotiable quotes and other negotiable quotes the company us #### Example ```json -{"value": "abc123"} +{"value": "xyz789"} ``` @@ -3955,7 +3886,7 @@ Contains the output schema for a company. "legal_address": CompanyLegalAddress, "legal_name": "abc123", "name": "abc123", - "payment_methods": ["abc123"], + "payment_methods": ["xyz789"], "reseller_id": "abc123", "role": CompanyRole, "roles": CompanyRoles, @@ -3965,7 +3896,7 @@ Contains the output schema for a company. "team": CompanyTeam, "user": Customer, "users": CompanyUsers, - "vat_tax_id": "xyz789" + "vat_tax_id": "abc123" } ``` @@ -3989,9 +3920,9 @@ Contains details about the access control list settings of a resource. ```json { "children": [CompanyAclResource], - "id": "4", + "id": 4, "sort_order": 123, - "text": "abc123" + "text": "xyz789" } ``` @@ -4022,8 +3953,8 @@ Defines the input schema for creating a company administrator. "firstname": "xyz789", "gender": 987, "job_title": "abc123", - "lastname": "abc123", - "telephone": "abc123" + "lastname": "xyz789", + "telephone": "xyz789" } ``` @@ -4045,7 +3976,7 @@ Describes a carrier-level shipping option available to the company. ```json { "code": "xyz789", - "title": "abc123" + "title": "xyz789" } ``` @@ -4060,6 +3991,7 @@ The minimal required information to identify and display the company. | Field Name | Description | |------------|-------------| | `id` - [`ID!`](#id) | The unique ID of a `Company` object. | +| `is_admin` - [`Boolean!`](#boolean) | Indicates whether the company is the admin (parent) company in the returned relation hierarchy. | | `legal_name` - [`String`](#string) | The full legal name of the company. | | `name` - [`String`](#string) | The name of the company. | | `status` - [`CompanyStatusEnum`](#companystatusenum) | The current status of the company. | @@ -4068,8 +4000,9 @@ The minimal required information to identify and display the company. ```json { - "id": "4", - "legal_name": "xyz789", + "id": 4, + "is_admin": false, + "legal_name": "abc123", "name": "xyz789", "status": "PENDING" } @@ -4099,9 +4032,9 @@ Defines the input schema for creating a new company. { "company_admin": CompanyAdminInput, "company_email": "xyz789", - "company_name": "xyz789", + "company_name": "abc123", "legal_address": CompanyLegalAddressCreateInput, - "legal_name": "xyz789", + "legal_name": "abc123", "reseller_id": "xyz789", "vat_tax_id": "xyz789" } @@ -4128,7 +4061,7 @@ Contains company credit balances and limits. { "available_credit": Money, "credit_limit": Money, - "exceed_limit": false, + "exceed_limit": true, "outstanding_balance": Money } ``` @@ -4153,7 +4086,7 @@ Contains details about prior company credit operations. { "items": [CompanyCreditOperation], "page_info": SearchResultPageInfo, - "total_count": 123 + "total_count": 987 } ``` @@ -4204,7 +4137,7 @@ Contains details about a single company credit operation. { "amount": Money, "balance": CompanyCredit, - "custom_reference_number": "abc123", + "custom_reference_number": "xyz789", "date": "abc123", "type": "ALLOCATION", "updated_by": CompanyCreditOperationUser @@ -4248,7 +4181,7 @@ Defines the administrator or company user that submitted a company credit operat #### Example ```json -{"name": "xyz789", "type": "CUSTOMER"} +{"name": "abc123", "type": "CUSTOMER"} ``` @@ -4270,6 +4203,28 @@ Defines the administrator or company user that submitted a company credit operat +### CompanyHierarchy + +Defines a parent company and its direct child companies. + +#### Fields + +| Field Name | Description | +|------------|-------------| +| `children` - [`[CompanyBasicInfo]!`](#companybasicinfo) | An array of direct child companies. | +| `parent` - [`CompanyBasicInfo`](#companybasicinfo) | The parent company in the relation hierarchy. Null if the company has no parent. | + +#### Example + +```json +{ + "children": [CompanyBasicInfo], + "parent": CompanyBasicInfo +} +``` + + + ### CompanyInvitationInput Defines the input schema for accepting the company invitation. @@ -4286,7 +4241,7 @@ Defines the input schema for accepting the company invitation. ```json { - "code": "xyz789", + "code": "abc123", "role_id": 4, "user": CompanyInvitationUserInput } @@ -4330,11 +4285,11 @@ Company user attributes in the invitation. ```json { - "company_id": 4, - "customer_id": "4", - "job_title": "abc123", + "company_id": "4", + "customer_id": 4, + "job_title": "xyz789", "status": "ACTIVE", - "telephone": "abc123" + "telephone": "xyz789" } ``` @@ -4363,8 +4318,8 @@ Contains details about the address where the company is registered to conduct bu "country_code": "AF", "postcode": "abc123", "region": CustomerAddressRegion, - "street": ["abc123"], - "telephone": "xyz789" + "street": ["xyz789"], + "telephone": "abc123" } ``` @@ -4389,12 +4344,12 @@ Defines the input schema for defining a company's legal address. ```json { - "city": "xyz789", + "city": "abc123", "country_id": "AF", - "postcode": "abc123", + "postcode": "xyz789", "region": CustomerAddressRegionInput, - "street": ["abc123"], - "telephone": "abc123" + "street": ["xyz789"], + "telephone": "xyz789" } ``` @@ -4421,9 +4376,9 @@ Defines the input schema for updating a company's legal address. { "city": "xyz789", "country_id": "AF", - "postcode": "abc123", + "postcode": "xyz789", "region": CustomerAddressRegionInput, - "street": ["xyz789"], + "street": ["abc123"], "telephone": "abc123" } ``` @@ -4450,7 +4405,7 @@ Contails details about a single role. "id": "4", "name": "abc123", "permissions": [CompanyAclResource], - "users_count": 123 + "users_count": 987 } ``` @@ -4471,8 +4426,8 @@ Defines the input schema for creating a company role. ```json { - "name": "abc123", - "permissions": ["abc123"] + "name": "xyz789", + "permissions": ["xyz789"] } ``` @@ -4494,9 +4449,9 @@ Defines the input schema for updating a company role. ```json { - "id": "4", - "name": "xyz789", - "permissions": ["xyz789"] + "id": 4, + "name": "abc123", + "permissions": ["abc123"] } ``` @@ -4624,7 +4579,7 @@ Defines an individual node in the company structure. { "entity": CompanyTeam, "id": "4", - "parent_id": 4 + "parent_id": "4" } ``` @@ -4644,10 +4599,7 @@ Defines the input schema for updating the company structure. #### Example ```json -{ - "parent_tree_id": "4", - "tree_id": "4" -} +{"parent_tree_id": "4", "tree_id": 4} ``` @@ -4670,9 +4622,9 @@ Describes a company team. ```json { "description": "abc123", - "id": 4, - "name": "abc123", - "structure_id": "4" + "id": "4", + "name": "xyz789", + "structure_id": 4 } ``` @@ -4718,8 +4670,8 @@ Defines the input schema for updating a company team. ```json { - "description": "xyz789", - "id": "4", + "description": "abc123", + "id": 4, "name": "xyz789" } ``` @@ -4745,7 +4697,7 @@ Defines the input schema for updating a company. ```json { - "company_email": "xyz789", + "company_email": "abc123", "company_name": "abc123", "legal_address": CompanyLegalAddressUpdateInput, "legal_name": "abc123", @@ -4780,8 +4732,8 @@ Defines the input schema for creating a company user. "email": "abc123", "firstname": "abc123", "job_title": "abc123", - "lastname": "xyz789", - "role_id": "4", + "lastname": "abc123", + "role_id": 4, "status": "ACTIVE", "target_id": 4, "telephone": "xyz789" @@ -4831,13 +4783,13 @@ Defines the input schema for updating a company user. ```json { "email": "abc123", - "firstname": "abc123", - "id": "4", + "firstname": "xyz789", + "id": 4, "job_title": "xyz789", - "lastname": "xyz789", + "lastname": "abc123", "role_id": "4", "status": "ACTIVE", - "telephone": "xyz789" + "telephone": "abc123" } ``` @@ -4901,7 +4853,7 @@ Contains an attribute code that is used for product comparisons. ```json { "code": "xyz789", - "label": "xyz789" + "label": "abc123" } ``` @@ -4951,7 +4903,7 @@ Contains iterable information such as the array of items, the count, and attribu "attributes": [ComparableAttribute], "item_count": 123, "items": [ComparableItem], - "uid": "4" + "uid": 4 } ``` @@ -5009,7 +4961,6 @@ Represents all product types, except simple products. Complex product prices are | `url` - [`String`](#string) | Canonical URL of the product. *(Deprecated: This field is deprecated and will be removed.)* | | `urlKey` - [`String`](#string) | The URL key of the product. | | `links` - [`[ProductViewLink]`](#productviewlink) | A list of product links. Links are used to navigate from one product to another. | -| `categories` - [`[CategoryProductView!]`](#categoryproductview) | A list of categories in which the product is present. | | `queryType` - [`String`](#string) | Indicates if the product was retrieved from the primary or the backup query | | `visibility` - [`String`](#string) | Visibility setting of the product | @@ -5018,29 +4969,28 @@ Represents all product types, except simple products. Complex product prices are ```json { "addToCartAllowed": true, - "inStock": false, - "lowStock": true, + "inStock": true, + "lowStock": false, "attributes": [ProductViewAttribute], - "description": "abc123", + "description": "xyz789", "id": 4, "images": [ProductViewImage], "videos": [ProductViewVideo], "lastModifiedAt": "2007-12-03T10:15:30Z", - "metaDescription": "xyz789", - "metaKeyword": "xyz789", + "metaDescription": "abc123", + "metaKeyword": "abc123", "metaTitle": "xyz789", "name": "xyz789", "inputOptions": [ProductViewInputOption], "options": [ProductViewOption], "priceRange": ProductViewPriceRange, "shortDescription": "xyz789", - "sku": "xyz789", + "sku": "abc123", "externalId": "abc123", - "url": "abc123", - "urlKey": "abc123", + "url": "xyz789", + "urlKey": "xyz789", "links": [ProductViewLink], - "categories": [CategoryProductView], - "queryType": "xyz789", + "queryType": "abc123", "visibility": "abc123" } ``` @@ -5058,7 +5008,7 @@ Represents all product types, except simple products. Complex product prices are #### Example ```json -{"html": "xyz789"} +{"html": "abc123"} ``` @@ -5079,7 +5029,7 @@ Represents all product types, except simple products. Complex product prices are { "field": "UNKNOWN_FIELD", "operator": OperatorInput, - "enabled": true + "enabled": false } ``` @@ -5104,8 +5054,8 @@ Contains details about a configurable product attribute option. { "code": "abc123", "label": "xyz789", - "uid": "4", - "value_index": 123 + "uid": 4, + "value_index": 987 } ``` @@ -5120,6 +5070,7 @@ An implementation for configurable product cart items. | Field Name | Description | |------------|-------------| | `available_gift_wrapping` - [`[GiftWrapping]!`](#giftwrapping) | The list of available gift wrapping options for the cart item. | +| `backorder_message` - [`String`](#string) | Customer-facing hint when the line is salable on notify backorders with insufficient physical quantity; null otherwise. | | `configurable_options` - [`[SelectedConfigurableOption]!`](#selectedconfigurableoption) | An array containing the configuranle options the shopper selected. | | `configured_variant` - [`ProductInterface!`](#productinterface) | Product details of the cart item. | | `custom_attributes` - [`[CustomAttribute]`](#customattribute) | The custom attributes for the cart item | @@ -5128,10 +5079,11 @@ An implementation for configurable product cart items. | `errors` - [`[CartItemError]`](#cartitemerror) | An array of errors encountered while loading the cart item | | `gift_message` - [`GiftMessage`](#giftmessage) | The entered gift message for the cart item | | `gift_wrapping` - [`GiftWrapping`](#giftwrapping) | The selected gift wrapping for the cart item. | -| `is_available` - [`Boolean!`](#boolean) | True if requested quantity is less than available stock, false otherwise. | +| `is_available` - [`Boolean!`](#boolean) | True if requested quantity is less than available stock, false otherwise. *(Deprecated: Use `is_salable` instead. It indicates whether the line can be purchased, including backorder configuration.)* | +| `is_salable` - [`Boolean!`](#boolean) | True when the item can be purchased and should not block checkout: stock status is in stock and either physical quantity covers the requested quantity or backorders are allowed. | | `max_qty` - [`Float`](#float) | Line item max qty in quote template | | `min_qty` - [`Float`](#float) | Line item min qty in quote template | -| `not_available_message` - [`String`](#string) | Message to display when the product is not available with this selected option. | +| `not_available_message` - [`String`](#string) | Shortage or unavailability message for the line; null when the item is salable. | | `note_from_buyer` - [`[ItemNote]`](#itemnote) | The buyer's quote line item note. | | `note_from_seller` - [`[ItemNote]`](#itemnote) | The seller's quote line item note. | | `prices` - [`CartItemPrices`](#cartitemprices) | Contains details about the price of the item, including taxes and discounts. | @@ -5144,6 +5096,7 @@ An implementation for configurable product cart items. ```json { "available_gift_wrapping": [GiftWrapping], + "backorder_message": "abc123", "configurable_options": [SelectedConfigurableOption], "configured_variant": ProductInterface, "custom_attributes": [CustomAttribute], @@ -5152,15 +5105,16 @@ An implementation for configurable product cart items. "errors": [CartItemError], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "is_available": false, + "is_available": true, + "is_salable": false, "max_qty": 123.45, - "min_qty": 123.45, - "not_available_message": "abc123", + "min_qty": 987.65, + "not_available_message": "xyz789", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 123.45, + "quantity": 987.65, "uid": "4" } ``` @@ -5183,7 +5137,7 @@ Describes configurable options that have been selected and can be selected as a ```json { "attribute_code": "abc123", - "option_value_uids": [4] + "option_value_uids": ["4"] } ``` @@ -5226,28 +5180,28 @@ Describes configurable options that have been selected and can be selected as a { "custom_attributes": [CustomAttribute], "discounts": [Discount], - "eligible_for_return": true, + "eligible_for_return": false, "entered_options": [OrderItemOption], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "id": 4, + "id": "4", "parent_sku": "abc123", "prices": OrderItemPrices, "product": ProductInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, "product_sku": "abc123", "product_type": "abc123", "product_url_key": "xyz789", - "quantity_canceled": 987.65, + "quantity_canceled": 123.45, "quantity_invoiced": 987.65, - "quantity_ordered": 987.65, - "quantity_refunded": 123.45, + "quantity_ordered": 123.45, + "quantity_refunded": 987.65, "quantity_return_requested": 987.65, "quantity_returned": 123.45, "quantity_shipped": 987.65, "selected_options": [OrderItemOption], - "status": "xyz789" + "status": "abc123" } ``` @@ -5310,7 +5264,7 @@ Defines basic features of a configurable product and its simple product variants ```json { - "canonical_url": "xyz789", + "canonical_url": "abc123", "categories": [CategoryInterface], "configurable_options": [ConfigurableProductOptions], "configurable_product_options_selection": ConfigurableProductOptionsSelection, @@ -5318,40 +5272,40 @@ Defines basic features of a configurable product and its simple product variants "crosssell_products": [ProductInterface], "custom_attributesV2": ProductCustomAttributes, "description": ComplexTextValue, - "gift_message_available": true, + "gift_message_available": false, "gift_wrapping_available": false, "gift_wrapping_price": Money, "image": ProductImage, "is_returnable": "xyz789", - "manufacturer": 987, + "manufacturer": 123, "max_sale_qty": 123.45, "media_gallery": [MediaGalleryInterface], "meta_description": "abc123", - "meta_keyword": "xyz789", - "meta_title": "abc123", - "min_sale_qty": 987.65, - "name": "xyz789", - "new_from_date": "xyz789", + "meta_keyword": "abc123", + "meta_title": "xyz789", + "min_sale_qty": 123.45, + "name": "abc123", + "new_from_date": "abc123", "new_to_date": "abc123", "only_x_left_in_stock": 123.45, "options": [CustomizableOptionInterface], - "options_container": "xyz789", + "options_container": "abc123", "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], "quantity": 123.45, "related_products": [ProductInterface], "short_description": ComplexTextValue, - "sku": "abc123", + "sku": "xyz789", "small_image": ProductImage, - "special_price": 123.45, + "special_price": 987.65, "special_to_date": "xyz789", "stock_status": "IN_STOCK", "swatch_image": "abc123", "thumbnail": ProductImage, "uid": 4, "upsell_products": [ProductInterface], - "url_key": "abc123", + "url_key": "xyz789", "variants": [ConfigurableVariant], "weight": 987.65 } @@ -5376,9 +5330,9 @@ Contains details about configurable product options. ```json { - "attribute_code": "xyz789", + "attribute_code": "abc123", "label": "abc123", - "uid": 4, + "uid": "4", "values": [ConfigurableProductOptionValue] } ``` @@ -5404,7 +5358,7 @@ Defines a value for a configurable product option. ```json { "is_available": true, - "is_use_default": true, + "is_use_default": false, "label": "abc123", "swatch": SwatchDataInterface, "uid": "4" @@ -5433,11 +5387,11 @@ Defines configurable attributes for the specified product. ```json { - "attribute_code": "xyz789", - "attribute_uid": 4, - "label": "abc123", - "position": 987, - "uid": "4", + "attribute_code": "abc123", + "attribute_uid": "4", + "label": "xyz789", + "position": 123, + "uid": 4, "use_default": true, "values": [ConfigurableProductOptionsValues] } @@ -5525,8 +5479,8 @@ Contains details about configurable products added to a requisition list. "configurable_options": [SelectedConfigurableOption], "customizable_options": [SelectedCustomizableOption], "product": ProductInterface, - "quantity": 987.65, - "sku": "xyz789", + "quantity": 123.45, + "sku": "abc123", "uid": 4 } ``` @@ -5576,7 +5530,7 @@ A configurable product wish list item. ```json { - "added_at": "abc123", + "added_at": "xyz789", "configurable_options": [SelectedConfigurableOption], "configured_variant": ProductInterface, "customizable_options": [SelectedCustomizableOption], @@ -5625,7 +5579,7 @@ Contains details about a customer email address to confirm. ```json { "confirmation_key": "xyz789", - "email": "abc123" + "email": "xyz789" } ``` @@ -5645,7 +5599,7 @@ Contains details about a customer email address to confirm. ```json { "confirmation_key": "abc123", - "order_id": 4 + "order_id": "4" } ``` @@ -5685,10 +5639,10 @@ List of account confirmation statuses. ```json { - "comment": "abc123", - "email": "xyz789", + "comment": "xyz789", + "email": "abc123", "name": "xyz789", - "telephone": "abc123" + "telephone": "xyz789" } ``` @@ -5790,11 +5744,11 @@ Contains the source and target wish lists after copying products. ```json { "available_regions": [Region], - "full_name_english": "xyz789", - "full_name_locale": "abc123", + "full_name_english": "abc123", + "full_name_locale": "xyz789", "id": "xyz789", - "three_letter_abbreviation": "abc123", - "two_letter_abbreviation": "xyz789" + "three_letter_abbreviation": "xyz789", + "two_letter_abbreviation": "abc123" } ``` @@ -6147,7 +6101,7 @@ Contains an array of product IDs to use for creating a compare list. #### Example ```json -{"products": [4]} +{"products": ["4"]} ``` @@ -6178,7 +6132,7 @@ Defines a new gift registry. ], "event_name": "abc123", "gift_registry_type_uid": 4, - "message": "abc123", + "message": "xyz789", "privacy_settings": "PRIVATE", "registrants": [AddGiftRegistryRegistrantInput], "shipping_address": GiftRegistryShippingAddressInput, @@ -6217,7 +6171,7 @@ Contains the results of a request to create a gift registry. #### Example ```json -{"cart_uid": 4} +{"cart_uid": "4"} ``` @@ -6256,9 +6210,9 @@ Contains payment order details that are used while processing the payment order ```json { - "cartId": "xyz789", + "cartId": "abc123", "location": "PRODUCT_DETAIL", - "methodCode": "abc123", + "methodCode": "xyz789", "paymentSource": "abc123", "vaultIntent": false } @@ -6285,10 +6239,10 @@ Contains payment order details that are used while processing the payment order ```json { "amount": 123.45, - "currency_code": "xyz789", + "currency_code": "abc123", "id": "abc123", "mp_order_id": "abc123", - "status": "xyz789" + "status": "abc123" } ``` @@ -6308,7 +6262,7 @@ Specifies the amount and currency to evaluate. #### Example ```json -{"currency": "AFN", "value": 987.65} +{"currency": "AFN", "value": 123.45} ``` @@ -6354,7 +6308,7 @@ An input object that identifies and describes a new requisition list. ```json { - "description": "abc123", + "description": "xyz789", "name": "xyz789" } ``` @@ -6394,7 +6348,7 @@ Describe the variables needed to create a vault payment token ```json { - "card_description": "xyz789", + "card_description": "abc123", "setup_token_id": "xyz789" } ``` @@ -6417,7 +6371,7 @@ The vault token id and information about the payment source ```json { "payment_source": PaymentSourceOutput, - "vault_token_id": "xyz789" + "vault_token_id": "abc123" } ``` @@ -6521,7 +6475,7 @@ Contains credit memo details. { "comments": [SalesCommentItem], "custom_attributes": [CustomAttribute], - "id": 4, + "id": "4", "items": [CreditMemoItemInterface], "number": "xyz789", "total": CreditMemoTotal @@ -6545,7 +6499,7 @@ Defines a credit memo item's custom attributes. ```json { - "credit_memo_id": "abc123", + "credit_memo_id": "xyz789", "custom_attributes": [CustomAttributeInput] } ``` @@ -6575,10 +6529,10 @@ Defines a credit memo item's custom attributes. "discounts": [Discount], "id": 4, "order_item": OrderItemInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, "product_sku": "xyz789", - "quantity_refunded": 987.65 + "quantity_refunded": 123.45 } ``` @@ -6640,12 +6594,12 @@ Credit memo item details. { "custom_attributes": [CustomAttribute], "discounts": [Discount], - "id": 4, + "id": "4", "order_item": OrderItemInterface, "product_name": "xyz789", "product_sale_price": Money, "product_sku": "xyz789", - "quantity_refunded": 123.45 + "quantity_refunded": 987.65 } ``` @@ -6722,9 +6676,9 @@ Contains credit memo price details. ```json { - "available_currency_codes": ["abc123"], - "base_currency_code": "xyz789", - "base_currency_symbol": "xyz789", + "available_currency_codes": ["xyz789"], + "base_currency_code": "abc123", + "base_currency_symbol": "abc123", "default_display_currency_code": "abc123", "default_display_currency_symbol": "xyz789", "exchange_rates": [ExchangeRate] @@ -6919,6 +6873,25 @@ The list of available currency codes. +### CurrentProductInput + +Attributes of the product currently being viewed on PDP + +#### Input Fields + +| Input Field | Description | +|-------------|-------------| +| `sku` - [`String`](#string) | SKU of the current product | +| `price` - [`Float`](#float) | Resolved display price of the current product (specialPrice ?? regularPrice) | + +#### Example + +```json +{"sku": "xyz789", "price": 123.45} +``` + + + ### CustomAttribute Specifies the custom attribute code and value. @@ -6934,8 +6907,8 @@ Specifies the custom attribute code and value. ```json { - "attribute_code": "xyz789", - "value": "abc123" + "attribute_code": "abc123", + "value": "xyz789" } ``` @@ -6994,8 +6967,8 @@ An interface containing fields that define the EAV attribute. ```json { - "code": "4", - "default_value": "abc123", + "code": 4, + "default_value": "xyz789", "entity_type": "CATALOG_PRODUCT", "frontend_class": "xyz789", "frontend_input": "BOOLEAN", @@ -7029,7 +7002,7 @@ An interface containing fields that define the EAV attribute. ```json { "is_default": true, - "label": "xyz789", + "label": "abc123", "value": "abc123" } ``` @@ -7051,8 +7024,8 @@ A simple key value object. ```json { - "key": "abc123", - "value": "abc123" + "key": "xyz789", + "value": "xyz789" } ``` diff --git a/src/pages/includes/autogenerated/graphql-api-saas-types-2.md b/src/pages/includes/autogenerated/graphql-api-saas-types-2.md index 8065ebe4c..747063e1c 100644 --- a/src/pages/includes/autogenerated/graphql-api-saas-types-2.md +++ b/src/pages/includes/autogenerated/graphql-api-saas-types-2.md @@ -45,8 +45,10 @@ Defines the customer name, addresses, and other details. |------------|-------------| | `addresses` - [`[CustomerAddress]`](#customeraddress) | An array containing the customer's shipping and billing addresses. | | `addressesV2` - [`CustomerAddresses`](#customeraddresses) | An array containing the customer's shipping and billing addresses. | +| `admin_assistance_actions` - [`AdminAssistanceActions!`](#adminassistanceactions) | Actions performed by an admin on behalf of the customer (Login as Customer logging). | | `allow_remote_shopping_assistance` - [`Boolean!`](#boolean) | Indicates whether the customer has enabled remote shopping assistance. | | `companies` - [`UserCompaniesOutput!`](#usercompaniesoutput) | An object that contains a list of companies user is assigned to. | +| `company_hierarchy` - [`[CompanyHierarchy]`](#companyhierarchy) | The company relation hierarchies for all companies. Only available to the company administrator. | | `compare_list` - [`CompareList`](#comparelist) | The contents of the customer's compare list. | | `confirmation_status` - [`ConfirmationStatusEnum!`](#confirmationstatusenum) | The customer's confirmation status. | | `created_at` - [`String`](#string) | Timestamp indicating when the account was created. | @@ -96,34 +98,36 @@ Defines the customer name, addresses, and other details. { "addresses": [CustomerAddress], "addressesV2": CustomerAddresses, - "allow_remote_shopping_assistance": false, + "admin_assistance_actions": AdminAssistanceActions, + "allow_remote_shopping_assistance": true, "companies": UserCompaniesOutput, + "company_hierarchy": [CompanyHierarchy], "compare_list": CompareList, "confirmation_status": "ACCOUNT_CONFIRMED", - "created_at": "xyz789", + "created_at": "abc123", "custom_attributes": [AttributeValueInterface], - "date_of_birth": "xyz789", - "default_billing": "xyz789", + "date_of_birth": "abc123", + "default_billing": "abc123", "default_shipping": "xyz789", "email": "xyz789", - "firstname": "xyz789", - "gender": 987, + "firstname": "abc123", + "gender": 123, "gift_registries": [GiftRegistry], "gift_registry": GiftRegistry, "group": CustomerGroupStorefront, "id": "4", - "is_subscribed": true, - "job_title": "abc123", + "is_subscribed": false, + "job_title": "xyz789", "lastname": "abc123", "middlename": "xyz789", "orders": CustomerOrders, - "prefix": "xyz789", + "prefix": "abc123", "purchase_order": PurchaseOrder, "purchase_order_approval_rule": PurchaseOrderApprovalRule, "purchase_order_approval_rule_metadata": PurchaseOrderApprovalRuleMetadata, "purchase_order_approval_rules": PurchaseOrderApprovalRules, "purchase_orders": PurchaseOrders, - "purchase_orders_enabled": false, + "purchase_orders_enabled": true, "quote_enabled": true, "requisition_lists": RequisitionLists, "return": Return, @@ -133,9 +137,9 @@ Defines the customer name, addresses, and other details. "segments": [CustomerSegmentStorefront], "status": "ACTIVE", "store_credit": CustomerStoreCredit, - "structure_id": 4, - "suffix": "abc123", - "taxvat": "abc123", + "structure_id": "4", + "suffix": "xyz789", + "taxvat": "xyz789", "team": CompanyTeam, "telephone": "xyz789", "wishlist_v2": Wishlist, @@ -179,27 +183,27 @@ Contains detailed information about a customer's billing or shipping address. ```json { - "city": "abc123", - "company": "abc123", + "city": "xyz789", + "company": "xyz789", "country_code": "AF", "custom_attributesV2": [AttributeValueInterface], "default_billing": true, "default_shipping": true, "extension_attributes": [CustomerAddressAttribute], - "fax": "abc123", + "fax": "xyz789", "firstname": "abc123", "id": 987, - "lastname": "abc123", + "lastname": "xyz789", "middlename": "abc123", - "postcode": "abc123", + "postcode": "xyz789", "prefix": "xyz789", "region": CustomerAddressRegion, - "region_id": 123, + "region_id": 987, "street": ["xyz789"], "suffix": "abc123", - "telephone": "abc123", + "telephone": "xyz789", "uid": 4, - "vat_id": "xyz789" + "vat_id": "abc123" } ``` @@ -220,8 +224,8 @@ Specifies the attribute code and value of a customer address attribute. ```json { - "attribute_code": "xyz789", - "value": "abc123" + "attribute_code": "abc123", + "value": "xyz789" } ``` @@ -257,23 +261,23 @@ Contains details about a billing or shipping address. ```json { - "city": "abc123", - "company": "xyz789", + "city": "xyz789", + "company": "abc123", "country_code": "AF", "custom_attributesV2": [AttributeValueInput], "default_billing": true, "default_shipping": true, - "fax": "xyz789", - "firstname": "xyz789", - "lastname": "abc123", - "middlename": "abc123", + "fax": "abc123", + "firstname": "abc123", + "lastname": "xyz789", + "middlename": "xyz789", "postcode": "abc123", - "prefix": "xyz789", + "prefix": "abc123", "region": CustomerAddressRegionInput, "street": ["xyz789"], - "suffix": "xyz789", + "suffix": "abc123", "telephone": "abc123", - "vat_id": "xyz789" + "vat_id": "abc123" } ``` @@ -297,7 +301,7 @@ Defines the customer's state or province. { "region": "xyz789", "region_code": "xyz789", - "region_id": 987 + "region_id": 123 } ``` @@ -319,9 +323,9 @@ Defines the customer's state or province. ```json { - "region": "xyz789", + "region": "abc123", "region_code": "xyz789", - "region_id": 123 + "region_id": 987 } ``` @@ -375,18 +379,18 @@ Customer attribute metadata. ```json { - "code": 4, + "code": "4", "default_value": "abc123", "entity_type": "CATALOG_PRODUCT", - "frontend_class": "xyz789", + "frontend_class": "abc123", "frontend_input": "BOOLEAN", "input_filter": "NONE", - "is_required": false, + "is_required": true, "is_unique": true, - "label": "xyz789", - "multiline_count": 987, + "label": "abc123", + "multiline_count": 123, "options": [CustomAttributeOptionInterface], - "sort_order": 123, + "sort_order": 987, "validate_rules": [ValidationRule] } ``` @@ -419,17 +423,17 @@ An input object for creating a customer. ```json { - "allow_remote_shopping_assistance": false, + "allow_remote_shopping_assistance": true, "custom_attributes": [AttributeValueInput], - "date_of_birth": "abc123", + "date_of_birth": "xyz789", "email": "abc123", - "firstname": "xyz789", + "firstname": "abc123", "gender": 987, "is_subscribed": false, "lastname": "abc123", - "middlename": "abc123", + "middlename": "xyz789", "password": "xyz789", - "prefix": "abc123", + "prefix": "xyz789", "suffix": "abc123", "taxvat": "xyz789" } @@ -455,11 +459,11 @@ Contains details about a single downloadable product. ```json { - "date": "abc123", + "date": "xyz789", "download_url": "abc123", - "order_increment_id": "abc123", - "remaining_downloads": "xyz789", - "status": "abc123" + "order_increment_id": "xyz789", + "remaining_downloads": "abc123", + "status": "xyz789" } ``` @@ -509,6 +513,7 @@ Contains details about each of the customer's orders. | Field Name | Description | |------------|-------------| +| `admin_assisted_order` - [`Int`](#int) | Admin user id when the order was placed with assistance (Login as Customer); null if not assisted. | | `applied_coupons` - [`[AppliedCoupon]!`](#appliedcoupon) | Coupons applied to the order. | | `applied_gift_cards` - [`[ApplyGiftCardToOrder]`](#applygiftcardtoorder) | An array of gift cards applied to the order. | | `available_actions` - [`[OrderActionType]!`](#orderactiontype) | List of available order actions. | @@ -545,6 +550,7 @@ Contains details about each of the customer's orders. ```json { + "admin_assisted_order": 987, "applied_coupons": [AppliedCoupon], "applied_gift_cards": [ApplyGiftCardToOrder], "available_actions": ["REORDER"], @@ -554,7 +560,7 @@ Contains details about each of the customer's orders. "credit_memos": [CreditMemo], "custom_attributes": [CustomAttribute], "customer_info": OrderCustomerInfo, - "email": "xyz789", + "email": "abc123", "gift_message": GiftMessage, "gift_receipt_included": false, "gift_wrapping": GiftWrapping, @@ -565,7 +571,7 @@ Contains details about each of the customer's orders. "items_eligible_for_return": [OrderItemInterface], "negotiable_quote": NegotiableQuote, "number": "abc123", - "order_date": "xyz789", + "order_date": "abc123", "order_status_change_date": "abc123", "payment_methods": [OrderPaymentMethod], "printed_card_included": false, @@ -573,8 +579,8 @@ Contains details about each of the customer's orders. "shipments": [OrderShipment], "shipping_address": OrderAddress, "shipping_method": "xyz789", - "status": "abc123", - "token": "xyz789", + "status": "xyz789", + "token": "abc123", "total": OrderTotal } ``` @@ -636,7 +642,7 @@ The collection of orders that match the conditions defined in the filter. ```json { - "date_of_first_order": "xyz789", + "date_of_first_order": "abc123", "items": [CustomerOrder], "page_info": SearchResultPageInfo, "total_count": 987 @@ -720,7 +726,7 @@ Customer segment details #### Example ```json -{"uid": "4"} +{"uid": 4} ``` @@ -743,7 +749,7 @@ Contains store credit information with balance and history. { "balance_history": CustomerStoreCreditHistory, "current_balance": Money, - "enabled": false + "enabled": true } ``` @@ -790,7 +796,7 @@ Contains store credit history information. ```json { - "action": "xyz789", + "action": "abc123", "actual_balance": Money, "balance_change": Money, "date_time_changed": "abc123" @@ -841,16 +847,16 @@ An input object for updating a customer. ```json { - "allow_remote_shopping_assistance": true, + "allow_remote_shopping_assistance": false, "custom_attributes": [AttributeValueInput], - "date_of_birth": "abc123", + "date_of_birth": "xyz789", "firstname": "abc123", - "gender": 123, - "is_subscribed": true, - "lastname": "xyz789", + "gender": 987, + "is_subscribed": false, + "lastname": "abc123", "middlename": "xyz789", - "prefix": "abc123", - "suffix": "xyz789", + "prefix": "xyz789", + "suffix": "abc123", "taxvat": "xyz789" } ``` @@ -876,11 +882,11 @@ Contains information about a text area that is defined as part of a customizable ```json { - "product_sku": "xyz789", - "required": false, + "product_sku": "abc123", + "required": true, "sort_order": 123, "title": "xyz789", - "uid": "4", + "uid": 4, "value": CustomizableAreaValue } ``` @@ -906,10 +912,10 @@ Defines the price and sku of a product whose page contains a customized text are ```json { "max_characters": 987, - "price": 987.65, + "price": 123.45, "price_type": "FIXED", "sku": "abc123", - "uid": "4" + "uid": 4 } ``` @@ -936,7 +942,7 @@ Contains information about a set of checkbox values that are defined as part of "required": false, "sort_order": 123, "title": "abc123", - "uid": "4", + "uid": 4, "value": [CustomizableCheckboxValue] } ``` @@ -963,12 +969,12 @@ Defines the price and sku of a product whose page contains a customized set of c ```json { - "option_type_id": 987, + "option_type_id": 123, "price": 987.65, "price_type": "FIXED", "sku": "abc123", - "sort_order": 123, - "title": "abc123", + "sort_order": 987, + "title": "xyz789", "uid": "4" } ``` @@ -996,7 +1002,7 @@ Contains information about a date picker that is defined as part of a customizab { "product_sku": "xyz789", "required": true, - "sort_order": 987, + "sort_order": 123, "title": "abc123", "uid": "4", "value": CustomizableDateValue @@ -1043,11 +1049,11 @@ Defines the price and sku of a product whose page contains a customized date pic ```json { - "price": 123.45, + "price": 987.65, "price_type": "FIXED", - "sku": "abc123", + "sku": "xyz789", "type": "DATE", - "uid": "4" + "uid": 4 } ``` @@ -1071,7 +1077,7 @@ Contains information about a drop down menu that is defined as part of a customi ```json { - "required": true, + "required": false, "sort_order": 123, "title": "abc123", "uid": 4, @@ -1101,11 +1107,11 @@ Defines the price and sku of a product whose page contains a customized drop dow ```json { - "option_type_id": 987, + "option_type_id": 123, "price": 987.65, "price_type": "FIXED", "sku": "abc123", - "sort_order": 123, + "sort_order": 987, "title": "abc123", "uid": "4" } @@ -1132,11 +1138,11 @@ Contains information about a text field that is defined as part of a customizabl ```json { - "product_sku": "xyz789", + "product_sku": "abc123", "required": true, - "sort_order": 987, + "sort_order": 123, "title": "xyz789", - "uid": "4", + "uid": 4, "value": CustomizableFieldValue } ``` @@ -1161,11 +1167,11 @@ Defines the price and sku of a product whose page contains a customized text fie ```json { - "max_characters": 123, - "price": 123.45, + "max_characters": 987, + "price": 987.65, "price_type": "FIXED", - "sku": "xyz789", - "uid": 4 + "sku": "abc123", + "uid": "4" } ``` @@ -1190,11 +1196,11 @@ Contains information about a file picker that is defined as part of a customizab ```json { - "product_sku": "abc123", + "product_sku": "xyz789", "required": true, "sort_order": 987, "title": "xyz789", - "uid": 4, + "uid": "4", "value": CustomizableFileValue } ``` @@ -1221,10 +1227,10 @@ Defines the price and sku of a product whose page contains a customized file pic ```json { - "file_extension": "xyz789", - "image_size_x": 987, + "file_extension": "abc123", + "image_size_x": 123, "image_size_y": 123, - "price": 123.45, + "price": 987.65, "price_type": "FIXED", "sku": "xyz789", "uid": 4 @@ -1252,9 +1258,9 @@ Contains information about a multiselect that is defined as part of a customizab ```json { "required": false, - "sort_order": 123, - "title": "xyz789", - "uid": "4", + "sort_order": 987, + "title": "abc123", + "uid": 4, "value": [CustomizableMultipleValue] } ``` @@ -1281,7 +1287,7 @@ Defines the price and sku of a product whose page contains a customized multisel ```json { - "option_type_id": 987, + "option_type_id": 123, "price": 987.65, "price_type": "FIXED", "sku": "abc123", @@ -1307,7 +1313,7 @@ Defines a customizable option. #### Example ```json -{"uid": 4, "value_string": "xyz789"} +{"uid": 4, "value_string": "abc123"} ``` @@ -1345,7 +1351,7 @@ Contains basic information about a customizable option. It can be implemented by "required": true, "sort_order": 987, "title": "xyz789", - "uid": "4" + "uid": 4 } ``` @@ -1401,7 +1407,7 @@ Contains information about a set of radio buttons that are defined as part of a "required": true, "sort_order": 123, "title": "xyz789", - "uid": "4", + "uid": 4, "value": [CustomizableRadioValue] } ``` @@ -1428,13 +1434,13 @@ Defines the price and sku of a product whose page contains a customized set of r ```json { - "option_type_id": 987, - "price": 987.65, + "option_type_id": 123, + "price": 123.45, "price_type": "FIXED", - "sku": "abc123", + "sku": "xyz789", "sort_order": 123, "title": "xyz789", - "uid": 4 + "uid": "4" } ``` @@ -1465,7 +1471,7 @@ Contains the response to the request to delete the company role. #### Example ```json -{"success": false} +{"success": true} ``` @@ -1519,7 +1525,7 @@ Contains the results of the request to delete a compare list. #### Example ```json -{"result": true} +{"result": false} ``` @@ -1558,7 +1564,7 @@ Contains details about a failed delete operation on a negotiable quote. ```json { "errors": [NegotiableQuoteInvalidStateError], - "quote_uid": 4 + "quote_uid": "4" } ``` @@ -1594,7 +1600,7 @@ Specifies the quote template id of the quote template to delete #### Example ```json -{"template_id": 4} +{"template_id": "4"} ``` @@ -1610,7 +1616,7 @@ Specifies the quote template id of the quote template to delete #### Example ```json -{"quote_uids": ["4"]} +{"quote_uids": [4]} ``` @@ -1767,7 +1773,7 @@ Indicates whether the request to delete the requisition list was successful. #### Example ```json -{"requisition_lists": RequisitionLists, "status": false} +{"requisition_lists": RequisitionLists, "status": true} ``` @@ -1815,7 +1821,7 @@ Specifies the discount type and value for quote line item. "applied_to": "ITEM", "coupon": AppliedCoupon, "is_discounting_locked": true, - "label": "abc123", + "label": "xyz789", "type": "xyz789", "value": 123.45 } @@ -1831,15 +1837,17 @@ An implementation for downloadable product cart items. | Field Name | Description | |------------|-------------| +| `backorder_message` - [`String`](#string) | Customer-facing hint when the line is salable on notify backorders with insufficient physical quantity; null otherwise. | | `custom_attributes` - [`[CustomAttribute]`](#customattribute) | The custom attributes for the cart item | | `customizable_options` - [`[SelectedCustomizableOption]!`](#selectedcustomizableoption) | An array containing the customizable options the shopper selected. | | `discount` - [`[Discount]`](#discount) | Contains discount for quote line item. | | `errors` - [`[CartItemError]`](#cartitemerror) | An array of errors encountered while loading the cart item | -| `is_available` - [`Boolean!`](#boolean) | True if requested quantity is less than available stock, false otherwise. | +| `is_available` - [`Boolean!`](#boolean) | True if requested quantity is less than available stock, false otherwise. *(Deprecated: Use `is_salable` instead. It indicates whether the line can be purchased, including backorder configuration.)* | +| `is_salable` - [`Boolean!`](#boolean) | True when the item can be purchased and should not block checkout: stock status is in stock and either physical quantity covers the requested quantity or backorders are allowed. | | `links` - [`[DownloadableProductLinks]`](#downloadableproductlinks) | An array containing information about the links for the downloadable product added to the cart. | | `max_qty` - [`Float`](#float) | Line item max qty in quote template | | `min_qty` - [`Float`](#float) | Line item min qty in quote template | -| `not_available_message` - [`String`](#string) | Message to display when the product is not available with this selected option. | +| `not_available_message` - [`String`](#string) | Shortage or unavailability message for the line; null when the item is salable. | | `note_from_buyer` - [`[ItemNote]`](#itemnote) | The buyer's quote line item note. | | `note_from_seller` - [`[ItemNote]`](#itemnote) | The seller's quote line item note. | | `prices` - [`CartItemPrices`](#cartitemprices) | Contains details about the price of the item, including taxes and discounts. | @@ -1852,14 +1860,16 @@ An implementation for downloadable product cart items. ```json { + "backorder_message": "abc123", "custom_attributes": [CustomAttribute], "customizable_options": [SelectedCustomizableOption], "discount": [Discount], "errors": [CartItemError], "is_available": true, + "is_salable": false, "links": [DownloadableProductLinks], - "max_qty": 123.45, - "min_qty": 987.65, + "max_qty": 987.65, + "min_qty": 123.45, "not_available_message": "abc123", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], @@ -1900,9 +1910,9 @@ Defines downloadable product options for `CreditMemoItemInterface`. "downloadable_links": [DownloadableItemsLinks], "id": "4", "order_item": OrderItemInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "xyz789", + "product_sku": "abc123", "quantity_refunded": 987.65 } ``` @@ -1936,9 +1946,9 @@ Defines downloadable product options for `InvoiceItemInterface`. "downloadable_links": [DownloadableItemsLinks], "id": 4, "order_item": OrderItemInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "abc123", + "product_sku": "xyz789", "quantity_invoiced": 987.65 } ``` @@ -1962,8 +1972,8 @@ Defines characteristics of the links for downloadable product. ```json { "sort_order": 123, - "title": "xyz789", - "uid": "4" + "title": "abc123", + "uid": 4 } ``` @@ -2009,27 +2019,27 @@ Defines downloadable product options for `OrderItemInterface`. "custom_attributes": [CustomAttribute], "discounts": [Discount], "downloadable_links": [DownloadableItemsLinks], - "eligible_for_return": true, + "eligible_for_return": false, "entered_options": [OrderItemOption], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "id": "4", + "id": 4, "prices": OrderItemPrices, "product": ProductInterface, "product_name": "abc123", "product_sale_price": Money, - "product_sku": "abc123", - "product_type": "xyz789", - "product_url_key": "xyz789", + "product_sku": "xyz789", + "product_type": "abc123", + "product_url_key": "abc123", "quantity_canceled": 987.65, "quantity_invoiced": 123.45, "quantity_ordered": 987.65, - "quantity_refunded": 987.65, - "quantity_return_requested": 987.65, - "quantity_returned": 123.45, + "quantity_refunded": 123.45, + "quantity_return_requested": 123.45, + "quantity_returned": 987.65, "quantity_shipped": 123.45, "selected_options": [OrderItemOption], - "status": "xyz789" + "status": "abc123" } ``` @@ -2094,7 +2104,7 @@ Defines a product that the shopper downloads. { "canonical_url": "xyz789", "categories": [CategoryInterface], - "country_of_manufacture": "abc123", + "country_of_manufacture": "xyz789", "crosssell_products": [ProductInterface], "custom_attributesV2": ProductCustomAttributes, "description": ComplexTextValue, @@ -2108,26 +2118,26 @@ Defines a product that the shopper downloads. "gift_wrapping_available": false, "gift_wrapping_price": Money, "image": ProductImage, - "is_returnable": "abc123", - "links_purchased_separately": 987, - "links_title": "abc123", + "is_returnable": "xyz789", + "links_purchased_separately": 123, + "links_title": "xyz789", "manufacturer": 123, "max_sale_qty": 123.45, "media_gallery": [MediaGalleryInterface], - "meta_description": "abc123", - "meta_keyword": "xyz789", + "meta_description": "xyz789", + "meta_keyword": "abc123", "meta_title": "abc123", - "min_sale_qty": 987.65, - "name": "abc123", + "min_sale_qty": 123.45, + "name": "xyz789", "new_from_date": "abc123", - "new_to_date": "xyz789", - "only_x_left_in_stock": 123.45, + "new_to_date": "abc123", + "only_x_left_in_stock": 987.65, "options": [CustomizableOptionInterface], "options_container": "abc123", "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], - "quantity": 987.65, + "quantity": 123.45, "related_products": [ProductInterface], "short_description": ComplexTextValue, "sku": "abc123", @@ -2135,11 +2145,11 @@ Defines a product that the shopper downloads. "special_price": 987.65, "special_to_date": "xyz789", "stock_status": "IN_STOCK", - "swatch_image": "abc123", + "swatch_image": "xyz789", "thumbnail": ProductImage, "uid": 4, "upsell_products": [ProductInterface], - "url_key": "xyz789" + "url_key": "abc123" } ``` @@ -2190,10 +2200,10 @@ Defines characteristics of a downloadable product. ```json { "price": 123.45, - "sample_url": "xyz789", - "sort_order": 987, - "title": "abc123", - "uid": 4 + "sample_url": "abc123", + "sort_order": 123, + "title": "xyz789", + "uid": "4" } ``` @@ -2233,9 +2243,9 @@ Defines characteristics of a downloadable product. ```json { - "sample_url": "abc123", + "sample_url": "xyz789", "sort_order": 987, - "title": "abc123" + "title": "xyz789" } ``` @@ -2266,7 +2276,7 @@ Contains details about downloadable products added to a requisition list. "product": ProductInterface, "quantity": 123.45, "samples": [DownloadableProductSamples], - "sku": "abc123", + "sku": "xyz789", "uid": 4 } ``` @@ -2294,13 +2304,13 @@ A downloadable product wish list item. ```json { - "added_at": "abc123", + "added_at": "xyz789", "customizable_options": [SelectedCustomizableOption], - "description": "xyz789", + "description": "abc123", "id": "4", "links_v2": [DownloadableProductLinks], "product": ProductInterface, - "quantity": 123.45, + "quantity": 987.65, "samples": [DownloadableProductSamples] } ``` @@ -2321,7 +2331,10 @@ Identifies a quote to be duplicated #### Example ```json -{"duplicated_quote_uid": 4, "quote_uid": 4} +{ + "duplicated_quote_uid": 4, + "quote_uid": "4" +} ``` @@ -2359,8 +2372,8 @@ Contains details about a custom text attribute that the buyer entered. ```json { - "attribute_code": "abc123", - "value": "xyz789" + "attribute_code": "xyz789", + "value": "abc123" } ``` @@ -2408,7 +2421,7 @@ An error encountered while adding an item to the the cart. ```json { "code": "PRODUCT_NOT_FOUND", - "message": "abc123" + "message": "xyz789" } ``` @@ -2455,7 +2468,7 @@ Contains details about an address. ```json { "country_code": "AF", - "postcode": "xyz789", + "postcode": "abc123", "region": CustomerAddressRegionInput } ``` @@ -2536,7 +2549,7 @@ Contains customer token for external customer. ```json { "customer": Customer, - "token": "abc123" + "token": "xyz789" } ``` @@ -2583,11 +2596,11 @@ Lists the exchange rate. "code": "abc123", "is_visible": true, "payment_intent": "xyz789", - "payment_source": "xyz789", + "payment_source": "abc123", "sdk_params": [SDKParams], - "sort_order": "xyz789", + "sort_order": "abc123", "three_ds_mode": "OFF", - "title": "xyz789" + "title": "abc123" } ``` @@ -2609,7 +2622,7 @@ Fastlane Payment inputs ```json { "payment_source": "abc123", - "paypal_fastlane_token": "abc123" + "paypal_fastlane_token": "xyz789" } ``` @@ -2691,7 +2704,7 @@ Defines a filter that performs a fuzzy search. #### Example ```json -{"match": "xyz789", "match_type": "FULL"} +{"match": "abc123", "match_type": "FULL"} ``` @@ -2711,7 +2724,7 @@ Defines a filter that matches a range of values, such as prices or dates. ```json { - "from": "abc123", + "from": "xyz789", "to": "abc123" } ``` @@ -2732,7 +2745,7 @@ Defines a filter that matches a range of values, such as prices or dates. ```json { - "name": "xyz789", + "name": "abc123", "type": "UNKNOWN_FILTER_RULE_TYPE", "conditions": [ConditionInput] } @@ -2774,9 +2787,9 @@ Defines a filter for an input string. ```json { - "eq": "abc123", + "eq": "xyz789", "in": ["xyz789"], - "match": "xyz789" + "match": "abc123" } ``` @@ -2811,18 +2824,18 @@ Defines the comparison operators that can be used in a filter. { "eq": "abc123", "from": "abc123", - "gt": "xyz789", + "gt": "abc123", "gteq": "xyz789", "in": ["xyz789"], - "like": "abc123", + "like": "xyz789", "lt": "xyz789", "lteq": "xyz789", - "moreq": "xyz789", - "neq": "abc123", + "moreq": "abc123", + "neq": "xyz789", "nin": ["xyz789"], "notnull": "abc123", - "null": "abc123", - "to": "abc123" + "null": "xyz789", + "to": "xyz789" } ``` @@ -2845,10 +2858,10 @@ Contains product attributes that can be used for filtering in a `productSearch` ```json { - "attribute": "abc123", + "attribute": "xyz789", "frontendInput": "abc123", "label": "abc123", - "numeric": true + "numeric": false } ``` @@ -2941,7 +2954,7 @@ Contains the generated customer token. #### Example ```json -{"customer_token": "xyz789"} +{"customer_token": "abc123"} ``` @@ -2959,7 +2972,7 @@ Specifies the template id, from which to generate quote from. #### Example ```json -{"template_id": 4} +{"template_id": "4"} ``` @@ -3017,8 +3030,8 @@ Contains details about the gift card account. ```json { "balance": Money, - "code": "xyz789", - "expiration_date": "xyz789" + "code": "abc123", + "expiration_date": "abc123" } ``` @@ -3037,7 +3050,7 @@ Contains the gift card code. #### Example ```json -{"gift_card_code": "xyz789"} +{"gift_card_code": "abc123"} ``` @@ -3060,9 +3073,9 @@ Contains the value of a gift card, the website that generated the card, and rela ```json { - "attribute_id": 987, + "attribute_id": 123, "uid": 4, - "value": 987.65, + "value": 123.45, "website_id": 123, "website_value": 987.65 } @@ -3080,17 +3093,19 @@ Contains details about a gift card that has been added to a cart. |------------|-------------| | `amount` - [`Money!`](#money) | The amount and currency of the gift card. | | `available_gift_wrapping` - [`[GiftWrapping]!`](#giftwrapping) | The list of available gift wrapping options for the cart item. | +| `backorder_message` - [`String`](#string) | Customer-facing hint when the line is salable on notify backorders with insufficient physical quantity; null otherwise. | | `custom_attributes` - [`[CustomAttribute]`](#customattribute) | The custom attributes for the cart item | | `customizable_options` - [`[SelectedCustomizableOption]!`](#selectedcustomizableoption) | An array of customizations applied to the gift card. | | `discount` - [`[Discount]`](#discount) | Contains discount for quote line item. | | `errors` - [`[CartItemError]`](#cartitemerror) | An array of errors encountered while loading the cart item | | `gift_message` - [`GiftMessage`](#giftmessage) | The entered gift message data for the gift card cart item | | `gift_wrapping` - [`GiftWrapping`](#giftwrapping) | The selected gift wrapping option for the cart item. | -| `is_available` - [`Boolean!`](#boolean) | True if requested quantity is less than available stock, false otherwise. | +| `is_available` - [`Boolean!`](#boolean) | True if requested quantity is less than available stock, false otherwise. *(Deprecated: Use `is_salable` instead. It indicates whether the line can be purchased, including backorder configuration.)* | +| `is_salable` - [`Boolean!`](#boolean) | True when the item can be purchased and should not block checkout: stock status is in stock and either physical quantity covers the requested quantity or backorders are allowed. | | `max_qty` - [`Float`](#float) | Line item max qty in quote template | | `message` - [`String`](#string) | The message from the sender to the recipient. | | `min_qty` - [`Float`](#float) | Line item min qty in quote template | -| `not_available_message` - [`String`](#string) | Message to display when the product is not available with this selected option. | +| `not_available_message` - [`String`](#string) | Shortage or unavailability message for the line; null when the item is salable. | | `note_from_buyer` - [`[ItemNote]`](#itemnote) | The buyer's quote line item note. | | `note_from_seller` - [`[ItemNote]`](#itemnote) | The seller's quote line item note. | | `prices` - [`CartItemPrices`](#cartitemprices) | Contains details about the price of the item, including taxes and discounts. | @@ -3108,6 +3123,7 @@ Contains details about a gift card that has been added to a cart. { "amount": Money, "available_gift_wrapping": [GiftWrapping], + "backorder_message": "abc123", "custom_attributes": [CustomAttribute], "customizable_options": [SelectedCustomizableOption], "discount": [Discount], @@ -3115,19 +3131,20 @@ Contains details about a gift card that has been added to a cart. "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, "is_available": true, - "max_qty": 123.45, + "is_salable": false, + "max_qty": 987.65, "message": "xyz789", "min_qty": 987.65, - "not_available_message": "abc123", + "not_available_message": "xyz789", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, "quantity": 123.45, - "recipient_email": "xyz789", + "recipient_email": "abc123", "recipient_name": "abc123", - "sender_email": "xyz789", - "sender_name": "xyz789", + "sender_email": "abc123", + "sender_name": "abc123", "uid": "4" } ``` @@ -3157,11 +3174,11 @@ Contains details about a gift card that has been added to a cart. "custom_attributes": [CustomAttribute], "discounts": [Discount], "gift_card": GiftCardItem, - "id": "4", + "id": 4, "order_item": OrderItemInterface, - "product_name": "xyz789", + "product_name": "abc123", "product_sale_price": Money, - "product_sku": "abc123", + "product_sku": "xyz789", "quantity_refunded": 987.65 } ``` @@ -3193,10 +3210,10 @@ Contains details about a gift card that has been added to a cart. "gift_card": GiftCardItem, "id": "4", "order_item": OrderItemInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "abc123", - "quantity_invoiced": 123.45 + "product_sku": "xyz789", + "quantity_invoiced": 987.65 } ``` @@ -3220,11 +3237,11 @@ Contains details about a gift card. ```json { - "message": "abc123", - "recipient_email": "abc123", - "recipient_name": "xyz789", + "message": "xyz789", + "recipient_email": "xyz789", + "recipient_name": "abc123", "sender_email": "abc123", - "sender_name": "abc123" + "sender_name": "xyz789" } ``` @@ -3252,11 +3269,11 @@ Contains details about the sender, recipient, and amount of a gift card. { "amount": Money, "custom_giftcard_amount": Money, - "message": "xyz789", + "message": "abc123", "recipient_email": "xyz789", "recipient_name": "abc123", "sender_email": "xyz789", - "sender_name": "xyz789" + "sender_name": "abc123" } ``` @@ -3304,18 +3321,18 @@ Contains details about the sender, recipient, and amount of a gift card. "gift_card": GiftCardItem, "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "id": "4", + "id": 4, "prices": OrderItemPrices, "product": ProductInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "xyz789", + "product_sku": "abc123", "product_type": "xyz789", - "product_url_key": "xyz789", + "product_url_key": "abc123", "quantity_canceled": 123.45, - "quantity_invoiced": 987.65, + "quantity_invoiced": 123.45, "quantity_ordered": 987.65, - "quantity_refunded": 987.65, + "quantity_refunded": 123.45, "quantity_return_requested": 123.45, "quantity_returned": 123.45, "quantity_shipped": 987.65, @@ -3390,8 +3407,8 @@ Defines properties of a gift card. ```json { - "allow_message": false, - "allow_open_amount": true, + "allow_message": true, + "allow_open_amount": false, "canonical_url": "xyz789", "categories": [CategoryInterface], "country_of_manufacture": "xyz789", @@ -3405,39 +3422,39 @@ Defines properties of a gift card. "giftcard_amounts": [GiftCardAmounts], "giftcard_type": "VIRTUAL", "image": ProductImage, - "is_redeemable": false, + "is_redeemable": true, "is_returnable": "xyz789", - "lifetime": 123, + "lifetime": 987, "manufacturer": 987, "max_sale_qty": 123.45, "media_gallery": [MediaGalleryInterface], "message_max_length": 987, - "meta_description": "xyz789", + "meta_description": "abc123", "meta_keyword": "xyz789", - "meta_title": "abc123", + "meta_title": "xyz789", "min_sale_qty": 123.45, "name": "abc123", - "new_from_date": "xyz789", - "new_to_date": "xyz789", + "new_from_date": "abc123", + "new_to_date": "abc123", "only_x_left_in_stock": 987.65, - "open_amount_max": 987.65, - "open_amount_min": 987.65, + "open_amount_max": 123.45, + "open_amount_min": 123.45, "options": [CustomizableOptionInterface], - "options_container": "xyz789", + "options_container": "abc123", "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], "quantity": 123.45, "related_products": [ProductInterface], "short_description": ComplexTextValue, - "sku": "xyz789", + "sku": "abc123", "small_image": ProductImage, - "special_price": 123.45, + "special_price": 987.65, "special_to_date": "xyz789", "stock_status": "IN_STOCK", - "swatch_image": "xyz789", + "swatch_image": "abc123", "thumbnail": ProductImage, - "uid": 4, + "uid": "4", "upsell_products": [ProductInterface], "url_key": "abc123", "weight": 987.65 @@ -3468,9 +3485,9 @@ Contains details about gift cards added to a requisition list. "customizable_options": [SelectedCustomizableOption], "gift_card_options": GiftCardOptions, "product": ProductInterface, - "quantity": 123.45, + "quantity": 987.65, "sku": "abc123", - "uid": 4 + "uid": "4" } ``` @@ -3497,10 +3514,10 @@ Contains details about gift cards added to a requisition list. "gift_card": GiftCardItem, "id": "4", "order_item": OrderItemInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, "product_sku": "abc123", - "quantity_shipped": 987.65 + "quantity_shipped": 123.45 } ``` @@ -3546,13 +3563,13 @@ A single gift card added to a wish list. ```json { - "added_at": "abc123", + "added_at": "xyz789", "customizable_options": [SelectedCustomizableOption], "description": "xyz789", "gift_card_options": GiftCardOptions, - "id": "4", + "id": 4, "product": ProductInterface, - "quantity": 123.45 + "quantity": 987.65 } ``` @@ -3575,7 +3592,7 @@ Contains the text of a gift message, its sender, and recipient ```json { "from": "xyz789", - "message": "xyz789", + "message": "abc123", "to": "xyz789" } ``` @@ -3598,7 +3615,7 @@ Defines a gift message. ```json { - "from": "xyz789", + "from": "abc123", "message": "abc123", "to": "abc123" } @@ -3672,7 +3689,7 @@ Contains details about a gift registry. "shipping_address": CustomerAddress, "status": "ACTIVE", "type": GiftRegistryType, - "uid": 4 + "uid": "4" } ``` @@ -3693,10 +3710,10 @@ Contains details about a gift registry. ```json { - "code": 4, + "code": "4", "group": "EVENT_INFORMATION", "label": "abc123", - "value": "abc123" + "value": "xyz789" } ``` @@ -3739,10 +3756,7 @@ Defines a dynamic attribute. #### Example ```json -{ - "code": "4", - "value": "abc123" -} +{"code": 4, "value": "xyz789"} ``` @@ -3770,7 +3784,7 @@ Defines a dynamic attribute. { "code": 4, "label": "xyz789", - "value": "xyz789" + "value": "abc123" } ``` @@ -3794,8 +3808,8 @@ Defines a dynamic attribute. ```json { "attribute_group": "xyz789", - "code": "4", - "input_type": "abc123", + "code": 4, + "input_type": "xyz789", "is_required": true, "label": "abc123", "sort_order": 123 @@ -3827,12 +3841,12 @@ Defines a dynamic attribute. ```json { - "attribute_group": "abc123", - "code": "4", + "attribute_group": "xyz789", + "code": 4, "input_type": "abc123", "is_required": true, - "label": "abc123", - "sort_order": 987 + "label": "xyz789", + "sort_order": 123 } ``` @@ -3855,11 +3869,11 @@ Defines a dynamic attribute. ```json { - "created_at": "abc123", + "created_at": "xyz789", "note": "abc123", "product": ProductInterface, "quantity": 123.45, - "quantity_fulfilled": 987.65, + "quantity_fulfilled": 123.45, "uid": "4" } ``` @@ -3893,8 +3907,8 @@ Defines a dynamic attribute. "note": "xyz789", "product": ProductInterface, "quantity": 987.65, - "quantity_fulfilled": 987.65, - "uid": "4" + "quantity_fulfilled": 123.45, + "uid": 4 } ``` @@ -3921,7 +3935,7 @@ Contains the status and any errors that encountered with the customer's gift reg ```json { - "status": true, + "status": false, "user_errors": [GiftRegistryItemsUserError] } ``` @@ -3948,8 +3962,8 @@ Contains details about an error that occurred when processing a gift registry it { "code": "OUT_OF_STOCK", "gift_registry_item_uid": 4, - "gift_registry_uid": "4", - "message": "abc123", + "gift_registry_uid": 4, + "message": "xyz789", "product_uid": "4" } ``` @@ -4040,10 +4054,10 @@ Contains details about a registrant. "dynamic_attributes": [ GiftRegistryRegistrantDynamicAttribute ], - "email": "xyz789", + "email": "abc123", "firstname": "abc123", "lastname": "abc123", - "uid": "4" + "uid": 4 } ``` @@ -4065,7 +4079,7 @@ Contains details about a registrant. { "code": 4, "label": "abc123", - "value": "abc123" + "value": "xyz789" } ``` @@ -4090,7 +4104,7 @@ Contains the results of a gift registry search. ```json { - "event_date": "xyz789", + "event_date": "abc123", "event_title": "abc123", "gift_registry_uid": 4, "location": "abc123", @@ -4119,7 +4133,7 @@ Defines a shipping address for a gift registry. Specify either `address_data` or { "address_data": CustomerAddressInput, "address_id": 4, - "customer_address_uid": 4 + "customer_address_uid": "4" } ``` @@ -4187,10 +4201,10 @@ Contains details about the selected or available gift wrapping options. ```json { - "design": "abc123", + "design": "xyz789", "image": GiftWrappingImage, "price": Money, - "uid": 4 + "uid": "4" } ``` @@ -4211,8 +4225,8 @@ Points to an image associated with a gift wrapping option. ```json { - "label": "abc123", - "url": "xyz789" + "label": "xyz789", + "url": "abc123" } ``` @@ -4232,8 +4246,8 @@ Points to an image associated with a gift wrapping option. ```json { - "color": "abc123", - "height": 987, + "color": "xyz789", + "height": 123, "type": "xyz789" } ``` @@ -4261,14 +4275,14 @@ Points to an image associated with a gift wrapping option. ```json { "button_styles": GooglePayButtonStyles, - "code": "abc123", - "is_visible": false, - "payment_intent": "xyz789", - "payment_source": "xyz789", + "code": "xyz789", + "is_visible": true, + "payment_intent": "abc123", + "payment_source": "abc123", "sdk_params": [SDKParams], "sort_order": "abc123", "three_ds_mode": "OFF", - "title": "abc123" + "title": "xyz789" } ``` @@ -4290,9 +4304,9 @@ Google Pay inputs ```json { - "payment_source": "abc123", + "payment_source": "xyz789", "payments_order_id": "xyz789", - "paypal_order_id": "abc123" + "paypal_order_id": "xyz789" } ``` @@ -4352,30 +4366,30 @@ Defines a grouped product, which consists of simple standalone products that are ```json { - "canonical_url": "abc123", + "canonical_url": "xyz789", "categories": [CategoryInterface], "country_of_manufacture": "xyz789", "crosssell_products": [ProductInterface], "custom_attributesV2": ProductCustomAttributes, "description": ComplexTextValue, - "gift_message_available": true, + "gift_message_available": false, "gift_wrapping_available": true, "gift_wrapping_price": Money, "image": ProductImage, - "is_returnable": "abc123", + "is_returnable": "xyz789", "items": [GroupedProductItem], "manufacturer": 123, - "max_sale_qty": 987.65, + "max_sale_qty": 123.45, "media_gallery": [MediaGalleryInterface], - "meta_description": "abc123", + "meta_description": "xyz789", "meta_keyword": "abc123", "meta_title": "abc123", - "min_sale_qty": 987.65, - "name": "xyz789", - "new_from_date": "xyz789", - "new_to_date": "xyz789", + "min_sale_qty": 123.45, + "name": "abc123", + "new_from_date": "abc123", + "new_to_date": "abc123", "only_x_left_in_stock": 123.45, - "options_container": "xyz789", + "options_container": "abc123", "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], @@ -4387,9 +4401,9 @@ Defines a grouped product, which consists of simple standalone products that are "special_price": 987.65, "special_to_date": "xyz789", "stock_status": "IN_STOCK", - "swatch_image": "xyz789", + "swatch_image": "abc123", "thumbnail": ProductImage, - "uid": "4", + "uid": 4, "upsell_products": [ProductInterface], "url_key": "xyz789", "weight": 987.65 @@ -4441,10 +4455,10 @@ A grouped product wish list item. ```json { - "added_at": "xyz789", + "added_at": "abc123", "customizable_options": [SelectedCustomizableOption], - "description": "xyz789", - "id": "4", + "description": "abc123", + "id": 4, "product": ProductInterface, "quantity": 123.45 } @@ -4491,7 +4505,7 @@ Input to retrieve an order based on details. ```json { "email": "xyz789", - "lastname": "xyz789", + "lastname": "abc123", "number": "abc123" } ``` @@ -4541,11 +4555,11 @@ Item note data that is added to the negotiable quote history object. ```json { - "created_at": "xyz789", + "created_at": "abc123", "creator_name": "abc123", - "creator_type": "xyz789", - "item_id": 987, - "note": "abc123", + "creator_type": "abc123", + "item_id": 123, + "note": "xyz789", "product_name": "xyz789" } ``` @@ -4574,17 +4588,17 @@ Item note data that is added to the negotiable quote history object. ```json { - "cc_vault_code": "abc123", - "code": "xyz789", + "cc_vault_code": "xyz789", + "code": "abc123", "is_vault_enabled": false, - "is_visible": true, + "is_visible": false, "payment_intent": "abc123", - "payment_source": "abc123", - "requires_card_details": true, + "payment_source": "xyz789", + "requires_card_details": false, "sdk_params": [SDKParams], "sort_order": "xyz789", "three_ds_mode": "OFF", - "title": "abc123" + "title": "xyz789" } ``` @@ -4612,15 +4626,15 @@ Hosted Fields payment inputs ```json { - "cardBin": "abc123", - "cardExpiryMonth": "abc123", + "cardBin": "xyz789", + "cardExpiryMonth": "xyz789", "cardExpiryYear": "xyz789", - "cardLast4": "xyz789", - "holderName": "xyz789", + "cardLast4": "abc123", + "holderName": "abc123", "is_active_payment_token_enabler": true, "payment_source": "abc123", "payments_order_id": "xyz789", - "paypal_order_id": "xyz789" + "paypal_order_id": "abc123" } ``` @@ -4651,13 +4665,35 @@ The `ID` scalar type represents a unique identifier, often used to refetch an ob ```json { - "thumbnail": "abc123", + "thumbnail": "xyz789", "value": "xyz789" } ``` +### ImportSharedRequisitionListOutput + +Result of importing a shared requisition list. + +#### Fields + +| Field Name | Description | +|------------|-------------| +| `requisition_list` - [`RequisitionList`](#requisitionlist) | The imported requisition list for the current customer. | +| `user_errors` - [`[ShareRequisitionListUserError]!`](#sharerequisitionlistusererror) | Validation or import issues. | + +#### Example + +```json +{ + "requisition_list": RequisitionList, + "user_errors": [ShareRequisitionListUserError] +} +``` + + + ### InputFilterEnum List of templates/filters applied to customer attribute input. @@ -4695,7 +4731,7 @@ List of templates/filters applied to customer attribute input. ```json { "code": "PRODUCT_NOT_FOUND", - "message": "abc123", + "message": "xyz789", "quantity": 987.65 } ``` @@ -4709,7 +4745,7 @@ The `Int` scalar type represents non-fractional signed whole numeric values. Int #### Example ```json -987 +123 ``` @@ -4755,7 +4791,7 @@ Contains invoice details. "custom_attributes": [CustomAttribute], "id": 4, "items": [InvoiceItemInterface], - "number": "xyz789", + "number": "abc123", "total": InvoiceTotal } ``` @@ -4805,7 +4841,7 @@ Defines an invoice custom attributes. { "custom_attributes": [CustomAttribute], "discounts": [Discount], - "id": 4, + "id": "4", "order_item": OrderItemInterface, "product_name": "abc123", "product_sale_price": Money, @@ -4833,8 +4869,8 @@ Defines an invoice item custom attributes. ```json { "custom_attributes": [CustomAttributeInput], - "invoice_id": "xyz789", - "invoice_item_id": "xyz789" + "invoice_id": "abc123", + "invoice_item_id": "abc123" } ``` @@ -4872,11 +4908,11 @@ Contains detailes about invoiced items. { "custom_attributes": [CustomAttribute], "discounts": [Discount], - "id": "4", + "id": 4, "order_item": OrderItemInterface, "product_name": "abc123", "product_sale_price": Money, - "product_sku": "xyz789", + "product_sku": "abc123", "quantity_invoiced": 123.45 } ``` @@ -4948,7 +4984,7 @@ Contains the response of a company admin email validation query. #### Example ```json -{"is_email_available": true} +{"is_email_available": false} ``` @@ -4966,7 +5002,7 @@ Contains the response of a company email validation query. #### Example ```json -{"is_email_available": true} +{"is_email_available": false} ``` @@ -4984,7 +5020,7 @@ Contains the response of a role name validation query. #### Example ```json -{"is_role_name_available": true} +{"is_role_name_available": false} ``` @@ -5002,7 +5038,7 @@ Contains the response of a company user email validation query. #### Example ```json -{"is_email_available": true} +{"is_email_available": false} ``` @@ -5020,7 +5056,7 @@ Contains the result of the `isEmailAvailable` query. #### Example ```json -{"is_email_available": false} +{"is_email_available": true} ``` @@ -5037,7 +5073,7 @@ Contains the result of the `isEmailAvailable` query. #### Example ```json -{"type": "UNKNOWN_ISOPERATOR_TYPE", "value": true} +{"type": "UNKNOWN_ISOPERATOR_TYPE", "value": false} ``` @@ -5096,10 +5132,10 @@ The note object for quote line item. ```json { - "created_at": "xyz789", + "created_at": "abc123", "creator_id": 987, - "creator_name": "abc123", - "creator_type": 123, + "creator_name": "xyz789", + "creator_type": 987, "negotiable_quote_item_uid": 4, "note": "abc123", "note_uid": 4 @@ -5124,8 +5160,8 @@ A list of options of the selected bundle product. ```json { - "label": "abc123", - "uid": 4, + "label": "xyz789", + "uid": "4", "values": [ItemSelectedBundleOptionValue] } ``` @@ -5151,9 +5187,9 @@ A list of values for the selected bundle product. ```json { "price": Money, - "product_name": "abc123", - "product_sku": "abc123", - "quantity": 123.45, + "product_name": "xyz789", + "product_sku": "xyz789", + "quantity": 987.65, "uid": "4" } ``` @@ -5187,7 +5223,7 @@ Contains a key-value pair. ```json { - "name": "abc123", + "name": "xyz789", "value": "abc123" } ``` @@ -5210,8 +5246,8 @@ Sets quote item note. ```json { - "note": "xyz789", - "quote_item_uid": 4, + "note": "abc123", + "quote_item_uid": "4", "quote_uid": "4" } ``` @@ -5244,7 +5280,7 @@ Contains basic information about a product image or video. ```json { - "disabled": false, + "disabled": true, "label": "xyz789", "position": 123, "url": "abc123" @@ -5286,7 +5322,7 @@ Enumeration of media resource types #### Example ```json -{"type": "xyz789"} +{"type": "abc123"} ``` @@ -5304,7 +5340,7 @@ Enumeration of media resource types ```json { - "layout": "abc123", + "layout": "xyz789", "logo": MessageStyleLogo } ``` @@ -5325,7 +5361,7 @@ Defines a monetary value, including a numeric value and a currency code. #### Example ```json -{"currency": "AFN", "value": 987.65} +{"currency": "AFN", "value": 123.45} ``` @@ -5367,7 +5403,7 @@ An input object that defines the items in a requisition list to be moved. #### Example ```json -{"requisitionListItemUids": ["4"]} +{"requisitionListItemUids": [4]} ``` @@ -5410,8 +5446,8 @@ Move Line Item to Requisition List. ```json { - "quote_item_uid": 4, - "quote_uid": 4, + "quote_item_uid": "4", + "quote_uid": "4", "requisition_list_uid": "4" } ``` @@ -5503,7 +5539,7 @@ Contains details about a negotiable quote. "created_at": "xyz789", "custom_attributes": [CustomAttribute], "email": "abc123", - "expiration_date": "xyz789", + "expiration_date": "abc123", "history": [NegotiableQuoteHistoryEntry], "is_virtual": true, "items": [CartItemInterface], @@ -5514,9 +5550,9 @@ Contains details about a negotiable quote. "selected_payment_method": SelectedPaymentMethod, "shipping_addresses": [NegotiableQuoteShippingAddress], "status": "SUBMITTED", - "template_id": "4", + "template_id": 4, "template_name": "abc123", - "total_quantity": 987.65, + "total_quantity": 123.45, "uid": "4", "updated_at": "abc123" } @@ -5539,7 +5575,7 @@ Defines the company's country. ```json { - "code": "xyz789", + "code": "abc123", "label": "abc123" } ``` @@ -5578,21 +5614,21 @@ Defines the billing or shipping address to be applied to the cart. { "city": "xyz789", "company": "xyz789", - "country_code": "xyz789", + "country_code": "abc123", "custom_attributes": [AttributeValueInput], "fax": "xyz789", - "firstname": "abc123", - "lastname": "xyz789", + "firstname": "xyz789", + "lastname": "abc123", "middlename": "abc123", - "postcode": "abc123", + "postcode": "xyz789", "prefix": "abc123", "region": "xyz789", "region_id": 123, - "save_in_address_book": true, + "save_in_address_book": false, "street": ["abc123"], "suffix": "abc123", "telephone": "xyz789", - "vat_id": "abc123" + "vat_id": "xyz789" } ``` @@ -5633,23 +5669,23 @@ Defines the billing or shipping address to be applied to the cart. ```json { - "city": "xyz789", - "company": "abc123", + "city": "abc123", + "company": "xyz789", "country": NegotiableQuoteAddressCountry, "custom_attributes": [AttributeValueInterface], - "customer_address_uid": "4", - "fax": "xyz789", - "firstname": "abc123", - "lastname": "abc123", - "middlename": "xyz789", - "postcode": "xyz789", - "prefix": "abc123", + "customer_address_uid": 4, + "fax": "abc123", + "firstname": "xyz789", + "lastname": "xyz789", + "middlename": "abc123", + "postcode": "abc123", + "prefix": "xyz789", "region": NegotiableQuoteAddressRegion, "street": ["abc123"], - "suffix": "xyz789", + "suffix": "abc123", "telephone": "abc123", - "uid": "4", - "vat_id": "abc123" + "uid": 4, + "vat_id": "xyz789" } ``` @@ -5672,8 +5708,8 @@ Defines the company's state or province. ```json { "code": "abc123", - "label": "xyz789", - "region_id": 987 + "label": "abc123", + "region_id": 123 } ``` @@ -5708,22 +5744,22 @@ Defines the company's state or province. ```json { "city": "xyz789", - "company": "abc123", + "company": "xyz789", "country": NegotiableQuoteAddressCountry, "custom_attributes": [AttributeValueInterface], - "customer_address_uid": 4, - "fax": "abc123", - "firstname": "abc123", - "lastname": "xyz789", - "middlename": "xyz789", - "postcode": "abc123", + "customer_address_uid": "4", + "fax": "xyz789", + "firstname": "xyz789", + "lastname": "abc123", + "middlename": "abc123", + "postcode": "xyz789", "prefix": "abc123", "region": NegotiableQuoteAddressRegion, "street": ["xyz789"], "suffix": "xyz789", - "telephone": "xyz789", + "telephone": "abc123", "uid": "4", - "vat_id": "abc123" + "vat_id": "xyz789" } ``` @@ -5747,9 +5783,9 @@ Defines the billing address. ```json { "address": NegotiableQuoteAddressInput, - "customer_address_uid": "4", - "same_as_shipping": true, - "use_for_shipping": false + "customer_address_uid": 4, + "same_as_shipping": false, + "use_for_shipping": true } ``` @@ -5776,7 +5812,7 @@ Contains a single plain text comment from either the buyer or seller. { "attachments": [NegotiableQuoteCommentAttachment], "author": NegotiableQuoteUser, - "created_at": "xyz789", + "created_at": "abc123", "creator_type": "BUYER", "text": "xyz789", "uid": "4" @@ -5801,7 +5837,7 @@ Negotiable quote comment file attachment. ```json { "name": "abc123", - "url": "xyz789" + "url": "abc123" } ``` @@ -5858,7 +5894,7 @@ Contains the commend provided by the buyer. ```json { "attachments": [NegotiableQuoteCommentAttachmentInput], - "comment": "xyz789" + "comment": "abc123" } ``` @@ -5880,8 +5916,8 @@ Contains custom log entries added by third-party extensions. ```json { - "new_value": "xyz789", - "old_value": "xyz789", + "new_value": "abc123", + "old_value": "abc123", "title": "abc123" } ``` @@ -5980,7 +6016,7 @@ Contains details about a change for a negotiable quote. "author": NegotiableQuoteUser, "change_type": "CREATED", "changes": NegotiableQuoteHistoryChanges, - "created_at": "abc123", + "created_at": "xyz789", "item_note": HistoryItemNoteData, "uid": 4 } @@ -6023,7 +6059,7 @@ Contains a new expiration date and the previous date. ```json { "new_expiration": "abc123", - "old_expiration": "xyz789" + "old_expiration": "abc123" } ``` @@ -6044,7 +6080,7 @@ Contains lists of products that have been removed from the catalog and negotiabl ```json { - "products_removed_from_catalog": ["4"], + "products_removed_from_catalog": [4], "products_removed_from_quote": [ProductInterface] } ``` @@ -6186,10 +6222,10 @@ Contains a reference document link for a negotiable quote template. ```json { - "document_identifier": "xyz789", - "document_name": "abc123", - "link_id": 4, - "reference_document_url": "abc123" + "document_identifier": "abc123", + "document_name": "xyz789", + "link_id": "4", + "reference_document_url": "xyz789" } ``` @@ -6226,13 +6262,13 @@ Contains a reference document link for a negotiable quote template. ```json { "available_shipping_methods": [AvailableShippingMethod], - "city": "abc123", - "company": "abc123", + "city": "xyz789", + "company": "xyz789", "country": NegotiableQuoteAddressCountry, "custom_attributes": [AttributeValueInterface], - "customer_address_uid": "4", + "customer_address_uid": 4, "fax": "xyz789", - "firstname": "abc123", + "firstname": "xyz789", "lastname": "abc123", "middlename": "abc123", "postcode": "abc123", @@ -6241,9 +6277,9 @@ Contains a reference document link for a negotiable quote template. "selected_shipping_method": SelectedShippingMethod, "street": ["abc123"], "suffix": "abc123", - "telephone": "xyz789", - "uid": "4", - "vat_id": "abc123" + "telephone": "abc123", + "uid": 4, + "vat_id": "xyz789" } ``` @@ -6266,8 +6302,8 @@ Defines shipping addresses for the negotiable quote. ```json { "address": NegotiableQuoteAddressInput, - "customer_address_uid": "4", - "customer_notes": "abc123" + "customer_address_uid": 4, + "customer_notes": "xyz789" } ``` @@ -6372,27 +6408,27 @@ Contains details about a negotiable quote template. "buyer": NegotiableQuoteUser, "comments": [NegotiableQuoteComment], "created_at": "xyz789", - "expiration_date": "abc123", + "expiration_date": "xyz789", "history": [NegotiableQuoteHistoryEntry], "historyV2": [NegotiableQuoteTemplateHistoryEntry], "is_min_max_qty_used": false, - "is_virtual": true, + "is_virtual": false, "items": [CartItemInterface], - "max_order_commitment": 123, - "min_order_commitment": 987, + "max_order_commitment": 987, + "min_order_commitment": 123, "name": "xyz789", "notifications": [QuoteTemplateNotificationMessage], "prices": CartPrices, "reference_document_links": [ NegotiableQuoteReferenceDocumentLink ], - "sales_rep_name": "xyz789", + "sales_rep_name": "abc123", "shipping_addresses": [NegotiableQuoteShippingAddress], "status": "xyz789", "template_id": 4, "total_quantity": 123.45, "uid": "4", - "updated_at": "abc123" + "updated_at": "xyz789" } ``` @@ -6419,91 +6455,3 @@ Defines a filter to limit the negotiable quotes to return. ``` - -### NegotiableQuoteTemplateGridItem - -Contains data for a negotiable quote template in a grid. - -#### Fields - -| Field Name | Description | -|------------|-------------| -| `activated_at` - [`String!`](#string) | The date and time the negotiable quote template was activated. | -| `company_name` - [`String!`](#string) | Company name the quote template is assigned to | -| `created_at` - [`String!`](#string) | Timestamp indicating when the negotiable quote template was created. | -| `expiration_date` - [`String!`](#string) | The expiration period of the negotiable quote template. | -| `is_min_max_qty_used` - [`Boolean!`](#boolean) | Indicates whether the minimum and maximum quantity settings are used. | -| `last_ordered_at` - [`String!`](#string) | Timestamp indicating when the last negotiable quote template order was placed. | -| `last_shared_at` - [`String!`](#string) | The date and time the negotiable quote template was last shared. | -| `max_order_commitment` - [`Int!`](#int) | Commitment for maximum orders | -| `min_negotiated_grand_total` - [`Float!`](#float) | The minimum negotiated grand total of the negotiable quote template. | -| `min_order_commitment` - [`Int!`](#int) | Commitment for minimum orders | -| `name` - [`String!`](#string) | The title assigned to the negotiable quote template. | -| `orders_placed` - [`Int!`](#int) | The number of orders placed for the negotiable quote template. | -| `prices` - [`CartPrices`](#cartprices) | A set of subtotals and totals applied to the negotiable quote template. | -| `sales_rep_name` - [`String!`](#string) | The first and last name of the sales representative. | -| `state` - [`String!`](#string) | State of the negotiable quote template. | -| `status` - [`String!`](#string) | The status of the negotiable quote template. | -| `submitted_by` - [`String!`](#string) | The first and last name of the buyer. | -| `template_id` - [`ID!`](#id) | The unique ID of a `NegotiableQuoteTemplate` object. | -| `uid` - [`ID!`](#id) | The unique ID of a `NegotiableQuoteTemplate` object. | -| `updated_at` - [`String!`](#string) | Timestamp indicating when the negotiable quote template was updated. | - -#### Example - -```json -{ - "activated_at": "xyz789", - "company_name": "abc123", - "created_at": "abc123", - "expiration_date": "abc123", - "is_min_max_qty_used": true, - "last_ordered_at": "xyz789", - "last_shared_at": "abc123", - "max_order_commitment": 987, - "min_negotiated_grand_total": 987.65, - "min_order_commitment": 123, - "name": "xyz789", - "orders_placed": 123, - "prices": CartPrices, - "sales_rep_name": "xyz789", - "state": "abc123", - "status": "abc123", - "submitted_by": "abc123", - "template_id": 4, - "uid": 4, - "updated_at": "abc123" -} -``` - - - -### NegotiableQuoteTemplateHistoryChanges - -Contains a list of changes to a negotiable quote template. - -#### Fields - -| Field Name | Description | -|------------|-------------| -| `comment_added` - [`NegotiableQuoteHistoryCommentChange`](#negotiablequotehistorycommentchange) | The comment provided with a change in the negotiable quote history. | -| `custom_changes` - [`NegotiableQuoteCustomLogChange`](#negotiablequotecustomlogchange) | Lists log entries added by third-party extensions. | -| `expiration` - [`NegotiableQuoteHistoryExpirationChange`](#negotiablequotehistoryexpirationchange) | The expiration date of the negotiable quote before and after a change in the quote history. | -| `products_removed` - [`NegotiableQuoteHistoryProductsRemovedChange`](#negotiablequotehistoryproductsremovedchange) | Lists products that were removed as a result of a change in the quote history. | -| `statuses` - [`NegotiableQuoteTemplateHistoryStatusesChange`](#negotiablequotetemplatehistorystatuseschange) | The status before and after a change in the negotiable quote template history. | -| `total` - [`NegotiableQuoteHistoryTotalChange`](#negotiablequotehistorytotalchange) | The total amount of the negotiable quote before and after a change in the quote history. | - -#### Example - -```json -{ - "comment_added": NegotiableQuoteHistoryCommentChange, - "custom_changes": NegotiableQuoteCustomLogChange, - "expiration": NegotiableQuoteHistoryExpirationChange, - "products_removed": NegotiableQuoteHistoryProductsRemovedChange, - "statuses": NegotiableQuoteTemplateHistoryStatusesChange, - "total": NegotiableQuoteHistoryTotalChange -} -``` - - diff --git a/src/pages/includes/autogenerated/graphql-api-saas-types-3.md b/src/pages/includes/autogenerated/graphql-api-saas-types-3.md index b03817516..af9ce26c7 100644 --- a/src/pages/includes/autogenerated/graphql-api-saas-types-3.md +++ b/src/pages/includes/autogenerated/graphql-api-saas-types-3.md @@ -1,3 +1,91 @@ +### NegotiableQuoteTemplateGridItem + +Contains data for a negotiable quote template in a grid. + +#### Fields + +| Field Name | Description | +|------------|-------------| +| `activated_at` - [`String!`](#string) | The date and time the negotiable quote template was activated. | +| `company_name` - [`String!`](#string) | Company name the quote template is assigned to | +| `created_at` - [`String!`](#string) | Timestamp indicating when the negotiable quote template was created. | +| `expiration_date` - [`String!`](#string) | The expiration period of the negotiable quote template. | +| `is_min_max_qty_used` - [`Boolean!`](#boolean) | Indicates whether the minimum and maximum quantity settings are used. | +| `last_ordered_at` - [`String!`](#string) | Timestamp indicating when the last negotiable quote template order was placed. | +| `last_shared_at` - [`String!`](#string) | The date and time the negotiable quote template was last shared. | +| `max_order_commitment` - [`Int!`](#int) | Commitment for maximum orders | +| `min_negotiated_grand_total` - [`Float!`](#float) | The minimum negotiated grand total of the negotiable quote template. | +| `min_order_commitment` - [`Int!`](#int) | Commitment for minimum orders | +| `name` - [`String!`](#string) | The title assigned to the negotiable quote template. | +| `orders_placed` - [`Int!`](#int) | The number of orders placed for the negotiable quote template. | +| `prices` - [`CartPrices`](#cartprices) | A set of subtotals and totals applied to the negotiable quote template. | +| `sales_rep_name` - [`String!`](#string) | The first and last name of the sales representative. | +| `state` - [`String!`](#string) | State of the negotiable quote template. | +| `status` - [`String!`](#string) | The status of the negotiable quote template. | +| `submitted_by` - [`String!`](#string) | The first and last name of the buyer. | +| `template_id` - [`ID!`](#id) | The unique ID of a `NegotiableQuoteTemplate` object. | +| `uid` - [`ID!`](#id) | The unique ID of a `NegotiableQuoteTemplate` object. | +| `updated_at` - [`String!`](#string) | Timestamp indicating when the negotiable quote template was updated. | + +#### Example + +```json +{ + "activated_at": "abc123", + "company_name": "xyz789", + "created_at": "xyz789", + "expiration_date": "xyz789", + "is_min_max_qty_used": false, + "last_ordered_at": "xyz789", + "last_shared_at": "abc123", + "max_order_commitment": 123, + "min_negotiated_grand_total": 987.65, + "min_order_commitment": 987, + "name": "abc123", + "orders_placed": 987, + "prices": CartPrices, + "sales_rep_name": "abc123", + "state": "abc123", + "status": "xyz789", + "submitted_by": "xyz789", + "template_id": "4", + "uid": "4", + "updated_at": "abc123" +} +``` + + + +### NegotiableQuoteTemplateHistoryChanges + +Contains a list of changes to a negotiable quote template. + +#### Fields + +| Field Name | Description | +|------------|-------------| +| `comment_added` - [`NegotiableQuoteHistoryCommentChange`](#negotiablequotehistorycommentchange) | The comment provided with a change in the negotiable quote history. | +| `custom_changes` - [`NegotiableQuoteCustomLogChange`](#negotiablequotecustomlogchange) | Lists log entries added by third-party extensions. | +| `expiration` - [`NegotiableQuoteHistoryExpirationChange`](#negotiablequotehistoryexpirationchange) | The expiration date of the negotiable quote before and after a change in the quote history. | +| `products_removed` - [`NegotiableQuoteHistoryProductsRemovedChange`](#negotiablequotehistoryproductsremovedchange) | Lists products that were removed as a result of a change in the quote history. | +| `statuses` - [`NegotiableQuoteTemplateHistoryStatusesChange`](#negotiablequotetemplatehistorystatuseschange) | The status before and after a change in the negotiable quote template history. | +| `total` - [`NegotiableQuoteHistoryTotalChange`](#negotiablequotehistorytotalchange) | The total amount of the negotiable quote before and after a change in the quote history. | + +#### Example + +```json +{ + "comment_added": NegotiableQuoteHistoryCommentChange, + "custom_changes": NegotiableQuoteCustomLogChange, + "expiration": NegotiableQuoteHistoryExpirationChange, + "products_removed": NegotiableQuoteHistoryProductsRemovedChange, + "statuses": NegotiableQuoteTemplateHistoryStatusesChange, + "total": NegotiableQuoteHistoryTotalChange +} +``` + + + ### NegotiableQuoteTemplateHistoryEntry Contains details about a change for a negotiable quote template. @@ -19,7 +107,7 @@ Contains details about a change for a negotiable quote template. "author": NegotiableQuoteUser, "change_type": "CREATED", "changes": NegotiableQuoteTemplateHistoryChanges, - "created_at": "abc123", + "created_at": "xyz789", "uid": "4" } ``` @@ -41,8 +129,8 @@ Lists a new status change applied to a negotiable quote template and the previou ```json { - "new_status": "xyz789", - "old_status": "xyz789" + "new_status": "abc123", + "old_status": "abc123" } ``` @@ -82,12 +170,7 @@ Specifies the updated quantity of an item. #### Example ```json -{ - "item_id": "4", - "max_qty": 987.65, - "min_qty": 987.65, - "quantity": 123.45 -} +{"item_id": 4, "max_qty": 987.65, "min_qty": 123.45, "quantity": 123.45} ``` @@ -110,7 +193,7 @@ Defines the reference document link to add to a negotiable quote template. ```json { "document_identifier": "abc123", - "document_name": "xyz789", + "document_name": "abc123", "link_id": 4, "reference_document_url": "abc123" } @@ -136,7 +219,7 @@ Defines shipping addresses for the negotiable quote template. { "address": NegotiableQuoteAddressInput, "customer_address_uid": 4, - "customer_notes": "abc123" + "customer_notes": "xyz789" } ``` @@ -221,7 +304,7 @@ Contains a list of negotiable templates that match the specified filter. #### Example ```json -{"quote_uid": "4"} +{"quote_uid": 4} ``` @@ -239,7 +322,7 @@ Contains details about a successful operation on a negotiable quote. #### Example ```json -{"quote_uid": 4} +{"quote_uid": "4"} ``` @@ -259,8 +342,8 @@ A limited view of a Buyer or Seller in the negotiable quote process. ```json { - "firstname": "xyz789", - "lastname": "xyz789" + "firstname": "abc123", + "lastname": "abc123" } ``` @@ -306,10 +389,7 @@ Contains an error message when an invalid UID was specified. #### Example ```json -{ - "message": "xyz789", - "uid": "4" -} +{"message": "abc123", "uid": 4} ``` @@ -361,7 +441,7 @@ Contains an error message when an invalid UID was specified. ```json { - "backend_integration_url": "abc123", + "backend_integration_url": "xyz789", "custom_config": [CustomConfigKeyValue] } ``` @@ -381,7 +461,7 @@ Specifies the quote template id to open quote template. #### Example ```json -{"template_id": "4"} +{"template_id": 4} ``` @@ -479,22 +559,22 @@ Contains detailed information about an order's billing and shipping addresses. ```json { - "city": "abc123", + "city": "xyz789", "company": "xyz789", "country_code": "AF", "custom_attributesV2": [AttributeValueInterface], - "fax": "abc123", + "fax": "xyz789", "firstname": "abc123", "lastname": "abc123", "middlename": "abc123", "postcode": "xyz789", - "prefix": "abc123", - "region": "xyz789", - "region_id": "4", - "street": ["abc123"], - "suffix": "abc123", - "telephone": "abc123", - "vat_id": "abc123" + "prefix": "xyz789", + "region": "abc123", + "region_id": 4, + "street": ["xyz789"], + "suffix": "xyz789", + "telephone": "xyz789", + "vat_id": "xyz789" } ``` @@ -516,10 +596,10 @@ Contains detailed information about an order's billing and shipping addresses. ```json { - "firstname": "abc123", - "lastname": "abc123", - "middlename": "xyz789", - "prefix": "abc123", + "firstname": "xyz789", + "lastname": "xyz789", + "middlename": "abc123", + "prefix": "xyz789", "suffix": "abc123" } ``` @@ -569,18 +649,18 @@ Contains detailed information about an order's billing and shipping addresses. "id": 4, "prices": OrderItemPrices, "product": ProductInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, - "product_sku": "abc123", + "product_sku": "xyz789", "product_type": "abc123", - "product_url_key": "abc123", + "product_url_key": "xyz789", "quantity_canceled": 987.65, - "quantity_invoiced": 123.45, + "quantity_invoiced": 987.65, "quantity_ordered": 987.65, "quantity_refunded": 987.65, - "quantity_return_requested": 987.65, - "quantity_returned": 123.45, - "quantity_shipped": 123.45, + "quantity_return_requested": 123.45, + "quantity_returned": 987.65, + "quantity_shipped": 987.65, "selected_options": [OrderItemOption], "status": "xyz789" } @@ -640,23 +720,23 @@ Order item details. "entered_options": [OrderItemOption], "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, - "id": 4, + "id": "4", "prices": OrderItemPrices, "product": ProductInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, "product_sku": "abc123", "product_type": "xyz789", - "product_url_key": "xyz789", + "product_url_key": "abc123", "quantity_canceled": 987.65, - "quantity_invoiced": 123.45, - "quantity_ordered": 987.65, + "quantity_invoiced": 987.65, + "quantity_ordered": 123.45, "quantity_refunded": 123.45, "quantity_return_requested": 123.45, - "quantity_returned": 987.65, - "quantity_shipped": 123.45, + "quantity_returned": 123.45, + "quantity_shipped": 987.65, "selected_options": [OrderItemOption], - "status": "xyz789" + "status": "abc123" } ``` @@ -767,7 +847,7 @@ Contains order shipment details. "comments": [SalesCommentItem], "id": 4, "items": [ShipmentItemInterface], - "number": "abc123", + "number": "xyz789", "tracking": [ShipmentTracking] } ``` @@ -787,7 +867,7 @@ Input to retrieve an order based on token. #### Example ```json -{"token": "abc123"} +{"token": "xyz789"} ``` @@ -838,26 +918,6 @@ Contains details about the sales total amounts used to calculate the final price -### PageInfo - -Provides pagination information for navigating through paginated result sets. - -#### Fields - -| Field Name | Description | -|------------|-------------| -| `currentPage` - [`Int!`](#int) | The current page number (1-based indexing). | -| `pageSize` - [`Int!`](#int) | The number of items per page. | -| `totalPages` - [`Int!`](#int) | The total number of pages available. | - -#### Example - -```json -{"currentPage": 987, "pageSize": 987, "totalPages": 123} -``` - - - ### PageType Type of page on which recommendations are requested @@ -896,7 +956,7 @@ Defines the payment attribute. ```json { - "key": "xyz789", + "key": "abc123", "value": "abc123" } ``` @@ -934,9 +994,9 @@ Contains payment fields that are common to all types of payment methods. { "code": "abc123", "is_visible": true, - "payment_intent": "xyz789", + "payment_intent": "abc123", "sdk_params": [SDKParams], - "sort_order": "xyz789", + "sort_order": "abc123", "title": "abc123" } ``` @@ -1016,14 +1076,14 @@ Defines the payment method. ```json { "additional_data": [PaymentAttributeInput], - "code": "xyz789", + "code": "abc123", "payment_services_paypal_apple_pay": ApplePayMethodInput, "payment_services_paypal_fastlane": FastlaneMethodInput, "payment_services_paypal_google_pay": GooglePayMethodInput, "payment_services_paypal_hosted_fields": HostedFieldsInput, "payment_services_paypal_smart_buttons": SmartButtonMethodInput, "payment_services_paypal_vault": VaultMethodInput, - "purchase_order_number": "xyz789" + "purchase_order_number": "abc123" } ``` @@ -1046,10 +1106,10 @@ Contains the payment order details ```json { - "id": "abc123", + "id": "xyz789", "mp_order_id": "abc123", "payment_source_details": PaymentSourceDetails, - "status": "abc123" + "status": "xyz789" } ``` @@ -1068,7 +1128,7 @@ Contains the payment order details ```json { - "code": "xyz789", + "code": "abc123", "params": [SDKParams] } ``` @@ -1144,9 +1204,9 @@ The stored payment method available to the customer. ```json { - "details": "abc123", + "details": "xyz789", "payment_method_code": "xyz789", - "public_hash": "xyz789", + "public_hash": "abc123", "type": "card" } ``` @@ -1195,7 +1255,7 @@ Contains attributes specific to tangible products. #### Example ```json -{"weight": 987.65} +{"weight": 123.45} ``` @@ -1228,8 +1288,8 @@ Defines Pickup Location information. ```json { - "city": "xyz789", - "contact_name": "xyz789", + "city": "abc123", + "contact_name": "abc123", "country_id": "abc123", "description": "xyz789", "email": "xyz789", @@ -1237,11 +1297,11 @@ Defines Pickup Location information. "latitude": 123.45, "longitude": 123.45, "name": "xyz789", - "phone": "xyz789", - "pickup_location_code": "abc123", - "postcode": "xyz789", + "phone": "abc123", + "pickup_location_code": "xyz789", + "postcode": "abc123", "region": "abc123", - "region_id": 987, + "region_id": 123, "street": "xyz789" } ``` @@ -1604,7 +1664,7 @@ Specifies the amount and type of price adjustment. #### Example ```json -{"amount": 987.65, "code": "abc123"} +{"amount": 123.45, "code": "xyz789"} ``` @@ -1626,7 +1686,7 @@ Can be used to retrieve the main price details in case of bundle product ```json { "discount_percentage": 123.45, - "main_final_price": 123.45, + "main_final_price": 987.65, "main_price": 123.45 } ``` @@ -1705,7 +1765,7 @@ Defines whether a bundle product's price is displayed as the lowest possible val #### Example ```json -{"sku": "abc123"} +{"sku": "xyz789"} ``` @@ -1721,7 +1781,7 @@ Defines whether a bundle product's price is displayed as the lowest possible val #### Example ```json -{"sku": "abc123"} +{"sku": "xyz789"} ``` @@ -1738,7 +1798,7 @@ Defines whether a bundle product's price is displayed as the lowest possible val #### Example ```json -{"message": "xyz789", "success": false} +{"message": "abc123", "success": false} ``` @@ -1759,7 +1819,7 @@ Contains a product attribute code and value. ```json { "code": "xyz789", - "value": "abc123" + "value": "xyz789" } ``` @@ -1781,9 +1841,9 @@ Contains a product attribute code and value. ```json { "attribute_type": "abc123", - "code": 4, - "url": "abc123", - "value": "abc123" + "code": "4", + "url": "xyz789", + "value": "xyz789" } ``` @@ -1825,7 +1885,7 @@ Contains the discount applied to a product price. #### Example ```json -{"amount_off": 123.45, "percent_off": 123.45} +{"amount_off": 987.65, "percent_off": 123.45} ``` @@ -1847,7 +1907,7 @@ Contains product image information, including the image URL and label. ```json { - "disabled": true, + "disabled": false, "label": "xyz789", "position": 123, "url": "abc123" @@ -1961,37 +2021,37 @@ Contains fields that are common to all types of products. "crosssell_products": [ProductInterface], "custom_attributesV2": ProductCustomAttributes, "description": ComplexTextValue, - "gift_message_available": false, - "gift_wrapping_available": true, + "gift_message_available": true, + "gift_wrapping_available": false, "gift_wrapping_price": Money, "image": ProductImage, "is_returnable": "abc123", - "manufacturer": 123, + "manufacturer": 987, "max_sale_qty": 123.45, "media_gallery": [MediaGalleryInterface], - "meta_description": "xyz789", + "meta_description": "abc123", "meta_keyword": "xyz789", "meta_title": "xyz789", "min_sale_qty": 987.65, "name": "abc123", - "new_from_date": "abc123", + "new_from_date": "xyz789", "new_to_date": "xyz789", "only_x_left_in_stock": 123.45, "options_container": "abc123", "price_range": PriceRange, "price_tiers": [TierPrice], "product_links": [ProductLinksInterface], - "quantity": 123.45, + "quantity": 987.65, "related_products": [ProductInterface], "short_description": ComplexTextValue, "sku": "abc123", "small_image": ProductImage, "special_price": 123.45, - "special_to_date": "xyz789", + "special_to_date": "abc123", "stock_status": "IN_STOCK", - "swatch_image": "abc123", + "swatch_image": "xyz789", "thumbnail": ProductImage, - "uid": 4, + "uid": "4", "upsell_products": [ProductInterface], "url_key": "abc123" } @@ -2017,10 +2077,10 @@ An implementation of `ProductLinksInterface`. ```json { - "link_type": "abc123", - "linked_product_sku": "xyz789", - "linked_product_type": "xyz789", - "position": 123, + "link_type": "xyz789", + "linked_product_sku": "abc123", + "linked_product_type": "abc123", + "position": 987, "sku": "xyz789" } ``` @@ -2052,7 +2112,7 @@ Contains information about linked products, including the link type and product ```json { "link_type": "xyz789", - "linked_product_sku": "xyz789", + "linked_product_sku": "abc123", "linked_product_type": "abc123", "position": 123, "sku": "xyz789" @@ -2102,7 +2162,7 @@ Contains basic information about the video asset. ```json { "media_type": "xyz789", - "video_asset_id": "xyz789", + "video_asset_id": "abc123", "video_media_url": "xyz789" } ``` @@ -2129,10 +2189,10 @@ Contains a link to a video file and basic information about the video. ```json { "media_type": "xyz789", - "video_description": "xyz789", + "video_description": "abc123", "video_metadata": "xyz789", - "video_provider": "xyz789", - "video_title": "abc123", + "video_provider": "abc123", + "video_title": "xyz789", "video_url": "abc123" } ``` @@ -2212,9 +2272,9 @@ Contains the output of a `productSearch` query "facets": [Aggregation], "items": [ProductSearchItem], "page_info": SearchResultPageInfo, - "related_terms": ["abc123"], + "related_terms": ["xyz789"], "suggestions": ["abc123"], - "total_count": 123, + "total_count": 987, "warnings": [ProductSearchWarning] } ``` @@ -2256,7 +2316,7 @@ Structured warning with code and message for easier client handling ```json { "code": "abc123", - "message": "xyz789" + "message": "abc123" } ``` @@ -2337,7 +2397,6 @@ Defines the product fields available to the SimpleProductView and ComplexProduct | `url` - [`String`](#string) | Canonical URL of the product. *(Deprecated: This field is deprecated and will be removed.)* | | `urlKey` - [`String`](#string) | The URL key of the product. This is a unique identifier for the product that is used to create the product's URL. | | `links` - [`[ProductViewLink]`](#productviewlink) | A list of product links. For example, related, up-sell, and cross-sell links. | -| `categories` - [`[CategoryProductView!]`](#categoryproductview) | A list of categories in which the product is present. | | `queryType` - [`String`](#string) | Indicates if the product was retrieved from the primary or the backup query | | `visibility` - [`String`](#string) | Visibility setting of the product | @@ -2356,23 +2415,22 @@ Defines the product fields available to the SimpleProductView and ComplexProduct "inStock": false, "lowStock": true, "attributes": [ProductViewAttribute], - "description": "abc123", + "description": "xyz789", "id": "4", "images": [ProductViewImage], "videos": [ProductViewVideo], "lastModifiedAt": "2007-12-03T10:15:30Z", - "metaDescription": "xyz789", - "metaKeyword": "abc123", + "metaDescription": "abc123", + "metaKeyword": "xyz789", "metaTitle": "abc123", "name": "xyz789", "shortDescription": "abc123", "inputOptions": [ProductViewInputOption], "sku": "abc123", "externalId": "xyz789", - "url": "xyz789", + "url": "abc123", "urlKey": "xyz789", "links": [ProductViewLink], - "categories": [CategoryProductView], "queryType": "xyz789", "visibility": "abc123" } @@ -2397,9 +2455,9 @@ A container for customer-defined attributes that are displayed the storefront. ```json { - "label": "abc123", + "label": "xyz789", "name": "abc123", - "roles": ["abc123"], + "roles": ["xyz789"], "value": {} } ``` @@ -2611,7 +2669,7 @@ Contains details about a product image. { "label": "abc123", "roles": ["abc123"], - "url": "xyz789" + "url": "abc123" } ``` @@ -2641,15 +2699,15 @@ Product options provide a way to configure products by making selections of part ```json { "id": 4, - "title": "abc123", - "required": false, - "type": "abc123", + "title": "xyz789", + "required": true, + "type": "xyz789", "markupAmount": 987.65, "suffix": "xyz789", "sortOrder": 987, "range": ProductViewInputOptionRange, "imageSize": ProductViewInputOptionImageSize, - "fileExtensions": "abc123" + "fileExtensions": "xyz789" } ``` @@ -2669,7 +2727,7 @@ Dimensions of the image associated with the input option. #### Example ```json -{"width": 123, "height": 123} +{"width": 987, "height": 123} ``` @@ -2709,7 +2767,7 @@ The product link type. Contains details about product links for related products ```json { "product": ProductView, - "linkTypes": ["xyz789"] + "linkTypes": ["abc123"] } ``` @@ -2729,7 +2787,7 @@ Defines a monetary value, including a numeric value and a currency code. #### Example ```json -{"currency": "AED", "value": 987.65} +{"currency": "AED", "value": 123.45} ``` @@ -2752,9 +2810,9 @@ Product options provide a way to configure products by making selections of part ```json { - "id": "4", + "id": 4, "multi": true, - "required": false, + "required": true, "title": "xyz789", "values": [ProductViewOptionValue] } @@ -2787,8 +2845,8 @@ Defines the product fields available to the ProductViewOptionValueProduct and Pr ```json { "id": "4", - "title": "xyz789", - "inStock": false + "title": "abc123", + "inStock": true } ``` @@ -2810,9 +2868,9 @@ An implementation of ProductViewOptionValue for configuration values. ```json { - "id": "4", - "title": "xyz789", - "inStock": false + "id": 4, + "title": "abc123", + "inStock": true } ``` @@ -2842,7 +2900,7 @@ An implementation of ProductViewOptionValue that adds details about a simple pro "product": SimpleProductView, "quantity": 123.45, "title": "xyz789", - "inStock": true + "inStock": false } ``` @@ -2869,7 +2927,7 @@ An implementation of ProductViewOptionValueSwatch for swatches. "id": "4", "title": "xyz789", "type": "TEXT", - "value": "abc123", + "value": "xyz789", "inStock": true } ``` @@ -2896,7 +2954,7 @@ Base product price view. Contains the final price after discounts, the regular p "final": Price, "regular": Price, "tiers": [ProductViewTierPrice], - "roles": ["xyz789"] + "roles": ["abc123"] } ``` @@ -2995,7 +3053,7 @@ Minimum quantity (inclusive) required to activate this tier price. For example, #### Example ```json -{"gte": 123.45, "lt": 987.65} +{"gte": 987.65, "lt": 987.65} ``` @@ -3038,7 +3096,7 @@ Represents the results of a product variant search. ```json { "variants": [ProductViewVariant], - "cursor": "abc123" + "cursor": "xyz789" } ``` @@ -3062,7 +3120,7 @@ Contains details about a product video. For example, a video of the product bein ```json { "preview": ProductViewImage, - "url": "xyz789", + "url": "abc123", "description": "xyz789", "title": "abc123" } @@ -3127,8 +3185,8 @@ Contains details about a purchase order. "order": CustomerOrder, "quote": Cart, "status": "PENDING", - "uid": "4", - "updated_at": "xyz789" + "uid": 4, + "updated_at": "abc123" } ``` @@ -3195,7 +3253,7 @@ Contains details about a single event in the approval flow of the purchase order "name": "xyz789", "role": "abc123", "status": "PENDING", - "updated_at": "xyz789" + "updated_at": "abc123" } ``` @@ -3245,9 +3303,9 @@ Contains details about a purchase order approval rule. "applies_to_roles": [CompanyRole], "approver_roles": [CompanyRole], "condition": PurchaseOrderApprovalRuleConditionInterface, - "created_at": "abc123", - "created_by": "xyz789", - "description": "xyz789", + "created_at": "xyz789", + "created_by": "abc123", + "description": "abc123", "name": "abc123", "status": "ENABLED", "uid": "4", @@ -3341,7 +3399,7 @@ Contains approval rule condition details, including the quantity to be evaluated #### Example ```json -{"attribute": "GRAND_TOTAL", "operator": "MORE_THAN", "quantity": 987} +{"attribute": "GRAND_TOTAL", "operator": "MORE_THAN", "quantity": 123} ``` @@ -3366,9 +3424,9 @@ Defines a new purchase order approval rule. ```json { "applies_to": ["4"], - "approvers": ["4"], + "approvers": [4], "condition": CreatePurchaseOrderApprovalRuleConditionInput, - "description": "abc123", + "description": "xyz789", "name": "abc123", "status": "ENABLED" } @@ -3453,7 +3511,7 @@ Contains the approval rules that the customer can see. { "items": [PurchaseOrderApprovalRule], "page_info": SearchResultPageInfo, - "total_count": 987 + "total_count": 123 } ``` @@ -3477,8 +3535,8 @@ Contains details about a comment. ```json { "author": Customer, - "created_at": "abc123", - "text": "xyz789", + "created_at": "xyz789", + "text": "abc123", "uid": 4 } ``` @@ -3522,10 +3580,10 @@ Contains details about a status change. ```json { - "activity": "abc123", - "created_at": "abc123", + "activity": "xyz789", + "created_at": "xyz789", "message": "abc123", - "uid": "4" + "uid": 4 } ``` @@ -3547,7 +3605,7 @@ Contains details about approval roles applied to the purchase order and status c ```json { "events": [PurchaseOrderApprovalFlowEvent], - "rule_name": "xyz789" + "rule_name": "abc123" } ``` @@ -3595,7 +3653,7 @@ Contains a list of purchase orders. { "items": [PurchaseOrder], "page_info": SearchResultPageInfo, - "total_count": 987 + "total_count": 123 } ``` @@ -3661,8 +3719,8 @@ Defines the criteria to use to filter the list of purchase orders. { "company_purchase_orders": false, "created_date": FilterRangeTypeInput, - "my_approvals": false, - "require_my_approval": false, + "my_approvals": true, + "require_my_approval": true, "status": "PENDING" } ``` @@ -3723,7 +3781,7 @@ Sets quote template expiration date. ```json { - "expiration_date": "abc123", + "expiration_date": "xyz789", "template_id": "4" } ``` @@ -3748,7 +3806,7 @@ Sets quote item note. ```json { "item_id": "4", - "item_uid": 4, + "item_uid": "4", "note": "abc123", "templateId": "4" } @@ -3772,7 +3830,7 @@ Contains a notification message for a negotiable quote template. ```json { "message": "xyz789", - "type": "xyz789" + "type": "abc123" } ``` @@ -3796,8 +3854,8 @@ For use on numeric product fields ```json { "count": 987, - "from": 123.45, - "title": "xyz789", + "from": 987.65, + "title": "abc123", "to": 123.45 } ``` @@ -3852,7 +3910,7 @@ For use on numeric product fields #### Example ```json -{"from": 987.65, "to": 987.65} +{"from": 987.65, "to": 123.45} ``` @@ -3871,7 +3929,7 @@ For use on numeric product fields ```json { "configurations": ReCaptchaConfiguration, - "is_enabled": false + "is_enabled": true } ``` @@ -3899,13 +3957,13 @@ Contains reCAPTCHA form configuration details. ```json { "badge_position": "xyz789", - "language_code": "abc123", + "language_code": "xyz789", "minimum_score": 123.45, "re_captcha_type": "INVISIBLE", "technical_failure_message": "xyz789", "theme": "abc123", "validation_failure_message": "abc123", - "website_key": "xyz789" + "website_key": "abc123" } ``` @@ -3932,14 +3990,14 @@ Contains reCAPTCHA V3-Invisible configuration details. ```json { - "badge_position": "abc123", - "failure_message": "xyz789", + "badge_position": "xyz789", + "failure_message": "abc123", "forms": ["PLACE_ORDER"], - "is_enabled": false, - "language_code": "xyz789", + "is_enabled": true, + "language_code": "abc123", "minimum_score": 123.45, - "theme": "abc123", - "website_key": "xyz789" + "theme": "xyz789", + "website_key": "abc123" } ``` @@ -4030,19 +4088,21 @@ Recommendation Unit containing product and other details | `typeId` - [`String`](#string) | Type of recommendation | | `unitId` - [`String`](#string) | Id of the preconfigured unit | | `unitName` - [`String`](#string) | Name of the preconfigured unit | +| `userError` - [`String`](#string) | User error message if the unit could not be fully resolved (e.g. required currentSku was not provided) | #### Example ```json { - "displayOrder": 987, - "pageType": "xyz789", + "displayOrder": 123, + "pageType": "abc123", "productsView": [ProductView], - "storefrontLabel": "abc123", + "storefrontLabel": "xyz789", "totalProducts": 987, "typeId": "abc123", "unitId": "xyz789", - "unitName": "xyz789" + "unitName": "abc123", + "userError": "xyz789" } ``` @@ -4062,7 +4122,7 @@ Recommendations response #### Example ```json -{"results": [RecommendationUnit], "totalResults": 123} +{"results": [RecommendationUnit], "totalResults": 987} ``` @@ -4082,7 +4142,7 @@ Recommendations response ```json { "code": "xyz789", - "id": 123, + "id": 987, "name": "xyz789" } ``` @@ -4102,7 +4162,7 @@ Specifies the cart from which to remove a coupon. #### Example ```json -{"cart_id": "xyz789"} +{"cart_id": "abc123"} ``` @@ -4140,8 +4200,8 @@ Remove coupons from the cart. ```json { - "cart_id": "xyz789", - "coupon_codes": ["abc123"] + "cart_id": "abc123", + "coupon_codes": ["xyz789"] } ``` @@ -4162,8 +4222,8 @@ Defines the input required to run the `removeGiftCardFromCart` mutation. ```json { - "cart_id": "xyz789", - "gift_card_code": "abc123" + "cart_id": "abc123", + "gift_card_code": "xyz789" } ``` @@ -4218,7 +4278,7 @@ Contains the results of a request to delete a gift registry. #### Example ```json -{"success": true} +{"success": false} ``` @@ -4255,7 +4315,7 @@ Specifies which items to remove from the cart. #### Example ```json -{"cart_id": "abc123", "cart_item_uid": 4} +{"cart_id": "xyz789", "cart_item_uid": 4} ``` @@ -4292,7 +4352,7 @@ Defines the items to remove from the specified negotiable quote. #### Example ```json -{"quote_item_uids": [4], "quote_uid": 4} +{"quote_item_uids": [4], "quote_uid": "4"} ``` @@ -4329,7 +4389,7 @@ Defines the items to remove from the specified negotiable quote. #### Example ```json -{"item_uids": [4], "template_id": 4} +{"item_uids": ["4"], "template_id": 4} ``` @@ -4348,7 +4408,10 @@ Defines which products to remove from a compare list. #### Example ```json -{"products": [4], "uid": "4"} +{ + "products": ["4"], + "uid": "4" +} ``` @@ -4388,7 +4451,7 @@ Defines the tracking information to delete. #### Example ```json -{"return_shipping_tracking_uid": "4"} +{"return_shipping_tracking_uid": 4} ``` @@ -4442,7 +4505,7 @@ Defines the input required to run the `removeStoreCreditFromCart` mutation. #### Example ```json -{"cart_id": "xyz789"} +{"cart_id": "abc123"} ``` @@ -4546,8 +4609,8 @@ Contains information needed to start a return request. ```json { - "comment_text": "xyz789", - "contact_email": "xyz789", + "comment_text": "abc123", + "contact_email": "abc123", "items": [RequestReturnItemInput], "token": "abc123" } @@ -4574,7 +4637,7 @@ Defines properties of a negotiable quote request. { "cart_id": "4", "comment": NegotiableQuoteCommentInput, - "is_draft": false, + "is_draft": true, "quote_name": "xyz789" } ``` @@ -4612,7 +4675,7 @@ Defines properties of a negotiable quote template request. #### Example ```json -{"cart_id": 4} +{"cart_id": "4"} ``` @@ -4635,7 +4698,7 @@ Contains information needed to start a return request. ```json { "comment_text": "xyz789", - "contact_email": "abc123", + "contact_email": "xyz789", "items": [RequestReturnItemInput], "order_uid": "4" } @@ -4664,7 +4727,7 @@ Contains details about an item to be returned. EnteredCustomAttributeInput ], "order_item_uid": "4", - "quantity_to_return": 987.65, + "quantity_to_return": 123.45, "selected_custom_attributes": [ SelectedCustomAttributeInput ] @@ -4716,10 +4779,10 @@ Defines the contents of a requisition list. { "description": "xyz789", "items": RequistionListItems, - "items_count": 123, - "name": "abc123", + "items_count": 987, + "name": "xyz789", "uid": "4", - "updated_at": "abc123" + "updated_at": "xyz789" } ``` @@ -4778,9 +4841,9 @@ The interface for requisition list items. { "customizable_options": [SelectedCustomizableOption], "product": ProductInterface, - "quantity": 987.65, + "quantity": 123.45, "sku": "xyz789", - "uid": 4 + "uid": "4" } ``` @@ -4806,8 +4869,8 @@ Defines the items to add. { "entered_options": [EnteredOptionInput], "parent_sku": "xyz789", - "quantity": 123.45, - "selected_options": ["abc123"], + "quantity": 987.65, + "selected_options": ["xyz789"], "sku": "xyz789" } ``` @@ -4932,7 +4995,7 @@ Contains details about a return. "order": CustomerOrder, "shipping": ReturnShipping, "status": "PENDING", - "uid": "4" + "uid": 4 } ``` @@ -4956,7 +5019,7 @@ Contains details about a return comment. ```json { "author_name": "xyz789", - "created_at": "xyz789", + "created_at": "abc123", "text": "abc123", "uid": "4" } @@ -4980,9 +5043,9 @@ The customer information for the return. ```json { - "email": "xyz789", - "firstname": "abc123", - "lastname": "abc123" + "email": "abc123", + "firstname": "xyz789", + "lastname": "xyz789" } ``` @@ -5012,7 +5075,7 @@ Contains details about a product being returned. "quantity": 987.65, "request_quantity": 987.65, "status": "PENDING", - "uid": "4" + "uid": 4 } ``` @@ -5047,15 +5110,15 @@ Return Item attribute metadata. "code": 4, "default_value": "abc123", "entity_type": "CATALOG_PRODUCT", - "frontend_class": "xyz789", + "frontend_class": "abc123", "frontend_input": "BOOLEAN", "input_filter": "NONE", - "is_required": true, - "is_unique": false, + "is_required": false, + "is_unique": true, "label": "xyz789", "multiline_count": 123, "options": [CustomAttributeOptionInterface], - "sort_order": 123, + "sort_order": 987, "validate_rules": [ValidationRule] } ``` @@ -5126,12 +5189,12 @@ Contains details about the shipping address used for receiving returned items. ```json { "city": "xyz789", - "contact_name": "abc123", + "contact_name": "xyz789", "country": Country, - "postcode": "xyz789", + "postcode": "abc123", "region": Region, - "street": ["abc123"], - "telephone": "xyz789" + "street": ["xyz789"], + "telephone": "abc123" } ``` @@ -5178,7 +5241,7 @@ Contains shipping and tracking details. { "carrier": ReturnShippingCarrier, "status": ReturnShippingTrackingStatus, - "tracking_number": "abc123", + "tracking_number": "xyz789", "uid": "4" } ``` @@ -5199,7 +5262,7 @@ Contains the status of a shipment. #### Example ```json -{"text": "abc123", "type": "INFORMATION"} +{"text": "xyz789", "type": "INFORMATION"} ``` @@ -5267,7 +5330,7 @@ Contains a list of customer return requests. { "items": [Return], "page_info": SearchResultPageInfo, - "total_count": 123 + "total_count": 987 } ``` @@ -5286,7 +5349,7 @@ Contains the result of a request to revoke a customer token. #### Example ```json -{"result": true} +{"result": false} ``` @@ -5329,7 +5392,7 @@ Contains details about a customer's reward points. #### Example ```json -{"money": Money, "points": 123.45} +{"money": Money, "points": 987.65} ``` @@ -5352,8 +5415,8 @@ Contain details about the reward points transaction. ```json { "balance": RewardPointsAmount, - "change_reason": "xyz789", - "date": "xyz789", + "change_reason": "abc123", + "date": "abc123", "points_change": 987.65 } ``` @@ -5455,7 +5518,7 @@ Defines the name and value of a SDK parameter ```json { - "name": "xyz789", + "name": "abc123", "value": "abc123" } ``` @@ -5478,7 +5541,7 @@ Contains details about a comment. ```json { "message": "xyz789", - "timestamp": "xyz789" + "timestamp": "abc123" } ``` @@ -5500,9 +5563,9 @@ For use on string and other scalar product fields ```json { - "count": 123, + "count": 987, "id": "4", - "title": "abc123" + "title": "xyz789" } ``` @@ -5528,30 +5591,6 @@ This enumeration defines the scope type for customer orders. -### SearchCategoryResultPage - -Represents a paginated result set of category search results. - -#### Fields - -| Field Name | Description | -|------------|-------------| -| `items` - [`[CategoryTreeView!]!`](#categorytreeview) | The list of categories matching the search criteria. | -| `totalCount` - [`Int!`](#int) | The total number of categories matching the search criteria across all pages. | -| `pageInfo` - [`PageInfo!`](#pageinfo) | Pagination information for navigating through results. | - -#### Example - -```json -{ - "items": [CategoryTreeView], - "totalCount": 987, - "pageInfo": PageInfo -} -``` - - - ### SearchClauseInput A product attribute to filter on @@ -5571,10 +5610,10 @@ A product attribute to filter on ```json { - "attribute": "xyz789", - "contains": "xyz789", + "attribute": "abc123", + "contains": "abc123", "eq": "abc123", - "in": ["xyz789"], + "in": ["abc123"], "range": SearchRangeInput, "startsWith": "abc123" } @@ -5596,7 +5635,7 @@ A range of numeric values for use in a search #### Example ```json -{"from": 123.45, "to": 123.45} +{"from": 987.65, "to": 123.45} ``` @@ -5616,7 +5655,7 @@ Provides navigation for the query response. #### Example ```json -{"current_page": 123, "page_size": 987, "total_pages": 987} +{"current_page": 987, "page_size": 123, "total_pages": 123} ``` @@ -5639,7 +5678,7 @@ Contains details about a selected bundle option. ```json { "label": "xyz789", - "type": "xyz789", + "type": "abc123", "uid": 4, "values": [SelectedBundleOptionValue] } @@ -5668,7 +5707,7 @@ Contains details about a value for a selected bundle option. "label": "xyz789", "original_price": Money, "priceV2": Money, - "quantity": 123.45, + "quantity": 987.65, "uid": 4 } ``` @@ -5695,7 +5734,7 @@ Contains details about a selected configurable option. "configurable_product_option_uid": "4", "configurable_product_option_value_uid": 4, "option_label": "abc123", - "value_label": "abc123" + "value_label": "xyz789" } ``` @@ -5770,10 +5809,10 @@ Identifies the value of the selected customized option. ```json { - "customizable_option_value_uid": 4, - "label": "abc123", + "customizable_option_value_uid": "4", + "label": "xyz789", "price": CartItemSelectedOptionValuePrice, - "value": "abc123" + "value": "xyz789" } ``` @@ -5799,7 +5838,7 @@ Describes the payment method selected by the shopper. "code": "xyz789", "oope_payment_method_config": OopePaymentMethodConfig, "purchase_order_number": "xyz789", - "title": "xyz789" + "title": "abc123" } ``` @@ -5831,7 +5870,7 @@ Contains details about the selected shipping method and carrier. "carrier_code": "xyz789", "carrier_title": "xyz789", "method_code": "xyz789", - "method_title": "abc123", + "method_title": "xyz789", "price_excl_tax": Money, "price_incl_tax": Money } @@ -5895,7 +5934,7 @@ Sets the billing address. ```json { "billing_address": BillingAddressInput, - "cart_id": "xyz789" + "cart_id": "abc123" } ``` @@ -5933,7 +5972,7 @@ Sets the cart as inactive #### Example ```json -{"error": "abc123", "success": true} +{"error": "xyz789", "success": false} ``` @@ -5994,7 +6033,7 @@ Defines the negotiable quote custom attributes. ```json { "custom_attributes": [CustomAttributeInput], - "quote_uid": "4" + "quote_uid": 4 } ``` @@ -6038,9 +6077,9 @@ Defines the gift options applied to the cart. { "cart_id": "xyz789", "gift_message": GiftMessageInput, - "gift_receipt_included": true, + "gift_receipt_included": false, "gift_wrapping_id": 4, - "printed_card_included": true + "printed_card_included": false } ``` @@ -6079,8 +6118,8 @@ Defines the guest email and cart. ```json { - "cart_id": "abc123", - "email": "abc123" + "cart_id": "xyz789", + "email": "xyz789" } ``` @@ -6178,7 +6217,7 @@ Defines the payment method of the specified negotiable quote. ```json { "payment_method": NegotiableQuotePaymentMethodInput, - "quote_uid": "4" + "quote_uid": 4 } ``` @@ -6217,7 +6256,7 @@ Defines the shipping address to assign to the negotiable quote. ```json { - "quote_uid": 4, + "quote_uid": "4", "shipping_addresses": [ NegotiableQuoteShippingAddressInput ] @@ -6259,7 +6298,7 @@ Defines the shipping method to apply to the negotiable quote. ```json { - "quote_uid": 4, + "quote_uid": "4", "shipping_methods": [ShippingMethodInput] } ``` @@ -6300,7 +6339,7 @@ Defines the shipping address to assign to the negotiable quote template. ```json { "shipping_address": NegotiableQuoteTemplateShippingAddressInput, - "template_id": 4 + "template_id": "4" } ``` @@ -6488,6 +6527,133 @@ Defines the sender of an invitation to view a gift registry. +### ShareRequisitionListByEmailInput + +An input object that defines which requisition list shared with company users through email. + +#### Input Fields + +| Input Field | Description | +|-------------|-------------| +| `customerUids` - [`[ID]!`](#id) | An array of IDs representing company users with whom the sender wants to share the requisition list. | +| `requisitionListUid` - [`ID!`](#id) | The unique ID of the requisition list. | + +#### Example + +```json +{ + "customerUids": ["4"], + "requisitionListUid": "4" +} +``` + + + +### ShareRequisitionListByEmailOutput + +Result of sharing a requisition list by email. + +#### Fields + +| Field Name | Description | +|------------|-------------| +| `sent_count` - [`Int!`](#int) | Number of notification emails successfully sent. | +| `user_errors` - [`[ShareRequisitionListUserError]!`](#sharerequisitionlistusererror) | Per-email validation or delivery issues. | + +#### Example + +```json +{ + "sent_count": 987, + "user_errors": [ShareRequisitionListUserError] +} +``` + + + +### ShareRequisitionListByTokenOutput + +The result of sharing a requisition list by token. + +#### Fields + +| Field Name | Description | +|------------|-------------| +| `token` - [`String!`](#string) | Token used to generate a shareable link for the requisition list. | + +#### Example + +```json +{"token": "xyz789"} +``` + + + +### ShareRequisitionListUserError + +An error related to a specific recipient or constraint. + +#### Fields + +| Field Name | Description | +|------------|-------------| +| `code` - [`ShareRequisitionListUserErrorCode!`](#sharerequisitionlistusererrorcode) | Machine-readable error code. | +| `message` - [`String!`](#string) | Human-readable error message. | + +#### Example + +```json +{ + "code": "MAX_RECIPIENTS_EXCEEDED", + "message": "abc123" +} +``` + + + +### ShareRequisitionListUserErrorCode + +Machine-readable error codes for requisition list share-by-email and import operations. + +#### Values + +| Enum Value | Description | +|------------|-------------| +| `MAX_RECIPIENTS_EXCEEDED` | | +| `INVALID_EMAIL` | | +| `NOT_COMPANY_USER` | | +| `IMPORT_FAILED` | | + +#### Example + +```json +""MAX_RECIPIENTS_EXCEEDED"" +``` + + + +### SharedRequisitionListOutput + +Shared requisition list view for a recipient. + +#### Fields + +| Field Name | Description | +|------------|-------------| +| `requisition_list` - [`RequisitionList!`](#requisitionlist) | The sender's requisition list (read-only for the recipient). | +| `sender_name` - [`String!`](#string) | Display name of the requisition list sender. | + +#### Example + +```json +{ + "requisition_list": RequisitionList, + "sender_name": "xyz789" +} +``` + + + ### ShipBundleItemsEnum Defines whether bundle items must be shipped together. @@ -6526,10 +6692,10 @@ Defines whether bundle items must be shipped together. { "id": "4", "order_item": OrderItemInterface, - "product_name": "abc123", + "product_name": "xyz789", "product_sale_price": Money, "product_sku": "abc123", - "quantity_shipped": 987.65 + "quantity_shipped": 123.45 } ``` @@ -6566,7 +6732,7 @@ Order shipment item details. "order_item": OrderItemInterface, "product_name": "abc123", "product_sale_price": Money, - "product_sku": "abc123", + "product_sku": "xyz789", "quantity_shipped": 987.65 } ``` @@ -6584,14 +6750,16 @@ Contains order shipment tracking details. | `carrier` - [`String!`](#string) | The shipping carrier for the order delivery. | | `number` - [`String`](#string) | The tracking number of the order shipment. | | `title` - [`String!`](#string) | The shipment tracking title. | +| `tracking_url` - [`String`](#string) | The tracking URL for the shipment. Available for both built-in and custom shipping carriers when a URL template is configured. | #### Example ```json { - "carrier": "xyz789", + "carrier": "abc123", "number": "xyz789", - "title": "abc123" + "title": "abc123", + "tracking_url": "abc123" } ``` @@ -6639,8 +6807,8 @@ Defines a single shipping address. { "address": CartAddressInput, "customer_address_id": 123, - "customer_address_uid": 4, - "customer_notes": "xyz789", + "customer_address_uid": "4", + "customer_notes": "abc123", "pickup_location_code": "abc123" } ``` @@ -6686,14 +6854,14 @@ Contains shipping addresses and methods. { "available_shipping_methods": [AvailableShippingMethod], "cart_items_v2": [CartItemInterface], - "city": "xyz789", - "company": "abc123", + "city": "abc123", + "company": "xyz789", "country": CartAddressCountry, "custom_attributes": [AttributeValueInterface], "customer_address_uid": "4", - "customer_notes": "xyz789", + "customer_notes": "abc123", "fax": "abc123", - "firstname": "xyz789", + "firstname": "abc123", "id": 987, "lastname": "xyz789", "middlename": "xyz789", @@ -6704,7 +6872,7 @@ Contains shipping addresses and methods. "same_as_billing": false, "selected_shipping_method": SelectedShippingMethod, "street": ["xyz789"], - "suffix": "abc123", + "suffix": "xyz789", "telephone": "xyz789", "uid": "4", "vat_id": "abc123" @@ -6790,16 +6958,18 @@ An implementation for simple product cart items. | Field Name | Description | |------------|-------------| | `available_gift_wrapping` - [`[GiftWrapping]!`](#giftwrapping) | The list of available gift wrapping options for the cart item. | +| `backorder_message` - [`String`](#string) | Customer-facing hint when the line is salable on notify backorders with insufficient physical quantity; null otherwise. | | `custom_attributes` - [`[CustomAttribute]`](#customattribute) | The custom attributes for the cart item | | `customizable_options` - [`[SelectedCustomizableOption]!`](#selectedcustomizableoption) | An array containing the customizable options the shopper selected. | | `discount` - [`[Discount]`](#discount) | Contains discount for quote line item. | | `errors` - [`[CartItemError]`](#cartitemerror) | An array of errors encountered while loading the cart item | | `gift_message` - [`GiftMessage`](#giftmessage) | The entered gift message for the cart item | | `gift_wrapping` - [`GiftWrapping`](#giftwrapping) | The selected gift wrapping for the cart item. | -| `is_available` - [`Boolean!`](#boolean) | True if requested quantity is less than available stock, false otherwise. | +| `is_available` - [`Boolean!`](#boolean) | True if requested quantity is less than available stock, false otherwise. *(Deprecated: Use `is_salable` instead. It indicates whether the line can be purchased, including backorder configuration.)* | +| `is_salable` - [`Boolean!`](#boolean) | True when the item can be purchased and should not block checkout: stock status is in stock and either physical quantity covers the requested quantity or backorders are allowed. | | `max_qty` - [`Float`](#float) | Line item max qty in quote template | | `min_qty` - [`Float`](#float) | Line item min qty in quote template | -| `not_available_message` - [`String`](#string) | Message to display when the product is not available with this selected option. | +| `not_available_message` - [`String`](#string) | Shortage or unavailability message for the line; null when the item is salable. | | `note_from_buyer` - [`[ItemNote]`](#itemnote) | The buyer's quote line item note. | | `note_from_seller` - [`[ItemNote]`](#itemnote) | The seller's quote line item note. | | `prices` - [`CartItemPrices`](#cartitemprices) | Contains details about the price of the item, including taxes and discounts. | @@ -6812,6 +6982,7 @@ An implementation for simple product cart items. ```json { "available_gift_wrapping": [GiftWrapping], + "backorder_message": "xyz789", "custom_attributes": [CustomAttribute], "customizable_options": [SelectedCustomizableOption], "discount": [Discount], @@ -6819,15 +6990,16 @@ An implementation for simple product cart items. "gift_message": GiftMessage, "gift_wrapping": GiftWrapping, "is_available": false, - "max_qty": 987.65, + "is_salable": false, + "max_qty": 123.45, "min_qty": 987.65, "not_available_message": "abc123", "note_from_buyer": [ItemNote], "note_from_seller": [ItemNote], "prices": CartItemPrices, "product": ProductInterface, - "quantity": 123.45, - "uid": 4 + "quantity": 987.65, + "uid": "4" } ``` @@ -6889,25 +7061,25 @@ Defines a simple product, which is tangible and is usually sold in single units { "canonical_url": "abc123", "categories": [CategoryInterface], - "country_of_manufacture": "abc123", + "country_of_manufacture": "xyz789", "crosssell_products": [ProductInterface], "custom_attributesV2": ProductCustomAttributes, "description": ComplexTextValue, - "gift_message_available": false, + "gift_message_available": true, "gift_wrapping_available": false, "gift_wrapping_price": Money, "image": ProductImage, - "is_returnable": "abc123", + "is_returnable": "xyz789", "manufacturer": 987, "max_sale_qty": 123.45, "media_gallery": [MediaGalleryInterface], "meta_description": "xyz789", "meta_keyword": "abc123", - "meta_title": "xyz789", - "min_sale_qty": 987.65, + "meta_title": "abc123", + "min_sale_qty": 123.45, "name": "xyz789", "new_from_date": "abc123", - "new_to_date": "xyz789", + "new_to_date": "abc123", "only_x_left_in_stock": 987.65, "options": [CustomizableOptionInterface], "options_container": "abc123", @@ -6926,7 +7098,7 @@ Defines a simple product, which is tangible and is usually sold in single units "thumbnail": ProductImage, "uid": "4", "upsell_products": [ProductInterface], - "url_key": "xyz789", + "url_key": "abc123", "weight": 123.45 } ``` @@ -6962,7 +7134,6 @@ Represents a single-SKU product without selectable variants. Because there are n | `url` - [`String`](#string) | Canonical URL of the product. For example, `https://example.com/product-1` or `https://example.com/product-2`. *(Deprecated: This field is deprecated and will be removed.)* | | `urlKey` - [`String`](#string) | The URL key of the product. For example, `product-1`, `product-2` or `product-3`. | | `links` - [`[ProductViewLink]`](#productviewlink) | A list of product links. For example, a related product, an up-sell product or a cross-sell product. | -| `categories` - [`[CategoryProductView!]`](#categoryproductview) | A list of categories in which the product is present. Categories are used to group products by category. | | `queryType` - [`String`](#string) | Indicates if the product was retrieved from the primary or the backup query | | `visibility` - [`String`](#string) | Visibility setting of the product | @@ -6980,20 +7151,19 @@ Represents a single-SKU product without selectable variants. Because there are n "videos": [ProductViewVideo], "inputOptions": [ProductViewInputOption], "lastModifiedAt": "2007-12-03T10:15:30Z", - "metaDescription": "abc123", - "metaKeyword": "xyz789", - "metaTitle": "xyz789", + "metaDescription": "xyz789", + "metaKeyword": "abc123", + "metaTitle": "abc123", "name": "abc123", "price": ProductViewPrice, "shortDescription": "abc123", "sku": "abc123", - "externalId": "abc123", + "externalId": "xyz789", "url": "xyz789", - "urlKey": "abc123", + "urlKey": "xyz789", "links": [ProductViewLink], - "categories": [CategoryProductView], - "queryType": "xyz789", - "visibility": "abc123" + "queryType": "abc123", + "visibility": "xyz789" } ``` @@ -7019,9 +7189,9 @@ Contains details about simple products added to a requisition list. { "customizable_options": [SelectedCustomizableOption], "product": ProductInterface, - "quantity": 123.45, + "quantity": 987.65, "sku": "abc123", - "uid": 4 + "uid": "4" } ``` @@ -7046,9 +7216,9 @@ Contains a simple product wish list item. ```json { - "added_at": "xyz789", + "added_at": "abc123", "customizable_options": [SelectedCustomizableOption], - "description": "abc123", + "description": "xyz789", "id": "4", "product": ProductInterface, "quantity": 123.45 @@ -7073,8 +7243,8 @@ Smart button payment inputs ```json { - "payment_source": "xyz789", - "payments_order_id": "xyz789", + "payment_source": "abc123", + "payments_order_id": "abc123", "paypal_order_id": "abc123" } ``` @@ -7106,13 +7276,13 @@ Smart button payment inputs "app_switch_when_available": true, "button_styles": ButtonStyles, "code": "abc123", - "display_message": true, + "display_message": false, "display_venmo": false, - "is_visible": true, + "is_visible": false, "message_styles": MessageStyles, - "payment_intent": "abc123", + "payment_intent": "xyz789", "sdk_params": [SDKParams], - "sort_order": "abc123", + "sort_order": "xyz789", "title": "xyz789" } ``` @@ -7154,7 +7324,7 @@ Defines a possible sort field. ```json { "label": "abc123", - "value": "xyz789" + "value": "abc123" } ``` @@ -7249,10 +7419,10 @@ Contains product attributes that be used for sorting in a `productSearch` query ```json { - "attribute": "abc123", + "attribute": "xyz789", "frontendInput": "xyz789", - "label": "xyz789", - "numeric": false + "label": "abc123", + "numeric": true } ``` @@ -7274,8 +7444,8 @@ For retrieving statistics across multiple buckets ```json { - "max": 987.65, - "min": 987.65, + "max": 123.45, + "min": 123.45, "title": "abc123" } ``` diff --git a/src/pages/includes/autogenerated/graphql-api-saas-types-4.md b/src/pages/includes/autogenerated/graphql-api-saas-types-4.md index 89e0eb4d3..247f85d68 100644 --- a/src/pages/includes/autogenerated/graphql-api-saas-types-4.md +++ b/src/pages/includes/autogenerated/graphql-api-saas-types-4.md @@ -109,6 +109,10 @@ Contains information about a store's configuration. | `quote_minimum_amount` - [`Float`](#float) | Minimum order total for quote request. | | `quote_minimum_amount_message` - [`String`](#string) | A message that will be shown in the cart when the subtotal (after discount) is lower than the minimum allowed amount. | | `required_character_classes_number` - [`String`](#string) | The number of different character classes (lowercase, uppercase, digits, special characters) required in a password. | +| `requisition_list_share_link_validity_days` - [`Int!`](#int) | Configuration data from btob/requisition_list_sharing/link_validity_days | +| `requisition_list_share_max_recipients` - [`Int!`](#int) | Configuration data from btob/requisition_list_sharing/max_recipients | +| `requisition_list_share_storefront_path` - [`String!`](#string) | Configuration data from btob/requisition_list_sharing/storefront_share_path (route path for share links, no leading or trailing slashes) | +| `requisition_list_sharing_enabled` - [`Boolean!`](#boolean) | Configuration data from btob/requisition_list_sharing/enabled | | `returns_enabled` - [`String!`](#string) | Indicates whether RMA is enabled on the storefront. Possible values: enabled/disabled. | | `root_category_uid` - [`ID`](#id) | The unique ID for a `CategoryInterface` object. | | `sales_fixed_product_tax_display_setting` - [`FixedProductTaxDisplaySettings`](#fixedproducttaxdisplaysettings) | Corresponds to the 'Display Prices In Sales Modules' field in the Admin. It indicates how FPT information is displayed on cart, checkout, and order pages. | @@ -120,6 +124,9 @@ Contains information about a store's configuration. | `secure_base_url` - [`String`](#string) | The store’s fully-qualified secure base URL. | | `share_active_segments` - [`Boolean!`](#boolean) | Configuration data from customer/magento_customersegment/share_active_segments | | `share_applied_cart_rule` - [`Boolean!`](#boolean) | Configuration data from promo/graphql/share_applied_cart_rule | +| `shopping_assistance_checkbox_title` - [`String`](#string) | Configuration data from login_as_customer/general/shopping_assistance_checkbox_title | +| `shopping_assistance_checkbox_tooltip` - [`String`](#string) | Configuration data from login_as_customer/general/shopping_assistance_checkbox_tooltip | +| `shopping_assistance_enabled` - [`Boolean!`](#boolean) | Configuration data from login_as_customer/general/enabled | | `shopping_cart_display_full_summary` - [`Boolean`](#boolean) | Extended Config Data - tax/cart_display/full_summary | | `shopping_cart_display_grand_total` - [`Boolean`](#boolean) | Extended Config Data - tax/cart_display/grandtotal | | `shopping_cart_display_price` - [`Int`](#int) | Extended Config Data - tax/cart_display/price | @@ -151,144 +158,151 @@ Contains information about a store's configuration. ```json { "allow_company_registration": false, - "allow_gift_receipt": "xyz789", + "allow_gift_receipt": "abc123", "allow_gift_wrapping_on_order": "xyz789", "allow_gift_wrapping_on_order_items": "abc123", "allow_items": "abc123", - "allow_order": "abc123", + "allow_order": "xyz789", "allow_printed_card": "abc123", "autocomplete_on_storefront": false, - "base_currency_code": "abc123", + "base_currency_code": "xyz789", "base_link_url": "abc123", - "base_media_url": "xyz789", + "base_media_url": "abc123", "base_static_url": "abc123", "base_url": "xyz789", "cart_expires_in_days": 987, "cart_gift_wrapping": "abc123", - "cart_merge_preference": "abc123", + "cart_merge_preference": "xyz789", "cart_printed_card": "abc123", "cart_summary_display_quantity": 123, "catalog_default_sort_by": "abc123", "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", + "category_url_suffix": "abc123", + "check_money_order_enable_for_specific_countries": true, + "check_money_order_enabled": true, + "check_money_order_make_check_payable_to": "xyz789", "check_money_order_max_order_total": "abc123", - "check_money_order_min_order_total": "xyz789", + "check_money_order_min_order_total": "abc123", "check_money_order_new_order_status": "abc123", - "check_money_order_payment_from_specific_countries": "xyz789", - "check_money_order_send_check_to": "xyz789", + "check_money_order_payment_from_specific_countries": "abc123", + "check_money_order_send_check_to": "abc123", "check_money_order_sort_order": 987, "check_money_order_title": "xyz789", "company_credit_enabled": false, - "company_enabled": true, + "company_enabled": false, "configurable_product_image": "ITSELF", "configurable_thumbnail_source": "xyz789", - "contact_enabled": true, - "countries_with_required_region": "xyz789", + "contact_enabled": false, + "countries_with_required_region": "abc123", "create_account_confirmation": true, - "customer_access_token_lifetime": 123.45, + "customer_access_token_lifetime": 987.65, "default_country": "xyz789", "default_display_currency_code": "xyz789", - "display_product_prices_in_catalog": 987, + "display_product_prices_in_catalog": 123, "display_shipping_prices": 123, "display_state_if_optional": false, - "enable_multiple_wishlists": "abc123", + "enable_multiple_wishlists": "xyz789", "fixed_product_taxes_apply_tax_to_fpt": true, - "fixed_product_taxes_display_prices_in_emails": 123, - "fixed_product_taxes_display_prices_in_product_lists": 123, + "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": 123, "fixed_product_taxes_display_prices_on_product_view_page": 987, "fixed_product_taxes_enable": false, "fixed_product_taxes_include_fpt_in_subtotal": false, "graphql_share_customer_group": false, - "grid_per_page": 987, + "grid_per_page": 123, "grid_per_page_values": "xyz789", "grouped_product_image": "ITSELF", "is_checkout_agreements_enabled": true, - "is_default_store": false, + "is_default_store": true, "is_default_store_group": false, - "is_guest_checkout_enabled": true, - "is_negotiable_quote_active": true, + "is_guest_checkout_enabled": false, + "is_negotiable_quote_active": false, "is_one_page_checkout_enabled": false, "is_requisition_list_active": "abc123", "list_mode": "xyz789", - "list_per_page": 987, - "list_per_page_values": "xyz789", - "locale": "abc123", - "magento_reward_general_is_enabled": "xyz789", + "list_per_page": 123, + "list_per_page_values": "abc123", + "locale": "xyz789", + "magento_reward_general_is_enabled": "abc123", "magento_reward_general_is_enabled_on_front": "xyz789", - "magento_reward_general_min_points_balance": "abc123", - "magento_reward_general_publish_history": "abc123", + "magento_reward_general_min_points_balance": "xyz789", + "magento_reward_general_publish_history": "xyz789", "magento_reward_points_invitation_customer": "xyz789", - "magento_reward_points_invitation_customer_limit": "xyz789", - "magento_reward_points_invitation_order": "abc123", + "magento_reward_points_invitation_customer_limit": "abc123", + "magento_reward_points_invitation_order": "xyz789", "magento_reward_points_invitation_order_limit": "xyz789", - "magento_reward_points_newsletter": "abc123", + "magento_reward_points_newsletter": "xyz789", "magento_reward_points_order": "abc123", - "magento_reward_points_register": "xyz789", - "magento_reward_points_review": "xyz789", + "magento_reward_points_register": "abc123", + "magento_reward_points_review": "abc123", "magento_reward_points_review_limit": "xyz789", - "magento_wishlist_general_is_enabled": "xyz789", - "max_items_in_order_summary": 123, - "maximum_number_of_wishlists": "abc123", + "magento_wishlist_general_is_enabled": "abc123", + "max_items_in_order_summary": 987, + "maximum_number_of_wishlists": "xyz789", "minicart_display": true, "minicart_max_items": 987, - "minimum_password_length": "xyz789", + "minimum_password_length": "abc123", "newsletter_enabled": false, "optional_zip_countries": "abc123", - "order_cancellation_enabled": true, + "order_cancellation_enabled": false, "order_cancellation_reasons": [CancellationReason], - "orders_invoices_credit_memos_display_full_summary": true, - "orders_invoices_credit_memos_display_grandtotal": true, + "orders_invoices_credit_memos_display_full_summary": false, + "orders_invoices_credit_memos_display_grandtotal": false, "orders_invoices_credit_memos_display_price": 987, - "orders_invoices_credit_memos_display_shipping_amount": 987, + "orders_invoices_credit_memos_display_shipping_amount": 123, "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", + "product_url_suffix": "xyz789", "quickorder_active": false, - "quote_minimum_amount": 987.65, + "quote_minimum_amount": 123.45, "quote_minimum_amount_message": "abc123", "required_character_classes_number": "xyz789", + "requisition_list_share_link_validity_days": 123, + "requisition_list_share_max_recipients": 123, + "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": "xyz789", - "sales_printed_card": "xyz789", - "secure_base_link_url": "abc123", + "sales_gift_wrapping": "abc123", + "sales_printed_card": "abc123", + "secure_base_link_url": "xyz789", "secure_base_media_url": "xyz789", "secure_base_static_url": "abc123", "secure_base_url": "xyz789", "share_active_segments": true, - "share_applied_cart_rule": 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": true, "shopping_cart_display_grand_total": false, - "shopping_cart_display_price": 123, + "shopping_cart_display_price": 987, "shopping_cart_display_shipping": 123, "shopping_cart_display_subtotal": 123, "shopping_cart_display_tax_gift_wrapping": "DISPLAY_EXCLUDING_TAX", "shopping_cart_display_zero_tax": false, - "store_code": 4, - "store_group_code": "4", + "store_code": "4", + "store_group_code": 4, "store_group_name": "abc123", "store_name": "abc123", "store_sort_order": 123, - "timezone": "xyz789", - "title_separator": "abc123", + "timezone": "abc123", + "title_separator": "xyz789", "use_store_in_url": true, - "website_code": "4", - "website_name": "abc123", + "website_code": 4, + "website_name": "xyz789", "weight_unit": "xyz789", "zero_subtotal_enable_for_specific_countries": false, - "zero_subtotal_enabled": true, - "zero_subtotal_new_order_status": "xyz789", - "zero_subtotal_payment_action": "abc123", + "zero_subtotal_enabled": false, + "zero_subtotal_new_order_status": "abc123", + "zero_subtotal_payment_action": "xyz789", "zero_subtotal_payment_from_specific_countries": "abc123", - "zero_subtotal_sort_order": 987, - "zero_subtotal_title": "abc123" + "zero_subtotal_sort_order": 123, + "zero_subtotal_title": "xyz789" } ``` @@ -301,7 +315,7 @@ The `String` scalar type represents textual data, represented as UTF-8 character #### Example ```json -"xyz789" +"abc123" ``` @@ -363,8 +377,8 @@ Specifies the quote template properties to update. "attachments": [NegotiableQuoteCommentAttachmentInput], "comment": "xyz789", "max_order_commitment": 123, - "min_order_commitment": 123, - "name": "abc123", + "min_order_commitment": 987, + "name": "xyz789", "reference_document_links": [ NegotiableQuoteTemplateReferenceDocumentLinkInput ], @@ -451,7 +465,7 @@ Represents the subtree of the categories to retrieve. #### Example ```json -{"value": "abc123"} +{"value": "xyz789"} ``` @@ -528,7 +542,7 @@ Synchronizes the payment order details ```json { "cartId": "xyz789", - "id": "xyz789" + "id": "abc123" } ``` @@ -636,6 +650,42 @@ Defines a price based on the quantity purchased. +### UnassignChildCompanyInput + +Defines the input schema for unassigning a child company from its parent company. + +#### Input Fields + +| Input Field | Description | +|-------------|-------------| +| `child_company_id` - [`ID!`](#id) | The unique ID of the child company. | + +#### Example + +```json +{"child_company_id": 4} +``` + + + +### UnassignChildCompanyOutput + +Contains the response to the request to unassign a child company. + +#### Fields + +| Field Name | Description | +|------------|-------------| +| `company_hierarchy` - [`CompanyHierarchy!`](#companyhierarchy) | The updated company relation hierarchy for the current company. | + +#### Example + +```json +{"company_hierarchy": CompanyHierarchy} +``` + + + ### UnitConfigInput #### Input Fields @@ -655,12 +705,12 @@ Defines a price based on the quantity purchased. ```json { - "unitName": "xyz789", - "storefrontLabel": "xyz789", + "unitName": "abc123", + "storefrontLabel": "abc123", "pagePlacement": "xyz789", - "displayNumber": 987, + "displayNumber": 123, "pageType": "xyz789", - "unitStatus": "abc123", + "unitStatus": "xyz789", "typeId": "xyz789", "filterRules": [FilterRuleInput] } @@ -824,8 +874,8 @@ Defines updates to a `GiftRegistry` object. "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "event_name": "xyz789", - "message": "abc123", + "event_name": "abc123", + "message": "xyz789", "privacy_settings": "PRIVATE", "shipping_address": GiftRegistryShippingAddressInput, "status": "ACTIVE" @@ -915,10 +965,10 @@ Defines updates to an existing registrant. "dynamic_attributes": [ GiftRegistryDynamicAttributeInput ], - "email": "abc123", - "firstname": "abc123", - "gift_registry_registrant_uid": "4", - "lastname": "xyz789" + "email": "xyz789", + "firstname": "xyz789", + "gift_registry_registrant_uid": 4, + "lastname": "abc123" } ``` @@ -976,7 +1026,7 @@ Specifies the items to update. ```json { "items": [NegotiableQuoteItemQuantityInput], - "quote_uid": 4 + "quote_uid": "4" } ``` @@ -1065,7 +1115,7 @@ Defines the changes to be made to an approval rule. ```json { "applies_to": [4], - "approvers": [4], + "approvers": ["4"], "condition": CreatePurchaseOrderApprovalRuleConditionInput, "description": "xyz789", "name": "abc123", @@ -1091,8 +1141,8 @@ An input object that defines which requistion list characteristics to update. ```json { - "description": "abc123", - "name": "xyz789" + "description": "xyz789", + "name": "abc123" } ``` @@ -1116,8 +1166,8 @@ Defines which items in a requisition list to update. ```json { "entered_options": [EnteredOptionInput], - "item_id": "4", - "quantity": 987.65, + "item_id": 4, + "quantity": 123.45, "selected_options": ["xyz789"] } ``` @@ -1177,7 +1227,7 @@ Contains the name and visibility of an updated wish list. ```json { "name": "abc123", - "uid": 4, + "uid": "4", "visibility": "PUBLIC" } ``` @@ -1200,7 +1250,7 @@ Defines the input for returning matching companies the customer is assigned to. ```json { - "currentPage": 123, + "currentPage": 987, "pageSize": 123, "sort": [CompaniesSortInput] } @@ -1325,7 +1375,7 @@ Defines a customer attribute validation rule. ```json { "name": "DATE_RANGE_MAX", - "value": "abc123" + "value": "xyz789" } ``` @@ -1389,7 +1439,7 @@ Retrieves the vault configuration ```json { - "is_vault_enabled": true, + "is_vault_enabled": false, "sdk_params": [SDKParams], "three_ds_mode": "OFF" } @@ -1417,7 +1467,7 @@ Vault payment inputs "payment_source": "xyz789", "payments_order_id": "xyz789", "paypal_order_id": "xyz789", - "public_hash": "xyz789" + "public_hash": "abc123" } ``` @@ -1493,14 +1543,16 @@ An implementation for virtual product cart items. | Field Name | Description | |------------|-------------| +| `backorder_message` - [`String`](#string) | Customer-facing hint when the line is salable on notify backorders with insufficient physical quantity; null otherwise. | | `custom_attributes` - [`[CustomAttribute]`](#customattribute) | The custom attributes for the cart item | | `customizable_options` - [`[SelectedCustomizableOption]!`](#selectedcustomizableoption) | An array containing customizable options the shopper selected. | | `discount` - [`[Discount]`](#discount) | Contains discount for quote line item. | | `errors` - [`[CartItemError]`](#cartitemerror) | An array of errors encountered while loading the cart item | -| `is_available` - [`Boolean!`](#boolean) | True if requested quantity is less than available stock, false otherwise. | +| `is_available` - [`Boolean!`](#boolean) | True if requested quantity is less than available stock, false otherwise. *(Deprecated: Use `is_salable` instead. It indicates whether the line can be purchased, including backorder configuration.)* | +| `is_salable` - [`Boolean!`](#boolean) | True when the item can be purchased and should not block checkout: stock status is in stock and either physical quantity covers the requested quantity or backorders are allowed. | | `max_qty` - [`Float`](#float) | Line item max qty in quote template | | `min_qty` - [`Float`](#float) | Line item min qty in quote template | -| `not_available_message` - [`String`](#string) | Message to display when the product is not available with this selected option. | +| `not_available_message` - [`String`](#string) | Shortage or unavailability message for the line; null when the item is salable. | | `note_from_buyer` - [`[ItemNote]`](#itemnote) | The buyer's quote line item note. | | `note_from_seller` - [`[ItemNote]`](#itemnote) | The seller's quote line item note. | | `prices` - [`CartItemPrices`](#cartitemprices) | Contains details about the price of the item, including taxes and discounts. | @@ -1512,11 +1564,13 @@ An implementation for virtual product cart items. ```json { + "backorder_message": "abc123", "custom_attributes": [CustomAttribute], "customizable_options": [SelectedCustomizableOption], "discount": [Discount], "errors": [CartItemError], - "is_available": false, + "is_available": true, + "is_salable": false, "max_qty": 987.65, "min_qty": 987.65, "not_available_message": "xyz789", @@ -1586,21 +1640,21 @@ Defines a virtual product, which is a non-tangible product that does not require { "canonical_url": "abc123", "categories": [CategoryInterface], - "country_of_manufacture": "abc123", + "country_of_manufacture": "xyz789", "crosssell_products": [ProductInterface], "custom_attributesV2": ProductCustomAttributes, "description": ComplexTextValue, "gift_message_available": true, - "gift_wrapping_available": false, + "gift_wrapping_available": true, "gift_wrapping_price": Money, "image": ProductImage, - "is_returnable": "xyz789", + "is_returnable": "abc123", "manufacturer": 123, "max_sale_qty": 987.65, "media_gallery": [MediaGalleryInterface], - "meta_description": "xyz789", + "meta_description": "abc123", "meta_keyword": "abc123", - "meta_title": "xyz789", + "meta_title": "abc123", "min_sale_qty": 123.45, "name": "abc123", "new_from_date": "abc123", @@ -1614,16 +1668,16 @@ Defines a virtual product, which is a non-tangible product that does not require "quantity": 987.65, "related_products": [ProductInterface], "short_description": ComplexTextValue, - "sku": "xyz789", + "sku": "abc123", "small_image": ProductImage, - "special_price": 987.65, + "special_price": 123.45, "special_to_date": "abc123", "stock_status": "IN_STOCK", "swatch_image": "abc123", "thumbnail": ProductImage, "uid": 4, "upsell_products": [ProductInterface], - "url_key": "xyz789" + "url_key": "abc123" } ``` @@ -1649,9 +1703,9 @@ Contains details about virtual products added to a requisition list. { "customizable_options": [SelectedCustomizableOption], "product": ProductInterface, - "quantity": 123.45, - "sku": "abc123", - "uid": "4" + "quantity": 987.65, + "sku": "xyz789", + "uid": 4 } ``` @@ -1678,7 +1732,7 @@ Contains a virtual product wish list item. { "added_at": "xyz789", "customizable_options": [SelectedCustomizableOption], - "description": "xyz789", + "description": "abc123", "id": 4, "product": ProductInterface, "quantity": 987.65 @@ -1748,12 +1802,12 @@ Contains a customer wish list. ```json { - "id": "4", - "items_count": 123, + "id": 4, + "items_count": 987, "items_v2": WishlistItems, - "name": "abc123", - "sharing_code": "abc123", - "updated_at": "xyz789", + "name": "xyz789", + "sharing_code": "xyz789", + "updated_at": "abc123", "visibility": "PUBLIC" } ``` @@ -1779,7 +1833,7 @@ Contains details about errors encountered when a customer added wish list items { "code": "PRODUCT_NOT_FOUND", "message": "abc123", - "wishlistId": "4", + "wishlistId": 4, "wishlistItemId": 4 } ``` @@ -1822,10 +1876,7 @@ Specifies the IDs of items to copy and their quantities. #### Example ```json -{ - "quantity": 987.65, - "wishlist_item_id": "4" -} +{"quantity": 987.65, "wishlist_item_id": 4} ``` @@ -1849,9 +1900,9 @@ Defines the items to add to a wish list. ```json { "entered_options": [EnteredOptionInput], - "parent_sku": "xyz789", + "parent_sku": "abc123", "quantity": 123.45, - "selected_options": ["4"], + "selected_options": [4], "sku": "abc123" } ``` @@ -1892,7 +1943,7 @@ The interface for wish list items. "added_at": "xyz789", "customizable_options": [SelectedCustomizableOption], "description": "xyz789", - "id": "4", + "id": 4, "product": ProductInterface, "quantity": 123.45 } @@ -1914,10 +1965,7 @@ Specifies the IDs of the items to move and their quantities. #### Example ```json -{ - "quantity": 987.65, - "wishlist_item_id": "4" -} +{"quantity": 987.65, "wishlist_item_id": 4} ``` @@ -1940,7 +1988,7 @@ Defines updates to items in a wish list. ```json { - "description": "abc123", + "description": "xyz789", "entered_options": [EnteredOptionInput], "quantity": 987.65, "selected_options": ["4"], @@ -2025,9 +2073,9 @@ Defines the wish list visibility types. ```json { - "key": "abc123", - "message": "xyz789", - "success": false + "key": "xyz789", + "message": "abc123", + "success": true } ``` @@ -2068,7 +2116,7 @@ Defines the wish list visibility types. ```json { "expires_at": "xyz789", - "key": "xyz789", - "upload_url": "xyz789" + "key": "abc123", + "upload_url": "abc123" } ``` From 5d50d42ab3ead3369631b8c5f5d84eddb218a54b Mon Sep 17 00:00:00 2001 From: Dima Shevtsov Date: Wed, 3 Jun 2026 17:14:19 -0500 Subject: [PATCH 9/9] Add config docs --- spectaql/config_saas.yml | 247 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 246 insertions(+), 1 deletion(-) diff --git a/spectaql/config_saas.yml b/spectaql/config_saas.yml index d4ffd1a9c..47291976d 100644 --- a/spectaql/config_saas.yml +++ b/spectaql/config_saas.yml @@ -1,31 +1,167 @@ --- spectaql: + # Optional Boolean indicating whether to omit the HTML and generate the documentation content only + # Default: false embeddable: true + + # Optional Boolean indicating whether to embed all resources (CSS and JS) into the same file + # Default: false oneFile: false + + # Optional path to the target build directory. + # Set to null to not write the output to the filesystem, making it only available via the API (default: public) + # + # Default: public targetDir: src/pages/includes/autogenerated targetFile: graphql-api-saas.md + + # Optional boolean indicating whether to encode the local logoFile and embed the image as Base64 + # into the resulting HTML. Only applicable if providing the logoFile. + # + # Default: false embedLogo: false + + # Optional string specifying a path to a theme directory to use for your build. + # + # Themes rely on a directory structure convention that overlays your customizations and enhancements + # on top of the default theme provided by SpectaQL. See /examples/themes for more. + # + # Also, a few built-in themes can be used by specifying them by name: + # "default": Our default theme + # "basic": Outputs the same HTML structure as the "default" theme, but with minimal CSS styling + # "spectaql": Outputs the same HTML structure as the "default" theme, but with some CSS enhancements + # + # Default: "default" themeDir: spectaql/markdown-theme gruntConfigFile: spectaql/markdown-grunt-config.js + + # If you're embedding SpectaQL's output, and you've got something like a Nav Bar that + # gets in the way, you can use this value to adjust the scroll offset + # + # Default: None; No "scroll-padding-top" style will be applied. scrollPaddingTopPx: 0 + + # If an interpolated reference is not found, should SpectaQL throw an error? Otherwise, a warning + # will be logged. + # + # Default: true errorOnInterpolationReferenceNotFound: true + + # Would you like to display all the servers listed in the servers area of your config? Otherwise, + # it will try to display just the one marked "production: true". + # + # Default: false displayAllServers: false + + # Would you like the "run" function to resolve with an object containing the output as a string? + # Useful if you are using SpectaQL as a dependency (as opposed to running the binary executable) + # + # Default: true resolveWithOutput: true introspection: + ############################################## + # These options specify where/how to get the information required to generate your + # documentation. + # + # Each of these have corresponding CLI options where they can be expressed instead of here. + # The CLI options will take precedence over what is in your config file + # + # 1 and only 1 of the following options must be provided: + # + + # File containing a GraphQL Schema Definition written in SDL. + # Can also pass an array of paths (or glob supported by @graphql-tools/load-files) + # like so: + # schemaFile: + # - path/to/schema/part1.gql + # - path/to/schema/part2.gql + # schemaFile: path/to/schema.gql + + # File containing Introspection Query response in JS module export, or JSON format introspectionFile: spectaql/schema_saas.json + + # URL of the GraphQL endpoint to hit if you want to generate the documentation based on live + # Introspection Query results + # NOTE: If not using introspection.url OR servers[], you need to provide x-url below + # url: https://yoursite.com/graphql + + # + # + ############################################## + + # If using the "url" option above, any headers (such as Authorization) can be added here. This + # can also be added via the CLI options + # headers: + # Authorization: Bearer s3cretT0k2n + + # Some helpful options for those who are an "SDL-first" shop and/or want to get your metadata into + # SpectaQL during the SDL ingestion. spectaqlDirective: + # Boolean indicating whether to enable and process the @spectaql directive + # + # Default: true enable: false + + # String indicating the name to use for the SpectaQL directive, e.g. "@spectaql" + # This should be inconsequential in the end since it should be removed + # from your resulting Schema by SpectaQL + # + # Default: 'spectaql' + # directiveName: 'spectaql' + + # String indicating the name to use for the Type used in the "options" array that can be passed + # to the SpectaQL directive. + # This should be inconsequential in the end since it should be removed + # from your resulting Schema by SpectaQL + # + # Default: 'SpectaQLOption' + # optionsTypeName: 'SpectaQLOption' + + # + # + ############################################## + + ############################################## + # These options are for random display or augmentation related things that didn't + # really fit anywhere else. + # + + # Whether you would like to strip any trailing commas from the descriptions to keep + # things fresh and clean. + # + # Default: false removeTrailingPeriodFromDescriptions: false + + # What manipulation of the query/mutation/subscription name would you like to perform to determine + # the name in query examples? Possible values: + # + # - none: will use same exact name as query) + # - capitalizeFirst: will capitalize the first letter and leave the rest. + # - capitalize: will capitalize the first letter and convert the rest to lower case. + # - camelCase + # - snakeCase + # - upperCase: all letters to upper case. + # - lowerCase: all letters to lower case. queryNameStrategy: none + + # When generating a Query or Mutation example, to what maximum depth should any nested fields + # be represented before a fragment placeholder is rendered? + # + # Default: 1 fieldExpansionDepth: 1 + + # Include support for @deprecated field on InputType fields. + # NOTE: Be careful, it appears that if you mark an InputType field as deprecated but do NOT set + # this option to `true`, the field will be removed from the schema completely. + # + # Default: false inputValueDeprecation: true # # ############################################## - ############################################## # These options specify how, where and if any "metadata" information is to be added to your Introspection # Query results IF it is not already present. If you are not dealing with metadata, or you have already @@ -101,40 +237,124 @@ introspection: # Whether to document any Queries at all, in the absence of a metadata directive # Default: true queriesDocumentedDefault: true + # Whether to document an individual Query, in the absence of a metadata directive + # Default: true queryDocumentedDefault: true + # Whether to document a Query Argument, in the absence of a metadata directive + # Default: true queryArgDocumentedDefault: true + # Hide any Queries with undocumented return types so as not to reference something + # that seemingly does not exist. + # Default: true hideQueriesWithUndocumentedReturnType: true + + # Whether to document any Mutations at all, in the absence of a metadata directive + # Default: true mutationsDocumentedDefault: true + # Whether to document an individual Mutation, in the absence of a metadata directive + # Default: true mutationDocumentedDefault: true + # Whether to document a Mutation Argument, in the absence of a metadata directive + # Default: true mutationArgDocumentedDefault: true + # Hide any Mutations with undocumented return types so as not to reference something + # that seemingly does not exist. + # Default: true hideMutationsWithUndocumentedReturnType: true + + # Whether to document any Subscriptions at all + # Default: true subscriptionsDocumentedDefault: true + # Whether to document an individual Subscription, in the absence of a metadata directive + # Default: true subscriptionDocumentedDefault: true + # Whether to document a Subscription Argument, in the absence of a metadata directive + # Default: true subscriptionArgDocumentedDefault: true + # Hide any Subscriptions with undocumented return types so as not to reference something + # that seemingly does not exist. + # Default: true hideSubscriptionsWithUndocumentedReturnType: true + + # Hide any Types that are not used anywhere in your schema after other things have been hidden. + # Default: true hideUnusedTypes: true + + # Whether to document any Types at all + # Default: true objectsDocumentedDefault: true + # Whether to document an individual Type, in the absence of a metadata directive + # Default: true objectDocumentedDefault: true + + # Whether to document any Input Object types at all + # Default: true inputsDocumentedDefault: true + # Whether to document an individual Input Object, in the absence of a metadata directive + # Default: true inputDocumentedDefault: true + + # Whether to document any Enums at all + # Default: true enumsDocumentedDefault: true + # Whether to document an individual Enum, in the absence of a metadata directive + # Default: true enumDocumentedDefault: true + + # Whether to document any Unions at all + # Default: true unionsDocumentedDefault: true + # Whether to document an individual Union, in the absence of a metadata directive + # Default: true unionDocumentedDefault: true + # Hide Union possibleTypes that are not documented so as not to reference something + # that seemingly does not exist. + # Default: true hideUnionTypesOfUndocumentedType: true + + # Whether to document an individual Field, in the absence of a metadata directive + # Default: true fieldDocumentedDefault: true + # Hide any fields of undocumented types so as not to reference something + # that seemingly does not exist. + # Default: true hideFieldsOfUndocumentedType: true + + # Whether to document an individual Input Field, in the absence of a metadata directive + # Default: true inputFieldDocumentedDefault: true + # Hide any inputFields of undocumented types so as not to reference something + # that seemingly does not exist. + # Default: true hideInputFieldsOfUndocumentedType: true + + # Whether to document an individual Argument, in the absence of a metadata directive + # Default: true argDocumentedDefault: true + # Hide any args of undocumented types so as not to reference something + # that seemingly does not exist. + # Default: true hideArgsOfUndocumentedType: true + # + # + ############################################## + extensions: + # Utilize the 'graphql-scalars' library when generating examples for scalars it supports that + # do not have an example already set via some other method. Usually this is a good + # thing to have on, but it is possible to turn it off. + # Default: true graphqlScalarExamples: true servers: + # NOTE: If not using introspection.url OR servers[], you need to provide x-url + + # same format as for OpenAPI Specification https://swagger.io/specification/#server-object + - url: https://.api.commerce.adobe.com//graphql description: Production Server + # A place to list any Headers for your GraphQL API calls headers: - name: Authorization example: Bearer @@ -143,12 +363,37 @@ servers: [GraphQL headers](https://developer.adobe.com/commerce/webapi/graphql/usage/headers). info: + # Tries to adhere to OpenAPI Specification https://swagger.io/specification/#info-object + # Will be used to populate the Welcome section of the output + + ############################################## + # Introduction area flags + # + + # Set to true to do no Introduction area rendering at all. Supersedes the below options + # Default: false x-hideIntroduction: false + # Set to true to not render a friendly Welcome section based on the description in this area + # Default: false x-hideWelcome: false + # Set to true to not render your intro items + # Default: false x-hideIntroItems: true + + # Set to true to not render the deprecated label + # Default: false x-hideIsDeprecated: false + # Set to true to not render the deprecation reason + # Default: false x-hideDeprecationReason: false + + # If you really want to hide the "Documentation by" at the bottom of your output, you can do so here + # Default: false x-hidePoweredBy: true + + # + ############################################## + description: >- The Adobe Commerce as a Cloud Service GraphQL API allows you to quickly and efficiently transfer information between your Commerce store and your