Skip to main content
POST
/
payments
/
usd
/
direct
USD Transfer
curl --request POST \
  --url https://sandbox.sturdytechnologies.com/v3/payments/usd/direct \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "account_id": "12345hgyd78yuyu9",
  "account_number": "<string>",
  "account_type": "CHECKING|SAVINGS|BUSINESS",
  "amount": 123,
  "description": "<string>",
  "recipient_email": "<string>",
  "recipient_name": "<string>",
  "routing_number": "<string>",
  "transfer_type": "ACH|WIRE"
}
'
{
  "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.

Body

application/json

USD Transfer payload

account_id
string
Example:

"12345hgyd78yuyu9"

account_number
string
account_type
string
Example:

"CHECKING|SAVINGS|BUSINESS"

amount
number
description
string
recipient_email
string
recipient_name
string
routing_number
string
transfer_type
string
Example:

"ACH|WIRE"

Response

Created

data
object
message
string
success
boolean