Skip to content

Latest commit

 

History

History
872 lines (701 loc) · 33.6 KB

catalog.md

File metadata and controls

872 lines (701 loc) · 33.6 KB

Catalog

CatalogApi catalogApi = client.getCatalogApi();

Class Name

CatalogApi

Methods

Batch Delete Catalog Objects

Deletes a set of CatalogItems based on the provided list of target IDs and returns a set of successfully deleted IDs in the response. Deletion is a cascading event such that all children of the targeted object are also deleted. For example, deleting a CatalogItem will also delete all of its CatalogItemVariation children.

BatchDeleteCatalogObjects succeeds even if only a portion of the targeted IDs can be deleted. The response will only include IDs that were actually deleted.

To ensure consistency, only one delete request is processed at a time per seller account. While one (batch or non-batch) delete request is being processed, other (batched and non-batched) delete requests are rejected with the 429 error code.

CompletableFuture<BatchDeleteCatalogObjectsResponse> batchDeleteCatalogObjectsAsync(
    final BatchDeleteCatalogObjectsRequest body)

Parameters

Parameter Type Tags Description
body BatchDeleteCatalogObjectsRequest Body, Required An object containing the fields to POST for the request.

See the corresponding object definition for field details.

Response Type

BatchDeleteCatalogObjectsResponse

Example Usage

BatchDeleteCatalogObjectsRequest body = new BatchDeleteCatalogObjectsRequest.Builder()
    .objectIds(Arrays.asList(
        "W62UWFY35CWMYGVWK6TWJDNI",
        "AA27W3M2GGTF3H6AVPNB77CK"
    ))
    .build();

catalogApi.batchDeleteCatalogObjectsAsync(body).thenAccept(result -> {
    // TODO success callback handler
    System.out.println(result);
}).exceptionally(exception -> {
    // TODO failure callback handler
    exception.printStackTrace();
    return null;
});

Batch Retrieve Catalog Objects

Returns a set of objects based on the provided ID. Each CatalogItem returned in the set includes all of its child information including: all of its CatalogItemVariation objects, references to its CatalogModifierList objects, and the ids of any CatalogTax objects that apply to it.

CompletableFuture<BatchRetrieveCatalogObjectsResponse> batchRetrieveCatalogObjectsAsync(
    final BatchRetrieveCatalogObjectsRequest body)

Parameters

Parameter Type Tags Description
body BatchRetrieveCatalogObjectsRequest Body, Required An object containing the fields to POST for the request.

See the corresponding object definition for field details.

Response Type

BatchRetrieveCatalogObjectsResponse

Example Usage

BatchRetrieveCatalogObjectsRequest body = new BatchRetrieveCatalogObjectsRequest.Builder(
    Arrays.asList(
        "W62UWFY35CWMYGVWK6TWJDNI",
        "AA27W3M2GGTF3H6AVPNB77CK"
    )
)
.includeRelatedObjects(true)
.build();

catalogApi.batchRetrieveCatalogObjectsAsync(body).thenAccept(result -> {
    // TODO success callback handler
    System.out.println(result);
}).exceptionally(exception -> {
    // TODO failure callback handler
    exception.printStackTrace();
    return null;
});

Batch Upsert Catalog Objects

Creates or updates up to 10,000 target objects based on the provided list of objects. The target objects are grouped into batches and each batch is inserted/updated in an all-or-nothing manner. If an object within a batch is malformed in some way, or violates a database constraint, the entire batch containing that item will be disregarded. However, other batches in the same request may still succeed. Each batch may contain up to 1,000 objects, and batches will be processed in order as long as the total object count for the request (items, variations, modifier lists, discounts, and taxes) is no more than 10,000.

To ensure consistency, only one update request is processed at a time per seller account. While one (batch or non-batch) update request is being processed, other (batched and non-batched) update requests are rejected with the 429 error code.

CompletableFuture<BatchUpsertCatalogObjectsResponse> batchUpsertCatalogObjectsAsync(
    final BatchUpsertCatalogObjectsRequest body)

Parameters

Parameter Type Tags Description
body BatchUpsertCatalogObjectsRequest Body, Required An object containing the fields to POST for the request.

See the corresponding object definition for field details.

Response Type

BatchUpsertCatalogObjectsResponse

Example Usage

