catalog_api = client.catalog
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.
def batch_delete_catalog_objects(self,
body)
Parameter | Type | Tags | Description |
---|---|---|---|
body |
Batch Delete Catalog Objects Request |
Body, Required | An object containing the fields to POST for the request. See the corresponding object definition for field details. |
This method returns a ApiResponse
instance. The body
property of this instance returns the response data which is of type Batch Delete Catalog Objects Response
.
body = {
'object_ids': [
'W62UWFY35CWMYGVWK6TWJDNI',
'AA27W3M2GGTF3H6AVPNB77CK'
]
}
result = catalog_api.batch_delete_catalog_objects(body)
if result.is_success():
print(result.body)
elif result.is_error():
print(result.errors)
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.
def batch_retrieve_catalog_objects(self,
body)
Parameter | Type | Tags | Description |
---|---|---|---|
body |
Batch Retrieve Catalog Objects Request |
Body, Required | An object containing the fields to POST for the request. See the corresponding object definition for field details. |
This method returns a ApiResponse
instance. The body
property of this instance returns the response data which is of type Batch Retrieve Catalog Objects Response
.
body = {
'object_ids': [
'W62UWFY35CWMYGVWK6TWJDNI',
'AA27W3M2GGTF3H6AVPNB77CK'
],
'include_related_objects': True
}
result = catalog_api.batch_retrieve_catalog_objects(body)
if result.is_success():
print(result.body)
elif result.is_error():
print(result.errors)
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.
def batch_upsert_catalog_objects(self,
body)
Parameter | Type | Tags | Description |
---|---|---|---|
body |
Batch Upsert Catalog Objects Request |
Body, Required | An object containing the fields to POST for the request. See the corresponding object definition for field details. |
This method returns a ApiResponse
instance. The body
property of this instance returns the response data which is of type Batch Upsert Catalog Objects Response
.
body = {
'idempotency_key': '789ff020-f723-43a9-b4b5-43b5dc1fa3dc',
'batches': [
{
'objects': [
{
'type': 'ITEM',
'id': '#Tea',
'present_at_all_locations': True,
'item_data': {
'name': 'Tea',
'tax_ids': [
'#SalesTax'
],
'variations': [
{
'type': 'ITEM_VARIATION',
'id': '#Tea_Mug',
'present_at_all_locations': True,
'item_variation_data': {
'item_id': '#Tea',
'name': 'Mug',
'pricing_type': 'FIXED_PRICING',
'price_money': {
'amount': 150,
'currency': 'USD'
}
}
}
],
'categories': [
{
'id': '#Beverages'
}
],
'description_html': '<p><strong>Hot</strong> Leaf Juice</p>'
}
},
{
'type': 'ITEM',
'id': '#Coffee',
'present_at_all_locations': True,
'item_data': {
'name': 'Coffee',
'tax_ids': [
'#SalesTax'
],
'variations': [
{
'type': 'ITEM_VARIATION',
'id': '#Coffee_Regular',
'present_at_all_locations': True,
'item_variation_data': {
'item_id': '#Coffee',
'name': 'Regular',
'pricing_type': 'FIXED_PRICING',
'price_money': {
'amount': 250,
'currency': 'USD'
}
}
},
{
'type': 'ITEM_VARIATION',
'id': '#Coffee_Large',
'present_at_all_locations': True,
'item_variation_data': {
'item_id': '#Coffee',
'name': 'Large',
'pricing_type': 'FIXED_PRICING',
'price_money': {
'amount': 350,
'currency': 'USD'
}
}
}
],
'categories': [
{
'id': '#Beverages'
}
],
'description_html': '<p>Hot <em>Bean Juice</em></p>'
}
},
{
'type': 'CATEGORY',
'id': '#Beverages',
'present_at_all_locations': True,
'category_data': {
'name': 'Beverages'
}
},
{
'type': 'TAX',
'id': '#SalesTax',
'present_at_all_locations': True,
'tax_data': {
'name': 'Sales Tax',
'calculation_phase': 'TAX_SUBTOTAL_PHASE',
'inclusion_type': 'ADDITIVE',
'percentage': '5.0',
'applies_to_custom_amounts': True,
'enabled': True
}
}
]
}
]
}
result = catalog_api.batch_upsert_catalog_objects(body)
if result.is_success():
print(result.body)
elif result.is_error():
print(result.errors)
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.
def create_catalog_image(self,
request=None,
image_file=None)
Parameter | Type | Tags | Description |
---|---|---|---|
request |
Create Catalog Image Request |
Form (JSON-Encoded), Optional | - |
image_file |
typing.BinaryIO |
Form, Optional | - |
This method returns a ApiResponse
instance. The body
property of this instance returns the response data which is of type Create Catalog Image Response
.
request = {
'idempotency_key': '528dea59-7bfb-43c1-bd48-4a6bba7dd61f86',
'image': {
'type': 'IMAGE',
'id': '#TEMP_ID',
'image_data': {
'caption': 'A picture of a cup of coffee'
}
},
'object_id': 'ND6EA5AAJEO5WL3JNNIAQA32'
}
result = catalog_api.create_catalog_image(
request=request
)
if result.is_success():
print(result.body)
elif result.is_error():
print(result.errors)
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.
def update_catalog_image(self,
image_id,
request=None,
image_file=None)
Parameter | Type | Tags | Description |
---|---|---|---|
image_id |
str |
Template, Required | The ID of the CatalogImage object to update the encapsulated image file. |
request |
Update Catalog Image Request |
Form (JSON-Encoded), Optional | - |
image_file |
typing.BinaryIO |
Form, Optional | - |
This method returns a ApiResponse
instance. The body
property of this instance returns the response data which is of type Update Catalog Image Response
.
image_id = 'image_id4'
request = {
'idempotency_key': '528dea59-7bfb-43c1-bd48-4a6bba7dd61f86'
}
result = catalog_api.update_catalog_image(
image_id,
request=request
)
if result.is_success():
print(result.body)
elif result.is_error():
print(result.errors)
Retrieves information about the Square Catalog API, such as batch size
limits that can be used by the BatchUpsertCatalogObjects
endpoint.
def catalog_info(self)
This method returns a ApiResponse
instance. The body
property of this instance returns the response data which is of type Catalog Info Response
.
result = catalog_api.catalog_info()
if result.is_success():
print(result.body)
elif result.is_error():
print(result.errors)
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
.
def list_catalog(self,
cursor=None,
types=None,
catalog_version=None)
Parameter | Type | Tags | Description |
---|---|---|---|
cursor |
str |
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 |
str |
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. |
catalog_version |
long|int |
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. |
This method returns a ApiResponse
instance. The body
property of this instance returns the response data which is of type List Catalog Response
.
result = catalog_api.list_catalog()
if result.is_success():
print(result.body)
elif result.is_error():
print(result.errors)
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.
def upsert_catalog_object(self,
body)
Parameter | Type | Tags | Description |
---|---|---|---|
body |
Upsert Catalog Object Request |
Body, Required | An object containing the fields to POST for the request. See the corresponding object definition for field details. |
This method returns a ApiResponse
instance. The body
property of this instance returns the response data which is of type Upsert Catalog Object Response
.
body = {
'idempotency_key': 'af3d1afc-7212-4300-b463-0bfc5314a5ae',
'object': {
'type': 'ITEM',
'id': '#Cocoa',
'item_data': {
'name': 'Cocoa',
'abbreviation': 'Ch',
'variations': [
{
'type': 'ITEM_VARIATION',
'id': '#Small',
'item_variation_data': {
'item_id': '#Cocoa',
'name': 'Small',
'pricing_type': 'VARIABLE_PRICING'
}
},
{
'type': 'ITEM_VARIATION',
'id': '#Large',
'item_variation_data': {
'item_id': '#Cocoa',
'name': 'Large',
'pricing_type': 'FIXED_PRICING',
'price_money': {
'amount': 400,
'currency': 'USD'
}
}
}
],
'description_html': '<p><strong>Hot</strong> Chocolate</p>'
}
}
}
result = catalog_api.upsert_catalog_object(body)
if result.is_success():
print(result.body)
elif result.is_error():
print(result.errors)
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.
def delete_catalog_object(self,
object_id)
Parameter | Type | Tags | Description |
---|---|---|---|
object_id |
str |
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). |
This method returns a ApiResponse
instance. The body
property of this instance returns the response data which is of type Delete Catalog Object Response
.
object_id = 'object_id8'
result = catalog_api.delete_catalog_object(object_id)
if result.is_success():
print(result.body)
elif result.is_error():
print(result.errors)
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.
def retrieve_catalog_object(self,
object_id,
include_related_objects=False,
catalog_version=None,
include_category_path_to_root=False)
Parameter | Type | Tags | Description |
---|---|---|---|
object_id |
str |
Template, Required | The object ID of any type of catalog objects to be retrieved. |
include_related_objects |
bool |
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 |
catalog_version |
long|int |
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. |
include_category_path_to_root |
bool |
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 |
This method returns a ApiResponse
instance. The body
property of this instance returns the response data which is of type Retrieve Catalog Object Response
.
object_id = 'object_id8'
include_related_objects = False
include_category_path_to_root = False
result = catalog_api.retrieve_catalog_object(
object_id,
include_related_objects=include_related_objects,
include_category_path_to_root=include_category_path_to_root
)
if result.is_success():
print(result.body)
elif result.is_error():
print(result.errors)
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.
def search_catalog_objects(self,
body)
Parameter | Type | Tags | Description |
---|---|---|---|
body |
Search Catalog Objects Request |
Body, Required | An object containing the fields to POST for the request. See the corresponding object definition for field details. |
This method returns a ApiResponse
instance. The body
property of this instance returns the response data which is of type Search Catalog Objects Response
.
body = {
'object_types': [
'ITEM'
],
'query': {
'prefix_query': {
'attribute_name': 'name',
'attribute_prefix': 'tea'
}
},
'limit': 100
}
result = catalog_api.search_catalog_objects(body)
if result.is_success():
print(result.body)
elif result.is_error():
print(result.errors)
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.
def search_catalog_items(self,
body)
Parameter | Type | Tags | Description |
---|---|---|---|
body |
Search Catalog Items Request |
Body, Required | An object containing the fields to POST for the request. See the corresponding object definition for field details. |
This method returns a ApiResponse
instance. The body
property of this instance returns the response data which is of type Search Catalog Items Response
.
body = {
'text_filter': 'red',
'category_ids': [
'WINE_CATEGORY_ID'
],
'stock_levels': [
'OUT',
'LOW'
],
'enabled_location_ids': [
'ATL_LOCATION_ID'
],
'limit': 100,
'sort_order': 'ASC',
'product_types': [
'REGULAR'
],
'custom_attribute_filters': [
{
'custom_attribute_definition_id': 'VEGAN_DEFINITION_ID',
'bool_filter': True
},
{
'custom_attribute_definition_id': 'BRAND_DEFINITION_ID',
'string_filter': 'Dark Horse'
},
{
'key': 'VINTAGE',
'number_filter': {
'min': '2017',
'max': '2018'
}
},
{
'custom_attribute_definition_id': 'VARIETAL_DEFINITION_ID'
}
]
}
result = catalog_api.search_catalog_items(body)
if result.is_success():
print(result.body)
elif result.is_error():
print(result.errors)
Updates the CatalogModifierList objects that apply to the targeted CatalogItem without having to perform an upsert on the entire item.
def update_item_modifier_lists(self,
body)
Parameter | Type | Tags | Description |
---|---|---|---|
body |
Update Item Modifier Lists Request |
Body, Required | An object containing the fields to POST for the request. See the corresponding object definition for field details. |
This method returns a ApiResponse
instance. The body
property of this instance returns the response data which is of type Update Item Modifier Lists Response
.
body = {
'item_ids': [
'H42BRLUJ5KTZTTMPVSLFAACQ',
'2JXOBJIHCWBQ4NZ3RIXQGJA6'
],
'modifier_lists_to_enable': [
'H42BRLUJ5KTZTTMPVSLFAACQ',
'2JXOBJIHCWBQ4NZ3RIXQGJA6'
],
'modifier_lists_to_disable': [
'7WRC16CJZDVLSNDQ35PP6YAD'
]
}
result = catalog_api.update_item_modifier_lists(body)
if result.is_success():
print(result.body)
elif result.is_error():
print(result.errors)
Updates the CatalogTax objects that apply to the targeted CatalogItem without having to perform an upsert on the entire item.
def update_item_taxes(self,
body)
Parameter | Type | Tags | Description |
---|---|---|---|
body |
Update Item Taxes Request |
Body, Required | An object containing the fields to POST for the request. See the corresponding object definition for field details. |
This method returns a ApiResponse
instance. The body
property of this instance returns the response data which is of type Update Item Taxes Response
.
body = {
'item_ids': [
'H42BRLUJ5KTZTTMPVSLFAACQ',
'2JXOBJIHCWBQ4NZ3RIXQGJA6'
],
'taxes_to_enable': [
'4WRCNHCJZDVLSNDQ35PP6YAD'
],
'taxes_to_disable': [
'AQCEGCEBBQONINDOHRGZISEX'
]
}
result = catalog_api.update_item_taxes(body)
if result.is_success():
print(result.body)
elif result.is_error():
print(result.errors)