• Instructions to Ask a Question

    For any assistance, please click the "Ask a Question" button and select the Pabbly product for which you require support.

    We offer seven comprehensive applications designed to help you efficiently manage and grow your business:

    Our support team endeavors to respond within 24 business hours (Monday to Friday, 10:00 AM to 6:00 PM IST). We appreciate your understanding and patience.

    🚀 Exclusive Lifetime Offers 🚀

    We invite you to take advantage of our special one-time payment plans, providing lifetime access to select applications:

    • 🔥 Pabbly Connect — Lifetime Access for $249View Offer
    • 🔥 Pabbly Subscription Billing — Lifetime Access for $249View Offer
    • 🔥 Pabbly Chatflow — Lifetime Access for $249View Offer

    Make a one-time investment and enjoy the advantages of robust business management tools for years to come.

How to run the same workflow with 50 variations from Google Sheets

fisto

Member
I have the following POST request I want to send, but I need to change 2 variables for each request inside the text snippet. I need to send the text snippet 50 times, with 50 sets of variables.

I assume I would put the 50 sets of variables into Google Sheets, but I don't know how to execute this with Pabbly.

Here is the text snippet:

POST '/settings/taxes/rules',
{
"id": "bc",
"name": "BC",
"priority": null,
"origin": null,
"categories": [],
"shipping": false,
"product_classes": [
"standard"
],
"account_classes": [],
"rates": [
{
"name": "GST & PST",
"country": "CA",
"rate": XXXXXX VARIABLE 1 XXXXXXXX,
"state": "XXXXXX VARIABLE 2 XXXXXXXX",
"zip": null,
"$locale": {
"en-US": {
"name": "GST & PST"
},
"fr": {
"name": ""
}
}
}
]
}
 

ArshilAhmad

Moderator
Staff member
Hi @fisto,

You can have the 50 set of variables in your Google Sheets spreadsheet.
1720040781572.png


You can then set up a Google Sheets trigger step and use the API by Pabbly module as your action step to execute the endpoint. Then, use the 'Send All Data' feature to send all 50 sets of variables to Pabbly Connect.
1720040954807.png




 

fisto

Member
Can you help me with where I would put the code snippet? I assume I have to create a POST API in pabbly, but beyond that I don't know what else.

Thank you
 
Top