SnackGuy
Member
- Your Task History ID
- IjU3NjUwNTZlMDYzZTA0MzE1MjZlNTUzMDUxMzIi_pc
I am having issues getting parameters to pass thru from Pabbly to Stripe. When I attempt the query below locally in terminal, it runs just fine. However, when I try to translate it into pabbly it just gives me a "missing required parameter: query". I am sure I am missing something, but cant figure out how to get it to work as intended.
Here's the test cURL queries I am trying:
Query 1:
curl -G https://api.stripe.com/v1/customers/search \
-u "sk_test_1234_test_secret key":" \
--data-urlencode query="email:'[email protected]'"
Query 2:
curl https://api.stripe.com/v1/subscriptions \
-u "sk_test_1234_test_secret key:" \
-d customer=cus_1234 \
-d "items[0][price]"=price_5678 \
-d "items[0][quantity]"=5
I got the integration to work using the sk_test key as a bearer token. However, when I put the "--data-urlencode query..." portion into the header or parameters it still fails. No matter how I break it up, it wont come through
Here's the test cURL queries I am trying:
Query 1:
curl -G https://api.stripe.com/v1/customers/search \
-u "sk_test_1234_test_secret key":" \
--data-urlencode query="email:'[email protected]'"
Query 2:
curl https://api.stripe.com/v1/subscriptions \
-u "sk_test_1234_test_secret key:" \
-d customer=cus_1234 \
-d "items[0][price]"=price_5678 \
-d "items[0][quantity]"=5
I got the integration to work using the sk_test key as a bearer token. However, when I put the "--data-urlencode query..." portion into the header or parameters it still fails. No matter how I break it up, it wont come through