#bernard.eugine
1 messages · Page 1 of 1 (latest)
before I get too deep into this, do you have a sales contact or something with Stripe?
but yes you can do this, it's just undocumented.
if you have a PKPayment you can submit it to /v1/tokens like this using undocumented pk_token_* parameters :
curl -u sk_test_123: https://api.stripe.com/v1/tokens \
-d pk_token=<PKPaymentToken.paymentData decoded as JSON> \
-d pk_token_instrument_name=<PKPaymentToken.paymentInstrumentName> \
-d pk_token_payment_network=<PKPaymentToken.paymentNetwork> \
-d pk_token_transaction_id=<PKPaymentToken.transactionIdentifier>
Also you need to have uploaded your Apple merchant processing certificate to Stripe : https://stripe.com/docs/apple-pay?platform=ios#csr
when you have a token you can submit to a PaymentIntent using payment_method_data[card][token]=token_xxx (https://stripe.com/docs/api/payment_intents/confirm but it's not documented under payment_method_data. But there's information on it at https://stripe.com/docs/api/payment_methods/create#create_payment_method-card
@tall arrow
Got it thanks @vernal depot !
We currently don't have a sales contact. We are still in the development phase and will reach out to Sales when we are ready
cool. Just saying because most of the stuff you'd want as a multiprocessor merchant with PCI certification is undocumented or requires your account to have special access to things(we have lots of features we don't have in the docs unless you're logged into an account with access) so it would make more sense to have a solutions architect or something work with you(it's hard for you to know what you don't know), it doesn't scale for my team to answer anonymous one-off questions over time unfortunately, but we can definitely help as much as we can.
👋 taking over for my colleague. Let me know if there's any follow-up Qs I can answer!
Got it. Will check with my team about this and reach out to Sales team if we have many more complex use cases.
Thanks for the support so far though @vernal depot . Appreciate it:)