Category square_online_id requirement

Estimated deploy date: 2/27/24

We are going to begin requiring the square_online_id: true filter whenever a category ID based filter is used on a resource. This is in preparation for a data migration on our platform.

If you use the following resource and filter combination, you will need to add the square_online_id: true filter as well.

Migration Path

Category

{
    "filters": {
        "id": "9",
+       "square_online_id": true
    }
}

CategoryList

{
    "filters": {
        "ids": ["7", "4", "12"],
+       "square_online_id": true
    }
}

CategoryHierarchy

{
    "filters": {
        "parent": "14",
+       "square_online_id": true
    }
}

CategoryOptions

{
    "filters": {
        "category_id": "8",
+       "square_online_id": true
    }
}

ItemList

{
    "filters": {
        "category_id": "1",
+       "square_online_id": true
    }
}