#tyson
1 messages ยท Page 1 of 1 (latest)
it's just stripe trigger invoice.updated ... not sure why you have the < >
updated, not update
oooo thanks
So its working but is not calling ot my endpoint
Its also not making a graph here!
@worldly helm
Hi there!
Do you see the events in your dashboard logs here: https://dashboard.stripe.com/test/events?
This event happened on your platform account, but it looks like you only have connect webhook endpoint. So it's expected you didn't recieve this event.
O ok so whats the solution?
I do want it to be for connect
i am trying to get the request data sent to my platfrom so i can itergrate it
I'm confused. The event you shared is not coming from a connected account. So you should create a webhook endpoint that is not connect.
But it is connect
There are two types of webhook endpoint:
- account webhook -> listening to events on your own account
- connect webhook -> listening to events on your connected account
You only have connect webhook endpoints, so you cannot listen to events happening on your own account
So you need to create a new account webhook endpoint (and to connect webhook endpoint)
The invoices i am listening to are on connect accounts, i am not getting the payload on my applicaiton as in its not coming through to https://instalclone.bubbleapps.io/version-test/api/1.1/wf/invoiceupdate/initialize
even though it says it is
The event evt_1MSJ9TGyTHRDmBrwxnmel8lR was triggered by this request https://dashboard.stripe.com/test/logs/req_kvzrsIrFTtQucv
And this requestwas made by account acct_1KYrCFGyTHRDmBrw. This is not a connect request.
What are you trying to do? Do you want to use the CLI to trigger an event on a connected account?
You need to pass this flag: https://stripe.com/docs/cli/trigger#trigger-stripe_account
Can you share the command you typed?
the trigger i used was
stripe trigger invoice.updated --stripe-account acct_1LsV3iEmAsCUvewd
Yes, this is creating the events on the connected account acct_1LsV3iEmAsCUvewd.
And I can see the events, for example evt_1MSJJvEmAsCUvewdJq9MV5ID on acct_1LsV3iEmAsCUvewd
Wht are they not being for the one i spesify
i said stripe trigger invoice.updated --stripe-account acct_1LsV3iEmAsCUvewd
it is this is weird
what possible explanations could explain why bubble.io is not reciveing the data?
I know nothing about bubble, sorry. But I confirm that event evt_1MSJJvEmAsCUvewdJq9MV5ID on account acct_1LsV3iEmAsCUvewd was sent to your connected webhook endpoint (zapier and bubble). And you should see them in your Stripe dashboard.
This is how you set up a webhook in bubble i knwo you dont kneo anything about it but could you see if i have done anyhting obisouly wrong?
๐ taking over for my colleague. Let me catch up.
ok so basically you're creating a new bubble endpoint invoicechanged
you should first call the https://instalclone.bubbleapps.io/version-test/api/1.1/wf/invoicechanged/initialize
to initialize the endpoint
and then go and change the url of your endpoint to https://instalclone.bubbleapps.io/version-test/api/1.1/wf/invoicechanged so you can normally receive the webhook events
Hi!
i got it too work
I want to test my logic how would i set a invoces that i spesificy to status = open?
Hello again @eternal wasp hows your day going
hey @radiant cargo sorry for keeping you waiting, it's been quite busy in discord today
are you creating one-off invoices?
or are these part of subscriptions?
No worries, i am on here all the time during this build its funny i just recognises beasically all your names ahah
subscription invoices
yes it's not the first time that we've interacted before
we're happy to be part of your journey to success @radiant cargo
keep it up
that's really sweet of you to say
But yeah i am using subcription invoices, how would i set a invoces that i spesificy to status = open?
Hi there ๐ I'm jumping in as my teammate needed to step away.
Once you finalize the Invoice, it will move to an open state.
Yes, example CLI commands for interacting with our API can be found in our API ref, here is the one for finalizing an Invoice:
https://stripe.com/docs/api/invoices/finalize?lang=cli
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.