hi,

I am creating a stripe onboarding process for a platform, where merchants must fill in their data and upload their ID documents for verification by stripe. I collect user data such as name, phone number, email and ID documents using the API connector plugin. in order to collect the ID i am using the POST call request, that allows to get the document uploaded by the user on the interface through a file uploader, here is the way I have set up the API call:

This works well and i can initialize the call just fine.

The issue I face is in the following step where i need to update the stripe connected account with the ID document uploaded in the previous step/API. Here is how I have set up that call:

When I try to initialize the call using this setup, i am getting an error:

Could someone points me into the right direction ? i don’t see what’s missing. Thank you.

Add a header to your request that includes the header of:

Content-type application/x-www-form-urlencoded

Basically, do what Stripe is telling you to do.

Thank you ! I had not understood that this had to be put in the header section.