BatchUpsertCatalogObjectsRequest body = new BatchUpsertCatalogObjectsRequest.Builder(
    "789ff020-f723-43a9-b4b5-43b5dc1fa3dc",
    Arrays.asList(
        new CatalogObjectBatch.Builder(
            Arrays.asList(
                new CatalogObject.Builder(
                    "ITEM",
                    "#Tea"
                )
                .presentAtAllLocations(true)
                .itemData(new CatalogItem.Builder()
                        .name("Tea")
                        .taxIds(Arrays.asList(
                            "#SalesTax"
                        ))
                        .variations(Arrays.asList(
                            new CatalogObject.Builder(
                                "ITEM_VARIATION",
                                "#Tea_Mug"
                            )
                            .presentAtAllLocations(true)
                            .itemVariationData(new CatalogItemVariation.Builder()
                                    .itemId("#Tea")
                                    .name("Mug")
                                    .pricingType("FIXED_PRICING")
                                    .priceMoney(new Money.Builder()
                                        .amount(150L)
                                        .currency("USD")
                                        .build())
                                    .build())
                            .build()
                        ))
                        .categories(Arrays.asList(
                            new CatalogObjectCategory.Builder()
                                .id("#Beverages")
                                .build()
                        ))
                        .descriptionHtml("<p><strong>Hot</strong> Leaf Juice</p>")
                        .build())
                .build(),
                new CatalogObject.Builder(
                    "ITEM",
                    "#Coffee"
                )
                .presentAtAllLocations(true)
                .itemData(new CatalogItem.Builder()
                        .name("Coffee")
                        .taxIds(Arrays.asList(
                            "#SalesTax"
                        ))
                        .variations(Arrays.asList(
                            new CatalogObject.Builder(
                                "ITEM_VARIATION",
                                "#Coffee_Regular"
                            )
                            .presentAtAllLocations(true)
                            .itemVariationData(new CatalogItemVariation.Builder()
                                    .itemId("#Coffee")
                                    .name("Regular")
                                    .pricingType("FIXED_PRICING")
                                    .priceMoney(new Money.Builder()
                                        .amount(250L)
                                        .currency("USD")
                                        .build())
                                    .build())
                            .build(),
                            new CatalogObject.Builder(
                                "ITEM_VARIATION",
                                "#Coffee_Large"
                            )
                            .presentAtAllLocations(true)
                            .itemVariationData(new CatalogItemVariation.Builder()
                                    .itemId("#Coffee")
                                    .name("Large")
                                    .pricingType("FIXED_PRICING")
                                    .priceMoney(new Money.Builder()
                                        .amount(350L)
                                        .currency("USD")
                                        .build())
                                    .build())
                            .build()
                        ))
                        .categories(Arrays.asList(
                            new CatalogObjectCategory.Builder()
                                .id("#Beverages")
                                .build()
                        ))
                        .descriptionHtml("<p>Hot <em>Bean Juice</em></p>")
                        .build())
                .build(),
                new CatalogObject.Builder(
                    "CATEGORY",
                    "#Beverages"
                )
                .presentAtAllLocations(true)
                .categoryData(new CatalogCategory.Builder()
                        .name("Beverages")
                        .build())
                .build(),
                new CatalogObject.Builder(
                    "TAX",
                    "#SalesTax"
                )
                .presentAtAllLocations(true)
                .taxData(new CatalogTax.Builder()
                        .name("Sales Tax")
                        .calculationPhase("TAX_SUBTOTAL_PHASE")
                        .inclusionType("ADDITIVE")
                        .percentage("5.0")
                        .appliesToCustomAmounts(true)
                        .enabled(true)
                        .build())
                .build()
            )
        )
        .build()
    )
)
.build();

catalogApi.batchUpsertCatalogObjectsAsync(body).thenAccept(result -> {
    // TODO success callback handler
    System.out.println(result);
}).exceptionally(exception -> {
    // TODO failure callback handler
    exception.printStackTrace();
    return null;
});

Create Catalog Image

Uploads an image file to be represented by a CatalogImage object that can be linked to an existing CatalogObject instance. The resulting CatalogImage is unattached to any CatalogObject if the object_id is not specified.

This CreateCatalogImage endpoint accepts HTTP multipart/form-data requests with a JSON part and an image file part in JPEG, PJPEG, PNG, or GIF format. The maximum file size is 15MB.

CompletableFuture<CreateCatalogImageResponse> createCatalogImageAsync(
    final CreateCatalogImageRequest request,
    final FileWrapper imageFile)

