How to connect to API which needs a PFX certificate?

I need to create a web flow one of its steps will connect to an API that needs a PFX certificate.
so how can I create this step?

@mohamedyasssin07 Thanks for reaching out. How specifically does the API expect the PFX certificate to be passed? Could you share the API docs so we can take a look?

As mentioned in the API documentation: they show it on Post Man like this

https://prnt.sc/1ygc0g1

in PHP I use curl => CURLOPT_SSLCERT

@dylburger do you have a link/advice to follow to achieve something like that?

@mohamedyasssin07 take a look at this code example from axios. You can attach your .pfx file to your workflow (see these docs) and reference its file path.

Let me know if that helps.