Skip to main content
POST
/
ramp
/
bank-account
Create bank account (presigned URL)
curl --request POST \
  --url https://api.etherfuse.com/ramp/bank-account \
  --header 'Content-Type: application/json' \
  --data '
{
  "presignedUrl": "<string>",
  "account": {
    "transactionId": "123e4567-e89b-12d3-a456-426614174000",
    "firstName": "Juan",
    "paternalLastName": "García",
    "maternalLastName": "López",
    "birthDate": "19900101",
    "birthCountryIsoCode": "MX",
    "curp": "GALJ900101HDFRRN09",
    "rfc": "GALJ9001016V3",
    "clabe": "012345678901234567"
  },
  "skipAutoApproval": false,
  "label": "<string>"
}
'
{
  "bankAccountId": "123e4567-e89b-12d3-a456-426614174000",
  "customerId": "123e4567-e89b-12d3-a456-426614174001",
  "createdAt": "2024-01-01T00:00:00Z",
  "updatedAt": "2024-01-01T00:00:00Z",
  "abbrClabe": "1234...5678",
  "compliant": true,
  "status": "active"
}

Body

application/json
presignedUrl
string
required

Presigned URL for verification

account
object
required

Bank account registration data. Accepts either Personal or Business format. The variant is auto-detected based on the fields present (untagged union).

Example:
{
"transactionId": "123e4567-e89b-12d3-a456-426614174000",
"firstName": "Juan",
"paternalLastName": "García",
"maternalLastName": "López",
"birthDate": "19900101",
"birthCountryIsoCode": "MX",
"curp": "GALJ900101HDFRRN09",
"rfc": "GALJ9001016V3",
"clabe": "012345678901234567"
}
skipAutoApproval
boolean
default:false

If true, skips automatic approval in sandbox environments

label
string

Optional display label for the account

Response

Bank account created successfully

bankAccountId
string<uuid>

Unique identifier for the bank account. Must be a valid UUID v4.

customerId
string<uuid>

ID of the customer who owns this bank account

createdAt
string<date-time>

Timestamp when the bank account was created

updatedAt
string<date-time>

Timestamp when the bank account was last updated

deletedAt
string<date-time> | null

Timestamp when the bank account was deleted (if applicable)

abbrClabe
string

Abbreviated CLABE number for the bank account

etherfuseDepositClabe
string | null

Etherfuse deposit CLABE number

label
string | null

Custom label for the bank account

compliant
boolean

Whether the bank account is compliant. This is a derived value — true if the account has been explicitly marked compliant OR if the owning organization is approved (KYB'd).

status
enum<string>

Current status of the bank account

Available options:
pending,
awaitingDepositVerification,
active,
inactive