#jakemarvin05_api

1 messages ¡ Page 1 of 1 (latest)

little widgetBOT
#

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

north summit
#

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

A list of available events and their required permissions.

turbid copper
#

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

north summit
#

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

little widgetBOT
turbid copper
#

hmmn, let me check

#

okay I figured it out, I was testing the wrong version, I did not know I need to manually select version for external testing

Thanks a lot for your help