Parameters

Parameter Type Tags Description
request CreateCatalogImageRequest Form (JSON-Encoded), Optional -
imageFile FileWrapper Form, Optional -

Response Type

CreateCatalogImageResponse

Example Usage

CreateCatalogImageRequest request = new CreateCatalogImageRequest.Builder(
    "528dea59-7bfb-43c1-bd48-4a6bba7dd61f86",
    new CatalogObject.Builder(
        "IMAGE",
        "#TEMP_ID"
    )
    .imageData(new CatalogImage.Builder()
            .caption("A picture of a cup of coffee")
            .build())
    .build()
)
.objectId("ND6EA5AAJEO5WL3JNNIAQA32")
.build();


catalogApi.createCatalogImageAsync(request, null).thenAccept(result -> {
    // TODO success callback handler
    System.out.println(result);
}).exceptionally(exception -> {
    // TODO failure callback handler
    exception.printStackTrace();
    return null;
});

Update Catalog Image

Uploads a new image file to replace the existing one in the specified CatalogImage object.

This UpdateCatalogImage endpoint accepts HTTP multipart/form-data requests with a JSON part and an image file part in JPEG, PJPEG, PNG, or GIF format. The maximum file size is 15MB.

CompletableFuture<UpdateCatalogImageResponse> updateCatalogImageAsync(
    final String imageId,
    final UpdateCatalogImageRequest request,
    final FileWrapper imageFile)

Parameters

Parameter Type Tags Description
imageId String Template, Required The ID of the CatalogImage object to update the encapsulated image file.
request UpdateCatalogImageRequest Form (JSON-Encoded), Optional -
imageFile FileWrapper Form, Optional -

Response Type

UpdateCatalogImageResponse

Example Usage

String imageId = "image_id4";
UpdateCatalogImageRequest request = new UpdateCatalogImageRequest.Builder(
    "528dea59-7bfb-43c1-bd48-4a6bba7dd61f86"
)
.build();


catalogApi.updateCatalogImageAsync(imageId, request, null).thenAccept(result -> {
    // TODO success callback handler
    System.out.println(result);
}).exceptionally(exception -> {
    // TODO failure callback handler
    exception.printStackTrace();
    return null;
});

Catalog Info

Retrieves information about the Square Catalog API, such as batch size limits that can be used by the BatchUpsertCatalogObjects endpoint.

CompletableFuture<CatalogInfoResponse> catalogInfoAsync()

Response Type

CatalogInfoResponse

Example Usage

catalogApi.catalogInfoAsync().thenAccept(result -> {
    // TODO success callback handler
    System.out.println(result);
}).exceptionally(exception -> {
    // TODO failure callback handler
    exception.printStackTrace();
    return null;
});

List Catalog

Returns a list of all CatalogObjects of the specified types in the catalog.

The types parameter is specified as a comma-separated list of the CatalogObjectType values, for example, "ITEM, ITEM_VARIATION, MODIFIER, MODIFIER_LIST, CATEGORY, DISCOUNT, TAX, IMAGE".

Important: ListCatalog does not return deleted catalog items. To retrieve deleted catalog items, use SearchCatalogObjects and set the include_deleted_objects attribute value to true.

CompletableFuture<ListCatalogResponse> listCatalogAsync(
    final String cursor,
    final String types,
    final Long catalogVersion)

Parameters

Parameter Type Tags Description
cursor String Query, Optional The pagination cursor returned in the previous response. Leave unset for an initial request.
The page size is currently set to be 100.
See Pagination for more information.
types String Query, Optional An optional case-insensitive, comma-separated list of object types to retrieve.

The valid values are defined in the CatalogObjectType enum, for example,
ITEM, ITEM_VARIATION, CATEGORY, DISCOUNT, TAX,
MODIFIER, MODIFIER_LIST, IMAGE, etc.

If this is unspecified, the operation returns objects of all the top level types at the version
of the Square API used to make the request. Object types that are nested onto other object types
are not included in the defaults.

At the current API version the default object types are:
ITEM, CATEGORY, TAX, DISCOUNT, MODIFIER_LIST,
PRICING_RULE, PRODUCT_SET, TIME_PERIOD, MEASUREMENT_UNIT,
SUBSCRIPTION_PLAN, ITEM_OPTION, CUSTOM_ATTRIBUTE_DEFINITION, QUICK_AMOUNT_SETTINGS.
catalogVersion Long Query, Optional The specific version of the catalog objects to be included in the response.
This allows you to retrieve historical versions of objects. The specified version value is matched against
the CatalogObjects' version attribute. If not included, results will be from the
current version of the catalog.

