#parchi
1 messages · Page 1 of 1 (latest)
hi there, can you share the request id [0] where you're creating the account? it'd look like req_xxx
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Just as a reminder, you should never share your secret API keys over Discord which is a public channel (or any other insecure medium), regardless of whether it's a test or live mode key. I strongly suggest you roll your API key immediately as the one you sent is now considered compromised: https://stripe.com/docs/keys#rolling-keys
Ok will do so how do I fix it
can you share the request id where you're creating the account?
I am not using the api so there is no request id
There is only secret and public keys
i'm not sure what you mean, if you're using the secret and public keys, you should be using Stripe's APIs
are you using a third party plugin?
const account = await services.stripe.accounts.create({
type: "express",
country: "US",
email: trainerDoc.email,
capabilities: {
card_payments: {
requested: true,
},
transfers: {
requested: true,
},
},
business_type: "individual",
});
here is the request, there is no request ID
have you gone through this link on how to get the request id : https://stripe.com/docs/api/request_ids?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I did but that is the api. I am using the node SDK
There is no request ID mentioned here.