---
title: "Add a Payment Method to a Vendor"
method: POST
path: "/v1/web/vendor/{vendorId}/payment-method"
tags: ["Vendor"]
---

# Add a Payment Method to a Vendor

`POST /v1/web/vendor/{vendorId}/payment-method`

Adds the payment method if auto-approved, otherwise returns an approval request to action it.

## Path parameters

- `vendorId` string, required

## Request body

- union
  - object
    - `type` 'ach', required
    - `entityType` 'business', required
    - `accountType` union, required
      - 'checking'
      - 'saving'
    - `routingNumber` string, required
    - `accountNumber` string, required
    - `accountName` string, required
    - `accountId` string, required — Dashfi account number (deprecated — will be removed)
  - object
    - `type` 'ach', required
    - `entityType` 'individual', required
    - `accountType` union, required
      - 'checking'
      - 'saving'
    - `routingNumber` string, required
    - `accountNumber` string, required
    - `accountName` string, required
    - `accountHolderName` string, required
    - `accountId` string, required — Dashfi account number (deprecated — will be removed)

## Response `200`

Default Response

- union
  - object
    - `id` string, required
    - `type` 'ach', required
    - `achPaymentMethodId` string, required
    - `entityType` 'business', required
    - `accountType` union, required
      - 'checking'
      - 'saving'
    - `routingNumber` string, required
    - `accountNumber` string, required
    - `accountName` string, required
  - object
    - `id` string, required
    - `type` 'ach', required
    - `achPaymentMethodId` string, required
    - `entityType` 'individual', required
    - `accountType` union, required
      - 'checking'
      - 'saving'
    - `routingNumber` string, required
    - `accountNumber` string, required
    - `accountName` string, required
    - `accountHolderName` string, required

## Other responses

- `202` — Default Response
- `400` — Default Response
- `401` — The access to this resource has been denied
- `403` — The access to this resource is forbidden
- `404` — The resource was not found
- `422` — A service error has occurred
- `default` — Catch-all error response for any unexpected internal errors

---

[API](https://skmtc.net/funneldash/apis/surface-web-api.md) · [All operations](https://skmtc.net/funneldash/apis/surface-web-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/funneldash/surface-web-api/versions/ac700d65f443/schema)