Response Type

ListCatalogResponse

Example Usage

catalogApi.listCatalogAsync(null, null, null).thenAccept(result -> {
    // TODO success callback handler
    System.out.println(result);
}).exceptionally(exception -> {
    // TODO failure callback handler
    exception.printStackTrace();
    return null;
});

Upsert Catalog Object

Creates a new or updates the specified CatalogObject.

To ensure consistency, only one update request is processed at a time per seller account. While one (batch or non-batch) update request is being processed, other (batched and non-batched) update requests are rejected with the 429 error code.

CompletableFuture<UpsertCatalogObjectResponse> upsertCatalogObjectAsync(
    final UpsertCatalogObjectRequest body)

Parameters

Parameter Type Tags Description
body UpsertCatalogObjectRequest Body, Required An object containing the fields to POST for the request.

See the corresponding object definition for field details.

Response Type

UpsertCatalogObjectResponse

Example Usage

UpsertCatalogObjectRequest body = new UpsertCatalogObjectRequest.Builder(
    "af3d1afc-7212-4300-b463-0bfc5314a5ae",
    new CatalogObject.Builder(
        "ITEM",
        "#Cocoa"
    )
    .itemData(new CatalogItem.Builder()
            .name("Cocoa")
            .abbreviation("Ch")
            .variations(Arrays.asList(
                new CatalogObject.Builder(
                    "ITEM_VARIATION",
                    "#Small"
                )
                .itemVariationData(new CatalogItemVariation.Builder()
                        .itemId("#Cocoa")
                        .name("Small")
                        .pricingType("VARIABLE_PRICING")
                        .build())
                .build(),
                new CatalogObject.Builder(
                    "ITEM_VARIATION",
                    "#Large"
                )
                .itemVariationData(new CatalogItemVariation.Builder()
                        .itemId("#Cocoa")
                        .name("Large")
                        .pricingType("FIXED_PRICING")
                        .priceMoney(new Money.Builder()
                            .amount(400L)
                            .currency("USD")
                            .build())
                        .build())
                .build()
            ))
            .descriptionHtml("<p><strong>Hot</strong> Chocolate</p>")
            .build())
    .build()
)
.build();

catalogApi.upsertCatalogObjectAsync(body).thenAccept(result -> {
    // TODO success callback handler
    System.out.println(result);
}).exceptionally(exception -> {
    // TODO failure callback handler
    exception.printStackTrace();
    return null;
});

Delete Catalog Object

Deletes a single CatalogObject based on the provided ID and returns the set of successfully deleted IDs in the response. Deletion is a cascading event such that all children of the targeted object are also deleted. For example, deleting a CatalogItem will also delete all of its CatalogItemVariation children.

To ensure consistency, only one delete request is processed at a time per seller account. While one (batch or non-batch) delete request is being processed, other (batched and non-batched) delete requests are rejected with the 429 error code.

CompletableFuture<DeleteCatalogObjectResponse> deleteCatalogObjectAsync(
    final String objectId)

Parameters

Parameter Type Tags Description
objectId String Template, Required The ID of the catalog object to be deleted. When an object is deleted, other
objects in the graph that depend on that object will be deleted as well (for example, deleting a
catalog item will delete its catalog item variations).

Response Type

DeleteCatalogObjectResponse

Example Usage

String objectId = "object_id8";

catalogApi.deleteCatalogObjectAsync(objectId).thenAccept(result -> {
    // TODO success callback handler
    System.out.println(result);
}).exceptionally(exception -> {
    // TODO failure callback handler
    exception.printStackTrace();
    return null;
});

Retrieve Catalog Object

Returns a single CatalogItem as a CatalogObject based on the provided ID. The returned object includes all of the relevant CatalogItem information including: CatalogItemVariation children, references to its CatalogModifierList objects, and the ids of any CatalogTax objects that apply to it.

CompletableFuture<RetrieveCatalogObjectResponse> retrieveCatalogObjectAsync(
    final String objectId,
    final Boolean includeRelatedObjects,
    final Long catalogVersion,
    final Boolean includeCategoryPathToRoot)

Parameters

