Apple Pay Order Integration

Wallet order creation with Apple Pay Payment Token

Apple Pay Token Details

There are two types of Apple Pay integration on the client-side. Apple Pay in the Web and on Mobile. You'll need to request all the information and build this payload manually. Check requiredBillingContactFields and
requiredShippingContactFields for details (for mobile integration these names might change).

Order Tracking

Call the endpoint GET v3/orders/:orderId

{ 
   "id":"WO_J8WWHBRR8BG",
   "createdAt":1577108104000,
   "owner":"account:AC_LJPB929NXFE",
   "status":"PROCESSING",
   "sourceAmount":1.84,
   "sourceCurrency":"USD",
   "destCurrency":"ETH",
   "dest":"ethereum:0x9E01E0E60dF079136a7a1d4ed97d709D5Fe3e341",
   "walletType":"APPLE_PAY",
   "transferId":"TF_6RJPDREQ4W9",
   "email":"[email protected]",
   "smsSentAt":null,
   "smsDeliveredAt":null,
   "smsRepliedAt":null,
   "smsReplyBody":null,
   "smsTriggerAt":null,
   "paymentMethodName":"Visa 9990",
   "errorMessage":null,
   "accountId":"AC_LJPB929NXFE"
}

📘

Quote Order - Amount with fees

We cannot add the fees on top of the amount authorized by the user. You need to quote the order first Wallet Order Quotation and charge the amount returned in the sourceAmount (which is the amount including fees).
As an example, quote an order with 10 USD will return $ 10.55 USD in the sourceAmount, 10.55 is the amount you need to charge users so they will receive $ 10 converted in crypto in their wallets.

📘

Breaking changes - End-user IP Address

Starting on March 30th, Wyre started requesting the end user's IP address. You have up to May 30th to adjust your Card Processing integration and start sending the new property **ipAddress** with the normal Wallet Order Request.
This is a mandatory field and it must be the real IP address from the end-user. Do not send your server's IP address or all your traffic will be blocked.

Noth IPv4 and IPv6 are accepted.

We only support Debit cards from brands MasterCard and Visa at the moment. No credit card supported.
Please make sure you restrict to the card type and brands above.

Wallet order reservations are mandatory and the reservation id must be passed in the parameter reservationId. Check reservations are good for one time and expire in a certain time window. Check the docs for more details.

Once the transferId is returned it means order was accepted and the transfer (blockchain transaction) is in progress. To track its progress please check the transfer tracking documentation here https://docs.sendwyre.com/v3/docs/track-wallet-order

API Base URL's:
Test -> https://api.testwyre.com/
Production -> https://api.sendwyre.com/

Language
Authorization
Header
Click Try It! to start a request and see the response here!