Skip to main content
POST
/
payments
/
usd
/
direct
USD Transfer
curl --request POST \
  --url https://sandbox.sturdytechnologies.com/v3/payments/usd/direct \
  --header 'Content-Type: application/json' \
  --data '
{
  "account_id": "<string>",
  "account_number": "<string>",
  "account_type": "CHECKING",
  "amount": 123,
  "reference": "<string>",
  "recipient_email": "<string>",
  "routing_number": "<string>",
  "transfer_type": "ACH",
  "description": "<string>",
  "recipient_name": "<string>"
}
'
{
  "data": {
    "account_number": "<string>",
    "account_type": "CHECKING",
    "amount": 123,
    "description": "<string>",
    "reference": "<string>",
    "recipient_email": "<string>",
    "recipient_name": "<string>",
    "routing_number": "<string>",
    "transaction_date": "2023-10-01T12:34:56Z",
    "transaction_id": "txn_12345",
    "transaction_status": "processing",
    "transfer_type": "ACH"
  },
  "message": "<string>",
  "success": true
}

Body

application/json

USD Transfer payload

account_id
string
required

Unique Identifier of the US account from which funds will be transferred from (Pass merchant's US account ID if hold_balance is false for Create US Bank Account).

account_number
string
required

Bank account number of the recipient.

account_type
enum<string>
required

Type of the bank account.

Available options:
CHECKING,
SAVINGS,
BUSINESS
amount
number
required
reference
string
required

Unique reference provided by the merchant for idempotency and tracking.

recipient_email
string
required
routing_number
string
required

Routing number of the recipient's bank.

transfer_type
enum<string>
required

Type of transfer to be made.

Available options:
ACH,
WIRE
description
string
recipient_name
string

Response

Created

data
object
message
string
success
boolean