#soma-retrieve-account
1 messages · Page 1 of 1 (latest)
can you send a screenshot of the command (minus any API keys) and the specific response error?
hey two-shoes thanks for responding. I'm using nodejs:
const retrieveAccount = async (account_id) => {
try {
const account = await stripe.accounts.retrieve(account_id);
return account;
} catch (e) {
return { error: true, message: e.message };
}
};.
And what is the specific error you're getting back?
So it's saying there's a 500 internal server error, but it's giving you back a success response in the request body?
right