#talelmishali
1 messages · Page 1 of 1 (latest)
Yes, the docs for that are what's shown here:
https://stripe.com/docs/stripe-js/elements/payment-request-button?client=react#verifying-your-domain-with-apple-pay
It's not in the API reference
What are you trying to do?
Working on a wrapper for the Stripe PHP API library to manage Connect accounts. Need to be able and register my connect account clients subdomain to use Apple Pay. Just want to know what are other param other than domain_name
AFAIK that's the only parameter
Note that you'll need to use the Stripe-Account header for connected accounts:
https://stripe.com/docs/stripe-js/elements/payment-request-button?client=react#react-using-with-connect
curl https://api.stripe.com/v1/apple_pay/domains \
-u {PLATFORM_SECRET_KEY}: \
-H "Stripe-Account: {{CONNECTED_ACCOUNT_ID}}" \
-d domain_name="example.com"