Wyre Documentation
  • 📡Wyre Documentation
  • Home
  • 👥Account Onboarding
    • Account Overview
    • Use Cases
    • Pricing
    • API Calls
      • Create Account
      • Get Account
      • Update Account
      • Upload Document
  • 🔗Wallets
    • Use Cases
    • Managing Wallets
      • Creating a Wallet
      • Create Mulitple Wallets
      • Lookup Wallet
      • Edit Wallet
      • List Wallets
      • Delete Wallet
    • Wallet Callbacks
  • 💳Payments
    • Limits + Coverage
    • Pricing
    • Chargeback + Risk
    • Accepted Payment Methods
    • Global Card Processing
      • Hosted Redirect Operation
      • Browser Dialog (Popup) Operation
      • Understanding Transaction Statuses
        • Wallet Order Errors and Exceptions (Failure Reasons)
      • Additional Widget Functionality and Features
        • Checking Limits
        • Tracking Orders
      • Widget FAQs
      • ⚠️ Wallet Order Reservations | Required! ⚠️
      • API Calls To Help Monitor Transactions
        • Track Widget Order
        • Check A User's Transaction Limits
        • Check Supported Countries
      • Client-Side Encryption 👻
  • 🌏Global Payouts
    • Use Cases
    • Limits + Coverage
    • Pricing
    • Supported Countries
    • Country Requirements
    • 🔥Blockchain + Banks
    • 🔥Instant Payouts to Debit Card
  • 💱Foreign Exchange
    • Exchange Rates
  • Methodologies
  • Payment Methods
    • API Calls
      • Creating a Payment Method- ACH
      • List Payment Methods
      • Create a Payment Method- Wire Transfer
      • Get Payment Method
      • Attach Blockchain to Payment Method
  • Transfers
    • API Calls
      • Creating a Transfer
      • Confirm a Transfer
      • Get Transfer
      • Transfer History
  • Data Subscriptions
    • Subscribe Webhook
    • Get Subscriptions
    • Delete Webhook
  • Resources
  • ✅Going Live
  • Testing Enviornment
  • Understanding API Errors
  • System Resource Name
  • Rate Limiting
  • Authentication & Key Management
    • Authorization Tokens
    • Create an API Key
    • Delete an API Key
    • Authentication Code Examples
  • Wyre Brand Assets
    • 🎨Color Palette And Wyre Logos
  • Links
    • 🧪Test Wyre Dashboard
    • 🗣️ Wyre's Discord
Powered by GitBook
On this page
  • API Definition
  • Parameters
  • Result Format

Was this helpful?

  1. Payments
  2. Global Card Processing
  3. Additional Widget Functionality and Features

Tracking Orders

In order to track orders you must get the transfer ID (TF_1234ABCD) which can be found through webhooks or the callback URL. You can retrieve the additional information for a new purchase, including the blockchain transaction hash, by submitting a GET request to the following URL: https://api.sendwyre.com/v2/transfer/[transferId]/track

API Definition

https://api.sendwyre.com/v2/transfer/:transferId/track

Parameters

Parameter

Class

Function

transferId

string

the transfer id

Result Format

{
    "transferId": "TF_MDA6MAY848D",
    "feeCurrency": "USD",
    "fee": 0.84,
    "fees": {
        "ETH": 0.001,
        "USD": 0.33
    },
    "sourceCurrency": "USD",
    "destCurrency": "ETH",
    "sourceAmount": 1.84,
    "destAmount": 0.001985533306564713,
    "destSrn": "ethereum:0x9E01E0E60dF079136a7a1d4ed97d709D5Fe3e341",
    "from": "Walletorderholding WO_ELTUVYCAFPG",
    "to": null,
    "rate": 0.0019760479041916164,
    "customId": null,
    "status": COMPLETED, 
    "blockchainNetworkTx": null,
    "message": null,
    "transferHistoryEntryType": "OUTGOING",
    "successTimeline": [
        {
            "statusDetails": "Initiating Transfer",
            "state": "INITIATED",
            "createdAt": 1576263690000
        },
        {
            "statusDetails": "Processing Exchange",
            "state": "PENDING",
            "createdAt": 1576263690000
        },
        {
            "statusDetails": "Processing Deposit",
            "state": "PENDING",
            "createdAt": 1576263690000
        }
    ],
    "failedTimeline": [],
    "failureReason": null,
    "reversalReason": null
}
PreviousChecking LimitsNextWidget FAQs

Last updated 5 years ago

Was this helpful?

💳