I need to connect a form to a Stripe account to make a subaccount via Stripe's Connect API.
I can easily add a Stripe account here, I just need to now interact with Stripe to make the Connect account.
I think I need a custom workflow, and I'm not sure where to look to find out how to manually integrate with an API.
Thoughts? Thanks!
Best answer by ikbelkirasanBest answer by ikbelkirasan
@MC-Presence You could use fetch in a JavaScript code step to call Stripe then depending on the response set the output value.
If you just want to decide if the zap should continue with the subsequent steps, you probably wouldn’t need to use paths. A simple filter step would do just fine. However, if anything more complex then paths will definitely help.
@ikbelkirasan I’ve already combed through the Strip docs and know what I need to pass.
I’ll read through Code by Zapier to see if that’ll do the trick. With multi-step zaps, I’m wondering if subsequent steps can be triggered via API responses, for instance, use Paths to do something like if API response is 200 and returns value, then pass that value to the next step. Maybe I don’t need Paths.
@MC-Presence You could use fetch in a JavaScript code step to call Stripe then depending on the response set the output value.
If you just want to decide if the zap should continue with the subsequent steps, you probably wouldn’t need to use paths. A simple filter step would do just fine. However, if anything more complex then paths will definitely help.