#scordone

1 messages · Page 1 of 1 (latest)

arctic sparrowBOT
runic chasm
#

Hello there

#

Can you tell me more about what you are trying to do here exactly?

#

You want this info to show up on the terminal reader? Or something else?

civic karma
#

Hi! yes, we are opening a clinic and using a custom CRM, the idea is to create the bill for in person payments within the CRM and send the payment intent to the stripe terminal to just ask the client to swipe the card there without having to manually set the payment request data into the terminal

#

we also use stripe checkout sessions for our ecommerce and would like to differentiate payments when using the webhooks to sync payments into the crm database 🙂

runic chasm
#

Gotcha. You don't have to set any specific data to show on the reader screen if you don't want to.

#

That would also depend a little bit on which reader you use -- some don't have screens altogether

#

In terms of differentiating, you want to set metadata for this

#

Then you can ingest that metadata via your Webhook to know which flow the payment came from

civic karma
#

ah ok so webhooks can show the metadata i added to the payment intent?

runic chasm
#

Yep

#

They will contain the full PaymentIntent object, which will include any metadata you set

civic karma
#

great!!! and regarding the first question about the terminal data, the question was if the payment request that the terminal will take when swiping the card can be send via an API to the terminal from an application without having to set it manually in the terminal screen

runic chasm
#

Ah yes that is exactly how it works.

#

You can't initiate these payment requests from the Reader itself. You have to use one of our Terminal SDKs (or our Server-driven integration) within your own app to trigger the payment method collection/processing

civic karma
#

great! thanks a lot!!