Hi Everyone,
I’m messing around with the API Connector & Stripe. I want to add/update Customer Capabilities using this API request: Create an account | Stripe API Reference
However, I can’t really figure out how I should enter the request parameters for the capabilities. I know it’s an array, but since Stripe won’t accept a JSON body and wants everything in one long string user parameters, i’m in the dark.
Can anyone help me out?
- How do I send an array in one parameter;
- How do I make the content dynamic, based on for example a customer input?
Here’s how its done in cURL:
-d “capabilities[card_payments][requested]”=true
-d “capabilities[transfers][requested]”=true
Here’s where I’m struggling:
Thanks!
