#tyson
1 messages ยท Page 1 of 1 (latest)
Hi, For my connect accounts is there a service like a customer portal that they can have asses to, or actually, how would i get the data to use in the application itself.
๐ happy to help
I'm not really sure I understand the Q would you mind elaborating?
@nimble rock please use this thread for any subsequent message or question
So my application is a marketplace so i use stripe connect, is the a portal for connect accounts to manage there customners?
what is the Connect Account type you're using? Standard or Express?
standard
they can login to their Stripe dashboard
is there a way to have the dashboard funtonality in application
no you'd have to build it yourself
ok
Stripe reporting
I want to display the graph of revenue, what call would i have to make for this to get the data?
Hey! Taking over for my colleague. Let me catch up.
Hi, i want the data for revanue to show my users who are connect account holders on my platform
You can run the Balance or the Payout Reconciliation APIs:
https://stripe.com/docs/reports/balance
https://stripe.com/docs/reports/payout-reconciliation
How would this be done?
You can follow this guide to:
https://stripe.com/docs/reports/api
using the stripe API and stripe-accout header?
Just Stripe API as a platform Account without StripeAccount header...
The report will includes also your Connected Accounts:
https://stripe.com/docs/reports/balance#:~:text=connected_account_id
No the API don't support that attribut. the link I shared is an attribut in the response
My account name and password does not work for this login for the file
is this for post or get as well
You are getting this error, in what step in the guide I shared with you ?
You need to follow this guide:
https://stripe.com/docs/reports/api#report-runs
Which call am i using i am having trouble working it out
What issue are you having and with which call ?
1- i don't know what call to use
2- I don't know what para to use
3- I am trying on postman and not getting anywhere
am i using a get report type
or a get retrieve reports run
or a post create report run?
@clever quarry
@marble narwhal
First you start by creating the report via this API v1/reporting/report_runs
Then you fetch the file report using this API: /v1/files/file_xs8vrJzC/contents
which is documented here step by step
https://stripe.com/docs/reports/api#report-runs
sweet!
I have a webhook set-up but i am not detecting the payload however it did have a 200ok can you have a look?
POST /v1/webhook_endpoints/we_1MP4zVGyTHRDmBrwBspFaf7G
Status
200 OK
ID
req_3ru4ivPjgMDoNp
Time
12/01/2023, 14:54:08
IP address
82.8.21.2 (from server at 82.8.21.2)
API Version
2022-08-01
Latest
Source
Dashboard โ lucalemorg@gmail.com
Idempotency
Key โ b349cdff-5175-46a8-9bb6-e2aa2b5b6476
Origin
https://dashboard.stripe.com/
Response body
{
"id": "we_1MP4zVGyTHRDmBrwBspFaf7G",
"object": "webhook_endpoint",
"api_version": null,
"application": "ca_LFLzaenvLwPhTA1rf6i1KHJWCvgMIfD0",
"created": 1673446161,
"description": "Cancellation of memberships.",
"enabled_events": [
"customer.subscription.deleted"
],
"livemode": false,
"metadata": {
},
"status": "enabled",
"url": "https://instalclone.bubbleapps.io/version-test/api/1.1/wf/finofmemberships/initialize"
}
Request POST body
{
"enabled_events": [
"customer.subscription.deleted"
],
"description": "Cancellation of memberships.",
"url": "https://instalclone.bubbleapps.io/version-test/api/1.1/wf/finofmemberships/initialize"
}
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Hi there ๐
Hi!
I'm not sure I'm understanding the question, could you try rephrasing what you're asking?
Sure, basically the webhook URL in not detecting any data, but it says the data is being sent on stripe
Can you try and identify why the URL is not detecting any data
Looks like you set up the webhook endpoint to only listen for customer.subscription.deleted events, but none of those have been triggered so nothing was sent to your endpoint.