#elad_api

1 messages · Page 1 of 1 (latest)

rough riverBOT
#

👋 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.

warped quartzBOT
devout wing
ripe mango
#

I dont have it in the logs

devout wing
ripe mango
#

acct_1FjWhHGqNWMqyqjj

devout wing
#

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

ripe mango
#

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');
}

devout wing
#

Can you share an example customer ID?

#

/v1/issuing/funding_instructions is for card issuing, but not for cash_balance_transactions

ripe mango
#

so what can I do to get the data?

devout wing
#

Can you share the example customer ID, so that I can check what's the information out there in that Dashboard page?

ripe mango
#

cus_PDX7au9St1rhv6

devout wing
ripe mango
#

thanks i;ll try that

devout wing
#

No problem! Happy to help 😄