diff --git a/spectaql/schema_saas.json b/spectaql/schema_saas.json index d1923ae6b..20860cb5e 100644 --- a/spectaql/schema_saas.json +++ b/spectaql/schema_saas.json @@ -51243,6 +51243,65 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "PageInfo", + "description": "Provides pagination information for navigating through paginated result sets.", + "fields": [ + { + "name": "currentPage", + "description": "The current page number (1-based indexing).", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageSize", + "description": "The number of items per page.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalPages", + "description": "The total number of pages available.", + "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": "ENUM", "name": "PageType", @@ -59307,7 +59366,7 @@ }, { "name": "categoryTree", - "description": "Retrieves category tree nodes, optionally filtered by slugs and limited by depth.", + "description": "Retrieves category tree nodes, optionally filtered by family, slugs and limited by depth.", "args": [ { "name": "family", @@ -59339,7 +59398,7 @@ }, { "name": "depth", - "description": "The depth of the category tree to retrieve. For example, depth 1 will retrieve only root categories (categories with level 1), depth 2 will retrieve root categories and their primary children (level 1 & level 2 categories).", + "description": "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.", "type": { "kind": "SCALAR", "name": "Int", @@ -59360,6 +59419,63 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "searchCategory", + "description": "Search for categories by name with optional filtering and pagination.", + "args": [ + { + "name": "searchTerm", + "description": "The search term to match against category names.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "family", + "description": "Optional product family filter to limit search results. For example, clothing, electronics or books.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pageSize", + "description": "The number of results to return per page (default: 20).", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "20" + }, + { + "name": "currentPage", + "description": "The page number to retrieve (1-based indexing, default: 1).", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "1" + } + ], + "type": { + "kind": "OBJECT", + "name": "SearchCategoryResultPage", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "attributesForm", "description": "Retrieve EAV attributes associated to a frontend form. Use countries query provided by DirectoryGraphQl module to retrieve region_id and country_id attribute options.", @@ -65335,6 +65451,73 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "SearchCategoryResultPage", + "description": "Represents a paginated result set of category search results.", + "fields": [ + { + "name": "items", + "description": "The list of categories matching the search criteria.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CategoryTreeView", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The total number of categories matching the search criteria across all pages.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": "Pagination information for navigating through results.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "SearchClauseInput", diff --git a/src/openapi/accs-schema.yaml b/src/openapi/accs-schema.yaml index 9a100ca67..7ef7c0f4e 100644 --- a/src/openapi/accs-schema.yaml +++ b/src/openapi/accs-schema.yaml @@ -2237,6 +2237,25 @@ definitions: - error_message - request_timestamp type: object + commerce-backend-uix-data-selected-extension-data-interface: + description: Defines the selected extensions table data model + properties: + extension_name: + description: The extension name + type: string + extension_title: + description: The extension title + type: string + extension_url: + description: The extension url + type: string + extension_workspace: + description: The extension workspace + type: string + id: + description: Id field + type: string + type: object company-credit-data-credit-balance-options-interface: description: Credit balance data transfer object interface. properties: @@ -2502,6 +2521,11 @@ definitions: country_id: description: Country. type: string + custom_attributes: + description: Custom attributes values. + items: + "$ref": "#/definitions/framework-attribute-interface" + type: array customer_group_id: description: Customer Group Id. type: integer @@ -4984,6 +5008,11 @@ definitions: creator_type: description: Quote creator type. type: integer + custom_attributes: + description: Custom attributes values. + items: + "$ref": "#/definitions/framework-attribute-interface" + type: array deleted_sku: description: Deleted products sku. type: string @@ -5327,6 +5356,33 @@ definitions: - updated_at - extension_attributes type: object + oope-api-integrations-data-order-status-interface: + description: Represents a configured order status with its state assignment. Combines + data from sales_order_status and sales_order_status_state tables. A status assigned + to multiple states will appear as multiple entries. + properties: + default: + description: This status is the default status for its assigned state. + type: boolean + label: + description: The status label. + type: string + state: + description: The associated order state code, or null if the status is not + assigned to any state. + type: string + status: + description: The status code. + type: string + visible_on_front: + description: This status is visible on the storefront. + type: boolean + required: + - status + - label + - default + - visible_on_front + type: object otp-rest-data-otp-response-interface: description: Response containing the one-time password for customer login. properties: @@ -5686,6 +5742,11 @@ definitions: type: string currency: "$ref": "#/definitions/quote-data-currency-interface" + custom_attributes: + description: Custom attributes values. + items: + "$ref": "#/definitions/framework-attribute-interface" + type: array customer: "$ref": "#/definitions/customer-data-customer-interface" customer_is_guest: @@ -5753,6 +5814,11 @@ definitions: quote-data-cart-item-interface: description: Interface CartItemInterface properties: + custom_attributes: + description: Custom attributes values. + items: + "$ref": "#/definitions/framework-attribute-interface" + type: array extension_attributes: "$ref": "#/definitions/quote-data-cart-item-extension-interface" item_id: @@ -6210,6 +6276,11 @@ definitions: base_tax_amount: description: Tax amount in base currency. Otherwise, null. type: number + custom_attributes: + description: Custom attributes values. + items: + "$ref": "#/definitions/framework-attribute-interface" + type: array discount_amount: description: Discount amount in quote currency. Otherwise, null. type: number @@ -6770,6 +6841,11 @@ definitions: creditmemo_status: description: Credit memo status. type: integer + custom_attributes: + description: Custom attributes values. + items: + "$ref": "#/definitions/framework-attribute-interface" + type: array discount_amount: description: Credit memo discount amount. type: number @@ -6927,6 +7003,11 @@ definitions: base_weee_tax_row_disposition: description: Base WEEE tax row disposition. type: number + custom_attributes: + description: Custom attributes values. + items: + "$ref": "#/definitions/framework-attribute-interface" + type: array description: description: Description. type: string @@ -7198,6 +7279,11 @@ definitions: created_at: description: Created-at timestamp. type: string + custom_attributes: + description: Custom attributes values. + items: + "$ref": "#/definitions/framework-attribute-interface" + type: array discount_amount: description: Discount amount. type: number @@ -7343,6 +7429,11 @@ definitions: base_tax_amount: description: Base tax amount. type: number + custom_attributes: + description: Custom attributes values. + items: + "$ref": "#/definitions/framework-attribute-interface" + type: array description: description: Description. type: string @@ -7435,6 +7526,11 @@ definitions: country_id: description: Country ID. type: string + custom_attributes: + description: Custom attributes values. + items: + "$ref": "#/definitions/framework-attribute-interface" + type: array customer_address_id: description: Country address ID. type: integer @@ -7846,6 +7942,11 @@ definitions: created_at: description: Created-at timestamp. type: string + custom_attributes: + description: Custom attributes values. + items: + "$ref": "#/definitions/framework-attribute-interface" + type: array customer_dob: description: In keeping with current security and privacy best practices, be sure you are aware of any potential legal and security risks associated @@ -8242,6 +8343,11 @@ definitions: created_at: description: Created-at timestamp. type: string + custom_attributes: + description: Custom attributes values. + items: + "$ref": "#/definitions/framework-attribute-interface" + type: array description: description: Description. type: string @@ -10046,6 +10152,11 @@ definitions: class_type: description: Tax class type. type: string + custom_attributes: + description: Custom attributes values. + items: + "$ref": "#/definitions/framework-attribute-interface" + type: array extension_attributes: "$ref": "#/definitions/tax-data-tax-class-extension-interface" required: @@ -10355,6 +10466,97 @@ paths: tags: - adminuisdk/appmanagement/validate summary: adminuisdk/appmanagement/validate + "/V1/adminuisdk/extension": + post: + consumes: + - application/json + - application/xml + description: Saving the selected extensions to database. + operationId: PostV1AdminuisdkExtension + parameters: + - in: body + name: PostV1AdminuisdkExtensionBody + schema: + properties: + extension: + "$ref": "#/definitions/commerce-backend-uix-data-selected-extension-data-interface" + required: + - extension + type: object + xml: + name: request + produces: + - application/json + - application/xml + responses: + '400': + description: 400 Bad Request + schema: + "$ref": "#/definitions/error-response" + '401': + description: 401 Unauthorized + schema: + "$ref": "#/definitions/error-response" + '500': + description: Internal Server error + schema: + "$ref": "#/definitions/error-response" + default: + description: Unexpected error + schema: + "$ref": "#/definitions/error-response" + tags: + - adminuisdk/extension + summary: adminuisdk/extension + "/V1/adminuisdk/extension/{workspace_name}/{extension_name}": + delete: + consumes: + - application/json + - application/xml + description: Delete selected extension by extension name. + operationId: DeleteV1AdminuisdkExtensionWorkspace_nameExtension_name + parameters: + - in: path + name: workspace_name + required: true + type: string + - in: path + name: extension_name + required: true + type: string + - in: body + name: DeleteV1AdminuisdkExtensionWorkspace_nameExtension_nameBody + schema: + properties: + extensionName: + type: string + workspaceName: + type: string + required: + - workspaceName + - extensionName + type: object + xml: + name: request + produces: + - application/json + - application/xml + responses: + '401': + description: 401 Unauthorized + schema: + "$ref": "#/definitions/error-response" + '500': + description: Internal Server error + schema: + "$ref": "#/definitions/error-response" + default: + description: Unexpected error + schema: + "$ref": "#/definitions/error-response" + tags: + - adminuisdk/extension/{workspace_name}/{extension_name} + summary: adminuisdk/extension/{workspace_name}/{extension_name} "/V1/adminuisdk/massaction/{request_id}": get: consumes: @@ -22226,6 +22428,34 @@ paths: tags: - oope_tax_management/tax_integration/{code} summary: oope_tax_management/tax_integration/{code} + "/V1/order-statuses": + get: + consumes: + - application/json + - application/xml + description: Get all configured order statuses with their state assignments. + operationId: GetV1Orderstatuses + produces: + - application/json + - application/xml + responses: + '200': + description: 200 Success. + schema: + items: + "$ref": "#/definitions/oope-api-integrations-data-order-status-interface" + type: array + '401': + description: 401 Unauthorized + schema: + "$ref": "#/definitions/error-response" + default: + description: Unexpected error + schema: + "$ref": "#/definitions/error-response" + tags: + - order-statuses + summary: order-statuses "/V1/order/notify-orders-are-ready-for-pickup": post: consumes: @@ -29805,6 +30035,8 @@ swagger: '2.0' tags: - name: addresses/{addressId} - name: adminuisdk/appmanagement/validate +- name: adminuisdk/extension +- name: adminuisdk/extension/{workspace_name}/{extension_name} - name: adminuisdk/massaction/{request_id} - name: adminuisdk/orderviewbutton/{request_id} - name: adobe_io_events/check_configuration @@ -30031,6 +30263,7 @@ tags: - name: oope_shipping_carrier/{code} - name: oope_tax_management/tax_integration - name: oope_tax_management/tax_integration/{code} +- name: order-statuses - name: order/{orderId}/invoice - name: order/{orderId}/refund - name: order/{orderId}/ship @@ -30181,6 +30414,8 @@ x-tagGroups: - name: adminuisdk tags: - adminuisdk/appmanagement/validate + - adminuisdk/extension + - adminuisdk/extension/{workspace_name}/{extension_name} - adminuisdk/massaction/{request_id} - adminuisdk/orderviewbutton/{request_id} - name: adobe_io_events @@ -30481,6 +30716,9 @@ x-tagGroups: tags: - oope_tax_management/tax_integration - oope_tax_management/tax_integration/{code} +- name: order statuses + tags: + - order-statuses - name: order tags: - order/notify-orders-are-ready-for-pickup @@ -30659,4 +30897,4 @@ x-tagGroups: - webhooks/list - webhooks/subscribe - webhooks/supportedList - - webhooks/unsubscribe \ No newline at end of file + - webhooks/unsubscribe diff --git a/static/graphql-api/saas/index.html b/static/graphql-api/saas/index.html index 64cfba263..066405889 100644 --- a/static/graphql-api/saas/index.html +++ b/static/graphql-api/saas/index.html @@ -91,6 +91,7 @@
{"formCode": "abc123"}
+ {"formCode": "xyz789"}
Retrieves category tree nodes, optionally filtered by slugs and limited by depth.
+Retrieves category tree nodes, optionally filtered by family, slugs and limited by depth.
depth - Int
{
- "family": "abc123",
+ "family": "xyz789",
"slugs": ["abc123"],
"depth": 987
}
@@ -2114,9 +2117,9 @@ Response
"data": {
"categoryTree": [
{
- "slug": "xyz789",
- "name": "xyz789",
- "description": "abc123",
+ "slug": "abc123",
+ "name": "abc123",
+ "description": "xyz789",
"metaTags": CategoryMetaTags,
"images": [CategoryImage],
"level": 987,
@@ -2178,11 +2181,11 @@ Response
"data": {
"checkoutAgreements": [
{
- "agreement_id": 987,
+ "agreement_id": 123,
"checkbox_text": "abc123",
"content": "abc123",
- "content_height": "abc123",
- "is_html": true,
+ "content_height": "xyz789",
+ "is_html": false,
"mode": "AUTO",
"name": "abc123"
}
@@ -2340,12 +2343,12 @@ Response
"credit": CompanyCredit,
"credit_history": CompanyCreditHistory,
"custom_attributes": [CustomAttribute],
- "email": "xyz789",
+ "email": "abc123",
"id": "4",
"legal_address": CompanyLegalAddress,
- "legal_name": "abc123",
+ "legal_name": "xyz789",
"name": "abc123",
- "payment_methods": ["xyz789"],
+ "payment_methods": ["abc123"],
"reseller_id": "xyz789",
"role": CompanyRole,
"roles": CompanyRoles,
@@ -2355,7 +2358,7 @@ Response
"team": CompanyTeam,
"user": Customer,
"users": CompanyUsers,
- "vat_tax_id": "xyz789"
+ "vat_tax_id": "abc123"
}
}
}
@@ -2496,10 +2499,10 @@ Response
"countries": [
{
"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",
+ "three_letter_abbreviation": "abc123",
"two_letter_abbreviation": "xyz789"
}
]
@@ -2584,9 +2587,9 @@ Response
"country": {
"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"
}
}
@@ -2647,9 +2650,9 @@ Response
"xyz789"
],
"base_currency_code": "xyz789",
- "base_currency_symbol": "abc123",
- "default_display_currency_code": "abc123",
- "default_display_currency_symbol": "abc123",
+ "base_currency_symbol": "xyz789",
+ "default_display_currency_code": "xyz789",
+ "default_display_currency_symbol": "xyz789",
"exchange_rates": [ExchangeRate]
}
}
@@ -2878,20 +2881,20 @@ Response
"companies": UserCompaniesOutput,
"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": "abc123",
"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": "abc123",
+ "job_title": "xyz789",
"lastname": "xyz789",
"middlename": "xyz789",
"orders": CustomerOrders,
@@ -2911,11 +2914,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]
}
@@ -3026,19 +3029,19 @@ 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],
- "total_quantity": 123.45
+ "total_quantity": 987.65
}
}
}
@@ -3251,11 +3254,7 @@ Variables
{
- "data": {
- "customerSegments": [{"uid": "4"}]
- }
-}
+ {"data": {"customerSegments": [{"uid": 4}]}}
{
- "cartId": "abc123",
- "id": "abc123"
+ "cartId": "xyz789",
+ "id": "xyz789"
}
{
"data": {
"getPaymentOrder": {
- "id": "xyz789",
+ "id": "abc123",
"mp_order_id": "abc123",
"payment_source_details": PaymentSourceDetails,
"status": "abc123"
@@ -3641,8 +3640,8 @@ Response
"data": {
"giftCardAccount": {
"balance": Money,
- "code": "abc123",
- "expiration_date": "xyz789"
+ "code": "xyz789",
+ "expiration_date": "abc123"
}
}
}
@@ -3740,16 +3739,16 @@ Response
"dynamic_attributes": [
GiftRegistryDynamicAttribute
],
- "event_name": "xyz789",
+ "event_name": "abc123",
"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
}
}
}
@@ -3819,7 +3818,7 @@ Query
Variables
- {"email": "abc123"}
+ {"email": "xyz789"}
@@ -3828,12 +3827,12 @@ Response
"data": {
"giftRegistryEmailSearch": [
{
- "event_date": "abc123",
- "event_title": "abc123",
+ "event_date": "xyz789",
+ "event_title": "xyz789",
"gift_registry_uid": "4",
- "location": "xyz789",
+ "location": "abc123",
"name": "xyz789",
- "type": "abc123"
+ "type": "xyz789"
}
]
}
@@ -3914,11 +3913,11 @@ Response
"giftRegistryIdSearch": [
{
"event_date": "abc123",
- "event_title": "abc123",
- "gift_registry_uid": 4,
+ "event_title": "xyz789",
+ "gift_registry_uid": "4",
"location": "xyz789",
"name": "abc123",
- "type": "abc123"
+ "type": "xyz789"
}
]
}
@@ -4011,8 +4010,8 @@ Query
Variables
{
"firstName": "xyz789",
- "lastName": "xyz789",
- "giftRegistryTypeUid": "4"
+ "lastName": "abc123",
+ "giftRegistryTypeUid": 4
}
@@ -4027,7 +4026,7 @@ Response
"gift_registry_uid": "4",
"location": "abc123",
"name": "abc123",
- "type": "xyz789"
+ "type": "abc123"
}
]
}
@@ -4086,7 +4085,7 @@ Response
GiftRegistryDynamicAttributeMetadataInterface
],
"label": "abc123",
- "uid": "4"
+ "uid": 4
}
]
}
@@ -4236,19 +4235,19 @@ Response
"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,
+ "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,
@@ -4256,7 +4255,7 @@ Response
"shipping_address": OrderAddress,
"shipping_method": "abc123",
"status": "abc123",
- "token": "abc123",
+ "token": "xyz789",
"total": OrderTotal
}
}
@@ -4401,18 +4400,18 @@ 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": "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,
@@ -4425,8 +4424,8 @@ Response
"shipments": [OrderShipment],
"shipping_address": OrderAddress,
"shipping_method": "xyz789",
- "status": "abc123",
- "token": "abc123",
+ "status": "xyz789",
+ "token": "xyz789",
"total": OrderTotal
}
}
@@ -4498,7 +4497,7 @@ Variables
Response
- {"data": {"isCompanyAdminEmailAvailable": {"is_email_available": false}}}
+ {"data": {"isCompanyAdminEmailAvailable": {"is_email_available": true}}}
@@ -4561,12 +4560,12 @@ Query
Variables
- {"email": "abc123"}
+ {"email": "xyz789"}
Response
- {"data": {"isCompanyEmailAvailable": {"is_email_available": true}}}
+ {"data": {"isCompanyEmailAvailable": {"is_email_available": false}}}
@@ -4634,7 +4633,7 @@ Variables
Response
- {"data": {"isCompanyRoleNameAvailable": {"is_role_name_available": false}}}
+ {"data": {"isCompanyRoleNameAvailable": {"is_role_name_available": true}}}
@@ -4702,7 +4701,7 @@ Variables
Response
- {"data": {"isCompanyUserEmailAvailable": {"is_email_available": true}}}
+ {"data": {"isCompanyUserEmailAvailable": {"is_email_available": false}}}
@@ -4764,12 +4763,12 @@ Query
Variables
- {"email": "xyz789"}
+ {"email": "abc123"}
Response
- {"data": {"isEmailAvailable": {"is_email_available": true}}}
+ {"data": {"isEmailAvailable": {"is_email_available": false}}}
@@ -4842,7 +4841,7 @@ Response
"data": {
"isSubscribedProductAlertPrice": {
"isSubscribed": true,
- "message": "abc123"
+ "message": "xyz789"
}
}
}
@@ -4987,7 +4986,7 @@ Query
Variables
- {"family": "abc123"}
+ {"family": "xyz789"}
@@ -4997,7 +4996,7 @@ Response
"navigation": [
{
"slug": "xyz789",
- "name": "xyz789",
+ "name": "abc123",
"children": [CategoryNavigationView]
}
]
@@ -5109,7 +5108,7 @@ Query
Variables
- {"uid": "4"}
+ {"uid": 4}
@@ -5125,15 +5124,15 @@ Response
"comments": [NegotiableQuoteComment],
"created_at": "abc123",
"custom_attributes": [CustomAttribute],
- "email": "abc123",
+ "email": "xyz789",
"expiration_date": "xyz789",
"history": [NegotiableQuoteHistoryEntry],
- "is_virtual": true,
+ "is_virtual": false,
"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
@@ -5141,8 +5140,8 @@ Response
"status": "SUBMITTED",
"template_id": "4",
"template_name": "xyz789",
- "total_quantity": 987.65,
- "uid": "4",
+ "total_quantity": 123.45,
+ "uid": 4,
"updated_at": "xyz789"
}
}
@@ -5266,8 +5265,8 @@ Response
"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": [
@@ -5279,7 +5278,7 @@ Response
],
"status": "abc123",
"template_id": "4",
- "total_quantity": 987.65,
+ "total_quantity": 123.45,
"uid": "4",
"updated_at": "abc123"
}
@@ -5517,7 +5516,7 @@ Response
"items": [NegotiableQuote],
"page_info": SearchResultPageInfo,
"sort_fields": SortFields,
- "total_count": 123
+ "total_count": 987
}
}
}
@@ -5649,7 +5648,7 @@ Response
"pickupLocations": {
"items": [PickupLocation],
"page_info": SearchResultPageInfo,
- "total_count": 987
+ "total_count": 123
}
}
}
@@ -5791,7 +5790,7 @@ Response
"items": [ProductSearchItem],
"page_info": SearchResultPageInfo,
"related_terms": ["xyz789"],
- "suggestions": ["abc123"],
+ "suggestions": ["xyz789"],
"total_count": 987,
"warnings": [ProductSearchWarning]
}
@@ -5902,7 +5901,7 @@ Response
"products": [
{
"addToCartAllowed": true,
- "inStock": false,
+ "inStock": true,
"lowStock": false,
"attributes": [ProductViewAttribute],
"description": "xyz789",
@@ -5910,20 +5909,20 @@ Response
"images": [ProductViewImage],
"videos": [ProductViewVideo],
"lastModifiedAt": "2007-12-03T10:15:30Z",
- "metaDescription": "xyz789",
- "metaKeyword": "xyz789",
- "metaTitle": "abc123",
- "name": "xyz789",
- "shortDescription": "xyz789",
+ "metaDescription": "abc123",
+ "metaKeyword": "abc123",
+ "metaTitle": "xyz789",
+ "name": "abc123",
+ "shortDescription": "abc123",
"inputOptions": [ProductViewInputOption],
- "sku": "abc123",
+ "sku": "xyz789",
"externalId": "abc123",
"url": "xyz789",
"urlKey": "abc123",
"links": [ProductViewLink],
"categories": [CategoryProductView],
"queryType": "xyz789",
- "visibility": "abc123"
+ "visibility": "xyz789"
}
]
}
@@ -6075,7 +6074,7 @@ Response
{
"configurations": ReCaptchaConfiguration,
"form_type": "PLACE_ORDER",
- "is_enabled": false
+ "is_enabled": true
}
]
}
@@ -6132,12 +6131,12 @@ Response
{
"data": {
"recaptchaV3Config": {
- "badge_position": "xyz789",
+ "badge_position": "abc123",
"failure_message": "xyz789",
"forms": ["PLACE_ORDER"],
"is_enabled": true,
- "language_code": "abc123",
- "minimum_score": 123.45,
+ "language_code": "xyz789",
+ "minimum_score": 987.65,
"theme": "abc123",
"website_key": "abc123"
}
@@ -6261,7 +6260,7 @@ Query
Variables
{
"cartSkus": ["abc123"],
- "category": "xyz789",
+ "category": "abc123",
"currentSku": "abc123",
"pageType": "CMS",
"userPurchaseHistory": [PurchaseHistory],
@@ -6276,7 +6275,7 @@ Response
"data": {
"recommendations": {
"results": [RecommendationUnit],
- "totalResults": 987
+ "totalResults": 123
}
}
}
@@ -6387,7 +6386,7 @@ Response
"data": {
"recommendationsByUnitIds": {
"results": [RecommendationUnit],
- "totalResults": 987
+ "totalResults": 123
}
}
}
@@ -6510,8 +6509,8 @@ Response
"data": {
"refineProduct": {
"addToCartAllowed": false,
- "inStock": false,
- "lowStock": true,
+ "inStock": true,
+ "lowStock": false,
"attributes": [ProductViewAttribute],
"description": "abc123",
"id": "4",
@@ -6520,18 +6519,132 @@ Response
"lastModifiedAt": "2007-12-03T10:15:30Z",
"metaDescription": "abc123",
"metaKeyword": "xyz789",
- "metaTitle": "xyz789",
- "name": "abc123",
+ "metaTitle": "abc123",
+ "name": "xyz789",
"shortDescription": "abc123",
"inputOptions": [ProductViewInputOption],
- "sku": "abc123",
+ "sku": "xyz789",
"externalId": "abc123",
"url": "abc123",
- "urlKey": "xyz789",
+ "urlKey": "abc123",
"links": [ProductViewLink],
"categories": [CategoryProductView],
- "queryType": "xyz789",
- "visibility": "abc123"
+ "queryType": "abc123",
+ "visibility": "xyz789"
+ }
+ }
+}
+
+
+
+ back to top
+
+
+
+
+ Queries
+
+
+ searchCategory
+
+
+
+
+ Description
+ Search for categories by name with optional filtering and pagination.
+
+
+
+
+
+
+ Response
+ Returns a SearchCategoryResultPage
+
+
+
+ Arguments
+
+
+
+ Name
+ Description
+
+
+
+
+
+ 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": "abc123",
+ "family": "abc123",
+ "pageSize": 20,
+ "currentPage": 1
+}
+
+
+
+ Response
+ {
+ "data": {
+ "searchCategory": {
+ "items": [CategoryTreeView],
+ "totalCount": 123,
+ "pageInfo": PageInfo
}
}
}
@@ -6724,118 +6837,118 @@ Response
"storeConfig": {
"allow_company_registration": true,
"allow_gift_receipt": "abc123",
- "allow_gift_wrapping_on_order": "abc123",
+ "allow_gift_wrapping_on_order": "xyz789",
"allow_gift_wrapping_on_order_items": "abc123",
"allow_items": "xyz789",
"allow_order": "abc123",
- "allow_printed_card": "abc123",
+ "allow_printed_card": "xyz789",
"autocomplete_on_storefront": true,
- "base_currency_code": "xyz789",
+ "base_currency_code": "abc123",
"base_link_url": "abc123",
- "base_media_url": "abc123",
+ "base_media_url": "xyz789",
"base_static_url": "abc123",
"base_url": "abc123",
- "cart_expires_in_days": 987,
+ "cart_expires_in_days": 123,
"cart_gift_wrapping": "abc123",
- "cart_merge_preference": "abc123",
- "cart_printed_card": "xyz789",
+ "cart_merge_preference": "xyz789",
+ "cart_printed_card": "abc123",
"cart_summary_display_quantity": 123,
"catalog_default_sort_by": "xyz789",
"category_fixed_product_tax_display_setting": "INCLUDE_FPT_WITHOUT_DETAILS",
- "category_url_suffix": "xyz789",
+ "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": "xyz789",
+ "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_new_order_status": "xyz789",
+ "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_enabled": true,
+ "company_enabled": false,
"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,
+ "countries_with_required_region": "abc123",
+ "create_account_confirmation": false,
+ "customer_access_token_lifetime": 123.45,
"default_country": "abc123",
- "default_display_currency_code": "xyz789",
- "display_product_prices_in_catalog": 123,
+ "default_display_currency_code": "abc123",
+ "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_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_display_prices_on_product_view_page": 987,
"fixed_product_taxes_enable": false,
- "fixed_product_taxes_include_fpt_in_subtotal": false,
- "graphql_share_customer_group": true,
- "grid_per_page": 987,
+ "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": false,
"is_default_store": false,
- "is_default_store_group": true,
- "is_guest_checkout_enabled": false,
- "is_negotiable_quote_active": false,
- "is_one_page_checkout_enabled": 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": "xyz789",
"list_mode": "abc123",
- "list_per_page": 123,
- "list_per_page_values": "abc123",
- "locale": "abc123",
- "magento_reward_general_is_enabled": "xyz789",
+ "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",
- "magento_reward_general_min_points_balance": "xyz789",
- "magento_reward_general_publish_history": "abc123",
- "magento_reward_points_invitation_customer": "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": "abc123",
"magento_reward_points_invitation_order_limit": "xyz789",
- "magento_reward_points_newsletter": "abc123",
- "magento_reward_points_order": "abc123",
+ "magento_reward_points_newsletter": "xyz789",
+ "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,
- "maximum_number_of_wishlists": "abc123",
+ "maximum_number_of_wishlists": "xyz789",
"minicart_display": false,
"minicart_max_items": 123,
"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": false,
- "orders_invoices_credit_memos_display_price": 987,
+ "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": 123,
- "orders_invoices_credit_memos_display_subtotal": 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",
+ "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",
"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": "xyz789",
+ "secure_base_media_url": "abc123",
"secure_base_static_url": "abc123",
"secure_base_url": "abc123",
- "share_active_segments": false,
- "share_applied_cart_rule": false,
+ "share_active_segments": true,
+ "share_applied_cart_rule": true,
"shopping_cart_display_full_summary": false,
"shopping_cart_display_grand_total": false,
"shopping_cart_display_price": 123,
@@ -6847,20 +6960,20 @@ Response
"store_group_code": "4",
"store_group_name": "xyz789",
"store_name": "xyz789",
- "store_sort_order": 987,
+ "store_sort_order": 123,
"timezone": "abc123",
- "title_separator": "xyz789",
- "use_store_in_url": true,
+ "title_separator": "abc123",
+ "use_store_in_url": false,
"website_code": 4,
"website_name": "xyz789",
- "weight_unit": "xyz789",
- "zero_subtotal_enable_for_specific_countries": true,
+ "weight_unit": "abc123",
+ "zero_subtotal_enable_for_specific_countries": false,
"zero_subtotal_enabled": false,
"zero_subtotal_new_order_status": "xyz789",
"zero_subtotal_payment_action": "xyz789",
"zero_subtotal_payment_from_specific_countries": "abc123",
- "zero_subtotal_sort_order": 987,
- "zero_subtotal_title": "abc123"
+ "zero_subtotal_sort_order": 123,
+ "zero_subtotal_title": "xyz789"
}
}
}
@@ -6949,7 +7062,7 @@ Query
Variables
{
- "sku": "abc123",
+ "sku": "xyz789",
"optionIds": ["abc123"],
"pageSize": 123,
"cursor": "abc123"
@@ -7031,7 +7144,7 @@ Variables
Response
- {"data": {"acceptCompanyInvitation": {"success": true}}}
+ {"data": {"acceptCompanyInvitation": {"success": false}}}
@@ -7147,25 +7260,25 @@ Response
"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,
+ "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,
- "uid": "4",
- "updated_at": "abc123"
+ "template_id": "4",
+ "total_quantity": 987.65,
+ "uid": 4,
+ "updated_at": "xyz789"
}
}
}
@@ -7664,7 +7777,7 @@ Query
Variables
{
- "requisitionListUid": 4,
+ "requisitionListUid": "4",
"requisitionListItems": [RequisitionListItemsInput]
}
@@ -7756,7 +7869,10 @@ Query
Variables
- {"wishlistId": 4, "wishlistItems": [WishlistItemInput]}
+ {
+ "wishlistId": "4",
+ "wishlistItems": [WishlistItemInput]
+}
@@ -8005,7 +8121,7 @@ Query
Variables
{
- "requisitionListUid": "4",
+ "requisitionListUid": 4,
"requisitionListItemUids": ["4"]
}
@@ -8019,7 +8135,7 @@ Response
AddRequisitionListItemToCartUserError
],
"cart": Cart,
- "status": false
+ "status": true
}
}
}
@@ -8250,7 +8366,7 @@ Query
Variables
- {"wishlistId": 4, "wishlistItemIds": [4]}
+ {"wishlistId": 4, "wishlistItemIds": ["4"]}
@@ -8261,7 +8377,7 @@ Response
"add_wishlist_items_to_cart_user_errors": [
WishlistCartUserInputError
],
- "status": true,
+ "status": false,
"wishlist": Wishlist
}
}
@@ -8756,7 +8872,7 @@ Query
Variables
- {"uid": 4}
+ {"uid": "4"}
@@ -8899,19 +9015,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": false,
+ "id": 4,
+ "is_virtual": true,
"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
}
}
}
@@ -9029,11 +9145,11 @@ 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": 987,
- "min_order_commitment": 987,
+ "min_order_commitment": 123,
"name": "abc123",
"notifications": [QuoteTemplateNotificationMessage],
"prices": CartPrices,
@@ -9045,9 +9161,9 @@ Response
NegotiableQuoteShippingAddress
],
"status": "xyz789",
- "template_id": 4,
- "total_quantity": 987.65,
- "uid": 4,
+ "template_id": "4",
+ "total_quantity": 123.45,
+ "uid": "4",
"updated_at": "xyz789"
}
}
@@ -9381,7 +9497,7 @@ Query
Variables
{
- "currentPassword": "xyz789",
+ "currentPassword": "abc123",
"newPassword": "abc123"
}
@@ -9393,22 +9509,22 @@ Response
"changeCustomerPassword": {
"addresses": [CustomerAddress],
"addressesV2": CustomerAddresses,
- "allow_remote_shopping_assistance": true,
+ "allow_remote_shopping_assistance": false,
"companies": UserCompaniesOutput,
"compare_list": CompareList,
"confirmation_status": "ACCOUNT_CONFIRMED",
"created_at": "abc123",
"custom_attributes": [AttributeValueInterface],
- "date_of_birth": "xyz789",
+ "date_of_birth": "abc123",
"default_billing": "xyz789",
- "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",
+ "id": 4,
"is_subscribed": false,
"job_title": "xyz789",
"lastname": "abc123",
@@ -9504,7 +9620,7 @@ Query
Variables
- {"cartUid": "abc123"}
+ {"cartUid": "xyz789"}
@@ -9580,7 +9696,7 @@ Query
Variables
- {"wishlistId": "4"}
+ {"wishlistId": 4}
@@ -10143,7 +10259,7 @@ Query
Variables
{
"sourceRequisitionListUid": "4",
- "destinationRequisitionListUid": 4,
+ "destinationRequisitionListUid": "4",
"requisitionListItem": CopyItemsBetweenRequisitionListsInput
}
@@ -10248,7 +10364,7 @@ Query
Variables
{
"sourceWishlistUid": "4",
- "destinationWishlistUid": 4,
+ "destinationWishlistUid": "4",
"wishlistItems": [WishlistItemCopyInput]
}
@@ -10622,9 +10738,9 @@ Response
"data": {
"createCompareList": {
"attributes": [ComparableAttribute],
- "item_count": 123,
+ "item_count": 987,
"items": [ComparableItem],
- "uid": "4"
+ "uid": 4
}
}
}
@@ -10724,27 +10840,27 @@ Response
{
"data": {
"createCustomerAddress": {
- "city": "abc123",
- "company": "xyz789",
+ "city": "xyz789",
+ "company": "abc123",
"country_code": "AF",
"custom_attributesV2": [AttributeValueInterface],
"default_billing": true,
- "default_shipping": false,
+ "default_shipping": true,
"extension_attributes": [CustomerAddressAttribute],
"fax": "abc123",
"firstname": "abc123",
- "id": 123,
+ "id": 987,
"lastname": "xyz789",
"middlename": "abc123",
- "postcode": "abc123",
- "prefix": "abc123",
+ "postcode": "xyz789",
+ "prefix": "xyz789",
"region": CustomerAddressRegion,
"region_id": 123,
- "street": ["xyz789"],
+ "street": ["abc123"],
"suffix": "xyz789",
- "telephone": "xyz789",
- "uid": "4",
- "vat_id": "abc123"
+ "telephone": "abc123",
+ "uid": 4,
+ "vat_id": "xyz789"
}
}
}
@@ -11037,7 +11153,7 @@ Response
"currency_code": "abc123",
"id": "xyz789",
"mp_order_id": "xyz789",
- "status": "xyz789"
+ "status": "abc123"
}
}
}
@@ -11134,8 +11250,8 @@ Response
"description": "xyz789",
"name": "abc123",
"status": "ENABLED",
- "uid": 4,
- "updated_at": "abc123"
+ "uid": "4",
+ "updated_at": "xyz789"
}
}
}
@@ -11361,7 +11477,7 @@ Response
{
"data": {
"createVaultCardSetupToken": {
- "setup_token": "abc123"
+ "setup_token": "xyz789"
}
}
}
@@ -11637,7 +11753,7 @@ Variables
Response
- {"data": {"deleteCompanyUserV2": {"success": false}}}
+ {"data": {"deleteCompanyUserV2": {"success": true}}}
@@ -11704,7 +11820,7 @@ Variables
Response
- {"data": {"deleteCompareList": {"result": false}}}
+ {"data": {"deleteCompareList": {"result": true}}}
@@ -11745,7 +11861,7 @@ Query
Response
- {"data": {"deleteCustomer": true}}
+ {"data": {"deleteCustomer": false}}
@@ -11812,12 +11928,12 @@ Query
Variables
- {"id": 987}
+ {"id": 123}
Response
- {"data": {"deleteCustomerAddress": true}}
+ {"data": {"deleteCustomerAddress": false}}
@@ -11877,12 +11993,12 @@ Query
Variables
- {"uid": "4"}
+ {"uid": 4}
Response
- {"data": {"deleteCustomerAddressV2": false}}
+ {"data": {"deleteCustomerAddressV2": true}}
@@ -12100,7 +12216,7 @@ Query
Variables
- {"public_hash": "xyz789"}
+ {"public_hash": "abc123"}
@@ -12109,7 +12225,7 @@ Response
"data": {
"deletePaymentToken": {
"customerPaymentTokens": CustomerPaymentTokens,
- "result": true
+ "result": false
}
}
}
@@ -12341,10 +12457,7 @@ Query
Variables
- {
- "requisitionListUid": 4,
- "requisitionListItemUids": ["4"]
-}
+ {"requisitionListUid": 4, "requisitionListItemUids": [4]}
@@ -12596,11 +12709,11 @@ Response
"additional_data": [ShippingAdditionalData],
"amount": Money,
"available": false,
- "carrier_code": "abc123",
- "carrier_title": "xyz789",
- "error_message": "abc123",
+ "carrier_code": "xyz789",
+ "carrier_title": "abc123",
+ "error_message": "xyz789",
"method_code": "abc123",
- "method_title": "abc123",
+ "method_title": "xyz789",
"price_excl_tax": Money,
"price_incl_tax": Money
}
@@ -12837,7 +12950,7 @@ Response
{
"data": {
"exchangeOtpForCustomerToken": {
- "token": "xyz789"
+ "token": "abc123"
}
}
}
@@ -12906,7 +13019,7 @@ Response
"data": {
"finishUpload": {
"key": "xyz789",
- "message": "abc123",
+ "message": "xyz789",
"success": false
}
}
@@ -12985,8 +13098,8 @@ Query
Variables
{
- "email": "xyz789",
- "password": "abc123"
+ "email": "abc123",
+ "password": "xyz789"
}
@@ -13068,7 +13181,7 @@ Response
{
"data": {
"generateCustomerTokenAsAdmin": {
- "customer_token": "xyz789"
+ "customer_token": "abc123"
}
}
}
@@ -13138,13 +13251,7 @@ Variables
Response
- {
- "data": {
- "generateNegotiableQuoteFromTemplate": {
- "negotiable_quote_uid": "4"
- }
- }
-}
+ {"data": {"generateNegotiableQuoteFromTemplate": {"negotiable_quote_uid": 4}}}
@@ -13209,9 +13316,9 @@ Response
{
"data": {
"initiateUpload": {
- "expires_at": "abc123",
- "key": "xyz789",
- "upload_url": "abc123"
+ "expires_at": "xyz789",
+ "key": "abc123",
+ "upload_url": "xyz789"
}
}
}
@@ -13339,7 +13446,7 @@ Query
Variables
{
- "source_cart_id": "xyz789",
+ "source_cart_id": "abc123",
"destination_cart_id": "abc123"
}
@@ -13371,7 +13478,7 @@ Response
"rules": [CartRuleStorefront],
"selected_payment_method": SelectedPaymentMethod,
"shipping_addresses": [ShippingCartAddress],
- "total_quantity": 987.65
+ "total_quantity": 123.45
}
}
}
@@ -13454,10 +13561,7 @@ Query
Variables
- {
- "cartUid": "4",
- "giftRegistryUid": "4"
-}
+ {"cartUid": "4", "giftRegistryUid": 4}
@@ -13466,7 +13570,7 @@ Response
"data": {
"moveCartItemsToGiftRegistry": {
"gift_registry": GiftRegistry,
- "status": false,
+ "status": true,
"user_errors": [GiftRegistryItemsUserError]
}
}
@@ -13558,8 +13662,8 @@ Query
Variables
{
- "sourceRequisitionListUid": 4,
- "destinationRequisitionListUid": "4",
+ "sourceRequisitionListUid": "4",
+ "destinationRequisitionListUid": 4,
"requisitionListItem": MoveItemsBetweenRequisitionListsInput
}
@@ -13740,7 +13844,7 @@ Query
Variables
{
"sourceWishlistUid": "4",
- "destinationWishlistUid": 4,
+ "destinationWishlistUid": "4",
"wishlistItems": [WishlistItemMoveInput]
}
@@ -13867,11 +13971,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": true,
+ "is_virtual": false,
"items": [CartItemInterface],
"max_order_commitment": 123,
"min_order_commitment": 123,
@@ -13881,15 +13985,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"
+ "updated_at": "abc123"
}
}
}
@@ -14351,8 +14455,8 @@ Response
"data": {
"redeemGiftCardBalanceAsStoreCredit": {
"balance": Money,
- "code": "abc123",
- "expiration_date": "abc123"
+ "code": "xyz789",
+ "expiration_date": "xyz789"
}
}
}
@@ -14785,10 +14889,7 @@ Query
Variables
- {
- "giftRegistryUid": "4",
- "itemsUid": ["4"]
-}
+ {"giftRegistryUid": 4, "itemsUid": [4]}
@@ -15144,14 +15245,14 @@ Response
"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": false,
"items": [CartItemInterface],
- "max_order_commitment": 123,
+ "max_order_commitment": 987,
"min_order_commitment": 123,
"name": "abc123",
"notifications": [QuoteTemplateNotificationMessage],
@@ -15166,7 +15267,7 @@ Response
"status": "abc123",
"template_id": "4",
"total_quantity": 987.65,
- "uid": "4",
+ "uid": 4,
"updated_at": "abc123"
}
}
@@ -15332,7 +15433,7 @@ Query
Variables
- {"wishlistId": 4, "wishlistItemsIds": [4]}
+ {"wishlistId": 4, "wishlistItemsIds": ["4"]}
@@ -16049,23 +16150,23 @@ Response
"is_min_max_qty_used": 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": "xyz789",
+ "sales_rep_name": "abc123",
"shipping_addresses": [
NegotiableQuoteShippingAddress
],
"status": "abc123",
- "template_id": 4,
+ "template_id": "4",
"total_quantity": 987.65,
"uid": 4,
- "updated_at": "xyz789"
+ "updated_at": "abc123"
}
}
}
@@ -16128,7 +16229,7 @@ Query
Variables
- {"email": "abc123"}
+ {"email": "xyz789"}
@@ -16358,7 +16459,7 @@ Query
Variables
{
- "email": "xyz789",
+ "email": "abc123",
"resetPasswordToken": "xyz789",
"newPassword": "abc123"
}
@@ -16409,7 +16510,7 @@ Query
Response
- {"data": {"revokeCustomerToken": {"result": true}}}
+ {"data": {"revokeCustomerToken": {"result": false}}}
@@ -16616,7 +16717,7 @@ Query
Variables
- {"cartId": "xyz789"}
+ {"cartId": "abc123"}
@@ -16624,8 +16725,8 @@ Response
{
"data": {
"setCartAsInactive": {
- "error": "abc123",
- "success": false
+ "error": "xyz789",
+ "success": true
}
}
}
@@ -17840,15 +17941,15 @@ 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": false,
+ "is_min_max_qty_used": true,
+ "is_virtual": true,
"items": [CartItemInterface],
"max_order_commitment": 123,
- "min_order_commitment": 123,
+ "min_order_commitment": 987,
"name": "abc123",
"notifications": [QuoteTemplateNotificationMessage],
"prices": CartPrices,
@@ -18046,15 +18147,15 @@ Response
"setQuoteTemplateExpirationDate": {
"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": "abc123",
"notifications": [QuoteTemplateNotificationMessage],
"prices": CartPrices,
@@ -18067,7 +18168,7 @@ Response
],
"status": "abc123",
"template_id": 4,
- "total_quantity": 123.45,
+ "total_quantity": 987.65,
"uid": "4",
"updated_at": "abc123"
}
@@ -18183,22 +18284,22 @@ Response
"setQuoteTemplateLineItemNote": {
"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": false,
+ "is_virtual": true,
"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
],
@@ -18430,7 +18531,7 @@ Query
Variables
{
- "giftRegistryUid": "4",
+ "giftRegistryUid": 4,
"sender": ShareGiftRegistrySenderInput,
"invitees": [ShareGiftRegistryInviteeInput]
}
@@ -18438,7 +18539,7 @@ Variables
Response
- {"data": {"shareGiftRegistry": {"is_shared": true}}}
+ {"data": {"shareGiftRegistry": {"is_shared": false}}}
@@ -18554,11 +18655,11 @@ 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,
- "name": "abc123",
+ "min_order_commitment": 123,
+ "name": "xyz789",
"notifications": [QuoteTemplateNotificationMessage],
"prices": CartPrices,
"reference_document_links": [
@@ -18568,9 +18669,9 @@ Response
"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": "xyz789"
}
@@ -18637,7 +18738,7 @@ Query
Variables
- {"email": "abc123"}
+ {"email": "xyz789"}
@@ -18715,7 +18816,7 @@ Response
"data": {
"subscribeProductAlertPrice": {
"message": "xyz789",
- "success": false
+ "success": true
}
}
}
@@ -18790,7 +18891,7 @@ Response
{
"data": {
"subscribeProductAlertStock": {
- "message": "abc123",
+ "message": "xyz789",
"success": true
}
}
@@ -18931,8 +19032,8 @@ Response
{
"data": {
"unsubscribeProductAlertPrice": {
- "message": "abc123",
- "success": true
+ "message": "xyz789",
+ "success": false
}
}
}
@@ -18983,7 +19084,7 @@ Response
"data": {
"unsubscribeProductAlertPriceAll": {
"message": "xyz789",
- "success": true
+ "success": false
}
}
}
@@ -19110,7 +19211,7 @@ Response
"data": {
"unsubscribeProductAlertStockAll": {
"message": "xyz789",
- "success": true
+ "success": false
}
}
}
@@ -19657,27 +19758,27 @@ Response
{
"data": {
"updateCustomerAddress": {
- "city": "abc123",
+ "city": "xyz789",
"company": "xyz789",
"country_code": "AF",
"custom_attributesV2": [AttributeValueInterface],
"default_billing": false,
- "default_shipping": false,
+ "default_shipping": true,
"extension_attributes": [CustomerAddressAttribute],
- "fax": "abc123",
+ "fax": "xyz789",
"firstname": "xyz789",
- "id": 123,
+ "id": 987,
"lastname": "xyz789",
"middlename": "abc123",
- "postcode": "xyz789",
- "prefix": "abc123",
+ "postcode": "abc123",
+ "prefix": "xyz789",
"region": CustomerAddressRegion,
- "region_id": 123,
+ "region_id": 987,
"street": ["xyz789"],
- "suffix": "abc123",
- "telephone": "xyz789",
+ "suffix": "xyz789",
+ "telephone": "abc123",
"uid": "4",
- "vat_id": "abc123"
+ "vat_id": "xyz789"
}
}
}
@@ -19780,7 +19881,10 @@ Query
Variables
- {"uid": 4, "input": CustomerAddressInput}
+ {
+ "uid": "4",
+ "input": CustomerAddressInput
+}
@@ -19792,23 +19896,23 @@ Response
"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",
+ "fax": "xyz789",
"firstname": "xyz789",
"id": 123,
"lastname": "xyz789",
"middlename": "xyz789",
"postcode": "abc123",
- "prefix": "abc123",
+ "prefix": "xyz789",
"region": CustomerAddressRegion,
- "region_id": 987,
+ "region_id": 123,
"street": ["abc123"],
"suffix": "xyz789",
- "telephone": "abc123",
- "uid": "4",
- "vat_id": "xyz789"
+ "telephone": "xyz789",
+ "uid": 4,
+ "vat_id": "abc123"
}
}
}
@@ -19889,7 +19993,7 @@ Query
Variables
{
"email": "abc123",
- "password": "abc123"
+ "password": "xyz789"
}
@@ -20129,7 +20233,7 @@ Query
Variables
{
- "giftRegistryUid": 4,
+ "giftRegistryUid": "4",
"items": [UpdateGiftRegistryItemInput]
}
@@ -20219,7 +20323,7 @@ Query
Variables
{
- "giftRegistryUid": 4,
+ "giftRegistryUid": "4",
"registrants": [UpdateGiftRegistryRegistrantInput]
}
@@ -20566,12 +20670,12 @@ Response
"approver_roles": [CompanyRole],
"condition": PurchaseOrderApprovalRuleConditionInterface,
"created_at": "abc123",
- "created_by": "xyz789",
+ "created_by": "abc123",
"description": "xyz789",
- "name": "xyz789",
+ "name": "abc123",
"status": "ENABLED",
"uid": "4",
- "updated_at": "abc123"
+ "updated_at": "xyz789"
}
}
}
@@ -20652,7 +20756,7 @@ Query
Variables
{
- "requisitionListUid": "4",
+ "requisitionListUid": 4,
"input": UpdateRequisitionListInput
}
@@ -20742,7 +20846,7 @@ Query
Variables
{
- "requisitionListUid": 4,
+ "requisitionListUid": "4",
"requisitionListItems": [
UpdateRequisitionListItemsInput
]
@@ -20842,7 +20946,7 @@ Query
Variables
{
- "wishlistId": "4",
+ "wishlistId": 4,
"name": "abc123",
"visibility": "PUBLIC"
}
@@ -21304,10 +21408,7 @@ Fields
Example
- {
- "products": ["4"],
- "uid": "4"
-}
+ {"products": [4], "uid": "4"}
@@ -21587,9 +21688,9 @@ Fields
Example
{
- "cart_id": "abc123",
+ "cart_id": "xyz789",
"purchase_order_uid": 4,
- "replace_existing_cart_items": false
+ "replace_existing_cart_items": true
}
@@ -21636,7 +21737,7 @@ Fields
Example
{
- "message": "abc123",
+ "message": "xyz789",
"type": "OUT_OF_STOCK"
}
@@ -21800,7 +21901,10 @@ Fields
Example
- {"comment_text": "abc123", "return_uid": 4}
+ {
+ "comment_text": "xyz789",
+ "return_uid": "4"
+}
@@ -21894,9 +21998,9 @@ Fields
Example
{
- "carrier_uid": "4",
- "return_uid": "4",
- "tracking_number": "xyz789"
+ "carrier_uid": 4,
+ "return_uid": 4,
+ "tracking_number": "abc123"
}
@@ -21999,7 +22103,7 @@ Example
"add_wishlist_items_to_cart_user_errors": [
WishlistCartUserInputError
],
- "status": true,
+ "status": false,
"wishlist": Wishlist
}
@@ -22057,7 +22161,7 @@ Fields
Example
{
- "attribute": "xyz789",
+ "attribute": "abc123",
"buckets": [Bucket],
"title": "xyz789",
"type": "INTELLIGENT"
@@ -22190,13 +22294,13 @@ Fields
Example
{
"button_styles": ButtonStyles,
- "code": "abc123",
- "is_visible": true,
+ "code": "xyz789",
+ "is_visible": false,
"payment_intent": "abc123",
"payment_source": "abc123",
"sdk_params": [SDKParams],
- "sort_order": "abc123",
- "title": "abc123"
+ "sort_order": "xyz789",
+ "title": "xyz789"
}
@@ -22251,8 +22355,8 @@ Fields
Example
{
- "payment_source": "xyz789",
- "payments_order_id": "abc123",
+ "payment_source": "abc123",
+ "payments_order_id": "xyz789",
"paypal_order_id": "abc123"
}
@@ -22351,9 +22455,9 @@ Fields
Example
{
"applied_balance": Money,
- "code": "abc123",
+ "code": "xyz789",
"current_balance": Money,
- "expiration_date": "abc123"
+ "expiration_date": "xyz789"
}
@@ -22406,7 +22510,7 @@ Fields
Example
{
"action_type": "BOOST",
- "rule_id": "xyz789",
+ "rule_id": "abc123",
"rule_name": "xyz789"
}
@@ -22517,7 +22621,7 @@ Example
{
"applied_balance": Money,
"current_balance": Money,
- "enabled": false
+ "enabled": true
}
@@ -22711,7 +22815,7 @@ Fields
Example
{
- "cart_id": "abc123",
+ "cart_id": "xyz789",
"coupon_codes": ["abc123"],
"type": "APPEND"
}
@@ -22762,7 +22866,7 @@ Fields
Example
{
- "cart_id": "abc123",
+ "cart_id": "xyz789",
"gift_card_code": "xyz789"
}
@@ -23020,7 +23124,7 @@ Fields
Example
- {"radius": 987, "search_term": "abc123"}
+ {"radius": 123, "search_term": "abc123"}
@@ -23082,9 +23186,9 @@ Fields
Example
{
"asset_image": ProductMediaGalleryEntriesAssetImage,
- "disabled": false,
+ "disabled": true,
"label": "abc123",
- "position": 987,
+ "position": 123,
"url": "abc123"
}
@@ -23150,8 +23254,8 @@ Example
"asset_video": ProductMediaGalleryEntriesAssetVideo,
"disabled": false,
"label": "abc123",
- "position": 123,
- "url": "abc123"
+ "position": 987,
+ "url": "xyz789"
}
@@ -23197,7 +23301,7 @@ Fields
Example
- {"compare_list": CompareList, "result": false}
+ {"compare_list": CompareList, "result": true}
@@ -23322,7 +23426,7 @@ Example
"attribute_type": "xyz789",
"code": 4,
"url": "xyz789",
- "value": "abc123"
+ "value": "xyz789"
}
@@ -23435,14 +23539,14 @@ Example
"is_filterable": true,
"is_filterable_in_search": false,
"is_html_allowed_on_front": true,
- "is_searchable": false,
+ "is_searchable": true,
"is_used_for_customer_segment": true,
"is_used_for_price_rules": false,
- "is_used_for_promo_rules": false,
- "is_visible_in_advanced_search": true,
- "is_visible_on_front": false,
- "is_wysiwyg_enabled": false,
- "used_in_product_listing": true
+ "is_used_for_promo_rules": true,
+ "is_visible_in_advanced_search": false,
+ "is_visible_on_front": true,
+ "is_wysiwyg_enabled": true,
+ "used_in_product_listing": false
}
@@ -23642,8 +23746,8 @@ Fields
Example
{
- "attribute_type": "abc123",
- "code": "4",
+ "attribute_type": "xyz789",
+ "code": 4,
"url": "abc123",
"value": "abc123"
}
@@ -23695,7 +23799,7 @@ Fields
Example
{
"attribute_code": "xyz789",
- "entity_type": "abc123"
+ "entity_type": "xyz789"
}
@@ -23737,7 +23841,7 @@ Fields
Example
- {"value": "abc123"}
+ {"value": "xyz789"}
@@ -23819,12 +23923,12 @@ Fields
Example
{
"code": "4",
- "default_value": "abc123",
+ "default_value": "xyz789",
"entity_type": "CATALOG_PRODUCT",
"frontend_class": "xyz789",
"frontend_input": "BOOLEAN",
"is_required": true,
- "is_unique": false,
+ "is_unique": true,
"label": "abc123",
"options": [CustomAttributeOptionInterface]
}
@@ -24034,7 +24138,7 @@ Fields
Example
{
"is_default": true,
- "label": "abc123",
+ "label": "xyz789",
"value": "abc123"
}
@@ -24078,7 +24182,7 @@ Fields
Example
{
- "label": "xyz789",
+ "label": "abc123",
"value": "xyz789"
}
@@ -24140,7 +24244,7 @@ Possible Types
Example
{
"label": "abc123",
- "value": "abc123"
+ "value": "xyz789"
}
@@ -24189,8 +24293,8 @@ Fields
Example
{
- "attribute_type": "xyz789",
- "code": "4",
+ "attribute_type": "abc123",
+ "code": 4,
"selected_options": [AttributeSelectedOptionInterface]
}
@@ -24239,9 +24343,9 @@ Fields
Example
{
- "attribute_type": "abc123",
- "code": "4",
- "value": "xyz789"
+ "attribute_type": "xyz789",
+ "code": 4,
+ "value": "abc123"
}
@@ -24521,7 +24625,7 @@ Fields
Example
- {"code": "AFN", "symbol": "abc123"}
+ {"code": "AFN", "symbol": "xyz789"}
@@ -24578,7 +24682,7 @@ Fields
Example
{
"code": "xyz789",
- "is_deferred": true,
+ "is_deferred": false,
"oope_payment_method_config": OopePaymentMethodConfig,
"title": "abc123"
}
@@ -24669,12 +24773,12 @@ Example
{
"additional_data": [ShippingAdditionalData],
"amount": Money,
- "available": false,
- "carrier_code": "abc123",
+ "available": true,
+ "carrier_code": "xyz789",
"carrier_title": "xyz789",
"error_message": "abc123",
"method_code": "xyz789",
- "method_title": "xyz789",
+ "method_title": "abc123",
"price_excl_tax": Money,
"price_incl_tax": Money
}
@@ -24797,7 +24901,7 @@ Example
{
"address": CartAddressInput,
"customer_address_id": 987,
- "customer_address_uid": "4",
+ "customer_address_uid": 4,
"same_as_shipping": false,
"use_for_shipping": true
}
@@ -24874,8 +24978,8 @@ Example
{
"address_line_1": "xyz789",
"address_line_2": "xyz789",
- "city": "abc123",
- "country_code": "xyz789",
+ "city": "xyz789",
+ "country_code": "abc123",
"postal_code": "abc123",
"region": "xyz789"
}
@@ -25005,22 +25109,22 @@ Fields
Example
{
- "city": "xyz789",
- "company": "abc123",
+ "city": "abc123",
+ "company": "xyz789",
"country": CartAddressCountry,
"custom_attributes": [AttributeValueInterface],
- "customer_address_uid": "4",
+ "customer_address_uid": 4,
"fax": "xyz789",
- "firstname": "abc123",
+ "firstname": "xyz789",
"id": 123,
- "lastname": "xyz789",
- "middlename": "xyz789",
+ "lastname": "abc123",
+ "middlename": "abc123",
"postcode": "xyz789",
"prefix": "abc123",
"region": CartAddressRegion,
"street": ["xyz789"],
- "suffix": "abc123",
- "telephone": "xyz789",
+ "suffix": "xyz789",
+ "telephone": "abc123",
"uid": "4",
"vat_id": "abc123"
}
@@ -25106,10 +25210,10 @@ Fields
Example
{
- "category_level": 123,
+ "category_level": 987,
"category_name": "xyz789",
- "category_uid": 4,
- "category_url_key": "xyz789",
+ "category_uid": "4",
+ "category_url_key": "abc123",
"category_url_path": "xyz789"
}
@@ -25188,7 +25292,7 @@ Possible Types
Example
- {"title": "abc123"}
+ {"title": "xyz789"}
@@ -25324,7 +25428,7 @@ Example
"gift_message": GiftMessage,
"gift_wrapping": GiftWrapping,
"is_available": false,
- "max_qty": 987.65,
+ "max_qty": 123.45,
"min_qty": 123.45,
"not_available_message": "abc123",
"note_from_buyer": [ItemNote],
@@ -25511,8 +25615,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
}
@@ -25593,10 +25697,10 @@ Example
"position": 987,
"price_range": PriceRange,
"required": true,
- "sku": "xyz789",
- "title": "abc123",
+ "sku": "abc123",
+ "title": "xyz789",
"type": "abc123",
- "uid": 4
+ "uid": "4"
}
@@ -25678,15 +25782,15 @@ Fields
Example
{
- "can_change_quantity": false,
+ "can_change_quantity": true,
"is_default": false,
- "label": "abc123",
+ "label": "xyz789",
"position": 987,
"price": 123.45,
"price_type": "FIXED",
"product": ProductInterface,
- "quantity": 987.65,
- "uid": 4
+ "quantity": 123.45,
+ "uid": "4"
}
@@ -25862,18 +25966,18 @@ Example
"product": ProductInterface,
"product_name": "xyz789",
"product_sale_price": Money,
- "product_sku": "abc123",
- "product_type": "abc123",
+ "product_sku": "xyz789",
+ "product_type": "xyz789",
"product_url_key": "abc123",
"quantity_canceled": 987.65,
- "quantity_invoiced": 123.45,
+ "quantity_invoiced": 987.65,
"quantity_ordered": 987.65,
- "quantity_refunded": 123.45,
+ "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": "abc123"
+ "status": "xyz789"
}
@@ -26163,17 +26267,17 @@ filters
Example
{
- "canonical_url": "abc123",
+ "canonical_url": "xyz789",
"categories": [CategoryInterface],
"country_of_manufacture": "abc123",
"crosssell_products": [ProductInterface],
"custom_attributesV2": ProductCustomAttributes,
"description": ComplexTextValue,
- "dynamic_price": false,
+ "dynamic_price": true,
"dynamic_sku": true,
- "dynamic_weight": true,
+ "dynamic_weight": false,
"gift_message_available": false,
- "gift_wrapping_available": true,
+ "gift_wrapping_available": false,
"gift_wrapping_price": Money,
"image": ProductImage,
"is_returnable": "xyz789",
@@ -26181,36 +26285,36 @@ Example
"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,
+ "meta_title": "abc123",
+ "min_sale_qty": 987.65,
"name": "abc123",
"new_from_date": "abc123",
"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": "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",
"thumbnail": ProductImage,
"uid": "4",
"upsell_products": [ProductInterface],
"url_key": "xyz789",
- "weight": 987.65
+ "weight": 123.45
}
@@ -26282,7 +26386,7 @@ Example
"product": ProductInterface,
"quantity": 987.65,
"sku": "abc123",
- "uid": 4
+ "uid": "4"
}
@@ -26359,8 +26463,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
}
@@ -26433,11 +26537,11 @@ Fields
Example
{
- "added_at": "xyz789",
+ "added_at": "abc123",
"bundle_options": [SelectedBundleOption],
"customizable_options": [SelectedCustomizableOption],
- "description": "abc123",
- "id": "4",
+ "description": "xyz789",
+ "id": 4,
"product": ProductInterface,
"quantity": 123.45
}
@@ -26507,11 +26611,11 @@ Fields
Example
{
- "color": "xyz789",
- "height": 123,
- "label": "xyz789",
- "layout": "xyz789",
- "shape": "xyz789",
+ "color": "abc123",
+ "height": 987,
+ "label": "abc123",
+ "layout": "abc123",
+ "shape": "abc123",
"tagline": true,
"use_default_height": false
}
@@ -26607,7 +26711,7 @@ Fields
Example
{
"code": "ORDER_CANCELLATION_DISABLED",
- "message": "abc123"
+ "message": "xyz789"
}
@@ -26728,7 +26832,10 @@ Fields
Example
- {"order_id": 4, "reason": "abc123"}
+ {
+ "order_id": "4",
+ "reason": "abc123"
+}
@@ -26780,7 +26887,7 @@ Fields
Example
{
- "error": "abc123",
+ "error": "xyz789",
"errorV2": CancelOrderError,
"order": CustomerOrder
}
@@ -26878,9 +26985,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"
}
@@ -26967,7 +27074,7 @@ Fields
Example
{
"billing_address": BillingAddressPaymentSourceInput,
- "name": "xyz789"
+ "name": "abc123"
}
@@ -27019,7 +27126,7 @@ Fields
Example
{
- "brand": "xyz789",
+ "brand": "abc123",
"expiry": "xyz789",
"last_digits": "xyz789"
}
@@ -27198,14 +27305,14 @@ Example
"gift_receipt_included": false,
"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": 123.45
+ "total_quantity": 987.65
}
@@ -27252,8 +27359,8 @@ Fields
Example
{
- "code": "abc123",
- "label": "xyz789"
+ "code": "xyz789",
+ "label": "abc123"
}
@@ -27393,22 +27500,22 @@ Fields
Example
{
"city": "xyz789",
- "company": "abc123",
- "country_code": "xyz789",
+ "company": "xyz789",
+ "country_code": "abc123",
"custom_attributes": [AttributeValueInput],
"fax": "abc123",
- "firstname": "xyz789",
- "lastname": "xyz789",
+ "firstname": "abc123",
+ "lastname": "abc123",
"middlename": "abc123",
"postcode": "xyz789",
- "prefix": "xyz789",
- "region": "abc123",
- "region_id": 123,
- "save_in_address_book": true,
+ "prefix": "abc123",
+ "region": "xyz789",
+ "region_id": 987,
+ "save_in_address_book": false,
"street": ["xyz789"],
- "suffix": "abc123",
- "telephone": "abc123",
- "vat_id": "xyz789"
+ "suffix": "xyz789",
+ "telephone": "xyz789",
+ "vat_id": "abc123"
}
@@ -27554,22 +27661,22 @@ Possible Types
Example
{
- "city": "xyz789",
- "company": "abc123",
+ "city": "abc123",
+ "company": "xyz789",
"country": CartAddressCountry,
"custom_attributes": [AttributeValueInterface],
- "customer_address_uid": 4,
- "fax": "abc123",
- "firstname": "xyz789",
- "id": 987,
- "lastname": "xyz789",
+ "customer_address_uid": "4",
+ "fax": "xyz789",
+ "firstname": "abc123",
+ "id": 123,
+ "lastname": "abc123",
"middlename": "xyz789",
"postcode": "abc123",
"prefix": "xyz789",
"region": CartAddressRegion,
- "street": ["xyz789"],
- "suffix": "abc123",
- "telephone": "xyz789",
+ "street": ["abc123"],
+ "suffix": "xyz789",
+ "telephone": "abc123",
"uid": "4",
"vat_id": "xyz789"
}
@@ -27623,9 +27730,9 @@ Fields
Example
{
- "code": "abc123",
+ "code": "xyz789",
"label": "xyz789",
- "region_id": 123
+ "region_id": 987
}
@@ -27776,7 +27883,7 @@ Fields
Example
{
"cart_id": "abc123",
- "cart_item_id": "xyz789",
+ "cart_item_id": "abc123",
"custom_attributes": [CustomAttributeInput]
}
@@ -27819,7 +27926,7 @@ Fields
Example
- {"code": "UNDEFINED", "message": "xyz789"}
+ {"code": "UNDEFINED", "message": "abc123"}
@@ -27938,8 +28045,8 @@ Fields
Example
{
"entered_options": [EnteredOptionInput],
- "parent_sku": "xyz789",
- "quantity": 987.65,
+ "parent_sku": "abc123",
+ "quantity": 123.45,
"selected_options": ["4"],
"sku": "abc123"
}
@@ -28089,15 +28196,15 @@ Example
"custom_attributes": [CustomAttribute],
"discount": [Discount],
"errors": [CartItemError],
- "is_available": true,
- "max_qty": 123.45,
- "min_qty": 987.65,
- "not_available_message": "abc123",
+ "is_available": false,
+ "max_qty": 987.65,
+ "min_qty": 123.45,
+ "not_available_message": "xyz789",
"note_from_buyer": [ItemNote],
"note_from_seller": [ItemNote],
"prices": CartItemPrices,
"product": ProductInterface,
- "quantity": 987.65,
+ "quantity": 123.45,
"uid": 4
}
@@ -28254,7 +28361,7 @@ Example
{
"type": "FIXED",
"units": "xyz789",
- "value": 987.65
+ "value": 123.45
}
@@ -28496,7 +28603,7 @@ Fields
Example
- {"uid": 4}
+ {"uid": "4"}
@@ -28543,7 +28650,7 @@ Fields
Example
{
"amount": Money,
- "label": "abc123"
+ "label": "xyz789"
}
@@ -28912,29 +29019,29 @@ Fields
Example
{
"apply_to": ["SIMPLE"],
- "code": "4",
- "default_value": "abc123",
+ "code": 4,
+ "default_value": "xyz789",
"entity_type": "CATALOG_PRODUCT",
"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_required": false,
- "is_searchable": true,
+ "is_html_allowed_on_front": false,
+ "is_required": true,
+ "is_searchable": false,
"is_unique": true,
- "is_used_for_price_rules": false,
+ "is_used_for_price_rules": true,
"is_used_for_promo_rules": false,
- "is_visible_in_advanced_search": false,
+ "is_visible_in_advanced_search": true,
"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,
+ "update_product_preview_image": true,
"use_product_image_for_swatch": false,
- "used_in_product_listing": true
+ "used_in_product_listing": false
}
@@ -29053,7 +29160,7 @@ Possible Types
Example
- {"id": "4"}
+ {"id": 4}
@@ -29110,7 +29217,7 @@ Fields
Example
{
"url": "abc123",
- "label": "xyz789",
+ "label": "abc123",
"roles": ["abc123"],
"customRoles": ["abc123"]
}
@@ -29303,31 +29410,31 @@ Possible Types
Example
{
- "available_sort_by": ["abc123"],
+ "available_sort_by": ["xyz789"],
"breadcrumbs": [Breadcrumb],
"canonical_url": "xyz789",
"children_count": "abc123",
"custom_layout_update_file": "abc123",
- "default_sort_by": "xyz789",
+ "default_sort_by": "abc123",
"description": "xyz789",
"display_mode": "abc123",
- "filter_price_range": 987.65,
- "image": "xyz789",
+ "filter_price_range": 123.45,
+ "image": "abc123",
"include_in_menu": 987,
- "is_anchor": 123,
+ "is_anchor": 987,
"landing_page": 987,
"level": 987,
"meta_description": "abc123",
"meta_keywords": "xyz789",
"meta_title": "abc123",
- "name": "xyz789",
- "path": "abc123",
- "path_in_store": "xyz789",
- "position": 987,
- "product_count": 123,
+ "name": "abc123",
+ "path": "xyz789",
+ "path_in_store": "abc123",
+ "position": 123,
+ "product_count": 987,
"uid": 4,
- "url_key": "xyz789",
- "url_path": "xyz789"
+ "url_key": "abc123",
+ "url_path": "abc123"
}
@@ -29379,9 +29486,9 @@ Fields
Example
{
- "title": "abc123",
+ "title": "xyz789",
"description": "abc123",
- "keywords": ["abc123"]
+ "keywords": ["xyz789"]
}
@@ -29494,7 +29601,7 @@ Example
{
"name": "xyz789",
"slug": "abc123",
- "level": 987,
+ "level": 123,
"parents": [CategoryProductView]
}
@@ -29669,30 +29776,30 @@ Fields
Example
{
- "available_sort_by": ["abc123"],
+ "available_sort_by": ["xyz789"],
"breadcrumbs": [Breadcrumb],
- "canonical_url": "abc123",
+ "canonical_url": "xyz789",
"children_count": "xyz789",
- "custom_layout_update_file": "xyz789",
- "default_sort_by": "abc123",
+ "custom_layout_update_file": "abc123",
+ "default_sort_by": "xyz789",
"description": "abc123",
- "display_mode": "xyz789",
+ "display_mode": "abc123",
"filter_price_range": 987.65,
- "image": "abc123",
- "include_in_menu": 123,
+ "image": "xyz789",
+ "include_in_menu": 987,
"is_anchor": 123,
"landing_page": 987,
- "level": 987,
- "meta_description": "xyz789",
+ "level": 123,
+ "meta_description": "abc123",
"meta_keywords": "xyz789",
"meta_title": "abc123",
"name": "xyz789",
"path": "abc123",
"path_in_store": "xyz789",
"position": 987,
- "product_count": 123,
- "uid": "4",
- "url_key": "abc123",
+ "product_count": 987,
+ "uid": 4,
+ "url_key": "xyz789",
"url_path": "xyz789"
}
@@ -29771,12 +29878,12 @@ Fields
Example
{
"slug": "abc123",
- "name": "abc123",
+ "name": "xyz789",
"description": "xyz789",
"metaTags": CategoryMetaTags,
"images": [CategoryImage],
"level": 123,
- "parentSlug": "xyz789",
+ "parentSlug": "abc123",
"childrenSlugs": ["xyz789"]
}
@@ -29885,18 +29992,18 @@ Fields
Example
{
- "availableSortBy": ["abc123"],
+ "availableSortBy": ["xyz789"],
"children": ["abc123"],
- "defaultSortBy": "abc123",
+ "defaultSortBy": "xyz789",
"id": "4",
"level": 123,
"name": "xyz789",
"parentId": "xyz789",
"path": "abc123",
- "roles": ["xyz789"],
+ "roles": ["abc123"],
"urlKey": "xyz789",
- "urlPath": "xyz789",
- "count": 987,
+ "urlPath": "abc123",
+ "count": 123,
"title": "abc123"
}
@@ -29999,12 +30106,12 @@ Example
{
"availableSortBy": ["xyz789"],
"defaultSortBy": "xyz789",
- "id": 4,
+ "id": "4",
"level": 987,
- "name": "xyz789",
+ "name": "abc123",
"path": "abc123",
"roles": ["abc123"],
- "urlKey": "xyz789",
+ "urlKey": "abc123",
"urlPath": "abc123"
}
@@ -30079,8 +30186,8 @@ Possible Types
Example
{
- "slug": "abc123",
- "name": "xyz789"
+ "slug": "xyz789",
+ "name": "abc123"
}
@@ -30152,13 +30259,13 @@ Fields
Example
{
- "agreement_id": 123,
+ "agreement_id": 987,
"checkbox_text": "xyz789",
"content": "xyz789",
"content_height": "abc123",
"is_html": true,
"mode": "AUTO",
- "name": "abc123"
+ "name": "xyz789"
}
@@ -30259,7 +30366,7 @@ Example
{
"code": "REORDER_NOT_AVAILABLE",
"message": "abc123",
- "path": ["abc123"]
+ "path": ["xyz789"]
}
@@ -30463,7 +30570,7 @@ Fields
Example
{
"errors": [NegotiableQuoteInvalidStateError],
- "quote_uid": 4
+ "quote_uid": "4"
}
@@ -30666,7 +30773,7 @@ Fields
Example
- {"value": "xyz789"}
+ {"value": "abc123"}
@@ -30706,7 +30813,7 @@ Fields
Example
- {"priceBookId": "4"}
+ {"priceBookId": 4}
@@ -31076,10 +31183,10 @@ Example
"credit": CompanyCredit,
"credit_history": CompanyCreditHistory,
"custom_attributes": [CustomAttribute],
- "email": "xyz789",
- "id": "4",
+ "email": "abc123",
+ "id": 4,
"legal_address": CompanyLegalAddress,
- "legal_name": "xyz789",
+ "legal_name": "abc123",
"name": "abc123",
"payment_methods": ["abc123"],
"reseller_id": "xyz789",
@@ -31150,7 +31257,7 @@ Example
{
"children": [CompanyAclResource],
"id": "4",
- "sort_order": 987,
+ "sort_order": 123,
"text": "xyz789"
}
@@ -31344,8 +31451,8 @@ Fields
Example
{
"id": 4,
- "legal_name": "abc123",
- "name": "xyz789",
+ "legal_name": "xyz789",
+ "name": "abc123",
"status": "PENDING"
}
@@ -31426,12 +31533,12 @@ Fields
Example
{
"company_admin": CompanyAdminInput,
- "company_email": "xyz789",
+ "company_email": "abc123",
"company_name": "abc123",
"legal_address": CompanyLegalAddressCreateInput,
- "legal_name": "abc123",
- "reseller_id": "xyz789",
- "vat_tax_id": "abc123"
+ "legal_name": "xyz789",
+ "reseller_id": "abc123",
+ "vat_tax_id": "xyz789"
}
@@ -31490,7 +31597,7 @@ Example
{
"available_credit": Money,
"credit_limit": Money,
- "exceed_limit": false,
+ "exceed_limit": true,
"outstanding_balance": Money
}
@@ -31600,7 +31707,7 @@ Fields
Example
{
- "custom_reference_number": "abc123",
+ "custom_reference_number": "xyz789",
"operation_type": "ALLOCATION",
"updated_by": "abc123"
}
@@ -31671,7 +31778,7 @@ Example
{
"amount": Money,
"balance": CompanyCredit,
- "custom_reference_number": "xyz789",
+ "custom_reference_number": "abc123",
"date": "xyz789",
"type": "ALLOCATION",
"updated_by": CompanyCreditOperationUser
@@ -31892,8 +31999,8 @@ Fields
Example
{
- "code": "xyz789",
- "role_id": "4",
+ "code": "abc123",
+ "role_id": 4,
"user": CompanyInvitationUserInput
}
@@ -31935,7 +32042,7 @@ Fields
Example
- {"success": false}
+ {"success": true}
@@ -32003,9 +32110,9 @@ Example
{
"company_id": 4,
"customer_id": "4",
- "job_title": "xyz789",
+ "job_title": "abc123",
"status": "ACTIVE",
- "telephone": "abc123"
+ "telephone": "xyz789"
}
@@ -32076,8 +32183,8 @@ Example
"country_code": "AF",
"postcode": "abc123",
"region": CustomerAddressRegion,
- "street": ["xyz789"],
- "telephone": "xyz789"
+ "street": ["abc123"],
+ "telephone": "abc123"
}
@@ -32152,10 +32259,10 @@ Example
{
"city": "abc123",
"country_id": "AF",
- "postcode": "xyz789",
+ "postcode": "abc123",
"region": CustomerAddressRegionInput,
"street": ["xyz789"],
- "telephone": "xyz789"
+ "telephone": "abc123"
}
@@ -32230,10 +32337,10 @@ Example
{
"city": "abc123",
"country_id": "AF",
- "postcode": "abc123",
+ "postcode": "xyz789",
"region": CustomerAddressRegionInput,
- "street": ["xyz789"],
- "telephone": "xyz789"
+ "street": ["abc123"],
+ "telephone": "abc123"
}
@@ -32291,9 +32398,9 @@ Fields
Example
{
"id": 4,
- "name": "abc123",
+ "name": "xyz789",
"permissions": [CompanyAclResource],
- "users_count": 123
+ "users_count": 987
}
@@ -32342,7 +32449,7 @@ Fields
Example
{
- "name": "abc123",
+ "name": "xyz789",
"permissions": ["xyz789"]
}
@@ -32454,7 +32561,7 @@ Example
{
"items": [CompanyRole],
"page_info": SearchResultPageInfo,
- "total_count": 123
+ "total_count": 987
}
@@ -32506,9 +32613,9 @@ Fields
Example
{
- "email": "abc123",
+ "email": "xyz789",
"firstname": "abc123",
- "lastname": "abc123"
+ "lastname": "xyz789"
}
@@ -32698,7 +32805,11 @@ Fields
Example
- {"entity": CompanyTeam, "id": 4, "parent_id": 4}
+ {
+ "entity": CompanyTeam,
+ "id": "4",
+ "parent_id": "4"
+}
@@ -32806,7 +32917,7 @@ Example
{
"description": "abc123",
"id": 4,
- "name": "xyz789",
+ "name": "abc123",
"structure_id": 4
}
@@ -32862,9 +32973,9 @@ Fields
Example
{
- "description": "abc123",
+ "description": "xyz789",
"name": "xyz789",
- "target_id": "4"
+ "target_id": 4
}
@@ -32919,8 +33030,8 @@ Fields
Example
{
- "description": "abc123",
- "id": 4,
+ "description": "xyz789",
+ "id": "4",
"name": "xyz789"
}
@@ -32994,12 +33105,12 @@ Fields
Example
{
- "company_email": "xyz789",
+ "company_email": "abc123",
"company_name": "abc123",
"legal_address": CompanyLegalAddressUpdateInput,
- "legal_name": "abc123",
- "reseller_id": "abc123",
- "vat_tax_id": "xyz789"
+ "legal_name": "xyz789",
+ "reseller_id": "xyz789",
+ "vat_tax_id": "abc123"
}
@@ -33085,13 +33196,13 @@ Fields
Example
{
"email": "abc123",
- "firstname": "xyz789",
+ "firstname": "abc123",
"job_title": "xyz789",
- "lastname": "abc123",
+ "lastname": "xyz789",
"role_id": 4,
"status": "ACTIVE",
- "target_id": 4,
- "telephone": "xyz789"
+ "target_id": "4",
+ "telephone": "abc123"
}
@@ -33223,8 +33334,8 @@ Fields
Example
{
- "email": "abc123",
- "firstname": "abc123",
+ "email": "xyz789",
+ "firstname": "xyz789",
"id": "4",
"job_title": "abc123",
"lastname": "xyz789",
@@ -33284,7 +33395,7 @@ Example
{
"items": [Customer],
"page_info": SearchResultPageInfo,
- "total_count": 123
+ "total_count": 987
}
@@ -33428,7 +33539,7 @@ Example
{
"attributes": [ProductAttribute],
"product": ProductInterface,
- "uid": "4"
+ "uid": 4
}
@@ -33486,7 +33597,7 @@ Fields
Example
{
"attributes": [ComparableAttribute],
- "item_count": 123,
+ "item_count": 987,
"items": [ComparableItem],
"uid": 4
}
@@ -33537,7 +33648,7 @@ Fields
Example
{
- "cartId": "xyz789",
+ "cartId": "abc123",
"id": "xyz789"
}
@@ -33769,29 +33880,29 @@ Example
{
"addToCartAllowed": false,
"inStock": false,
- "lowStock": true,
+ "lowStock": false,
"attributes": [ProductViewAttribute],
- "description": "abc123",
+ "description": "xyz789",
"id": 4,
"images": [ProductViewImage],
"videos": [ProductViewVideo],
"lastModifiedAt": "2007-12-03T10:15:30Z",
- "metaDescription": "abc123",
+ "metaDescription": "xyz789",
"metaKeyword": "xyz789",
"metaTitle": "xyz789",
"name": "xyz789",
"inputOptions": [ProductViewInputOption],
"options": [ProductViewOption],
"priceRange": ProductViewPriceRange,
- "shortDescription": "xyz789",
+ "shortDescription": "abc123",
"sku": "abc123",
- "externalId": "abc123",
+ "externalId": "xyz789",
"url": "xyz789",
"urlKey": "xyz789",
"links": [ProductViewLink],
"categories": [CategoryProductView],
- "queryType": "xyz789",
- "visibility": "xyz789"
+ "queryType": "abc123",
+ "visibility": "abc123"
}
@@ -33941,9 +34052,9 @@ Fields
Example
{
"code": "xyz789",
- "label": "xyz789",
+ "label": "abc123",
"uid": 4,
- "value_index": 123
+ "value_index": 987
}
@@ -34086,14 +34197,14 @@ Example
"gift_message": GiftMessage,
"gift_wrapping": GiftWrapping,
"is_available": false,
- "max_qty": 123.45,
+ "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"
}
@@ -34141,8 +34252,8 @@ Fields
Example
{
- "attribute_code": "xyz789",
- "option_value_uids": [4]
+ "attribute_code": "abc123",
+ "option_value_uids": ["4"]
}
@@ -34302,7 +34413,7 @@ Example
"entered_options": [OrderItemOption],
"gift_message": GiftMessage,
"gift_wrapping": GiftWrapping,
- "id": "4",
+ "id": 4,
"parent_sku": "abc123",
"prices": OrderItemPrices,
"product": ProductInterface,
@@ -34315,11 +34426,11 @@ Example
"quantity_invoiced": 123.45,
"quantity_ordered": 123.45,
"quantity_refunded": 123.45,
- "quantity_return_requested": 123.45,
+ "quantity_return_requested": 987.65,
"quantity_returned": 123.45,
- "quantity_shipped": 987.65,
+ "quantity_shipped": 123.45,
"selected_options": [OrderItemOption],
- "status": "abc123"
+ "status": "xyz789"
}
@@ -34602,42 +34713,42 @@ 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": true,
- "gift_wrapping_available": true,
+ "gift_message_available": false,
+ "gift_wrapping_available": false,
"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": "abc123",
- "meta_title": "abc123",
+ "meta_title": "xyz789",
"min_sale_qty": 123.45,
- "name": "abc123",
+ "name": "xyz789",
"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",
+ "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_to_date": "abc123",
"stock_status": "IN_STOCK",
"swatch_image": "xyz789",
"thumbnail": ProductImage,
@@ -34702,7 +34813,7 @@ Fields
Example
{
- "attribute_code": "xyz789",
+ "attribute_code": "abc123",
"label": "xyz789",
"uid": 4,
"values": [ConfigurableProductOptionValue]
@@ -34767,11 +34878,11 @@ Fields
Example
{
- "is_available": true,
- "is_use_default": true,
- "label": "xyz789",
+ "is_available": false,
+ "is_use_default": false,
+ "label": "abc123",
"swatch": SwatchDataInterface,
- "uid": 4
+ "uid": "4"
}
@@ -34846,9 +34957,9 @@ Example
"attribute_code": "abc123",
"attribute_uid": 4,
"label": "abc123",
- "position": 987,
+ "position": 123,
"uid": "4",
- "use_default": false,
+ "use_default": true,
"values": [ConfigurableProductOptionsValues]
}
@@ -34978,11 +35089,11 @@ Fields
Example
{
- "default_label": "abc123",
+ "default_label": "xyz789",
"label": "xyz789",
- "store_label": "abc123",
+ "store_label": "xyz789",
"swatch_data": SwatchDataInterface,
- "uid": "4",
+ "uid": 4,
"use_default_value": true
}
@@ -35055,7 +35166,7 @@ Example
"product": ProductInterface,
"quantity": 123.45,
"sku": "xyz789",
- "uid": 4
+ "uid": "4"
}
@@ -35186,7 +35297,7 @@ Example
"configured_variant": ProductInterface,
"customizable_options": [SelectedCustomizableOption],
"description": "xyz789",
- "id": 4,
+ "id": "4",
"product": ProductInterface,
"quantity": 987.65
}
@@ -35234,7 +35345,7 @@ Fields
Example
{
"confirmation_key": "abc123",
- "order_id": 4
+ "order_id": "4"
}
@@ -35283,8 +35394,8 @@ Fields
Example
{
- "confirmation_key": "xyz789",
- "email": "abc123"
+ "confirmation_key": "abc123",
+ "email": "xyz789"
}
@@ -35329,8 +35440,8 @@ Fields
Example
{
- "confirmation_key": "abc123",
- "order_id": "4"
+ "confirmation_key": "xyz789",
+ "order_id": 4
}
@@ -35437,7 +35548,7 @@ Example
"comment": "xyz789",
"email": "abc123",
"name": "xyz789",
- "telephone": "abc123"
+ "telephone": "xyz789"
}
@@ -35519,7 +35630,7 @@ Fields
Example
- {"requisitionListItemUids": ["4"]}
+ {"requisitionListItemUids": [4]}
@@ -35676,11 +35787,11 @@ Fields
Example
{
"available_regions": [Region],
- "full_name_english": "xyz789",
- "full_name_locale": "xyz789",
- "id": "abc123",
- "three_letter_abbreviation": "abc123",
- "two_letter_abbreviation": "abc123"
+ "full_name_english": "abc123",
+ "full_name_locale": "abc123",
+ "id": "xyz789",
+ "three_letter_abbreviation": "xyz789",
+ "two_letter_abbreviation": "xyz789"
}
@@ -37474,8 +37585,8 @@ Example
"dynamic_attributes": [
GiftRegistryDynamicAttributeInput
],
- "event_name": "abc123",
- "gift_registry_type_uid": "4",
+ "event_name": "xyz789",
+ "gift_registry_type_uid": 4,
"message": "abc123",
"privacy_settings": "PRIVATE",
"registrants": [AddGiftRegistryRegistrantInput],
@@ -37558,7 +37669,7 @@ Fields
Example
- {"cart_uid": "4"}
+ {"cart_uid": 4}
@@ -37662,7 +37773,7 @@ Example
{
"cartId": "abc123",
"location": "PRODUCT_DETAIL",
- "methodCode": "abc123",
+ "methodCode": "xyz789",
"paymentSource": "xyz789",
"vaultIntent": false
}
@@ -37727,10 +37838,10 @@ Fields
Example
{
"amount": 123.45,
- "currency_code": "abc123",
+ "currency_code": "xyz789",
"id": "xyz789",
- "mp_order_id": "abc123",
- "status": "abc123"
+ "mp_order_id": "xyz789",
+ "status": "xyz789"
}
@@ -37890,7 +38001,7 @@ Fields
Example
{
- "description": "xyz789",
+ "description": "abc123",
"name": "xyz789"
}
@@ -37980,8 +38091,8 @@ Fields
Example
{
- "card_description": "xyz789",
- "setup_token_id": "xyz789"
+ "card_description": "abc123",
+ "setup_token_id": "abc123"
}
@@ -38120,7 +38231,7 @@ Fields
Example
- {"setup_token": "abc123"}
+ {"setup_token": "xyz789"}
@@ -38275,7 +38386,7 @@ Example
{
"comments": [SalesCommentItem],
"custom_attributes": [CustomAttribute],
- "id": 4,
+ "id": "4",
"items": [CreditMemoItemInterface],
"number": "xyz789",
"total": CreditMemoTotal
@@ -38327,7 +38438,7 @@ Fields
Example
{
- "credit_memo_id": "abc123",
+ "credit_memo_id": "xyz789",
"custom_attributes": [CustomAttributeInput]
}
@@ -38405,9 +38516,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": 123.45
}
@@ -38463,7 +38574,7 @@ Fields
Example
{
- "credit_memo_id": "xyz789",
+ "credit_memo_id": "abc123",
"credit_memo_item_id": "abc123",
"custom_attributes": [CustomAttributeInput]
}
@@ -38576,7 +38687,7 @@ Example
{
"custom_attributes": [CustomAttribute],
"discounts": [Discount],
- "id": 4,
+ "id": "4",
"order_item": OrderItemInterface,
"product_name": "xyz789",
"product_sale_price": Money,
@@ -38774,11 +38885,11 @@ Fields
Example
{
- "available_currency_codes": ["xyz789"],
- "base_currency_code": "abc123",
+ "available_currency_codes": ["abc123"],
+ "base_currency_code": "xyz789",
"base_currency_symbol": "abc123",
- "default_display_currency_code": "xyz789",
- "default_display_currency_symbol": "abc123",
+ "default_display_currency_code": "abc123",
+ "default_display_currency_symbol": "xyz789",
"exchange_rates": [ExchangeRate]
}
@@ -40044,8 +40155,8 @@ Fields
Example
{
- "attribute_code": "abc123",
- "value": "xyz789"
+ "attribute_code": "xyz789",
+ "value": "abc123"
}
@@ -40094,8 +40205,8 @@ Fields
Example
{
- "attribute_code": "xyz789",
- "value": "abc123"
+ "attribute_code": "abc123",
+ "value": "xyz789"
}
@@ -40210,13 +40321,13 @@ Possible Types
Example
{
"code": "4",
- "default_value": "abc123",
+ "default_value": "xyz789",
"entity_type": "CATALOG_PRODUCT",
- "frontend_class": "xyz789",
+ "frontend_class": "abc123",
"frontend_input": "BOOLEAN",
"is_required": false,
"is_unique": true,
- "label": "abc123",
+ "label": "xyz789",
"options": [CustomAttributeOptionInterface]
}
@@ -40282,9 +40393,9 @@ Possible Types
Example
{
- "is_default": true,
+ "is_default": false,
"label": "abc123",
- "value": "xyz789"
+ "value": "abc123"
}
@@ -40333,7 +40444,7 @@ Fields
Example
{
- "key": "abc123",
+ "key": "xyz789",
"value": "abc123"
}
@@ -40382,7 +40493,7 @@ Fields
Example
{
"type": "UNKNOWN_CUSTOMOPERATOR_TYPE",
- "value": ["abc123"]
+ "value": ["xyz789"]
}
@@ -40947,35 +41058,35 @@ Example
{
"addresses": [CustomerAddress],
"addressesV2": CustomerAddresses,
- "allow_remote_shopping_assistance": true,
+ "allow_remote_shopping_assistance": false,
"companies": UserCompaniesOutput,
"compare_list": CompareList,
"confirmation_status": "ACCOUNT_CONFIRMED",
"created_at": "abc123",
"custom_attributes": [AttributeValueInterface],
"date_of_birth": "xyz789",
- "default_billing": "abc123",
+ "default_billing": "xyz789",
"default_shipping": "xyz789",
"email": "xyz789",
- "firstname": "abc123",
+ "firstname": "xyz789",
"gender": 123,
"gift_registries": [GiftRegistry],
"gift_registry": GiftRegistry,
"group": CustomerGroupStorefront,
- "id": "4",
- "is_subscribed": false,
- "job_title": "xyz789",
- "lastname": "abc123",
+ "id": 4,
+ "is_subscribed": true,
+ "job_title": "abc123",
+ "lastname": "xyz789",
"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,
@@ -40986,7 +41097,7 @@ Example
"store_credit": CustomerStoreCredit,
"structure_id": 4,
"suffix": "xyz789",
- "taxvat": "xyz789",
+ "taxvat": "abc123",
"team": CompanyTeam,
"telephone": "abc123",
"wishlist_v2": Wishlist,
@@ -41155,17 +41266,17 @@ Example
"extension_attributes": [CustomerAddressAttribute],
"fax": "xyz789",
"firstname": "abc123",
- "id": 987,
+ "id": 123,
"lastname": "abc123",
- "middlename": "abc123",
+ "middlename": "xyz789",
"postcode": "abc123",
"prefix": "abc123",
"region": CustomerAddressRegion,
"region_id": 987,
- "street": ["abc123"],
- "suffix": "xyz789",
+ "street": ["xyz789"],
+ "suffix": "abc123",
"telephone": "xyz789",
- "uid": 4,
+ "uid": "4",
"vat_id": "xyz789"
}
@@ -41213,8 +41324,8 @@ Fields
Example
{
- "attribute_code": "abc123",
- "value": "abc123"
+ "attribute_code": "xyz789",
+ "value": "xyz789"
}
@@ -41353,23 +41464,23 @@ Fields
Example
{
- "city": "abc123",
- "company": "abc123",
+ "city": "xyz789",
+ "company": "xyz789",
"country_code": "AF",
"custom_attributesV2": [AttributeValueInput],
- "default_billing": true,
- "default_shipping": false,
+ "default_billing": false,
+ "default_shipping": true,
"fax": "xyz789",
- "firstname": "xyz789",
- "lastname": "xyz789",
+ "firstname": "abc123",
+ "lastname": "abc123",
"middlename": "xyz789",
- "postcode": "xyz789",
- "prefix": "xyz789",
+ "postcode": "abc123",
+ "prefix": "abc123",
"region": CustomerAddressRegionInput,
"street": ["abc123"],
- "suffix": "xyz789",
- "telephone": "abc123",
- "vat_id": "xyz789"
+ "suffix": "abc123",
+ "telephone": "xyz789",
+ "vat_id": "abc123"
}
@@ -41422,7 +41533,7 @@ Fields
Example
{
"region": "abc123",
- "region_code": "abc123",
+ "region_code": "xyz789",
"region_id": 987
}
@@ -41478,9 +41589,9 @@ Fields
Example
{
- "region": "xyz789",
- "region_code": "xyz789",
- "region_id": 123
+ "region": "abc123",
+ "region_code": "abc123",
+ "region_id": 987
}
@@ -41530,7 +41641,7 @@ Example
{
"items": [CustomerAddress],
"page_info": SearchResultPageInfo,
- "total_count": 123
+ "total_count": 987
}
@@ -41632,18 +41743,18 @@ Fields
Example
{
- "code": "4",
+ "code": 4,
"default_value": "xyz789",
"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": "abc123",
- "multiline_count": 123,
+ "label": "xyz789",
+ "multiline_count": 987,
"options": [CustomAttributeOptionInterface],
- "sort_order": 987,
+ "sort_order": 123,
"validate_rules": [ValidationRule]
}
@@ -41759,19 +41870,19 @@ Fields
Example
{
- "allow_remote_shopping_assistance": true,
+ "allow_remote_shopping_assistance": false,
"custom_attributes": [AttributeValueInput],
"date_of_birth": "xyz789",
- "email": "xyz789",
+ "email": "abc123",
"firstname": "abc123",
"gender": 987,
- "is_subscribed": false,
- "lastname": "xyz789",
+ "is_subscribed": true,
+ "lastname": "abc123",
"middlename": "abc123",
"password": "abc123",
"prefix": "xyz789",
"suffix": "xyz789",
- "taxvat": "xyz789"
+ "taxvat": "abc123"
}
@@ -41918,7 +42029,7 @@ Fields
Example
- {"uid": "4"}
+ {"uid": 4}
@@ -42134,32 +42245,32 @@ 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",
"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,
- "number": "xyz789",
+ "number": "abc123",
"order_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,
- "shipping_method": "xyz789",
- "status": "abc123",
- "token": "abc123",
+ "shipping_method": "abc123",
+ "status": "xyz789",
+ "token": "xyz789",
"total": OrderTotal
}
@@ -42311,7 +42422,7 @@ Fields
Example
{
- "date_of_first_order": "xyz789",
+ "date_of_first_order": "abc123",
"items": [CustomerOrder],
"page_info": SearchResultPageInfo,
"total_count": 123
@@ -42499,7 +42610,7 @@ Fields
Example
- {"uid": "4"}
+ {"uid": 4}
@@ -42571,7 +42682,7 @@ Example
{
"balance_history": CustomerStoreCreditHistory,
"current_balance": Money,
- "enabled": true
+ "enabled": false
}
@@ -42682,7 +42793,7 @@ Fields
Example
{
- "action": "abc123",
+ "action": "xyz789",
"actual_balance": Money,
"balance_change": Money,
"date_time_changed": "xyz789"
@@ -42828,15 +42939,15 @@ Fields
Example
{
- "allow_remote_shopping_assistance": true,
+ "allow_remote_shopping_assistance": false,
"custom_attributes": [AttributeValueInput],
- "date_of_birth": "xyz789",
- "firstname": "abc123",
- "gender": 123,
+ "date_of_birth": "abc123",
+ "firstname": "xyz789",
+ "gender": 987,
"is_subscribed": false,
- "lastname": "xyz789",
- "middlename": "xyz789",
- "prefix": "xyz789",
+ "lastname": "abc123",
+ "middlename": "abc123",
+ "prefix": "abc123",
"suffix": "xyz789",
"taxvat": "xyz789"
}
@@ -42905,11 +43016,11 @@ Fields
Example
{
- "product_sku": "xyz789",
+ "product_sku": "abc123",
"required": false,
"sort_order": 987,
- "title": "xyz789",
- "uid": 4,
+ "title": "abc123",
+ "uid": "4",
"value": CustomizableAreaValue
}
@@ -42972,11 +43083,11 @@ Fields
Example
{
- "max_characters": 123,
- "price": 987.65,
+ "max_characters": 987,
+ "price": 123.45,
"price_type": "FIXED",
"sku": "abc123",
- "uid": "4"
+ "uid": 4
}
@@ -43038,9 +43149,9 @@ Fields
Example
{
- "required": true,
+ "required": false,
"sort_order": 123,
- "title": "abc123",
+ "title": "xyz789",
"uid": "4",
"value": [CustomizableCheckboxValue]
}
@@ -43114,12 +43225,12 @@ Fields
Example
{
- "option_type_id": 123,
+ "option_type_id": 987,
"price": 987.65,
"price_type": "FIXED",
- "sku": "abc123",
+ "sku": "xyz789",
"sort_order": 123,
- "title": "xyz789",
+ "title": "abc123",
"uid": 4
}
@@ -43188,10 +43299,10 @@ Fields
Example
{
"product_sku": "xyz789",
- "required": false,
- "sort_order": 987,
- "title": "xyz789",
- "uid": "4",
+ "required": true,
+ "sort_order": 123,
+ "title": "abc123",
+ "uid": 4,
"value": CustomizableDateValue
}
@@ -43310,9 +43421,9 @@ Fields
Example
{
- "price": 123.45,
+ "price": 987.65,
"price_type": "FIXED",
- "sku": "xyz789",
+ "sku": "abc123",
"type": "DATE",
"uid": 4
}
@@ -43376,9 +43487,9 @@ Fields
Example
{
- "required": false,
+ "required": true,
"sort_order": 123,
- "title": "xyz789",
+ "title": "abc123",
"uid": "4",
"value": [CustomizableDropDownValue]
}
@@ -43453,10 +43564,10 @@ Fields
Example
{
"option_type_id": 123,
- "price": 987.65,
+ "price": 123.45,
"price_type": "FIXED",
"sku": "xyz789",
- "sort_order": 987,
+ "sort_order": 123,
"title": "abc123",
"uid": "4"
}
@@ -43527,8 +43638,8 @@ Example
{
"product_sku": "abc123",
"required": false,
- "sort_order": 987,
- "title": "xyz789",
+ "sort_order": 123,
+ "title": "abc123",
"uid": 4,
"value": CustomizableFieldValue
}
@@ -43665,9 +43776,9 @@ Example
{
"product_sku": "xyz789",
"required": true,
- "sort_order": 987,
- "title": "abc123",
- "uid": 4,
+ "sort_order": 123,
+ "title": "xyz789",
+ "uid": "4",
"value": CustomizableFileValue
}
@@ -43741,12 +43852,12 @@ Fields
Example
{
"file_extension": "xyz789",
- "image_size_x": 123,
- "image_size_y": 987,
- "price": 123.45,
+ "image_size_x": 987,
+ "image_size_y": 123,
+ "price": 987.65,
"price_type": "FIXED",
"sku": "xyz789",
- "uid": 4
+ "uid": "4"
}
@@ -43808,10 +43919,10 @@ Fields
Example
{
- "required": true,
+ "required": false,
"sort_order": 987,
- "title": "abc123",
- "uid": 4,
+ "title": "xyz789",
+ "uid": "4",
"value": [CustomizableMultipleValue]
}
@@ -43884,11 +43995,11 @@ Fields
Example
{
- "option_type_id": 987,
- "price": 987.65,
+ "option_type_id": 123,
+ "price": 123.45,
"price_type": "FIXED",
"sku": "xyz789",
- "sort_order": 987,
+ "sort_order": 123,
"title": "xyz789",
"uid": 4
}
@@ -43938,7 +44049,10 @@ Fields
Example
- {"uid": 4, "value_string": "xyz789"}
+ {
+ "uid": "4",
+ "value_string": "abc123"
+}
@@ -44047,7 +44161,7 @@ Possible Types
Example
{
"required": false,
- "sort_order": 123,
+ "sort_order": 987,
"title": "abc123",
"uid": "4"
}
@@ -44193,10 +44307,10 @@ Fields
Example
{
- "required": true,
- "sort_order": 987,
+ "required": false,
+ "sort_order": 123,
"title": "abc123",
- "uid": "4",
+ "uid": 4,
"value": [CustomizableRadioValue]
}
@@ -44269,13 +44383,13 @@ Fields
Example
{
- "option_type_id": 123,
+ "option_type_id": 987,
"price": 987.65,
"price_type": "FIXED",
"sku": "abc123",
- "sort_order": 987,
+ "sort_order": 123,
"title": "abc123",
- "uid": 4
+ "uid": "4"
}
@@ -44378,7 +44492,7 @@ Fields
Example
- {"success": true}
+ {"success": false}
@@ -44418,7 +44532,7 @@ Fields
Example
- {"success": true}
+ {"success": false}
@@ -44458,7 +44572,7 @@ Fields
Example
- {"result": false}
+ {"result": true}
@@ -44670,7 +44784,7 @@ Fields
Example
- {"quote_uids": ["4"]}
+ {"quote_uids": [4]}
@@ -44848,7 +44962,7 @@ Fields
Example
- {"message": "abc123", "type": "UNDEFINED"}
+ {"message": "xyz789", "type": "UNDEFINED"}
@@ -45059,7 +45173,7 @@ Fields
Example
- {"requisition_lists": RequisitionLists, "status": false}
+ {"requisition_lists": RequisitionLists, "status": true}
@@ -45104,7 +45218,7 @@ Fields
Example
- {"status": true, "wishlists": [Wishlist]}
+ {"status": false, "wishlists": [Wishlist]}
@@ -45178,9 +45292,9 @@ Example
"amount": Money,
"applied_to": "ITEM",
"coupon": AppliedCoupon,
- "is_discounting_locked": false,
- "label": "xyz789",
- "type": "abc123",
+ "is_discounting_locked": true,
+ "label": "abc123",
+ "type": "xyz789",
"value": 987.65
}
@@ -45303,16 +45417,16 @@ Example
"customizable_options": [SelectedCustomizableOption],
"discount": [Discount],
"errors": [CartItemError],
- "is_available": true,
+ "is_available": false,
"links": [DownloadableProductLinks],
"max_qty": 123.45,
"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": 987.65,
+ "quantity": 123.45,
"samples": [DownloadableProductSamples],
"uid": 4
}
@@ -45404,7 +45518,7 @@ Example
"product_name": "xyz789",
"product_sale_price": Money,
"product_sku": "abc123",
- "quantity_refunded": 123.45
+ "quantity_refunded": 987.65
}
@@ -45547,8 +45661,8 @@ Fields
Example
{
"sort_order": 987,
- "title": "xyz789",
- "uid": 4
+ "title": "abc123",
+ "uid": "4"
}
@@ -45709,23 +45823,23 @@ 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": "abc123",
- "product_url_key": "abc123",
- "quantity_canceled": 123.45,
- "quantity_invoiced": 987.65,
- "quantity_ordered": 123.45,
- "quantity_refunded": 987.65,
- "quantity_return_requested": 123.45,
+ "product_type": "xyz789",
+ "product_url_key": "xyz789",
+ "quantity_canceled": 987.65,
+ "quantity_invoiced": 123.45,
+ "quantity_ordered": 987.65,
+ "quantity_refunded": 123.45,
+ "quantity_return_requested": 987.65,
"quantity_returned": 987.65,
"quantity_shipped": 123.45,
"selected_options": [OrderItemOption],
@@ -45999,7 +46113,7 @@ filters
Example
{
- "canonical_url": "abc123",
+ "canonical_url": "xyz789",
"categories": [CategoryInterface],
"country_of_manufacture": "abc123",
"crosssell_products": [ProductInterface],
@@ -46012,39 +46126,39 @@ Example
DownloadableProductSamples
],
"gift_message_available": true,
- "gift_wrapping_available": false,
+ "gift_wrapping_available": true,
"gift_wrapping_price": Money,
"image": ProductImage,
"is_returnable": "xyz789",
"links_purchased_separately": 123,
"links_title": "abc123",
- "manufacturer": 987,
+ "manufacturer": 123,
"max_sale_qty": 987.65,
"media_gallery": [MediaGalleryInterface],
"meta_description": "xyz789",
"meta_keyword": "xyz789",
"meta_title": "xyz789",
"min_sale_qty": 987.65,
- "name": "abc123",
- "new_from_date": "xyz789",
+ "name": "xyz789",
+ "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,
+ "quantity": 987.65,
"related_products": [ProductInterface],
"short_description": ComplexTextValue,
"sku": "xyz789",
"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,
+ "uid": "4",
"upsell_products": [ProductInterface],
"url_key": "xyz789"
}
@@ -46169,8 +46283,8 @@ Example
{
"price": 987.65,
"sample_url": "abc123",
- "sort_order": 123,
- "title": "abc123",
+ "sort_order": 987,
+ "title": "xyz789",
"uid": "4"
}
@@ -46265,7 +46379,7 @@ Fields
Example
{
"sample_url": "abc123",
- "sort_order": 987,
+ "sort_order": 123,
"title": "abc123"
}
@@ -46341,7 +46455,7 @@ Example
"customizable_options": [SelectedCustomizableOption],
"links": [DownloadableProductLinks],
"product": ProductInterface,
- "quantity": 123.45,
+ "quantity": 987.65,
"samples": [DownloadableProductSamples],
"sku": "xyz789",
"uid": 4
@@ -46424,11 +46538,11 @@ Example
{
"added_at": "xyz789",
"customizable_options": [SelectedCustomizableOption],
- "description": "xyz789",
+ "description": "abc123",
"id": 4,
"links_v2": [DownloadableProductLinks],
"product": ProductInterface,
- "quantity": 987.65,
+ "quantity": 123.45,
"samples": [DownloadableProductSamples]
}
@@ -46478,7 +46592,7 @@ Fields
Example
{
- "duplicated_quote_uid": "4",
+ "duplicated_quote_uid": 4,
"quote_uid": "4"
}
@@ -46568,8 +46682,8 @@ Fields
Example
{
- "attribute_code": "xyz789",
- "value": "abc123"
+ "attribute_code": "abc123",
+ "value": "xyz789"
}
@@ -46808,7 +46922,7 @@ Fields
Example
{
"country_code": "AF",
- "postcode": "abc123",
+ "postcode": "xyz789",
"region": CustomerAddressRegionInput
}
@@ -47037,7 +47151,7 @@ Fields
Example
- {"currency_to": "xyz789", "rate": 123.45}
+ {"currency_to": "abc123", "rate": 987.65}
@@ -47109,14 +47223,14 @@ Fields
Example
{
- "code": "abc123",
- "is_visible": false,
- "payment_intent": "abc123",
- "payment_source": "abc123",
+ "code": "xyz789",
+ "is_visible": true,
+ "payment_intent": "xyz789",
+ "payment_source": "xyz789",
"sdk_params": [SDKParams],
"sort_order": "xyz789",
"three_ds_mode": "OFF",
- "title": "xyz789"
+ "title": "abc123"
}
@@ -47396,7 +47510,7 @@ Fields
Example
- {"match": "xyz789", "match_type": "FULL"}
+ {"match": "abc123", "match_type": "FULL"}
@@ -47444,8 +47558,8 @@ Fields
Example
{
- "from": "abc123",
- "to": "abc123"
+ "from": "xyz789",
+ "to": "xyz789"
}
@@ -47499,7 +47613,7 @@ Fields
Example
{
- "name": "abc123",
+ "name": "xyz789",
"type": "UNKNOWN_FILTER_RULE_TYPE",
"conditions": [ConditionInput]
}
@@ -47608,7 +47722,7 @@ Fields
Example
{
- "eq": "xyz789",
+ "eq": "abc123",
"in": ["xyz789"],
"match": "xyz789"
}
@@ -47731,19 +47845,19 @@ Fields
Example
{
- "eq": "abc123",
+ "eq": "xyz789",
"from": "abc123",
"gt": "xyz789",
"gteq": "xyz789",
- "in": ["abc123"],
+ "in": ["xyz789"],
"like": "abc123",
- "lt": "xyz789",
+ "lt": "abc123",
"lteq": "xyz789",
- "moreq": "xyz789",
+ "moreq": "abc123",
"neq": "xyz789",
"nin": ["xyz789"],
- "notnull": "xyz789",
- "null": "abc123",
+ "notnull": "abc123",
+ "null": "xyz789",
"to": "xyz789"
}
@@ -47801,10 +47915,10 @@ Fields
Example
{
- "attribute": "abc123",
- "frontendInput": "xyz789",
+ "attribute": "xyz789",
+ "frontendInput": "abc123",
"label": "xyz789",
- "numeric": true
+ "numeric": false
}
@@ -47852,7 +47966,7 @@ Fields
Example
{
"amount": Money,
- "label": "abc123"
+ "label": "xyz789"
}
@@ -47940,7 +48054,7 @@ Description
Example
- 123.45
+ 987.65
@@ -47981,7 +48095,7 @@ Fields
Example
- {"customer_email": "abc123"}
+ {"customer_email": "xyz789"}
@@ -48021,7 +48135,7 @@ Fields
Example
- {"customer_token": "abc123"}
+ {"customer_token": "xyz789"}
@@ -48062,7 +48176,7 @@ Fields
Example
- {"template_id": 4}
+ {"template_id": "4"}
@@ -48195,7 +48309,7 @@ Example
{
"balance": Money,
"code": "abc123",
- "expiration_date": "abc123"
+ "expiration_date": "xyz789"
}
@@ -48464,7 +48578,7 @@ Example
"gift_message": GiftMessage,
"gift_wrapping": GiftWrapping,
"is_available": false,
- "max_qty": 123.45,
+ "max_qty": 987.65,
"message": "xyz789",
"min_qty": 987.65,
"not_available_message": "xyz789",
@@ -48472,11 +48586,11 @@ Example
"note_from_seller": [ItemNote],
"prices": CartItemPrices,
"product": ProductInterface,
- "quantity": 123.45,
+ "quantity": 987.65,
"recipient_email": "xyz789",
"recipient_name": "abc123",
- "sender_email": "abc123",
- "sender_name": "xyz789",
+ "sender_email": "xyz789",
+ "sender_name": "abc123",
"uid": "4"
}
@@ -48560,7 +48674,7 @@ Example
"gift_card": GiftCardItem,
"id": 4,
"order_item": OrderItemInterface,
- "product_name": "abc123",
+ "product_name": "xyz789",
"product_sale_price": Money,
"product_sku": "abc123",
"quantity_refunded": 123.45
@@ -48711,10 +48825,10 @@ Fields
Example
{
- "message": "abc123",
- "recipient_email": "abc123",
+ "message": "xyz789",
+ "recipient_email": "xyz789",
"recipient_name": "abc123",
- "sender_email": "abc123",
+ "sender_email": "xyz789",
"sender_name": "abc123"
}
@@ -48793,7 +48907,7 @@ Example
"recipient_email": "abc123",
"recipient_name": "abc123",
"sender_email": "xyz789",
- "sender_name": "xyz789"
+ "sender_name": "abc123"
}
@@ -48959,18 +49073,18 @@ 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": 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_returned": 987.65,
+ "quantity_shipped": 987.65,
"selected_options": [OrderItemOption],
- "status": "abc123"
+ "status": "xyz789"
}
@@ -49276,16 +49390,16 @@ filters
Example
{
"allow_message": false,
- "allow_open_amount": true,
- "canonical_url": "xyz789",
+ "allow_open_amount": false,
+ "canonical_url": "abc123",
"categories": [CategoryInterface],
- "country_of_manufacture": "abc123",
+ "country_of_manufacture": "xyz789",
"crosssell_products": [ProductInterface],
"custom_attributesV2": ProductCustomAttributes,
"description": ComplexTextValue,
"gift_card_options": [CustomizableOptionInterface],
- "gift_message_available": false,
- "gift_wrapping_available": true,
+ "gift_message_available": true,
+ "gift_wrapping_available": false,
"gift_wrapping_price": Money,
"giftcard_amounts": [GiftCardAmounts],
"giftcard_type": "VIRTUAL",
@@ -49296,33 +49410,33 @@ Example
"manufacturer": 123,
"max_sale_qty": 987.65,
"media_gallery": [MediaGalleryInterface],
- "message_max_length": 987,
+ "message_max_length": 123,
"meta_description": "abc123",
"meta_keyword": "xyz789",
- "meta_title": "xyz789",
+ "meta_title": "abc123",
"min_sale_qty": 987.65,
"name": "xyz789",
"new_from_date": "xyz789",
"new_to_date": "xyz789",
"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": 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": "abc123",
"weight": 123.45
@@ -49396,9 +49510,9 @@ Example
"customizable_options": [SelectedCustomizableOption],
"gift_card_options": GiftCardOptions,
"product": ProductInterface,
- "quantity": 987.65,
+ "quantity": 123.45,
"sku": "xyz789",
- "uid": "4"
+ "uid": 4
}
@@ -49471,7 +49585,7 @@ Example
"order_item": OrderItemInterface,
"product_name": "abc123",
"product_sale_price": Money,
- "product_sku": "xyz789",
+ "product_sku": "abc123",
"quantity_shipped": 987.65
}
@@ -49601,9 +49715,9 @@ Fields
Example
{
- "added_at": "xyz789",
+ "added_at": "abc123",
"customizable_options": [SelectedCustomizableOption],
- "description": "xyz789",
+ "description": "abc123",
"gift_card_options": GiftCardOptions,
"id": "4",
"product": ProductInterface,
@@ -49718,7 +49832,7 @@ Example
{
"from": "abc123",
"message": "abc123",
- "to": "abc123"
+ "to": "xyz789"
}
@@ -49887,18 +50001,18 @@ Fields
Example
{
- "created_at": "abc123",
+ "created_at": "xyz789",
"dynamic_attributes": [GiftRegistryDynamicAttribute],
- "event_name": "xyz789",
+ "event_name": "abc123",
"items": [GiftRegistryItemInterface],
- "message": "xyz789",
- "owner_name": "xyz789",
+ "message": "abc123",
+ "owner_name": "abc123",
"privacy_settings": "PRIVATE",
"registrants": [GiftRegistryRegistrant],
"shipping_address": CustomerAddress,
"status": "ACTIVE",
"type": GiftRegistryType,
- "uid": 4
+ "uid": "4"
}
@@ -49953,8 +50067,8 @@ Example
{
"code": 4,
"group": "EVENT_INFORMATION",
- "label": "xyz789",
- "value": "abc123"
+ "label": "abc123",
+ "value": "xyz789"
}
@@ -50079,7 +50193,7 @@ Fields
Example
- {"code": 4, "value": "xyz789"}
+ {"code": 4, "value": "abc123"}
@@ -50148,9 +50262,9 @@ Possible Types
Example
{
- "code": "4",
- "label": "xyz789",
- "value": "abc123"
+ "code": 4,
+ "label": "abc123",
+ "value": "xyz789"
}
@@ -50217,8 +50331,8 @@ Example
"code": 4,
"input_type": "abc123",
"is_required": true,
- "label": "xyz789",
- "sort_order": 123
+ "label": "abc123",
+ "sort_order": 987
}
@@ -50298,11 +50412,11 @@ Possible Types
Example
{
- "attribute_group": "abc123",
- "code": 4,
- "input_type": "xyz789",
- "is_required": false,
- "label": "xyz789",
+ "attribute_group": "xyz789",
+ "code": "4",
+ "input_type": "abc123",
+ "is_required": true,
+ "label": "abc123",
"sort_order": 987
}
@@ -50367,7 +50481,7 @@ Fields
Example
{
- "created_at": "abc123",
+ "created_at": "xyz789",
"note": "xyz789",
"product": ProductInterface,
"quantity": 123.45,
@@ -50453,8 +50567,8 @@ Possible Types
Example
{
- "created_at": "xyz789",
- "note": "abc123",
+ "created_at": "abc123",
+ "note": "xyz789",
"product": ProductInterface,
"quantity": 123.45,
"quantity_fulfilled": 987.65,
@@ -50522,7 +50636,7 @@ Possible Types
Example
{
- "status": true,
+ "status": false,
"user_errors": [GiftRegistryItemsUserError]
}
@@ -50587,8 +50701,8 @@ Example
{
"code": "OUT_OF_STOCK",
"gift_registry_item_uid": "4",
- "gift_registry_uid": 4,
- "message": "xyz789",
+ "gift_registry_uid": "4",
+ "message": "abc123",
"product_uid": "4"
}
@@ -50813,7 +50927,7 @@ Example
"dynamic_attributes": [
GiftRegistryRegistrantDynamicAttribute
],
- "email": "xyz789",
+ "email": "abc123",
"firstname": "abc123",
"lastname": "xyz789",
"uid": 4
@@ -50933,10 +51047,10 @@ Fields
Example
{
- "event_date": "xyz789",
- "event_title": "xyz789",
- "gift_registry_uid": 4,
- "location": "abc123",
+ "event_date": "abc123",
+ "event_title": "abc123",
+ "gift_registry_uid": "4",
+ "location": "xyz789",
"name": "abc123",
"type": "abc123"
}
@@ -51207,8 +51321,8 @@ Fields
Example
{
- "label": "abc123",
- "url": "xyz789"
+ "label": "xyz789",
+ "url": "abc123"
}
@@ -51338,13 +51452,13 @@ Example
{
"button_styles": GooglePayButtonStyles,
"code": "xyz789",
- "is_visible": false,
- "payment_intent": "abc123",
+ "is_visible": true,
+ "payment_intent": "xyz789",
"payment_source": "abc123",
"sdk_params": [SDKParams],
- "sort_order": "abc123",
+ "sort_order": "xyz789",
"three_ds_mode": "OFF",
- "title": "xyz789"
+ "title": "abc123"
}
@@ -51399,9 +51513,9 @@ Fields
Example
{
- "payment_source": "xyz789",
+ "payment_source": "abc123",
"payments_order_id": "xyz789",
- "paypal_order_id": "abc123"
+ "paypal_order_id": "xyz789"
}
@@ -51669,34 +51783,34 @@ Example
"is_returnable": "abc123",
"items": [GroupedProductItem],
"manufacturer": 123,
- "max_sale_qty": 123.45,
+ "max_sale_qty": 987.65,
"media_gallery": [MediaGalleryInterface],
"meta_description": "abc123",
"meta_keyword": "abc123",
"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_container": "abc123",
+ "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",
+ "sku": "abc123",
"small_image": ProductImage,
- "special_price": 987.65,
+ "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
+ "url_key": "xyz789",
+ "weight": 987.65
}
@@ -51751,7 +51865,7 @@ Example
{
"position": 987,
"product": ProductInterface,
- "qty": 123.45
+ "qty": 987.65
}
@@ -51819,12 +51933,12 @@ Fields
Example
{
- "added_at": "abc123",
+ "added_at": "xyz789",
"customizable_options": [SelectedCustomizableOption],
"description": "abc123",
- "id": "4",
+ "id": 4,
"product": ProductInterface,
- "quantity": 987.65
+ "quantity": 123.45
}
@@ -51874,7 +51988,7 @@ Fields
Example
{
"reason": "abc123",
- "token": "abc123"
+ "token": "xyz789"
}
@@ -51929,7 +52043,7 @@ Fields
Example
{
- "email": "abc123",
+ "email": "xyz789",
"lastname": "abc123",
"number": "xyz789"
}
@@ -51984,7 +52098,7 @@ Fields
Example
{
"attribute": "xyz789",
- "matched_words": ["abc123"],
+ "matched_words": ["xyz789"],
"value": "abc123"
}
@@ -52052,7 +52166,7 @@ Fields
Example
{
- "created_at": "abc123",
+ "created_at": "xyz789",
"creator_name": "xyz789",
"creator_type": "xyz789",
"item_id": 987,
@@ -52146,14 +52260,14 @@ Fields
Example
{
"cc_vault_code": "abc123",
- "code": "xyz789",
+ "code": "abc123",
"is_vault_enabled": false,
"is_visible": true,
- "payment_intent": "xyz789",
- "payment_source": "abc123",
- "requires_card_details": false,
+ "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"
}
@@ -52246,14 +52360,14 @@ Fields
Example
{
- "cardBin": "xyz789",
+ "cardBin": "abc123",
"cardExpiryMonth": "abc123",
- "cardExpiryYear": "xyz789",
- "cardLast4": "xyz789",
- "holderName": "abc123",
- "is_active_payment_token_enabler": false,
- "payment_source": "abc123",
- "payments_order_id": "abc123",
+ "cardExpiryYear": "abc123",
+ "cardLast4": "abc123",
+ "holderName": "xyz789",
+ "is_active_payment_token_enabler": true,
+ "payment_source": "xyz789",
+ "payments_order_id": "xyz789",
"paypal_order_id": "xyz789"
}
@@ -52319,8 +52433,8 @@ Fields
Example
{
- "thumbnail": "abc123",
- "value": "xyz789"
+ "thumbnail": "xyz789",
+ "value": "abc123"
}
@@ -52434,8 +52548,8 @@ Fields
Example
{
"code": "PRODUCT_NOT_FOUND",
- "message": "abc123",
- "quantity": 123.45
+ "message": "xyz789",
+ "quantity": 987.65
}
@@ -52458,7 +52572,7 @@ Description
Example
- 987
+ 123
@@ -52498,7 +52612,7 @@ Fields
Example
- {"message": "xyz789"}
+ {"message": "abc123"}
@@ -52698,7 +52812,7 @@ Example
"order_item": OrderItemInterface,
"product_name": "xyz789",
"product_sale_price": Money,
- "product_sku": "xyz789",
+ "product_sku": "abc123",
"quantity_invoiced": 123.45
}
@@ -52756,7 +52870,7 @@ Example
{
"custom_attributes": [CustomAttributeInput],
"invoice_id": "abc123",
- "invoice_item_id": "abc123"
+ "invoice_item_id": "xyz789"
}
@@ -52867,7 +52981,7 @@ Example
{
"custom_attributes": [CustomAttribute],
"discounts": [Discount],
- "id": "4",
+ "id": 4,
"order_item": OrderItemInterface,
"product_name": "xyz789",
"product_sale_price": Money,
@@ -53077,7 +53191,7 @@ Fields
Example
- {"is_email_available": true}
+ {"is_email_available": false}
@@ -53330,7 +53444,7 @@ Fields
Example
- {"isSubscribed": false, "message": "abc123"}
+ {"isSubscribed": true, "message": "abc123"}
@@ -53401,12 +53515,12 @@ Fields
Example
{
- "created_at": "xyz789",
- "creator_id": 987,
+ "created_at": "abc123",
+ "creator_id": 123,
"creator_name": "abc123",
"creator_type": 123,
"negotiable_quote_item_uid": 4,
- "note": "xyz789",
+ "note": "abc123",
"note_uid": 4
}
@@ -53525,9 +53639,9 @@ Example
{
"price": Money,
"product_name": "xyz789",
- "product_sku": "abc123",
+ "product_sku": "xyz789",
"quantity": 123.45,
- "uid": "4"
+ "uid": 4
}
@@ -53596,7 +53710,7 @@ Fields
Example
{
- "name": "xyz789",
+ "name": "abc123",
"value": "abc123"
}
@@ -53745,8 +53859,8 @@ Example
{
"disabled": false,
"label": "xyz789",
- "position": 987,
- "url": "xyz789"
+ "position": 123,
+ "url": "abc123"
}
@@ -53890,7 +54004,7 @@ Fields
Example
{
- "layout": "abc123",
+ "layout": "xyz789",
"logo": MessageStyleLogo
}
@@ -53937,7 +54051,7 @@ Fields
Example
- {"currency": "AFN", "value": 987.65}
+ {"currency": "AFN", "value": 123.45}
@@ -53989,7 +54103,7 @@ Fields
Example
{
"gift_registry": GiftRegistry,
- "status": false,
+ "status": true,
"user_errors": [GiftRegistryItemsUserError]
}
@@ -54134,8 +54248,8 @@ Fields
Example
{
- "quote_item_uid": 4,
- "quote_uid": "4",
+ "quote_item_uid": "4",
+ "quote_uid": 4,
"requisition_list_uid": "4"
}
@@ -54389,21 +54503,21 @@ Example
"created_at": "abc123",
"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,
"prices": CartPrices,
- "sales_rep_name": "abc123",
+ "sales_rep_name": "xyz789",
"selected_payment_method": SelectedPaymentMethod,
"shipping_addresses": [NegotiableQuoteShippingAddress],
"status": "SUBMITTED",
- "template_id": 4,
+ "template_id": "4",
"template_name": "abc123",
"total_quantity": 987.65,
- "uid": "4",
+ "uid": 4,
"updated_at": "xyz789"
}
@@ -54451,8 +54565,8 @@ Fields
Example
{
- "code": "abc123",
- "label": "abc123"
+ "code": "xyz789",
+ "label": "xyz789"
}
@@ -54593,19 +54707,19 @@ Example
{
"city": "abc123",
"company": "abc123",
- "country_code": "abc123",
+ "country_code": "xyz789",
"custom_attributes": [AttributeValueInput],
"fax": "abc123",
"firstname": "xyz789",
- "lastname": "xyz789",
+ "lastname": "abc123",
"middlename": "abc123",
- "postcode": "abc123",
+ "postcode": "xyz789",
"prefix": "xyz789",
- "region": "abc123",
- "region_id": 123,
+ "region": "xyz789",
+ "region_id": 987,
"save_in_address_book": true,
- "street": ["abc123"],
- "suffix": "abc123",
+ "street": ["xyz789"],
+ "suffix": "xyz789",
"telephone": "xyz789",
"vat_id": "xyz789"
}
@@ -54751,18 +54865,18 @@ Example
"company": "abc123",
"country": NegotiableQuoteAddressCountry,
"custom_attributes": [AttributeValueInterface],
- "customer_address_uid": "4",
- "fax": "abc123",
+ "customer_address_uid": 4,
+ "fax": "xyz789",
"firstname": "xyz789",
- "lastname": "abc123",
- "middlename": "abc123",
- "postcode": "abc123",
- "prefix": "xyz789",
+ "lastname": "xyz789",
+ "middlename": "xyz789",
+ "postcode": "xyz789",
+ "prefix": "abc123",
"region": NegotiableQuoteAddressRegion,
- "street": ["abc123"],
- "suffix": "xyz789",
+ "street": ["xyz789"],
+ "suffix": "abc123",
"telephone": "abc123",
- "uid": "4",
+ "uid": 4,
"vat_id": "xyz789"
}
@@ -54815,8 +54929,8 @@ Fields
Example
{
- "code": "abc123",
- "label": "abc123",
+ "code": "xyz789",
+ "label": "xyz789",
"region_id": 987
}
@@ -54940,18 +55054,18 @@ Example
"country": NegotiableQuoteAddressCountry,
"custom_attributes": [AttributeValueInterface],
"customer_address_uid": "4",
- "fax": "xyz789",
+ "fax": "abc123",
"firstname": "xyz789",
"lastname": "xyz789",
"middlename": "abc123",
- "postcode": "abc123",
- "prefix": "abc123",
+ "postcode": "xyz789",
+ "prefix": "xyz789",
"region": NegotiableQuoteAddressRegion,
"street": ["xyz789"],
- "suffix": "xyz789",
- "telephone": "abc123",
+ "suffix": "abc123",
+ "telephone": "xyz789",
"uid": 4,
- "vat_id": "xyz789"
+ "vat_id": "abc123"
}
@@ -55013,9 +55127,9 @@ Fields
Example
{
"address": NegotiableQuoteAddressInput,
- "customer_address_uid": "4",
+ "customer_address_uid": 4,
"same_as_shipping": true,
- "use_for_shipping": false
+ "use_for_shipping": true
}
@@ -55084,10 +55198,10 @@ Example
{
"attachments": [NegotiableQuoteCommentAttachment],
"author": NegotiableQuoteUser,
- "created_at": "abc123",
+ "created_at": "xyz789",
"creator_type": "BUYER",
"text": "xyz789",
- "uid": 4
+ "uid": "4"
}
@@ -55177,7 +55291,7 @@ Fields
Example
- {"key": "xyz789"}
+ {"key": "abc123"}
@@ -55323,7 +55437,7 @@ Fields
Example
{
- "new_value": "abc123",
+ "new_value": "xyz789",
"old_value": "xyz789",
"title": "abc123"
}
@@ -55557,7 +55671,7 @@ Example
"author": NegotiableQuoteUser,
"change_type": "CREATED",
"changes": NegotiableQuoteHistoryChanges,
- "created_at": "xyz789",
+ "created_at": "abc123",
"item_note": HistoryItemNoteData,
"uid": "4"
}
@@ -55665,8 +55779,8 @@ Fields
Example
{
- "new_expiration": "xyz789",
- "old_expiration": "abc123"
+ "new_expiration": "abc123",
+ "old_expiration": "xyz789"
}
@@ -55889,7 +56003,7 @@ Fields
Example
- {"message": "abc123"}
+ {"message": "xyz789"}
@@ -55936,7 +56050,7 @@ Fields
Example
- {"quantity": 123.45, "quote_item_uid": "4"}
+ {"quantity": 987.65, "quote_item_uid": 4}
@@ -55984,7 +56098,7 @@ Fields
Example
{
- "code": "xyz789",
+ "code": "abc123",
"purchase_order_number": "xyz789"
}
@@ -56042,7 +56156,7 @@ Fields
Example
{
- "document_identifier": "xyz789",
+ "document_identifier": "abc123",
"document_name": "abc123",
"link_id": "4",
"reference_document_url": "xyz789"
@@ -56174,23 +56288,23 @@ Fields
Example
{
"available_shipping_methods": [AvailableShippingMethod],
- "city": "xyz789",
- "company": "xyz789",
+ "city": "abc123",
+ "company": "abc123",
"country": NegotiableQuoteAddressCountry,
"custom_attributes": [AttributeValueInterface],
- "customer_address_uid": "4",
+ "customer_address_uid": 4,
"fax": "xyz789",
- "firstname": "abc123",
- "lastname": "xyz789",
- "middlename": "xyz789",
+ "firstname": "xyz789",
+ "lastname": "abc123",
+ "middlename": "abc123",
"postcode": "abc123",
- "prefix": "abc123",
+ "prefix": "xyz789",
"region": NegotiableQuoteAddressRegion,
"selected_shipping_method": SelectedShippingMethod,
"street": ["abc123"],
- "suffix": "xyz789",
+ "suffix": "abc123",
"telephone": "abc123",
- "uid": "4",
+ "uid": 4,
"vat_id": "abc123"
}
@@ -56247,8 +56361,8 @@ Fields
Example
{
"address": NegotiableQuoteAddressInput,
- "customer_address_uid": 4,
- "customer_notes": "xyz789"
+ "customer_address_uid": "4",
+ "customer_notes": "abc123"
}
@@ -56588,27 +56702,27 @@ Example
{
"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_virtual": true,
"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": 987.65,
- "uid": "4",
+ "total_quantity": 123.45,
+ "uid": 4,
"updated_at": "xyz789"
}
@@ -56797,25 +56911,25 @@ Fields
Example
{
"activated_at": "abc123",
- "company_name": "abc123",
- "created_at": "xyz789",
- "expiration_date": "abc123",
+ "company_name": "xyz789",
+ "created_at": "abc123",
+ "expiration_date": "xyz789",
"is_min_max_qty_used": true,
- "last_ordered_at": "xyz789",
+ "last_ordered_at": "abc123",
"last_shared_at": "xyz789",
"max_order_commitment": 123,
- "min_negotiated_grand_total": 987.65,
- "min_order_commitment": 987,
+ "min_negotiated_grand_total": 123.45,
+ "min_order_commitment": 123,
"name": "abc123",
"orders_placed": 123,
"prices": CartPrices,
- "sales_rep_name": "xyz789",
- "state": "xyz789",
+ "sales_rep_name": "abc123",
+ "state": "abc123",
"status": "xyz789",
"submitted_by": "xyz789",
"template_id": "4",
"uid": "4",
- "updated_at": "abc123"
+ "updated_at": "xyz789"
}
@@ -56952,8 +57066,8 @@ Example
"author": NegotiableQuoteUser,
"change_type": "CREATED",
"changes": NegotiableQuoteTemplateHistoryChanges,
- "created_at": "xyz789",
- "uid": 4
+ "created_at": "abc123",
+ "uid": "4"
}
@@ -57001,7 +57115,7 @@ Fields
Example
{
"new_status": "xyz789",
- "old_status": "xyz789"
+ "old_status": "abc123"
}
@@ -57101,12 +57215,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": 123.45, "quantity": 987.65}
@@ -57166,9 +57275,9 @@ Fields
Example
{
- "document_identifier": "abc123",
+ "document_identifier": "xyz789",
"document_name": "xyz789",
- "link_id": "4",
+ "link_id": 4,
"reference_document_url": "abc123"
}
@@ -57376,7 +57485,7 @@ Example
"items": [NegotiableQuoteTemplateGridItem],
"page_info": SearchResultPageInfo,
"sort_fields": SortFields,
- "total_count": 123
+ "total_count": 987
}
@@ -57430,7 +57539,7 @@ Possible Types
Example
- {"quote_uid": "4"}
+ {"quote_uid": 4}
@@ -57470,7 +57579,7 @@ Fields
Example
- {"quote_uid": "4"}
+ {"quote_uid": 4}
@@ -57517,7 +57626,7 @@ Fields
Example
{
"firstname": "abc123",
- "lastname": "xyz789"
+ "lastname": "abc123"
}
@@ -57755,7 +57864,7 @@ Fields
Example
{
- "backend_integration_url": "xyz789",
+ "backend_integration_url": "abc123",
"custom_config": [CustomConfigKeyValue]
}
@@ -57798,7 +57907,7 @@ Fields
Example
- {"template_id": 4}
+ {"template_id": "4"}
@@ -57910,7 +58019,7 @@ Fields
Example
- {"order_number": "abc123"}
+ {"order_number": "xyz789"}
@@ -58096,7 +58205,7 @@ attributeCodes
Example
{
"city": "abc123",
- "company": "xyz789",
+ "company": "abc123",
"country_code": "AF",
"custom_attributesV2": [AttributeValueInterface],
"fax": "abc123",
@@ -58107,10 +58216,10 @@ Example
"prefix": "abc123",
"region": "abc123",
"region_id": "4",
- "street": ["xyz789"],
+ "street": ["abc123"],
"suffix": "abc123",
- "telephone": "abc123",
- "vat_id": "xyz789"
+ "telephone": "xyz789",
+ "vat_id": "abc123"
}
@@ -58168,9 +58277,9 @@ Fields
Example
{
- "firstname": "abc123",
+ "firstname": "xyz789",
"lastname": "xyz789",
- "middlename": "xyz789",
+ "middlename": "abc123",
"prefix": "abc123",
"suffix": "xyz789"
}
@@ -58327,23 +58436,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": "xyz789",
"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": 123.45,
"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": "abc123"
+ "status": "xyz789"
}
@@ -58535,27 +58644,27 @@ 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": "xyz789",
"product_sale_price": Money,
- "product_sku": "abc123",
- "product_type": "abc123",
- "product_url_key": "abc123",
- "quantity_canceled": 987.65,
- "quantity_invoiced": 987.65,
+ "product_sku": "xyz789",
+ "product_type": "xyz789",
+ "product_url_key": "xyz789",
+ "quantity_canceled": 123.45,
+ "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,
"selected_options": [OrderItemOption],
- "status": "xyz789"
+ "status": "abc123"
}
@@ -58603,7 +58712,7 @@ Fields
Example
{
"label": "xyz789",
- "value": "xyz789"
+ "value": "abc123"
}
@@ -58755,8 +58864,8 @@ Fields
Example
{
"additional_data": [KeyValue],
- "name": "abc123",
- "type": "xyz789"
+ "name": "xyz789",
+ "type": "abc123"
}
@@ -58819,7 +58928,7 @@ Fields
Example
{
"comments": [SalesCommentItem],
- "id": "4",
+ "id": 4,
"items": [ShipmentItemInterface],
"number": "abc123",
"tracking": [ShipmentTracking]
@@ -58986,6 +59095,56 @@ Example
"total_store_credit": Money,
"total_tax": Money
}
+
+
+
+ back to top
+
+
+
+
+ Types
+
+ PageInfo
+
+
+
+ Description
+ Provides pagination information for navigating through paginated result sets.
+
+
+
+
+
+ Example
+ {"currentPage": 123, "pageSize": 987, "totalPages": 987}
@@ -59111,7 +59270,7 @@ Fields
Example
{
- "key": "abc123",
+ "key": "xyz789",
"value": "abc123"
}
@@ -59217,11 +59376,11 @@ Possible Types
Example
{
"code": "xyz789",
- "is_visible": true,
- "payment_intent": "xyz789",
+ "is_visible": false,
+ "payment_intent": "abc123",
"sdk_params": [SDKParams],
"sort_order": "abc123",
- "title": "xyz789"
+ "title": "abc123"
}
@@ -59449,7 +59608,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,
@@ -59513,7 +59672,7 @@ Fields
Example
{
- "id": "abc123",
+ "id": "xyz789",
"mp_order_id": "xyz789",
"payment_source_details": PaymentSourceDetails,
"status": "abc123"
@@ -59734,9 +59893,9 @@ Fields
Example
{
- "details": "xyz789",
- "payment_method_code": "xyz789",
- "public_hash": "abc123",
+ "details": "abc123",
+ "payment_method_code": "abc123",
+ "public_hash": "xyz789",
"type": "card"
}
@@ -59862,7 +60021,7 @@ Possible Types
Example
- {"weight": 987.65}
+ {"weight": 123.45}
@@ -59989,19 +60148,19 @@ Fields
Example
{
"city": "xyz789",
- "contact_name": "xyz789",
+ "contact_name": "abc123",
"country_id": "abc123",
- "description": "abc123",
+ "description": "xyz789",
"email": "xyz789",
"fax": "xyz789",
"latitude": 987.65,
- "longitude": 987.65,
- "name": "abc123",
- "phone": "abc123",
- "pickup_location_code": "xyz789",
- "postcode": "xyz789",
+ "longitude": 123.45,
+ "name": "xyz789",
+ "phone": "xyz789",
+ "pickup_location_code": "abc123",
+ "postcode": "abc123",
"region": "abc123",
- "region_id": 987,
+ "region_id": 123,
"street": "xyz789"
}
@@ -60338,7 +60497,7 @@ Fields
Example
- {"quote_uid": 4}
+ {"quote_uid": "4"}
@@ -60473,7 +60632,7 @@ Fields
Example
{
"code": "CART_NOT_FOUND",
- "message": "xyz789"
+ "message": "abc123"
}
@@ -60662,7 +60821,7 @@ Fields
Example
- {"cart_id": "abc123"}
+ {"cart_id": "xyz789"}
@@ -60751,7 +60910,7 @@ Fields
Example
- {"cart_id": "abc123"}
+ {"cart_id": "xyz789"}
@@ -60884,7 +61043,7 @@ Fields
Example
- {"amount": 987.65, "code": "abc123"}
+ {"amount": 123.45, "code": "xyz789"}
@@ -60935,7 +61094,7 @@ Fields
Example
{
- "discount_percentage": 123.45,
+ "discount_percentage": 987.65,
"main_final_price": 123.45,
"main_price": 987.65
}
@@ -61130,44 +61289,44 @@ Fields
Example
{"sku": "abc123"}
-
-
-
- back to top
-
-
-
-
- Types
-
- ProductAlertStockInput
-
-
-
- Fields
-
-
-
- Input Field
- Description
-
-
-
-
-
- sku - String!
-
-
-
-
-
-
-
-
-
-
- Example
- {"sku": "xyz789"}
+
+
+
+ back to top
+
+
+
+
+ Types
+
+ ProductAlertStockInput
+
+
+
+ Fields
+
+
+
+ Input Field
+ Description
+
+
+
+
+
+ sku - String!
+
+
+
+
+
+
+
+
+
+
+ Example
+ {"sku": "abc123"}
@@ -61256,8 +61415,8 @@ Fields
Example
{
- "code": "xyz789",
- "value": "abc123"
+ "code": "abc123",
+ "value": "xyz789"
}
@@ -61311,8 +61470,8 @@ Fields
Example
{
"attribute_type": "abc123",
- "code": 4,
- "url": "abc123",
+ "code": "4",
+ "url": "xyz789",
"value": "xyz789"
}
@@ -61551,7 +61710,7 @@ Fields
Example
- {"sku": "abc123"}
+ {"sku": "xyz789"}
@@ -61844,43 +62003,43 @@ 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_wrapping_available": true,
+ "gift_message_available": true,
+ "gift_wrapping_available": false,
"gift_wrapping_price": Money,
"image": ProductImage,
"is_returnable": "xyz789",
- "manufacturer": 987,
+ "manufacturer": 123,
"max_sale_qty": 987.65,
"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",
+ "min_sale_qty": 987.65,
+ "name": "abc123",
+ "new_from_date": "xyz789",
+ "new_to_date": "xyz789",
"only_x_left_in_stock": 123.45,
- "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",
"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"
}
@@ -61943,10 +62102,10 @@ Fields
Example
{
"link_type": "xyz789",
- "linked_product_sku": "xyz789",
- "linked_product_type": "xyz789",
+ "linked_product_sku": "abc123",
+ "linked_product_type": "abc123",
"position": 123,
- "sku": "abc123"
+ "sku": "xyz789"
}
@@ -62025,11 +62184,11 @@ Possible Types
Example
{
- "link_type": "xyz789",
+ "link_type": "abc123",
"linked_product_sku": "xyz789",
- "linked_product_type": "xyz789",
- "position": 987,
- "sku": "abc123"
+ "linked_product_type": "abc123",
+ "position": 123,
+ "sku": "xyz789"
}
@@ -62081,8 +62240,8 @@ Fields
Example
{
- "asset_id": "abc123",
- "media_type": "abc123",
+ "asset_id": "xyz789",
+ "media_type": "xyz789",
"media_url": "xyz789"
}
@@ -62135,8 +62294,8 @@ Fields
Example
{
- "media_type": "abc123",
- "video_asset_id": "xyz789",
+ "media_type": "xyz789",
+ "video_asset_id": "abc123",
"video_media_url": "abc123"
}
@@ -62209,7 +62368,7 @@ Example
"video_metadata": "xyz789",
"video_provider": "abc123",
"video_title": "abc123",
- "video_url": "xyz789"
+ "video_url": "abc123"
}
@@ -62399,7 +62558,7 @@ Example
"items": [ProductSearchItem],
"page_info": SearchResultPageInfo,
"related_terms": ["abc123"],
- "suggestions": ["xyz789"],
+ "suggestions": ["abc123"],
"total_count": 987,
"warnings": [ProductSearchWarning]
}
@@ -62449,7 +62608,7 @@ Fields
Example
- {"attribute": "xyz789", "direction": "ASC"}
+ {"attribute": "abc123", "direction": "ASC"}
@@ -62608,9 +62767,9 @@ Fields
Example
{
"disabled": true,
- "label": "xyz789",
- "position": 987,
- "url": "abc123",
+ "label": "abc123",
+ "position": 123,
+ "url": "xyz789",
"video_content": ProductMediaGalleryEntriesVideoContent
}
@@ -62849,7 +63008,7 @@ Possible Types
Example
{
- "addToCartAllowed": true,
+ "addToCartAllowed": false,
"inStock": true,
"lowStock": true,
"attributes": [ProductViewAttribute],
@@ -62858,20 +63017,20 @@ Example
"images": [ProductViewImage],
"videos": [ProductViewVideo],
"lastModifiedAt": "2007-12-03T10:15:30Z",
- "metaDescription": "abc123",
- "metaKeyword": "abc123",
- "metaTitle": "xyz789",
+ "metaDescription": "xyz789",
+ "metaKeyword": "xyz789",
+ "metaTitle": "abc123",
"name": "abc123",
- "shortDescription": "abc123",
+ "shortDescription": "xyz789",
"inputOptions": [ProductViewInputOption],
"sku": "abc123",
- "externalId": "xyz789",
+ "externalId": "abc123",
"url": "xyz789",
"urlKey": "xyz789",
"links": [ProductViewLink],
"categories": [CategoryProductView],
- "queryType": "xyz789",
- "visibility": "abc123"
+ "queryType": "abc123",
+ "visibility": "xyz789"
}
@@ -64208,9 +64367,9 @@ Fields
Example
{
- "label": "xyz789",
- "roles": ["xyz789"],
- "url": "abc123"
+ "label": "abc123",
+ "roles": ["abc123"],
+ "url": "xyz789"
}
@@ -64297,16 +64456,16 @@ Fields
Example
{
- "id": "4",
- "title": "xyz789",
- "required": false,
- "type": "xyz789",
+ "id": 4,
+ "title": "abc123",
+ "required": true,
+ "type": "abc123",
"markupAmount": 987.65,
- "suffix": "xyz789",
+ "suffix": "abc123",
"sortOrder": 123,
"range": ProductViewInputOptionRange,
"imageSize": ProductViewInputOptionImageSize,
- "fileExtensions": "abc123"
+ "fileExtensions": "xyz789"
}
@@ -64397,7 +64556,7 @@ Fields
Example
- {"from": 987.65, "to": 987.65}
+ {"from": 123.45, "to": 123.45}
@@ -64444,7 +64603,7 @@ Fields
Example
{
"product": ProductView,
- "linkTypes": ["xyz789"]
+ "linkTypes": ["abc123"]
}
@@ -64552,7 +64711,7 @@ Fields
Example
{
"id": 4,
- "multi": false,
+ "multi": true,
"required": false,
"title": "xyz789",
"values": [ProductViewOptionValue]
@@ -64635,8 +64794,8 @@ Possible Types
Example
{
"id": 4,
- "title": "xyz789",
- "inStock": false
+ "title": "abc123",
+ "inStock": true
}
@@ -64688,7 +64847,7 @@ Fields
Example
{
- "id": "4",
+ "id": 4,
"title": "abc123",
"inStock": true
}
@@ -64757,12 +64916,12 @@ Fields
Example
{
- "id": "4",
+ "id": 4,
"isDefault": true,
"product": SimpleProductView,
- "quantity": 987.65,
+ "quantity": 123.45,
"title": "xyz789",
- "inStock": false
+ "inStock": true
}
@@ -64825,10 +64984,10 @@ Fields
Example
{
"id": "4",
- "title": "abc123",
+ "title": "xyz789",
"type": "TEXT",
"value": "abc123",
- "inStock": true
+ "inStock": false
}
@@ -64888,7 +65047,7 @@ Example
"final": Price,
"regular": Price,
"tiers": [ProductViewTierPrice],
- "roles": ["abc123"]
+ "roles": ["xyz789"]
}
@@ -65017,7 +65176,7 @@ Fields
Example
- {"in": [987.65]}
+ {"in": [123.45]}
@@ -65156,7 +65315,7 @@ Fields
Example
{
- "selections": ["abc123"],
+ "selections": ["xyz789"],
"product": ProductView
}
@@ -65205,7 +65364,7 @@ Fields
Example
{
"variants": [ProductViewVariant],
- "cursor": "xyz789"
+ "cursor": "abc123"
}
@@ -65265,7 +65424,7 @@ Example
"preview": ProductViewImage,
"url": "xyz789",
"description": "abc123",
- "title": "abc123"
+ "title": "xyz789"
}
@@ -65317,7 +65476,7 @@ Fields
Example
{
"date": "2007-12-03T10:15:30Z",
- "items": ["xyz789"]
+ "items": ["abc123"]
}
@@ -65417,14 +65576,14 @@ Example
"approval_flow": [PurchaseOrderRuleApprovalFlow],
"available_actions": ["REJECT"],
"comments": [PurchaseOrderComment],
- "created_at": "abc123",
+ "created_at": "xyz789",
"created_by": Customer,
"history_log": [PurchaseOrderHistoryItem],
- "number": "xyz789",
+ "number": "abc123",
"order": CustomerOrder,
"quote": Cart,
"status": "PENDING",
- "uid": 4,
+ "uid": "4",
"updated_at": "xyz789"
}
@@ -65598,11 +65757,11 @@ Fields
Example
{
- "message": "abc123",
- "name": "abc123",
- "role": "xyz789",
+ "message": "xyz789",
+ "name": "xyz789",
+ "role": "abc123",
"status": "PENDING",
- "updated_at": "abc123"
+ "updated_at": "xyz789"
}
@@ -65746,11 +65905,11 @@ Example
"condition": PurchaseOrderApprovalRuleConditionInterface,
"created_at": "abc123",
"created_by": "abc123",
- "description": "xyz789",
- "name": "abc123",
+ "description": "abc123",
+ "name": "xyz789",
"status": "ENABLED",
- "uid": 4,
- "updated_at": "xyz789"
+ "uid": "4",
+ "updated_at": "abc123"
}
@@ -66053,11 +66212,11 @@ Fields
Example
{
- "applies_to": ["4"],
+ "applies_to": [4],
"approvers": [4],
"condition": CreatePurchaseOrderApprovalRuleConditionInput,
"description": "xyz789",
- "name": "abc123",
+ "name": "xyz789",
"status": "ENABLED"
}
@@ -66321,9 +66480,9 @@ Fields
Example
{
"author": Customer,
- "created_at": "xyz789",
- "text": "abc123",
- "uid": 4
+ "created_at": "abc123",
+ "text": "xyz789",
+ "uid": "4"
}
@@ -66446,10 +66605,10 @@ Fields
Example
{
- "activity": "xyz789",
- "created_at": "xyz789",
+ "activity": "abc123",
+ "created_at": "abc123",
"message": "xyz789",
- "uid": "4"
+ "uid": 4
}
@@ -66497,7 +66656,7 @@ Fields
Example
{
"events": [PurchaseOrderApprovalFlowEvent],
- "rule_name": "abc123"
+ "rule_name": "xyz789"
}
@@ -66645,7 +66804,7 @@ Example
{
"items": [PurchaseOrder],
"page_info": SearchResultPageInfo,
- "total_count": 123
+ "total_count": 987
}
@@ -66687,7 +66846,7 @@ Fields
Example
- {"purchase_order_uids": ["4"]}
+ {"purchase_order_uids": [4]}
@@ -66804,7 +66963,7 @@ Example
"company_purchase_orders": false,
"created_date": FilterRangeTypeInput,
"my_approvals": true,
- "require_my_approval": true,
+ "require_my_approval": false,
"status": "PENDING"
}
@@ -66850,7 +67009,7 @@ {
- "customerGroup": "abc123",
+ "customerGroup": "xyz789",
"userViewHistory": [ViewHistoryInput]
}
@@ -66947,8 +67106,8 @@ {
- "expiration_date": "abc123",
- "template_id": 4
+ "expiration_date": "xyz789",
+ "template_id": "4"
}
{
"item_id": "4",
"item_uid": 4,
- "note": "xyz789",
+ "note": "abc123",
"templateId": "4"
}
@@ -67059,8 +67218,8 @@ {
- "message": "abc123",
- "type": "abc123"
+ "message": "xyz789",
+ "type": "xyz789"
}
{
- "count": 123,
- "from": 987.65,
- "title": "abc123",
+ "count": 987,
+ "from": 123.45,
+ "title": "xyz789",
"to": 987.65
}
@@ -67270,7 +67429,7 @@ {"from": 987.65, "to": 987.65}
+ {"from": 987.65, "to": 123.45}
{
"configurations": ReCaptchaConfiguration,
- "is_enabled": false
+ "is_enabled": true
}
{
"badge_position": "xyz789",
- "language_code": "xyz789",
+ "language_code": "abc123",
"minimum_score": 987.65,
"re_captcha_type": "INVISIBLE",
"technical_failure_message": "abc123",
"theme": "abc123",
"validation_failure_message": "abc123",
- "website_key": "xyz789"
+ "website_key": "abc123"
}
{
- "badge_position": "abc123",
- "failure_message": "xyz789",
+ "badge_position": "xyz789",
+ "failure_message": "abc123",
"forms": ["PLACE_ORDER"],
- "is_enabled": true,
+ "is_enabled": false,
"language_code": "abc123",
- "minimum_score": 987.65,
- "theme": "xyz789",
+ "minimum_score": 123.45,
+ "theme": "abc123",
"website_key": "xyz789"
}
@@ -67536,7 +67695,7 @@ {
"configurations": ReCaptchaConfiguration,
"form_type": "PLACE_ORDER",
- "is_enabled": false
+ "is_enabled": true
}
{"results": [RecommendationUnit], "totalResults": 987}
+ {"results": [RecommendationUnit], "totalResults": 123}
{
"code": "xyz789",
- "id": 123,
- "name": "abc123"
+ "id": 987,
+ "name": "xyz789"
}
@@ -68184,7 +68343,7 @@ {"success": true}
+ {"success": false}
{
- "cart_id": "abc123",
- "cart_item_uid": "4"
-}
+ {"cart_id": "xyz789", "cart_item_uid": 4}
{"quote_item_uids": ["4"], "quote_uid": 4}
+ {"quote_item_uids": [4], "quote_uid": 4}
{
- "item_uids": ["4"],
- "template_id": "4"
-}
+ {"item_uids": [4], "template_id": "4"}
{
- "products": ["4"],
- "uid": "4"
-}
+ {"products": [4], "uid": "4"}
{"return_shipping_tracking_uid": "4"}
+ {"return_shipping_tracking_uid": 4}
{
- "comment_text": "abc123",
- "contact_email": "abc123",
+ "comment_text": "xyz789",
+ "contact_email": "xyz789",
"items": [RequestReturnItemInput],
- "token": "abc123"
+ "token": "xyz789"
}
{
- "cart_id": "4",
+ "cart_id": 4,
"comment": NegotiableQuoteCommentInput,
- "is_draft": false,
+ "is_draft": true,
"quote_name": "abc123"
}
@@ -69105,7 +69255,7 @@ {"cart_id": 4}
+ {"cart_id": "4"}
{
- "comment_text": "xyz789",
+ "comment_text": "abc123",
"contact_email": "xyz789",
"items": [RequestReturnItemInput],
"order_uid": 4
@@ -69392,7 +69542,7 @@ Example
"description": "abc123",
"items": RequistionListItems,
"items_count": 987,
- "name": "abc123",
+ "name": "xyz789",
"uid": "4",
"updated_at": "abc123"
}
@@ -69551,8 +69701,8 @@ Example
{
"customizable_options": [SelectedCustomizableOption],
"product": ProductInterface,
- "quantity": 987.65,
- "sku": "xyz789",
+ "quantity": 123.45,
+ "sku": "abc123",
"uid": 4
}
@@ -69622,7 +69772,7 @@ Example
{
"entered_options": [EnteredOptionInput],
"parent_sku": "abc123",
- "quantity": 123.45,
+ "quantity": 987.65,
"selected_options": ["xyz789"],
"sku": "abc123"
}
@@ -69774,7 +69924,7 @@ Example
"items": [RequisitionList],
"page_info": SearchResultPageInfo,
"sort_fields": SortFields,
- "total_count": 987
+ "total_count": 123
}
{
"items": [RequisitionListItemInterface],
"page_info": SearchResultPageInfo,
- "total_pages": 123
+ "total_pages": 987
}
{
"available_shipping_carriers": [ReturnShippingCarrier],
"comments": [ReturnComment],
- "created_at": "xyz789",
+ "created_at": "abc123",
"customer": ReturnCustomer,
"items": [ReturnItem],
"number": "abc123",
"order": CustomerOrder,
"shipping": ReturnShipping,
"status": "PENDING",
- "uid": "4"
+ "uid": 4
}
@@ -69982,9 +70132,9 @@ {
"author_name": "abc123",
- "created_at": "abc123",
+ "created_at": "xyz789",
"text": "xyz789",
- "uid": 4
+ "uid": "4"
}
@@ -70036,9 +70186,9 @@ {
- "email": "xyz789",
- "firstname": "abc123",
- "lastname": "abc123"
+ "email": "abc123",
+ "firstname": "xyz789",
+ "lastname": "xyz789"
}
{
- "code": "4",
- "default_value": "abc123",
+ "code": 4,
+ "default_value": "xyz789",
"entity_type": "CATALOG_PRODUCT",
- "frontend_class": "xyz789",
+ "frontend_class": "abc123",
"frontend_input": "BOOLEAN",
"input_filter": "NONE",
- "is_required": true,
- "is_unique": false,
- "label": "xyz789",
- "multiline_count": 123,
+ "is_required": false,
+ "is_unique": true,
+ "label": "abc123",
+ "multiline_count": 987,
"options": [CustomAttributeOptionInterface],
- "sort_order": 123,
+ "sort_order": 987,
"validate_rules": [ValidationRule]
}
@@ -70430,13 +70580,13 @@ {
- "city": "xyz789",
+ "city": "abc123",
"contact_name": "abc123",
"country": Country,
"postcode": "xyz789",
"region": Region,
"street": ["xyz789"],
- "telephone": "abc123"
+ "telephone": "xyz789"
}
{
- "label": "abc123",
- "uid": "4"
-}
+ {"label": "abc123", "uid": 4}
{"text": "xyz789", "type": "INFORMATION"}
+ {"text": "abc123", "type": "INFORMATION"}
{
"items": [Return],
"page_info": SearchResultPageInfo,
- "total_count": 987
+ "total_count": 123
}
@@ -70851,7 +70998,7 @@ {"result": false}
+ {"result": true}
{
"balance": RewardPointsAmount,
- "change_reason": "xyz789",
+ "change_reason": "abc123",
"date": "abc123",
- "points_change": 987.65
+ "points_change": 123.45
}
@@ -71105,7 +71252,7 @@ {"currency_amount": 987.65, "points": 123.45}
+ {"currency_amount": 123.45, "points": 987.65}
{
"message": "xyz789",
- "timestamp": "xyz789"
+ "timestamp": "abc123"
}
@@ -71344,11 +71491,7 @@ {
- "count": 123,
- "id": "4",
- "title": "abc123"
-}
+ {"count": 123, "id": 4, "title": "xyz789"}
"GLOBAL"
+
+ Represents a paginated result set of category search results.
+| Field Name | +Description | +
|---|---|
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. | +
{
+ "items": [CategoryTreeView],
+ "totalCount": 123,
+ "pageInfo": PageInfo
+}
{
- "attribute": "xyz789",
- "contains": "abc123",
+ "attribute": "abc123",
+ "contains": "xyz789",
"eq": "xyz789",
"in": ["abc123"],
"range": SearchRangeInput,
@@ -71529,7 +71726,7 @@ Fields
Example
- {"from": 123.45, "to": 987.65}
+ {"from": 987.65, "to": 987.65}
@@ -71579,7 +71776,7 @@ Fields
Example
- {"current_page": 123, "page_size": 123, "total_pages": 123}
+ {"current_page": 987, "page_size": 123, "total_pages": 123}
@@ -71700,11 +71897,11 @@ Fields
Example
{
- "label": "abc123",
+ "label": "xyz789",
"original_price": Money,
"priceV2": Money,
"quantity": 987.65,
- "uid": 4
+ "uid": "4"
}
@@ -71762,8 +71959,8 @@ Fields
Example
{
"configurable_product_option_uid": 4,
- "configurable_product_option_value_uid": "4",
- "option_label": "xyz789",
+ "configurable_product_option_value_uid": 4,
+ "option_label": "abc123",
"value_label": "abc123"
}
@@ -71813,8 +72010,8 @@ Fields
Example
{
- "attribute_code": "xyz789",
- "value": "xyz789"
+ "attribute_code": "abc123",
+ "value": "abc123"
}
@@ -71881,9 +72078,9 @@ Fields
Example
{
- "customizable_option_uid": "4",
+ "customizable_option_uid": 4,
"is_required": true,
- "label": "xyz789",
+ "label": "abc123",
"sort_order": 987,
"type": "xyz789",
"values": [SelectedCustomizableOptionValue]
@@ -72003,9 +72200,9 @@ Fields
Example
{
- "code": "abc123",
+ "code": "xyz789",
"oope_payment_method_config": OopePaymentMethodConfig,
- "purchase_order_number": "abc123",
+ "purchase_order_number": "xyz789",
"title": "abc123"
}
@@ -72085,9 +72282,9 @@ Example
{
"additional_data": [ShippingAdditionalData],
"amount": Money,
- "carrier_code": "abc123",
+ "carrier_code": "xyz789",
"carrier_title": "xyz789",
- "method_code": "xyz789",
+ "method_code": "abc123",
"method_title": "xyz789",
"price_excl_tax": Money,
"price_incl_tax": Money
@@ -72138,10 +72335,7 @@ Fields
Example
- {
- "comment": NegotiableQuoteCommentInput,
- "quote_uid": "4"
-}
+ {"comment": NegotiableQuoteCommentInput, "quote_uid": 4}
@@ -72562,7 +72756,7 @@ Fields
Example
{
- "cart_id": "xyz789",
+ "cart_id": "abc123",
"gift_message": GiftMessageInput,
"gift_receipt_included": true,
"gift_wrapping_id": 4,
@@ -72656,7 +72850,7 @@ Fields
Example
{
"cart_id": "xyz789",
- "email": "abc123"
+ "email": "xyz789"
}
@@ -72876,7 +73070,7 @@ Fields
Example
{
"payment_method": NegotiableQuotePaymentMethodInput,
- "quote_uid": "4"
+ "quote_uid": 4
}
@@ -72965,7 +73159,7 @@ Fields
Example
{
- "quote_uid": 4,
+ "quote_uid": "4",
"shipping_addresses": [
NegotiableQuoteShippingAddressInput
]
@@ -73148,7 +73342,7 @@ Fields
Example
{
"shipping_address": NegotiableQuoteTemplateShippingAddressInput,
- "template_id": "4"
+ "template_id": 4
}
@@ -73377,7 +73571,7 @@ Fields
Example
{
- "cart_id": "abc123",
+ "cart_id": "xyz789",
"shipping_methods": [ShippingMethodInput]
}
@@ -73468,7 +73662,7 @@ Fields
Example
{
"email": "xyz789",
- "name": "xyz789"
+ "name": "abc123"
}
@@ -73558,7 +73752,7 @@ Fields
Example
{
"message": "xyz789",
- "name": "abc123"
+ "name": "xyz789"
}
@@ -73672,7 +73866,7 @@ Example
{
"id": "4",
"order_item": OrderItemInterface,
- "product_name": "xyz789",
+ "product_name": "abc123",
"product_sale_price": Money,
"product_sku": "xyz789",
"quantity_shipped": 987.65
@@ -73769,12 +73963,12 @@ Possible Types
Example
{
- "id": 4,
+ "id": "4",
"order_item": OrderItemInterface,
"product_name": "xyz789",
"product_sale_price": Money,
"product_sku": "xyz789",
- "quantity_shipped": 987.65
+ "quantity_shipped": 123.45
}
@@ -73877,7 +74071,7 @@ Fields
Example
{
- "key": "xyz789",
+ "key": "abc123",
"value": "abc123"
}
@@ -73946,7 +74140,7 @@ Fields
Example
{
"address": CartAddressInput,
- "customer_address_id": 123,
+ "customer_address_id": 987,
"customer_address_uid": 4,
"customer_notes": "abc123",
"pickup_location_code": "abc123"
@@ -74111,25 +74305,25 @@ Example
"available_shipping_methods": [AvailableShippingMethod],
"cart_items_v2": [CartItemInterface],
"city": "abc123",
- "company": "xyz789",
+ "company": "abc123",
"country": CartAddressCountry,
"custom_attributes": [AttributeValueInterface],
"customer_address_uid": "4",
"customer_notes": "xyz789",
"fax": "abc123",
- "firstname": "abc123",
+ "firstname": "xyz789",
"id": 987,
"lastname": "abc123",
- "middlename": "abc123",
+ "middlename": "xyz789",
"pickup_location_code": "xyz789",
"postcode": "xyz789",
- "prefix": "abc123",
+ "prefix": "xyz789",
"region": CartAddressRegion,
"same_as_billing": false,
"selected_shipping_method": SelectedShippingMethod,
- "street": ["xyz789"],
- "suffix": "abc123",
- "telephone": "xyz789",
+ "street": ["abc123"],
+ "suffix": "xyz789",
+ "telephone": "abc123",
"uid": 4,
"vat_id": "xyz789"
}
@@ -74286,7 +74480,7 @@ Fields
Example
{
- "carrier_code": "xyz789",
+ "carrier_code": "abc123",
"method_code": "abc123"
}
@@ -74419,14 +74613,14 @@ Example
"gift_wrapping": GiftWrapping,
"is_available": true,
"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,
"product": ProductInterface,
"quantity": 987.65,
- "uid": "4"
+ "uid": 4
}
@@ -74683,7 +74877,7 @@ Example
{
"canonical_url": "xyz789",
"categories": [CategoryInterface],
- "country_of_manufacture": "abc123",
+ "country_of_manufacture": "xyz789",
"crosssell_products": [ProductInterface],
"custom_attributesV2": ProductCustomAttributes,
"description": ComplexTextValue,
@@ -74692,35 +74886,35 @@ Example
"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": "abc123",
- "meta_title": "abc123",
+ "meta_title": "xyz789",
"min_sale_qty": 123.45,
"name": "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_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_price": 123.45,
"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": "xyz789",
+ "url_key": "abc123",
"weight": 123.45
}
@@ -74945,8 +75139,8 @@ family<
Example
{
"addToCartAllowed": false,
- "inStock": true,
- "lowStock": false,
+ "inStock": false,
+ "lowStock": true,
"attributes": [ProductViewAttribute],
"description": "abc123",
"id": 4,
@@ -74954,15 +75148,15 @@ Example
"videos": [ProductViewVideo],
"inputOptions": [ProductViewInputOption],
"lastModifiedAt": "2007-12-03T10:15:30Z",
- "metaDescription": "xyz789",
+ "metaDescription": "abc123",
"metaKeyword": "abc123",
"metaTitle": "xyz789",
- "name": "abc123",
+ "name": "xyz789",
"price": ProductViewPrice,
"shortDescription": "xyz789",
- "sku": "abc123",
- "externalId": "xyz789",
- "url": "xyz789",
+ "sku": "xyz789",
+ "externalId": "abc123",
+ "url": "abc123",
"urlKey": "abc123",
"links": [ProductViewLink],
"categories": [CategoryProductView],
@@ -75032,8 +75226,8 @@ Example
{
"customizable_options": [SelectedCustomizableOption],
"product": ProductInterface,
- "quantity": 123.45,
- "sku": "xyz789",
+ "quantity": 987.65,
+ "sku": "abc123",
"uid": "4"
}
@@ -75102,12 +75296,12 @@ Fields
Example
{
- "added_at": "abc123",
+ "added_at": "xyz789",
"customizable_options": [SelectedCustomizableOption],
- "description": "abc123",
+ "description": "xyz789",
"id": 4,
"product": ProductInterface,
- "quantity": 987.65
+ "quantity": 123.45
}
@@ -75163,7 +75357,7 @@ Fields
Example
{
"payment_source": "xyz789",
- "payments_order_id": "xyz789",
+ "payments_order_id": "abc123",
"paypal_order_id": "abc123"
}
@@ -75254,15 +75448,15 @@ Example
{
"app_switch_when_available": false,
"button_styles": ButtonStyles,
- "code": "xyz789",
- "display_message": false,
+ "code": "abc123",
+ "display_message": true,
"display_venmo": false,
"is_visible": true,
"message_styles": MessageStyles,
"payment_intent": "abc123",
"sdk_params": [SDKParams],
"sort_order": "xyz789",
- "title": "xyz789"
+ "title": "abc123"
}
@@ -75406,7 +75600,7 @@ Fields
Example
{
- "default": "xyz789",
+ "default": "abc123",
"options": [SortField]
}
@@ -75786,7 +75980,7 @@ Fields
Example
{
"max": 987.65,
- "min": 987.65,
+ "min": 123.45,
"title": "abc123"
}
@@ -76520,43 +76714,43 @@ Fields
Example
{
"allow_company_registration": false,
- "allow_gift_receipt": "xyz789",
+ "allow_gift_receipt": "abc123",
"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,
+ "autocomplete_on_storefront": true,
"base_currency_code": "abc123",
"base_link_url": "abc123",
- "base_media_url": "xyz789",
+ "base_media_url": "abc123",
"base_static_url": "xyz789",
- "base_url": "abc123",
+ "base_url": "xyz789",
"cart_expires_in_days": 987,
- "cart_gift_wrapping": "xyz789",
+ "cart_gift_wrapping": "abc123",
"cart_merge_preference": "abc123",
- "cart_printed_card": "xyz789",
- "cart_summary_display_quantity": 987,
+ "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": 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_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_send_check_to": "abc123",
+ "check_money_order_sort_order": 987,
"check_money_order_title": "abc123",
- "company_credit_enabled": false,
- "company_enabled": false,
+ "company_credit_enabled": true,
+ "company_enabled": true,
"configurable_product_image": "ITSELF",
- "configurable_thumbnail_source": "abc123",
- "contact_enabled": true,
- "countries_with_required_region": "xyz789",
- "create_account_confirmation": true,
+ "configurable_thumbnail_source": "xyz789",
+ "contact_enabled": false,
+ "countries_with_required_region": "abc123",
+ "create_account_confirmation": false,
"customer_access_token_lifetime": 123.45,
"default_country": "abc123",
"default_display_currency_code": "xyz789",
@@ -76564,98 +76758,98 @@ Example
"display_shipping_prices": 987,
"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_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_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,
+ "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": 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_negotiable_quote_active": false,
+ "is_one_page_checkout_enabled": true,
"is_requisition_list_active": "abc123",
- "list_mode": "abc123",
+ "list_mode": "xyz789",
"list_per_page": 123,
- "list_per_page_values": "abc123",
- "locale": "xyz789",
+ "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_is_enabled_on_front": "abc123",
+ "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_limit": "xyz789",
"magento_reward_points_newsletter": "abc123",
"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": "xyz789",
- "magento_wishlist_general_is_enabled": "abc123",
- "max_items_in_order_summary": 987,
- "maximum_number_of_wishlists": "abc123",
+ "magento_wishlist_general_is_enabled": "xyz789",
+ "max_items_in_order_summary": 123,
+ "maximum_number_of_wishlists": "xyz789",
"minicart_display": true,
"minicart_max_items": 123,
"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": 123,
- "orders_invoices_credit_memos_display_subtotal": 123,
- "orders_invoices_credit_memos_display_zero_tax": 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": 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",
+ "product_url_suffix": "abc123",
"quickorder_active": true,
- "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",
"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_printed_card": "xyz789",
"secure_base_link_url": "abc123",
- "secure_base_media_url": "abc123",
- "secure_base_static_url": "abc123",
+ "secure_base_media_url": "xyz789",
+ "secure_base_static_url": "xyz789",
"secure_base_url": "abc123",
"share_active_segments": false,
- "share_applied_cart_rule": true,
- "shopping_cart_display_full_summary": true,
- "shopping_cart_display_grand_total": true,
- "shopping_cart_display_price": 987,
- "shopping_cart_display_shipping": 123,
+ "share_applied_cart_rule": false,
+ "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": 987,
"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_sort_order": 987,
"timezone": "abc123",
- "title_separator": "abc123",
- "use_store_in_url": true,
- "website_code": "4",
- "website_name": "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",
"zero_subtotal_payment_action": "xyz789",
- "zero_subtotal_payment_from_specific_countries": "xyz789",
+ "zero_subtotal_payment_from_specific_countries": "abc123",
"zero_subtotal_sort_order": 987,
"zero_subtotal_title": "abc123"
}
@@ -76680,7 +76874,7 @@ Description
Example
- "abc123"
+ "xyz789"
@@ -76849,10 +77043,10 @@ Fields
Example
{
"attachments": [NegotiableQuoteCommentAttachmentInput],
- "comment": "xyz789",
- "max_order_commitment": 123,
- "min_order_commitment": 123,
- "name": "xyz789",
+ "comment": "abc123",
+ "max_order_commitment": 987,
+ "min_order_commitment": 987,
+ "name": "abc123",
"reference_document_links": [
NegotiableQuoteTemplateReferenceDocumentLinkInput
],
@@ -77007,7 +77201,7 @@ Fields
Example
- {"depth": 123, "startLevel": 123}
+ {"depth": 123, "startLevel": 987}
@@ -77342,7 +77536,7 @@ Fields
Example
{
- "cartId": "abc123",
+ "cartId": "xyz789",
"id": "xyz789"
}
@@ -77396,8 +77590,8 @@ Fields
Example
{
"amount": Money,
- "rate": 123.45,
- "title": "xyz789"
+ "rate": 987.65,
+ "title": "abc123"
}
@@ -77486,7 +77680,7 @@ Fields
Example
- {"value": "xyz789"}
+ {"value": "abc123"}
@@ -77595,7 +77789,7 @@ Example
{
"discount": ProductDiscount,
"final_price": Money,
- "quantity": 123.45
+ "quantity": 987.65
}
@@ -77686,11 +77880,11 @@ Example
{
"unitName": "xyz789",
"storefrontLabel": "xyz789",
- "pagePlacement": "xyz789",
- "displayNumber": 123,
- "pageType": "abc123",
+ "pagePlacement": "abc123",
+ "displayNumber": 987,
+ "pageType": "xyz789",
"unitStatus": "xyz789",
- "typeId": "abc123",
+ "typeId": "xyz789",
"filterRules": [FilterRuleInput]
}
@@ -78066,7 +78260,7 @@ Example
GiftRegistryDynamicAttributeInput
],
"event_name": "abc123",
- "message": "xyz789",
+ "message": "abc123",
"privacy_settings": "PRIVATE",
"shipping_address": GiftRegistryShippingAddressInput,
"status": "ACTIVE"
@@ -78126,7 +78320,7 @@ Example
{
"gift_registry_item_uid": "4",
"note": "abc123",
- "quantity": 987.65
+ "quantity": 123.45
}
{
- "applies_to": ["4"],
- "approvers": ["4"],
+ "applies_to": [4],
+ "approvers": [4],
"condition": CreatePurchaseOrderApprovalRuleConditionInput,
"description": "xyz789",
- "name": "xyz789",
+ "name": "abc123",
"status": "ENABLED",
- "uid": "4"
+ "uid": 4
}
{
"entered_options": [EnteredOptionInput],
- "item_id": "4",
- "quantity": 123.45,
+ "item_id": 4,
+ "quantity": 987.65,
"selected_options": ["xyz789"]
}
@@ -78878,7 +79072,7 @@ {
- "name": "xyz789",
+ "name": "abc123",
"uid": "4",
"visibility": "PUBLIC"
}
@@ -78935,8 +79129,8 @@ Fields
Example
{
- "currentPage": 987,
- "pageSize": 123,
+ "currentPage": 123,
+ "pageSize": 987,
"sort": [CompaniesSortInput]
}
@@ -79419,7 +79613,7 @@ Fields
Example
{
- "is_vault_enabled": false,
+ "is_vault_enabled": true,
"sdk_params": [SDKParams],
"three_ds_mode": "OFF"
}
@@ -79482,10 +79676,10 @@ Fields
Example
{
- "payment_source": "xyz789",
+ "payment_source": "abc123",
"payments_order_id": "xyz789",
- "paypal_order_id": "abc123",
- "public_hash": "abc123"
+ "paypal_order_id": "xyz789",
+ "public_hash": "xyz789"
}
@@ -79578,7 +79772,7 @@ Fields
Example
{
"date": "2007-12-03T10:15:30Z",
- "sku": "abc123"
+ "sku": "xyz789"
}
@@ -79742,10 +79936,10 @@ Example
"customizable_options": [SelectedCustomizableOption],
"discount": [Discount],
"errors": [CartItemError],
- "is_available": false,
+ "is_available": true,
"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,
@@ -80003,7 +80197,7 @@ Example
{
"canonical_url": "xyz789",
"categories": [CategoryInterface],
- "country_of_manufacture": "abc123",
+ "country_of_manufacture": "xyz789",
"crosssell_products": [ProductInterface],
"custom_attributesV2": ProductCustomAttributes,
"description": ComplexTextValue,
@@ -80012,23 +80206,23 @@ Example
"gift_wrapping_price": Money,
"image": ProductImage,
"is_returnable": "abc123",
- "manufacturer": 123,
+ "manufacturer": 987,
"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,
+ "min_sale_qty": 123.45,
"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",
"price_range": PriceRange,
"price_tiers": [TierPrice],
"product_links": [ProductLinksInterface],
- "quantity": 123.45,
+ "quantity": 987.65,
"related_products": [ProductInterface],
"short_description": ComplexTextValue,
"sku": "abc123",
@@ -80036,11 +80230,11 @@ Example
"special_price": 123.45,
"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": "xyz789"
+ "url_key": "abc123"
}
@@ -80175,10 +80369,10 @@ Fields
Example
{
- "added_at": "xyz789",
+ "added_at": "abc123",
"customizable_options": [SelectedCustomizableOption],
"description": "xyz789",
- "id": "4",
+ "id": 4,
"product": ProductInterface,
"quantity": 987.65
}
@@ -80228,7 +80422,7 @@ Fields
Example
{
"code": "PRODUCT_NOT_FOUND",
- "message": "abc123"
+ "message": "xyz789"
}
@@ -80366,7 +80560,7 @@ pageSize
Example
{
- "id": 4,
+ "id": "4",
"items_count": 123,
"items_v2": WishlistItems,
"name": "abc123",
@@ -80432,7 +80626,7 @@ Example
"code": "PRODUCT_NOT_FOUND",
"message": "xyz789",
"wishlistId": "4",
- "wishlistItemId": 4
+ "wishlistItemId": "4"
}
{"quantity": 123.45, "wishlist_item_id": 4}
+ {
+ "quantity": 987.65,
+ "wishlist_item_id": "4"
+}
{
"entered_options": [EnteredOptionInput],
"parent_sku": "xyz789",
- "quantity": 123.45,
+ "quantity": 987.65,
"selected_options": [4],
- "sku": "xyz789"
+ "sku": "abc123"
}
{
- "added_at": "abc123",
+ "added_at": "xyz789",
"customizable_options": [SelectedCustomizableOption],
- "description": "xyz789",
+ "description": "abc123",
"id": "4",
"product": ProductInterface,
"quantity": 123.45
@@ -80788,7 +80985,10 @@ Fields
Example
- {"quantity": 123.45, "wishlist_item_id": 4}
+ {
+ "quantity": 123.45,
+ "wishlist_item_id": "4"
+}
@@ -80858,7 +81058,7 @@ Example
"entered_options": [EnteredOptionInput],
"quantity": 123.45,
"selected_options": [4],
- "wishlist_item_id": "4"
+ "wishlist_item_id": 4
}
{
- "key": "abc123",
+ "key": "xyz789",
"media_resource_type": "NEGOTIABLE_QUOTE_ATTACHMENT"
}
@@ -81049,9 +81249,9 @@ {
- "key": "abc123",
- "message": "abc123",
- "success": false
+ "key": "xyz789",
+ "message": "xyz789",
+ "success": true
}
{
- "expires_at": "abc123",
- "key": "xyz789",
- "upload_url": "xyz789"
+ "expires_at": "xyz789",
+ "key": "abc123",
+ "upload_url": "abc123"
}