Hello,
I'm in need to store and populate the Stripe secret key from a dynamic source -this refers to:

I have checked this but it seems to apply to Node.js, and I'm working on a PHP model.
Would anyone know how to achieve this?
Many thanks.
Hello,
I'm in need to store and populate the Stripe secret key from a dynamic source -this refers to:

I have checked this but it seems to apply to Node.js, and I'm working on a PHP model.
Would anyone know how to achieve this?
Many thanks.
All of the Stripe actions have an optional parameter to provide the secret key. You can store the dynamic keys in your database, look them up, and provide on all the Stripe actions.

That's amazing, thanks Ken @mebeingken . I didn't realize that field was for the secret key.