A user is attempting to automatically assign taxonomy categories to new products created via API in Shopify, specifically wanting to use the T-shirt category (gid://shopify/TaxonomyCategory/aa-1-13-8).
Current situation:
Shopify Flow works with old taxonomy values (ProductTaxonomyNode) but not new ones (TaxonomyCategory)
Products are synced from Printify and need automatic taxonomy assignment upon creation
Key technical issue:
The taxonomy category structure changed in Shopify API version 2024-07, but Flow currently uses 2024-04. This version mismatch prevents the new taxonomy format from working.
Proposed solutions:
Wait for Flow to adopt API version 2024-07 (coming soon)
Use “Send HTTP request” action in Flow to manually specify API version 2024-07
Implement via GraphQL API programmatically outside of Flow
Another user is experiencing the same issue and attempting a REST API solution using the 2024-07 endpoint with productTaxonomyNode structure. The discussion remains open as users await either Flow’s API update or seek workarounds using direct API calls.
Summarized with AI on October 31.
AI used: claude-sonnet-4-5-20250929.
It sounds like you’re on the right track with using Shopify Flow to automate taxonomy assignments! Since the old values work but the new ones don’t, it might be an issue with how the new values are being referenced or formatted.
Here’s a suggestion: Ensure that the new taxonomy category IDs (gid://shopify/TaxonomyCategory/aa-1-13-8) are correctly referenced in your Flow. You might need to verify that these IDs are valid and exist in your Shopify store.
If the issue persists, you could try using the Shopify GraphQL API to set the product category programmatically. This approach might give you more control and flexibility over the assignment process.
I’m pretty new to this and don’t exactly know what you mean with the last part.
I have 108 Products which are using this new Taxonomy Category already.
I use Printify to create new Products which will automatically be synced into Shopify. I want to directly update the Taxonomy Category every time a new products gets added.
What would be the steps to use Shopify GraphQL API to set the product category programmatically?
Assuming “yes”, the category structure changes in the 2024-07 API version and Flow currently uses 2024-04. We are close to adopting 2024-07, which will enable this. If you can’t wait, you could try Send HTTP request instead and use whatever API version you want.