I came here from a Google search with a similar problem. Itโs actually easy to get from the OAUTH stream, the documentation just doesnโt make it clear in which field. In short, the missing link is that CONNECTED_STRIPE_ACCOUNT_ID is the stripe_user_id that you get at the end of the OAUTH stream when you connect your account according to https://stripe.com/docs/connect/standalone-accounts
In response to the example at the end of the stream
{ "token_type": "bearer", "stripe_publishable_key": PUBLISHABLE_KEY, "scope": "read_write", "livemode": false, "stripe_user_id": USER_ID, //this is it "refresh_token": REFRESH_TOKEN, "access_token": ACCESS_TOKEN }
source share