#elad_api
1 messages · Page 1 of 1 (latest)
👋 Welcome to your new thread!
⏲️ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1220285275880689714
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Can you share the request ID (req_xxx) of the error? Here’s how you can find it: https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
I dont have it in the logs
Can you share your account ID, so that I can take a look if I can find anything? You can find your account ID by logging in to https://dashboard.stripe.com/settings/account. It'll be in the upper right hand corner and looks like acct_123
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
acct_1FjWhHGqNWMqyqjj
I can't find anything either. Can you share the code on how you create funding instructions? Please remove secret key (sk_xxx) when sharing it
I am trying to retrieve the list of the funding instructions
try {
const url = https://api.stripe.com/v1/issuing/funding_instructions;
const axiosConfig = {
headers: {
Authorization: Bearer ${this.stripeApiKey},
},
};
const res = await this.httpService.axiosRef.get<any>(url, axiosConfig);
return res;
} catch (error) {
console.error('Error fetching funding instructions:', error.response.data);
throw new InternalServerErrorException('Error fetching funding instructions');
}
the goal is to get the information i have here
https://dashboard.stripe.com/customers/xxxxx/cash_balance_transactions/usd
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Can you share an example customer ID?
/v1/issuing/funding_instructions is for card issuing, but not for cash_balance_transactions
so what can I do to get the data?
Can you share the example customer ID, so that I can check what's the information out there in that Dashboard page?
cus_PDX7au9St1rhv6
Thanks for sharing! Here's the guide on how to retrieve Customer Balance Funding Instructions: https://docs.stripe.com/payments/customer-balance/funding-instructions#create-funding-instructions
thanks i;ll try that
No problem! Happy to help 😄