Thanks for the reply. We checked the data again but found the available_online may not be a good indicator, for example, the following item: Spring Special Lattes - Iced is shown on the Square online store: Jaho Coffee Online Order | Jaho Coffee Roaster
And we use the API to get the item details:
Item id: HTYV2ME2KOFCANVFVEJAPZTL
Request:
curl https://connect.squareup.com/v2/catalog/object/HTYV2ME2KOFCANVFVEJAPZTL?include_related_objects=false \
-H 'Square-Version: 2023-01-19' \
-H 'Authorization: Bearer xxxxxxxxxxx' \
-H 'Content-Type: application/json'
Response:
{
"object": {
"type": "ITEM",
"id": "HTYV2ME2KOFCANVFVEJAPZTL",
"updated_at": "2023-03-02T23:55:02.591Z",
"created_at": "2022-08-01T00:27:11.891Z",
"version": 1677801302591,
"is_deleted": false,
"present_at_all_locations": true,
"absent_at_location_ids": [
"9DXE3H5GP2BXG",
"Y42RB2MTVM2F8"
],
"item_data": {
"name": "Spring Special Lattes - Iced",
"description": "Our baristas' favorite creations for the spring. Bring one with you to the park and watch the world come alive.",
"is_taxable": true,
"visibility": "PUBLIC",
"available_online": false,
"available_for_pickup": true,
"available_electronically": false,
"category_id": "TKUP4LCSBOOJPVNDEQW7OQZB",
"ordinal": 0,
"tax_ids": [
"D5WEG72MUEZD6MMBPNS6FND6"
],
"modifier_list_info": [
{
"modifier_list_id": "AETZ2GICSPMYYZOOE234BHRK",
"min_selected_modifiers": -1,
"max_selected_modifiers": -1,
"enabled": true
},
{
"modifier_list_id": "2EIX4QNODTENOFZUQRYOCHPY",
"min_selected_modifiers": -1,
"max_selected_modifiers": -1,
"enabled": true
},
{
"modifier_list_id": "JBKAX2KF2GNM6RQZ35RJ6IUV",
"min_selected_modifiers": -1,
"max_selected_modifiers": -1,
"enabled": true
}
],
"variations": [
{
"type": "ITEM_VARIATION",
"id": "UXSLKRQICXCWOSS5LGR7EKXE",
"updated_at": "2022-12-12T21:30:04.673Z",
"created_at": "2022-08-01T00:27:11.891Z",
"version": 1670880604673,
"is_deleted": false,
"present_at_all_locations": true,
"absent_at_location_ids": [
"Y42RB2MTVM2F8",
"9DXE3H5GP2BXG"
],
"item_variation_data": {
"item_id": "HTYV2ME2KOFCANVFVEJAPZTL",
"name": "Iced",
"ordinal": 1,
"pricing_type": "FIXED_PRICING",
"price_money": {
"amount": 631,
"currency": "USD"
},
"location_overrides": [
{
"location_id": "396HQJE1K93PG",
"track_inventory": false
},
{
"location_id": "3WQT43K77CJF8",
"track_inventory": false
},
{
"location_id": "5BZMEPGNJ8FQC",
"track_inventory": false
},
{
"location_id": "7MCQH41Y5H312",
"track_inventory": false
},
{
"location_id": "88QR6KCSFZJWE",
"track_inventory": false
},
{
"location_id": "9DXE3H5GP2BXG",
"track_inventory": false
},
{
"location_id": "E32R67V069VFF",
"track_inventory": false
},
{
"location_id": "K3RATB32V17N1",
"track_inventory": false
},
{
"location_id": "KYG4ZQR38SSCN",
"track_inventory": false
},
{
"location_id": "L3WA2TYHSR32J",
"track_inventory": false
},
{
"location_id": "L59NJ1CZ367MR",
"track_inventory": false
},
{
"location_id": "SR331BT08F6BK",
"track_inventory": false
},
{
"location_id": "Y42RB2MTVM2F8",
"track_inventory": false
}
],
"sellable": true,
"stockable": true
}
}
],
"product_type": "REGULAR",
"skip_modifier_screen": false,
"ecom_uri": "https://jahocoffee.square.site/product/spring-special-lattes-iced/242",
"ecom_image_uris": [
"https://jahocoffee.square.site/uploads/1/3/1/5/131578632/s944915267996823260_p242_i1_w1700.png"
],
"ecom_available": true,
"ecom_visibility": "VISIBLE",
"image_ids": [
"3X6PMTDHQJ26YA4F3GMSRTO7"
],
"pickup_fulfillment_preferences_id": "fprefs_127edy7jnpi0t01iyrb84b3nt",
"delivery_fulfillment_preferences_id": "fprefs_127itf4a6ypg8gktnv8qxdkal",
"description_html": "<p>Our baristas' favorite creations for the spring. Bring one with you to the park and watch the world come alive.</p>",
"description_plaintext": "Our baristas' favorite creations for the spring. Bring one with you to the park and watch the world come alive."
}
}
}
As we can see from the response, the online item has the available_online equal to false.