Parameter Type Tags Description
objectId String Template, Required The object ID of any type of catalog objects to be retrieved.
includeRelatedObjects Boolean Query, Optional If true, the response will include additional objects that are related to the
requested objects. Related objects are defined as any objects referenced by ID by the results in the objects field
of the response. These objects are put in the related_objects field. Setting this to true is
helpful when the objects are needed for immediate display to a user.
This process only goes one level deep. Objects referenced by the related objects will not be included. For example,

if the objects field of the response contains a CatalogItem, its associated
CatalogCategory objects, CatalogTax objects, CatalogImage objects and
CatalogModifierLists will be returned in the related_objects field of the
response. If the objects field of the response contains a CatalogItemVariation,
its parent CatalogItem will be returned in the related_objects field of
the response.

Default value: false
Default: false
catalogVersion Long Query, Optional Requests objects as of a specific version of the catalog. This allows you to retrieve historical
versions of objects. The value to retrieve a specific version of an object can be found
in the version field of CatalogObjects. If not included, results will
be from the current version of the catalog.
includeCategoryPathToRoot Boolean Query, Optional Specifies whether or not to include the path_to_root list for each returned category instance. The path_to_root list consists
of CategoryPathToRootNode objects and specifies the path that starts with the immediate parent category of the returned category
and ends with its root category. If the returned category is a top-level category, the path_to_root list is empty and is not returned
in the response payload.
Default: false

Response Type

RetrieveCatalogObjectResponse

Example Usage

String objectId = "object_id8";
Boolean includeRelatedObjects = false;
Boolean includeCategoryPathToRoot = false;

catalogApi.retrieveCatalogObjectAsync(objectId, includeRelatedObjects, null, includeCategoryPathToRoot).thenAccept(result -> {
    // TODO success callback handler
    System.out.println(result);
}).exceptionally(exception -> {
    // TODO failure callback handler
    exception.printStackTrace();
    return null;
});

Search Catalog Objects

Searches for CatalogObject of any type by matching supported search attribute values, excluding custom attribute values on items or item variations, against one or more of the specified query filters.

This (SearchCatalogObjects) endpoint differs from the SearchCatalogItems endpoint in the following aspects:

  • SearchCatalogItems can only search for items or item variations, whereas SearchCatalogObjects can search for any type of catalog objects.
  • SearchCatalogItems supports the custom attribute query filters to return items or item variations that contain custom attribute values, where SearchCatalogObjects does not.
  • SearchCatalogItems does not support the include_deleted_objects filter to search for deleted items or item variations, whereas SearchCatalogObjects does.
  • The both endpoints have different call conventions, including the query filter formats.
CompletableFuture<SearchCatalogObjectsResponse> searchCatalogObjectsAsync(
    final SearchCatalogObjectsRequest body)

Parameters

Parameter Type Tags Description
body SearchCatalogObjectsRequest Body, Required An object containing the fields to POST for the request.

See the corresponding object definition for field details.

Response Type

SearchCatalogObjectsResponse

Example Usage

SearchCatalogObjectsRequest body = new SearchCatalogObjectsRequest.Builder()
    .objectTypes(Arrays.asList(
        "ITEM"
    ))
    .query(new CatalogQuery.Builder()
        .prefixQuery(new CatalogQueryPrefix.Builder(
            "name",
            "tea"
        )
        .build())
        .build())
    .limit(100)
    .build();

catalogApi.searchCatalogObjectsAsync(body).thenAccept(result -> {
    // TODO success callback handler
    System.out.println(result);
}).exceptionally(exception -> {
    // TODO failure callback handler
    exception.printStackTrace();
    return null;
});

Search Catalog Items

Searches for catalog items or item variations by matching supported search attribute values, including custom attribute values, against one or more of the specified query filters.

This (SearchCatalogItems) endpoint differs from the SearchCatalogObjects endpoint in the following aspects:

  • SearchCatalogItems can only search for items or item variations, whereas SearchCatalogObjects can search for any type of catalog objects.
  • SearchCatalogItems supports the custom attribute query filters to return items or item variations that contain custom attribute values, where SearchCatalogObjects does not.
  • SearchCatalogItems does not support the include_deleted_objects filter to search for deleted items or item variations, whereas SearchCatalogObjects does.
  • The both endpoints use different call conventions, including the query filter formats.
CompletableFuture<SearchCatalogItemsResponse> searchCatalogItemsAsync(
    final SearchCatalogItemsRequest body)

