Skip to main content
GET
/
payments
/
usd
/
direct
/
{transaction_id}
GET USD Transfer Status
curl --request GET \
  --url https://sandbox.sturdytechnologies.com/v3/payments/usd/direct/{transaction_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "account_number": "<string>",
    "account_type": "CHECKING|SAVINGS|BUSINESS",
    "amount": 123,
    "description": "<string>",
    "recipient_email": "<string>",
    "recipient_name": "<string>",
    "routing_number": "<string>",
    "transaction_date": "2023-10-01T12:34:56Z",
    "transaction_id": "txn_12345",
    "transaction_status": "processing|successful|failed",
    "transfer_type": "ACH|WIRE"
  },
  "message": "<string>",
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

transaction_id
string
required

Transaction Identifier

Response

OK

data
object
message
string
success
boolean