admin管理员组

文章数量:1122846

I am trying to access the Stripe API account but was not able to retrieve the Balance data, I need the endpoint to get it

I am using the endpoint but the Balance and other fields are not fetched.

API Endpoint and the parameters needed enter image description here

I am trying to access the Stripe API account but was not able to retrieve the Balance data, I need the endpoint to get it

I am using the https://api.stripe.com/v1/accounts/acct_1NfnzBHIBayKCYf4 endpoint but the Balance and other fields are not fetched.

API Endpoint and the parameters needed enter image description here

Share Improve this question edited Nov 22, 2024 at 9:24 VLAZ 28.8k9 gold badges62 silver badges82 bronze badges asked Nov 22, 2024 at 1:55 kristel abankristel aban 212 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

Here's the guide on how you retrieve the balance on the connected account: https://docs.stripe.com/connect/account-balances#check-connected-account-balance

For example using Balance Retrieval API,

curl https://api.stripe.com/v1/balance \
  -u "sk_123:" \
  -H "Stripe-Account: {{CONNECTED_ACCOUNT_ID}}"

本文标签: postmanHow do I get the Balance Data from StripeConnected AccountsStack Overflow