Parameters

Parameter Type Tags Description
body SearchCatalogItemsRequest Body, Required An object containing the fields to POST for the request.

See the corresponding object definition for field details.

Response Type

SearchCatalogItemsResponse

Example Usage

SearchCatalogItemsRequest body = new SearchCatalogItemsRequest.Builder()
    .textFilter("red")
    .categoryIds(Arrays.asList(
        "WINE_CATEGORY_ID"
    ))
    .stockLevels(Arrays.asList(
        "OUT",
        "LOW"
    ))
    .enabledLocationIds(Arrays.asList(
        "ATL_LOCATION_ID"
    ))
    .limit(100)
    .sortOrder("ASC")
    .productTypes(Arrays.asList(
        "REGULAR"
    ))
    .customAttributeFilters(Arrays.asList(
        new CustomAttributeFilter.Builder()
            .customAttributeDefinitionId("VEGAN_DEFINITION_ID")
            .boolFilter(true)
            .build(),
        new CustomAttributeFilter.Builder()
            .customAttributeDefinitionId("BRAND_DEFINITION_ID")
            .stringFilter("Dark Horse")
            .build(),
        new CustomAttributeFilter.Builder()
            .key("VINTAGE")
            .numberFilter(new Range.Builder()
                .min("2017")
                .max("2018")
                .build())
            .build(),
        new CustomAttributeFilter.Builder()
            .customAttributeDefinitionId("VARIETAL_DEFINITION_ID")
            .build()
    ))
    .build();

catalogApi.searchCatalogItemsAsync(body).thenAccept(result -> {
    // TODO success callback handler
    System.out.println(result);
}).exceptionally(exception -> {
    // TODO failure callback handler
    exception.printStackTrace();
    return null;
});

Update Item Modifier Lists

Updates the CatalogModifierList objects that apply to the targeted CatalogItem without having to perform an upsert on the entire item.

CompletableFuture<UpdateItemModifierListsResponse> updateItemModifierListsAsync(
    final UpdateItemModifierListsRequest body)

Parameters

Parameter Type Tags Description
body UpdateItemModifierListsRequest Body, Required An object containing the fields to POST for the request.

See the corresponding object definition for field details.

Response Type

UpdateItemModifierListsResponse

Example Usage

UpdateItemModifierListsRequest body = new UpdateItemModifierListsRequest.Builder(
    Arrays.asList(
        "H42BRLUJ5KTZTTMPVSLFAACQ",
        "2JXOBJIHCWBQ4NZ3RIXQGJA6"
    )
)
.modifierListsToEnable(Arrays.asList(
        "H42BRLUJ5KTZTTMPVSLFAACQ",
        "2JXOBJIHCWBQ4NZ3RIXQGJA6"
    ))
.modifierListsToDisable(Arrays.asList(
        "7WRC16CJZDVLSNDQ35PP6YAD"
    ))
.build();

catalogApi.updateItemModifierListsAsync(body).thenAccept(result -> {
    // TODO success callback handler
    System.out.println(result);
}).exceptionally(exception -> {
    // TODO failure callback handler
    exception.printStackTrace();
    return null;
});

Update Item Taxes

Updates the CatalogTax objects that apply to the targeted CatalogItem without having to perform an upsert on the entire item.

CompletableFuture<UpdateItemTaxesResponse> updateItemTaxesAsync(
    final UpdateItemTaxesRequest body)

Parameters

Parameter Type Tags Description
body UpdateItemTaxesRequest Body, Required An object containing the fields to POST for the request.

See the corresponding object definition for field details.

Response Type

UpdateItemTaxesResponse

Example Usage

UpdateItemTaxesRequest body = new UpdateItemTaxesRequest.Builder(
    Arrays.asList(
        "H42BRLUJ5KTZTTMPVSLFAACQ",
        "2JXOBJIHCWBQ4NZ3RIXQGJA6"
    )
)
.taxesToEnable(Arrays.asList(
        "4WRCNHCJZDVLSNDQ35PP6YAD"
    ))
.taxesToDisable(Arrays.asList(
        "AQCEGCEBBQONINDOHRGZISEX"
    ))
.build();

catalogApi.updateItemTaxesAsync(body).thenAccept(result -> {
    // TODO success callback handler
    System.out.println(result);
}).exceptionally(exception -> {
    // TODO failure callback handler
    exception.printStackTrace();
    return null;
});