CatalogApi catalogApi = client.getCatalogApi();
CatalogApi
- Batch Delete Catalog Objects
- Batch Retrieve Catalog Objects
- Batch Upsert Catalog Objects
- Create Catalog Image
- Update Catalog Image
- Catalog Info
- List Catalog
- Upsert Catalog Object
- Delete Catalog Object
- Retrieve Catalog Object
- Search Catalog Objects
- Search Catalog Items
- Update Item Modifier Lists
- Update Item Taxes
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)
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. |
BatchDeleteCatalogObjectsResponse
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;
});
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)
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. |
BatchRetrieveCatalogObjectsResponse
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;
});
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)
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. |
BatchUpsertCatalogObjectsResponse
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;
});
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)
Parameter | Type | Tags | Description |
---|---|---|---|
request |
CreateCatalogImageRequest |
Form (JSON-Encoded), Optional | - |
imageFile |
FileWrapper |
Form, Optional | - |
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;
});
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)
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 | - |
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;
});
Retrieves information about the Square Catalog API, such as batch size
limits that can be used by the BatchUpsertCatalogObjects
endpoint.
CompletableFuture<CatalogInfoResponse> catalogInfoAsync()
catalogApi.catalogInfoAsync().thenAccept(result -> {
// TODO success callback handler
System.out.println(result);
}).exceptionally(exception -> {
// TODO failure callback handler
exception.printStackTrace();
return null;
});
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)
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 thecurrent version of the catalog. |
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;
});
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)
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. |
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;
});
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)
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). |
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;
});
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)
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 therequested objects. Related objects are defined as any objects referenced by ID by the results in the objects fieldof the response. These objects are put in the related_objects field. Setting this to true ishelpful 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 associatedCatalogCategory objects, CatalogTax objects, CatalogImage objects and CatalogModifierLists will be returned in the related_objects field of theresponse. If the objects field of the response contains a CatalogItemVariation,its parent CatalogItem will be returned in the related_objects field ofthe 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 consistsof CategoryPathToRootNode objects and specifies the path that starts with the immediate parent category of the returned categoryand ends with its root category. If the returned category is a top-level category, the path_to_root list is empty and is not returnedin the response payload. Default: false |
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;
});
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, whereasSearchCatalogObjects
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, whereSearchCatalogObjects
does not.SearchCatalogItems
does not support theinclude_deleted_objects
filter to search for deleted items or item variations, whereasSearchCatalogObjects
does.- The both endpoints have different call conventions, including the query filter formats.
CompletableFuture<SearchCatalogObjectsResponse> searchCatalogObjectsAsync(
final SearchCatalogObjectsRequest body)
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. |
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;
});
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, whereasSearchCatalogObjects
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, whereSearchCatalogObjects
does not.SearchCatalogItems
does not support theinclude_deleted_objects
filter to search for deleted items or item variations, whereasSearchCatalogObjects
does.- The both endpoints use different call conventions, including the query filter formats.
CompletableFuture<SearchCatalogItemsResponse> searchCatalogItemsAsync(
final SearchCatalogItemsRequest body)
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. |
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;
});
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)
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. |
UpdateItemModifierListsResponse
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;
});
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)
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. |
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;
});