Skip to main content
POST
/
partner
/
clover
/
ach
Create ACH Transaction
curl --request POST \
  --url https://api.example.com/partner/clover/ach \
  --header 'Content-Type: application/json' \
  --header 'X-API-NONCE: <x-api-nonce>' \
  --header 'X-API-SIGNATURE: <x-api-signature>' \
  --header 'X-API-SUBSCRIPTION-KEY: <x-api-subscription-key>' \
  --header 'X-API-TIMESTAMP: <x-api-timestamp>' \
  --data '
{
  "amount": 77.77,
  "direction": "withdrawal",
  "originating_account_id": "54jdijdsoij999937",
  "external_bank_account_id": "jiojjo83838jdjd"
}
'
{
  "message": "Request was successful",
  "data": {
    "reference_id": "ach_01J3KXMR2EPVZ8QF4HN6YT5W3D",
    "transaction_id": "54_6HvEVoz7Sr929DXXwOGXn"
  }
}

Headers

X-API-SIGNATURE
string
required

Signature header

X-API-TIMESTAMP
integer
required

Timestamp header

X-API-NONCE
string
required

Nonce header

X-API-SUBSCRIPTION-KEY
string
required

Subscription key header

X-IDEMPOTENCY-KEY
string<uuid>

Optional UUID to ensure idempotent request handling. Optional idempotency key (UUID)

Body

application/json
amount
number
required
direction
enum<string>
required
Available options:
withdrawal,
deposit
originating_account_id
string
required
external_bank_account_id
string
required

Response

Successful Response

message
string
required
data
AchCreateData · object
required