#jackson_api

1 messages ¡ Page 1 of 1 (latest)

green gobletBOT
#

👋 Welcome to your new thread!

⏲️ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.

⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.

🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1331307280741695599

📝 Have more to share? Add more details, code, screenshots, videos, etc. below.

Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

minor frigate
#

How do I create a Card / PaymentMethod object from an Apple Pay cryptogram + DPAN? Which fields specially are you supposed to send those two values to

teal python
#

Hello! We recommend you upload a certificate in the Dashboard and send us the encrypted pk_token. Is there a specific reason you want to send us the raw DPAN and cryptogram?

minor frigate
#

We are using a token orchestration platform which requires it to be used.

Our Stripe account has been approved for sending RAW DPAN and cryptograms.

teal python
#

Note that this isn't a recommended approach, and we have limited support for it, but here's what it would look like to send that information to our API:

curl -u sk_test_123: https://api.stripe.com/v1/tokens \
  -d card[number]=4242424242424242 \
  -d card[exp_year]=2021 \
  -d card[exp_month]=12 \
  -d card[cryptogram]=base64cryptogram \
  -d card[eci]=05 \
  -d card[tokenization_method]=apple_pay \
  -d card[last4]=1234
minor frigate
#

Gotcha.

So you have to make a token first and then exchange the token for a PaymentMethod?

#

Or can you send the same params into the Card or PaymentMethod create endpoints?

teal python
#

You have to make the Token first, then create a Payment Method from the Token.