Refer this sample cURL request
curl https://connect.squareup.com/v2/catalog/batch-upsert \
-X POST \
-H 'Square-Version: 2024-12-18' \
-H 'Authorization: Bearer ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"idempotency_key": "5c474ed9-881b-44fb-a66e-57dbdd91e456",
"batches": [
{
"objects": [
{
"id": "#SKU_001",
"type": "ITEM",
"present_at_all_locations": true,
"version": 2,
"is_deleted": false,
"item_data": {
"description_html": "RMS SKU Display Name",
"name": "RMS SKU Display Name",
"product_type": "REGULAR",
"variations": [
{
"id": "#SKU_001--Var01",
"type": "ITEM_VARIATION",
"is_deleted": false,
"present_at_all_locations": true,
"item_variation_data": {
"item_id": "#SKU_001",
"name": "Bin Store",
"stockable": true,
"track_inventory": true,
"price_money": {
"amount": 0,
"currency": "USD"
},
"pricing_type": "FIXED_PRICING",
"sellable": true
},
"version": 1
},
{
"id": "#SKU_001--Var02",
"type": "ITEM_VARIATION",
"is_deleted": false,
"item_variation_data": {
"item_id": "#SKU_001",
"name": "Discount STore",
"price_money": {
"amount": 10000,
"currency": "USD"
},
"pricing_type": "FIXED_PRICING",
"sellable": true,
"stockable": true,
"track_inventory": true
},
"present_at_all_locations": true,
"version": 1
},
{
"id": "#SKU_001--Var01_UPC",
"type": "ITEM_VARIATION",
"is_deleted": false,
"item_variation_data": {
"item_id": "#SKU_001",
"name": "UPC_SKU_001",
"sku": "UPC_SKU_001",
"sellable": false,
"track_inventory": false,
"upc": "UPC_SKU_001",
"price_money": {
"amount": 0,
"currency": "USD"
},
"inventory_alert_type": "NONE"
},
"present_at_all_locations": false,
"version": 1
},
{
"id": "#SKU_001--Var01_ASIN",
"type": "ITEM_VARIATION",
"is_deleted": false,
"present_at_all_locations": false,
"version": 1,
"item_variation_data": {
"item_id": "#SKU_001",
"name": "ASIN_SKU_001",
"sellable": false,
"sku": "ASIN_SKU_001",
"track_inventory": false,
"upc": "ASIN_SKU_001",
"price_money": {
"amount": 0,
"currency": "USD"
}
}
}
],
"skip_modifier_screen": false,
"modifier_list_info": [
{
"modifier_list_id": "J4FNWSDS6WAI5DLEVIO4NMJC",
"enabled": true,
"max_selected_modifiers": 1,
"min_selected_modifiers": 1
}
]
},
"custom_attribute_values": {
"4287e5a3-7bc7-49c0-85ba-07e8ca08cdc3": {
"name": "RMS--SKU_ID",
"number_value": "9999"
}
}
}
]
}
]
}'
You can hit this multiple times with different idempotency key and result in succeed