Development discussions around Shopify APIs
New to Shopify apps. Wondering how to collect the exported orders IDs from a bulk action link that is sent to my embedded app (created following Shopify's Node, React and GraphQL tutorial). Thanks
Solved! Go to the solution
This is an accepted solution.
They're appended as URL parameters, for example:
https://some-app.com?shop=...&ids[]=1234&ids[]=1235
To read these in your Koa app, look inside ctx.query:
router.post('/example', (ctx) => { console.log(ctx.query) })
Scott | Developer Support @ Shopify
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
- To learn more visit Shopify.dev or the Shopify Web Design and Development Blog
This is an accepted solution.
They're appended as URL parameters, for example:
https://some-app.com?shop=...&ids[]=1234&ids[]=1235
To read these in your Koa app, look inside ctx.query:
router.post('/example', (ctx) => { console.log(ctx.query) })
Scott | Developer Support @ Shopify
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
- To learn more visit Shopify.dev or the Shopify Web Design and Development Blog
Iam new here
where should we use this script (inside which file ), is there more detailed examples ?
Thanks to all Community members that participated in our inaugural 2 week AMA on the new E...
By Jacqui Mar 10, 2023Upskill and stand out with the new Shopify Foundations Certification program
By SarahF_Shopify Mar 6, 2023One of the key components to running a successful online business is having clear and co...
By Ollie Mar 6, 2023