Creates a new Account for an Entity, either ach
or liability
, based on
the parameters provided. An account is a unique
representation of an ACH
or Liability account.
Creating Liability Accounts directly is only supported on a case-by-case basis.
If you need to create a Liability Account, contact your Method CSM.
Body
ID of the Entity who is the legal holder of the Account.
ACH account information. The type of ACH Account. One of checking
or savings
ABA routing number of the ACH account. (maximum of 9 characters)
Account number of the ACH account. (maximum of 17 characters).
Returns
Returns an Account object.
curl https://production.methodfi.com/accounts \
-X POST \
-H "Method-Version: 2025-07-04" \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc" \
-H "Content-Type: application/json" \
-d '{
"holder_id": "ent_y1a9e1fbnJ1f3",
"ach": {
"routing": "367537407",
"number": "57838927",
"type": "checking"
}
}'
{
"id" : "acc_BcRdHNjb9TYKV" ,
"holder_id" : "ent_wUzi83DJdx99e" ,
"status" : "active" ,
"type" : "ach" ,
"ach" : {
"routing" : "367537407" ,
"number" : "57838927" ,
"type" : "checking"
},
"latest_verification_session" : "avf_7WGUjnFLcipRm" ,
"products" : [
"payment"
],
"restricted_products" : [],
"error" : null ,
"metadata" : null ,
"created_at" : "2023-10-23T06:25:56.500Z" ,
"updated_at" : "2023-10-23T06:25:56.500Z"
}