Skip to main content
POST
Create a customer credit memo

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.

Body

application/json
account_id
string<uuid>
required
amount
number
required
Required range: x >= 0.01
reason
string
source_type
string

Registered credit source type (default: manual). Unregistered values are rejected 422.

source_id
string<uuid>

Optional source-document UUID; forms the idempotency triple with source_type. Non-UUID values are rejected.

expires_at
string

ISO date-time in the future

memo
string

Free-text note stored on the credit memo.

metadata
object

Arbitrary object; serialized into the memo notes. Takes precedence over memo.

Response

Existing memo returned (idempotent replay of the same source_type + source_id)

A customer credit memo representing a future payment obligation by Arcus to an account. Tracks open_balance for partial application across multiple orders. GL: DR AR Clearing / CR AR on creation; DR AR / CR Cash on application.

id
string<uuid>
read-only
entity_id
string<uuid>
read-only
account_id
string<uuid>

The customer account this credit belongs to.

amount
number

Original credit amount issued.

open_balance
number
read-only

Remaining unapplied balance.

status
enum<string>
read-only
Available options:
open,
partially_applied,
fully_applied,
voided
reason
string | null
memo
string | null
gl_account_id
string<uuid> | null

Clearing account used for this credit.

journal_entry_id
string<uuid> | null
read-only

The GL entry that created this credit.

created_at
string<date-time>
read-only
updated_at
string<date-time>
read-only
voided_at
string<date-time> | null
read-only