Skip to main content
GET
/
accounts
/
{account_id}
/
achs
/
{ach_transfer_id}
Get ACH Transfer
curl --request GET \
  --url https://api.meow.com/v1/accounts/{account_id}/achs/{ach_transfer_id} \
  --header 'x-api-key: <api-key>'
{
  "id": "<string>",
  "amount": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "description": "<string>",
  "counterparty_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "counterparty_name": "<string>",
  "counterparty_account_number": "<string>",
  "counterparty_routing_number": "<string>",
  "internal_note": "<string>",
  "additional_details": "<string>",
  "trace_number": "<string>",
  "payment_related_info": "<string>"
}

Authorizations

x-api-key
string
header
required

Your Meow API key, sent in the x-api-key header for authentication.

Headers

x-entity-id
string<uuid>

Optional entity_id to scope requests to a specific entity.

Path Parameters

account_id
string
required

The ID of the account.

ach_transfer_id
string
required

The transaction group ID for the ACH transfer (e.g. withdrawal_ach_...), or the ACH ID returned when you created the transfer (e.g. ach_...).

Response

Successful Response

id
string
required

The unique identifier for the ACH transfer.

amount
string
required

The amount of the transfer.

Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
status
enum<string>
required

The current status of the transfer.

Available options:
pending,
pending_approval,
canceled,
processing,
error,
sent,
returned,
void
created_at
string<date-time>
required

The time the transfer was created.

updated_at
string<date-time>
required

The time the transfer was last updated.

description
string | null

A description of the transfer.

counterparty_id
string<uuid> | null

The unique identifier for the counterparty.

counterparty_name
string | null

The name of the counterparty.

counterparty_account_number
string | null

The account number of the counterparty.

counterparty_routing_number
string | null

The routing number of the counterparty.

internal_note
string | null

An internal note associated with the transfer.

additional_details
string | null

Additional details about the transfer.

trace_number
string | null

The ACH trace number for the transfer.

Payment-related information (e.g. for incoming ACH).