#jakemarvin05_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/1275282123686678639
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
You'd need to request the necessary permissions from the stripe app users. Here's the guide on how to request the permission: https://docs.stripe.com/stripe-apps/reference/permissions
https://dashboard.stripe.com/test/logs/req_LkFBJUWFiShq7R is a Retrieval Payment Intent API, so payment_intent_read permission will be needed
Yes I already did,
here is my stripe-app.json
{
"id": "sg.jake.stripe.tracefund.io",
"version": "0.0.4",
"name": "Trace",
"icon": "",
"permissions": [
{
"permission": "payment_intent_read",
"purpose": "Read access to payments"
}
],
"ui_extension": {
"views": [
{
"viewport": "stripe.dashboard.customer.detail",
"component": "App"
}
],
"content_security_policy": {
"connect-src": null,
"image-src": null,
"purpose": ""
}
},
"allowed_redirect_uris": [
"https://api.nango.dev/oauth/callback"
],
"stripe_api_access_type": "oauth",
"distribution_type": "public"
}
Thanks for the response BTW
Did the connected account accept the new permissions after updating the permission in stripe-app.json?
From our side, we don't see payment_intent_read on this connected account