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": ""
}
}
}
]
}
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": ""
}
}
}
]
}