Skip to main content
POST
/
accounts
Create US Account
curl --request POST \
  --url https://sandbox.sturdytechnologies.com/v3/accounts \
  --header 'Content-Type: application/json' \
  --data '
{
  "hold_balance": false,
  "user_id": "12345"
}
'
{
  "data": {
    "account_id": "12345hgyd78yuyu9",
    "account_status": "ACTIVE",
    "balance": 0,
    "numbers": {
      "ACH": {
        "account_number": "0000",
        "routing_number": "021000021"
      },
      "RTP": {
        "account_number": "0000",
        "routing_number": "021000021"
      },
      "WIRE": {
        "account_number": "0000",
        "routing_number": "021000021"
      }
    }
  },
  "message": "<string>",
  "success": true
}

Body

application/json

Create US account payload

hold_balance
boolean
required

Indicates if the account should hold balance or balance be swept to merchant account

Example:

false

user_id
string
required
Example:

"12345"

Response

Created

data
object
message
string
success
boolean