#Yannik-funding-instructions

1 messages ยท Page 1 of 1 (latest)

hasty badge
#

Hi there ๐Ÿ‘‹ could you elaborate a bit on the part of this flow that is giving you troubles?

astral adder
#

Hi thanks ๐Ÿ™‚

#

My client indicates a reference when making a bank transfer to his stripe iban.

For example : Id of his invoice

During the event in the webhook, I would like to be able to get this reference in order to match the invoice in my program

hasty badge
#

And do you know what object that reference is being put on, and where?

#

If it's in the metadata field, then it is worth noting that the information provided there is not transferred from one object to another automatically.

astral adder
#

My client indicates the reference when creating the transfer in his banking application.

#

Stripe receives the payment but I don't know where to get the reference indicated above.

#

Example :

When i test with test_helper in stripe Dashboard with test_helpers/customers/cus_*******/fund_cash_balance

In the response i get "deposit" with this reference "Ma facture 10"

#

but in the webhook, I can't find this information

#

even if I make a customers/retrieveBalanceTransaction

#

With reference i mean "banking communication"

hasty badge
#

Sorry, I'm struggling to follow the flow that you're describing. Can you provide the ID of a request where the reference value you're referring to is being provided to Stripe?

astral adder
#

Here it is : req_oyKApIRwDaq9KT

hasty badge
#

Thank you, pulling that up.

hasty badge
#

So that is putting the reference information on the Customer Balance Transaction object, so you will need to map back from the events you're receiving, to that object.

Based on the type of events that you mentioned, I believe they're providing you with a Customer and a Cash Balance object respectively, can you confirm?

astral adder
#

In the webhook i receive the id of customer_cash_balance_transaction but no information about the banking communication

#

When i try to retrieve the customer_cash_balance_transaction directly i got the same information that into the webhook

hasty badge
#

Can you share the ID of events that you received (should start with evt_) so I can review what you're seeing from that perspective?

astral adder
#

Yes I receive this one :

customer.balance_funded [evt_1LKLriF2bc1MQHV9vCB59XbG]

cash_balance.funds_available [evt_1LKLriF2bc1MQHV938KZIjGE]

hasty badge
#

Thank you for your patience while I dug into this. It looks like the deposit information, including the funding.bank_transfer.reference value that you're looking for, is not currently supported by our API and is why you're not seeing that information in the responses that you're receiving.

astral adder
#

ok thanks ๐Ÿ˜…

hasty badge
#

Happy to help!