#aamir_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/1324274072418254899
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
hello! unfortunately no, it's not possible to get the full account number from Stripe
I read somewhere that while creating session if I pass account_number in permissions
then while retreiving session I can get full account number, is that true?
curl https://api.stripe.com/v1/financial_connections/sessions
-u sk_test_your_secret_key:
-X POST
-d account_holder[type]=customer
-d account_holder[customer]=cus_xxxx
-d permissions[]=account_number
-d permissions[]=balances
like this
while retreiving this session I can get response like below:
{
"id": "fca_123456789",
"object": "financial_connections.account",
"account_holder": {
"name": "John Doe",
"type": "individual"
},
"institution_name": "Example Bank",
"last4": "6789",
"routing_number": "110000000",
"account_details": {
"account_number": "1234567890",
"routing_number": "110000000"
},
"status": "active"
}
where did you read / find that information from?
chatgpt