Retrieve stock and price of an item

Hello,

I have a system where a user places an order for one item (e.g. coffee).
Once they place an order I want to show them some other things they can add to their order like pastries, sandwiches,…

What would be the process to retrieve the items available at the location where they placed their order?
Is the below correct or is there a better/more efficient way to do this?

Here’s what I understand, but I’d appreciate your feedback:

  1. I need to select which item IDs I want to retrieve: /v2/inventory/counts/batch-retrieve → this gives me the price of those items.

  2. Then I retrieve the inventory to see if these items are available at the specified location /v2/inventory/counts/batch-retrieve

  3. Once a user clicked on an item, I then update the order to add that item and increase the version of that order with +1 → This allows me to send the new item ordered quickly to the store and as the user selects more items, the order gets updated. Is this best practice or should I wait a few seconds, then send that order to the shop?

Thank you very much :slight_smile:

Yes, that’s the way to bring in items. Also you can call ListCatalog with the parameter set to ITEMS which will return the items from the seller. That way you won’t have to manage or store the catalog_object_ids. :slightly_smiling_face:

Hi @Bryan-Square :slight_smile:

I’m using the Batch retrieve catalog objects and get this flow for one item:

  1. I get this
{
      "type": "ITEM",
      "id": "LECXFQVZNYRDKHHVFJW6JM5Z",
      "updated_at": "2023-04-15T12:02:02.421Z",
      "created_at": "2020-12-08T00:10:07.813Z",
      "version": 1681560122421,
      "is_deleted": false,
      "present_at_all_locations": false,
      "present_at_location_ids": [
        "L39XB0RHPF2V2",
        "L6ZN306P4SCQN",
        "L9TJVT3GX4345",
        "LANJ0SS9RADJG",
        "LRG6B9M9H9B8T",
        "LX985242330VF"
      ],
      "item_data": {
        "name": "Chocolate Croissant",
        "description": "Croissant rolled around dark chocolate.\n**Contains: Wheat, milk, egg, soy.",
        "is_taxable": true,
        "visibility": "PRIVATE",
        "category_id": "TI7K5O5MTSKHTO57VMV5LTWK",
        "tax_ids": [
          "LLYAYTAKDTC4KOJLQB7UPLXK",
          "XK5BQPHV2VMCZZEXCXTN3YOD",
          "ABZRNMSICBEM3Y2KMRT6TPTH",
          "SZ44VR4TQW4W7KDO5EFQ3TE2",
          "2QGBXQ3E7MEDTM3EQGQN74ET"
        ],
        "variations": [
          {
            "type": "ITEM_VARIATION",
            "id": "HQBSTODZLSVRAWCJ7YOEFKA5",
            "updated_at": "2023-04-15T12:02:02.421Z",
            "created_at": "2020-12-08T00:10:07.813Z",
            "version": 1681560122421,
            "is_deleted": false,
            "present_at_all_locations": false,
            "present_at_location_ids": [
              "LANJ0SS9RADJG",
              "L9TJVT3GX4345",
              "LX985242330VF",
              "L6ZN306P4SCQN",
              "L39XB0RHPF2V2",
              "LRG6B9M9H9B8T"
            ],
            "item_variation_data": {
              "item_id": "LECXFQVZNYRDKHHVFJW6JM5Z",
              "name": "",
              "ordinal": 1,
              "pricing_type": "FIXED_PRICING",
              "price_money": {
                "amount": 410,
                "currency": "USD"
              },
              "sellable": true,
              "stockable": true
            }
          }
        ],
        "product_type": "REGULAR",
        "skip_modifier_screen": true,
        "ecom_available": false,
        "ecom_visibility": "UNINDEXED",
        "image_ids": [
          "5SDXF66VCH6OBRAVGQGAOMFD"
        ],
        "pickup_fulfillment_preferences_id": "fprefs_127dix14aj4vy7qqx5kp4oit1",
        "description_html": "<p>Croissant rolled around dark chocolate.</p><p>**Contains: Wheat, milk, egg, soy.</p>",
        "description_plaintext": "Croissant rolled around dark chocolate.\n**Contains: Wheat, milk, egg, soy."
      }
    },
  1. then I call Batch retrieve inventory counts
    and if I type the ITEM id i get this error:
{
  "errors": [
    {
      "category": "INVALID_REQUEST_ERROR",
      "code": "INVALID_VALUE",
      "detail": "Variation with ID=LECXFQVZNYRDKHHVFJW6JM5Z must have type ITEM_VARIATION, got ITEM.",
      "field": "type"
    }
  ]
}

  1. So I type the ITEM_VARIATION and get a 200, but it’s empty. How can I know how many units there are in stock if the result of the API call is empty?

thank you

You’ll need to use the item_variation_id when calling the Inventory API. If you use HQBSTODZLSVRAWCJ7YOEFKA5 it’ll work. :slightly_smiling_face:

I don’t find the variable item_variation_id when calling Batch retrieve catalog objects or when calling List Catalog.

And when I use HQBSTODZLSVRAWCJ7YOEFKA5 it also returns an empty result. Am I using the right API call?

Request

curl https://connect.squareup.com/v2/inventory/counts/batch-retrieve \
  -X POST \
  -H 'Square-Version: 2023-04-19' \
  -H 'Authorization: Bearer REMOVED' \
  -H 'Content-Type: application/json' \
  -d '{
    "catalog_object_ids": [
      "HQBSTODZLSVRAWCJ7YOEFKA5"
    ],
    "location_ids": [
      "LANJ0SS9RADJG"
    ],
    "states": [
      "IN_STOCK"
    ],
    "updated_after": "2023-05-11T01:14:36.022Z"
  }'

Looking at that item I’m not seeing any inventory which would explain why the results are empty. :slightly_smiling_face:

1 Like