# Verify ACH

<mark style="color:orange;">`POST`</mark> /v3/paymentMethods/<mark style="color:orange;">{userId}</mark>/verifyACH

## Request

The details below help you form your HTTP requests to this endpoint.

### Path Parameters

The endpoint path expects parameters.

<table><thead><tr><th>Name</th><th>Type</th><th data-type="checkbox">Required</th><th>Description</th></tr></thead><tbody><tr><td>userId</td><td>string</td><td>true</td><td>Customer Id</td></tr></tbody></table>

### Body

You must provide a JSON payload.

<table><thead><tr><th>Name</th><th>Type</th><th data-type="checkbox">Required</th><th>Description</th></tr></thead><tbody><tr><td>accountNumber</td><td>string</td><td>true</td><td>user ACH account number</td></tr><tr><td>routingNumber</td><td>string</td><td>true</td><td>user ACH routing number</td></tr><tr><td>forceHRBValidation</td><td>boolean</td><td>false</td><td>force hrb validation</td></tr></tbody></table>

## Response

The details below help you understand the responses you could get from this endpoint.

### Samples

Below are samples of responses, with tabs corresponding to returned status code.

{% tabs %}
{% tab title="200" %}

```javascript
{
    "data": {
        "accountResponseCode": "_5555",
        "status": true
    }
}
```

{% endtab %}

{% tab title="400" %}

```javascript
{
    "error": {
        "statusCode": 400,
        "code": "",
        "message": "\"accountNumber\" is required",
        "data": {}
    }
}
```

{% endtab %}
{% endtabs %}

### Schema

The response's schema is outlined below.

<table><thead><tr><th>Name</th><th>Type</th><th data-type="checkbox">Required</th><th>Description</th></tr></thead><tbody><tr><td>data</td><td>object</td><td>false</td><td>N/A</td></tr><tr><td>data.accountResponseCode</td><td>string</td><td>false</td><td>Giact response code</td></tr><tr><td>data.status</td><td>boolean</td><td>true</td><td>Result of ACH verification</td></tr></tbody></table>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://dev.flexshopper.com/medusa/3.0-beta/payment-methods/verify-ach.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
