#Ksun - paper check invoices
1 messages · Page 1 of 1 (latest)
Good question. Looking in to it. Do you have a link to the non-API beta doc you are working through as well?
but it's pretty straight forward - you just go to create an invoice in the create an invoice flow and its included as an option and you can see it in the preview
Have you tried using it in a call even if it isn't in the doc?
yeah, it didn't work
Do you have the request ID req_123 from when you tried?
(lemme make another request real quick - how do I get the request Id)
And thanks for trying, I am not immediately familiar with this beta so I just wanted to check.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Or you can check your API logs: https://dashboard.stripe.com/test/logs
okay perfect give a like 1 minute, making the request
oh huh wait I guess maybe it worked
(the request didn't fail - lemme see if I got an address)
okay so we got a paper check but no source -- but the address we'd use is on the source right?
request-id: req_WdSpmAaEQCe53c
we finalized the invoice just now but I don't think a source showed up
From what I understand from the docs, yes, though I need to read a bit more to see how you are supposed to get that.
okay I'm going to try listing out all events to see if I got something with a source
I was going to ask if you got the source.transaction.created event. I have not gotten to check yet
hrm so I think source.transaction.created is only created on paid right? at least that's how it works for the ACH lifecycle which I'm assuming this follows
but we grabbed all the events and don't see anything related to the source.
we have the invoice url
which does have the address. I guess one option is to use the invoice like a checkout session? (since the issue is we still need to render alternative invoices for the customer)
alternatively is there some way to just see all my sources: https://stripe.com/docs/api/sources
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
also is the issue that I'm test mode
I am still looking in to this at the moment. I thought you should get that event but am having trouble finding anything about that in the docs or your account.
I will still look in to this for a bit. If I can't find it soon, it will probably be best to write in to our support so that the engineers that are working on this beta can answer it more directly
got it! appreciate the help so far!
Alright thank you for your patience on this. So for this source, you can find it by retrieving the customer on the invoice, the source will be the default_source on the Customer object.
These Sources are created when the Invoice is created and the recommended way to get them should be through the webhook events that the doc mentions.