Skip to main content
Create a new bank account for an existing user/organization that has completed the application process

Arguments

input
required
mutation createBankAccount($input: CreateBankAccountInput!) {
  createBankAccount(input: $input) {
    bankAccount {
      id
      nickname
      accountNumber
      routingNumber
    }
    errors {
      message
    }
  }
}

Response

Returns a CreateBankAccountPayload
{
  "data": {
    "createBankAccount": {
      "bankAccount": EmbeddedBankAccount,
      "errors": [
        Error
      ]
    }
  }
}