Skip to main content
POST
Apply a single payment to multiple invoices (atomic create)

Authorizations

Authorization
string
header
required

API key issued per entity via Settings > Developers > API Keys. Each key carries scopes (e.g. orders:read, products:write). Bearer token format: Authorization: Bearer ark_live_ent_Test keys use ark_test_ent_. Both are issued per entity
via Settings > Developers > API Keys.

Headers

Idempotency-Key
string

Client-generated unique key for idempotent POST/PATCH/DELETE operations. Alias for the Idempotency parameter. Max 255 chars. On retry with the same key, the original response is returned without re-executing the operation. Keys expire after 24 hours.

Maximum string length: 255

Body

application/json
account_id
string<uuid>
required

The customer account receiving this payment.

payment_method
enum<string>
required

Tender method for this payment.

Available options:
check,
ach,
wire,
external,
cash,
credit
amount
number
required

Total payment amount in dollars (cash actually received). The sum of applications[].amount_applied must be <= amount; any surplus requires route_unapplied='credit'.

Example:

5000

auto_apply
boolean

When true (and applications omitted), the server allocates the payment oldest-first across the account open invoices. The response returns the computed applications[].

Example:

true

route_unapplied
enum<string>

When 'credit', any surplus (amount beyond what open invoices absorb) is held as a credit-on-account via a balanced journal entry in the same transaction. Without it, a surplus is refused (no silent cap).

Available options:
credit
applications
object[]

Per-invoice application lines (manual override). Omit when auto_apply=true. Sum of amount_applied must be <= amount; any remainder requires route_unapplied='credit'.

Required array length: 1 - 50 elements
check_number
string

Check number (for check payments).

check_date
string<date>

Check date (YYYY-MM-DD).

external_reference
string

External reference (ACH trace number, wire memo, etc.).

notes
string

Internal notes for this payment.

payment_date
string<date>

Payment date for GL posting (YYYY-MM-DD; defaults to today).

Response

Payment applied successfully

data
object
idempotent_replay
boolean