Is it possible to map Data to "connections" tab on Shopify API

Hello!

I have a service that creates custom shopify themes. We want to create a scenario that installs the custom theme we create to our client’s shopify store without them having to do anything.

In order to do this, the customer submits their shopify url & developer app api key to our google sheet.

We want to use this data to map to the “connection” tab on the Shopify themes api workflow.

I am just unsure how I can map this data to create a new connection every time we receive a new request.

Would this be at all possible with make? Would we need to use custom api calls to make this happen instead of the pre made actions in make?

@Jacck, While automation tools and workflows can handle many aspects of the process, the initial setup and configuration require human intervention, creating a new connection for new users is mandatory to be done manually
This is something you have to do manually

2 Likes

So there is no way to acheive this even through custom api calls?

I think first of all to map the data from sheet to flow you have to get a sheets watch rows module
now that it has been taken care of
you can use HTTP’s Basic authentication module, try to create a connection for every new row
After that you can install themes using HTTP’s make a request module
It should be apost request and for more about this you can look here - Theme

2 Likes

Amazing thank you so much!

In what step do we map the client’s api developer key and shopify url?

After you get the data from sheet
Use next module as basic auth from HTTP
And their you will have to do the json structure authentication for shopify
You will have to read the auth doc of shopify

2 Likes