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>' \
  --header 'X-IDEMPOTENCY-KEY: <x-idempotency-key>' \
  --data '
{
  "amount": 123,
  "originating_account_id": "<string>",
  "external_account_id": "<string>"
}
'
{
  "message": "<string>",
  "data": {
    "reference_id": "<string>",
    "transaction_id": "<string>"
  }
}

Headers

X-IDEMPOTENCY-KEY
string
required
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

Account ID header

Body

application/json

Schema to deserialize the ACH transaction request.

amount
number
required

Amount to be transferred

direction
enum<string>
required

Direction

Available options:
deposit,
withdrawal
Examples:

"withdrawal"

"deposit"

originating_account_id
string
required

Originating account ID

Example:

"54_6HsrzVBq3MReLHXNnb5Qk"

external_account_id
string
required

External bank account ID

Response

Successful Response

message
string
required
data
CreateAchTransactionResponse · object

Schema to serialize the ach transaction response.