Customer Credits - Accounts (Experimental)
Reverse a transaction
Reverse a previous credit or debit on this account. Creates a new transaction that undoes the original, preserving the full history.
post/v1/customer-credits/accounts/{id}/reverse
Path parameters
idstring required
Request body
Example request
{
"transaction_id": "cct_abc123"
}Response
Reversal transaction created
Example response
{
"id": "cct_abc123",
"reference": "order_xyz",
"reversal_of": "cct_abc123",
"entries": [
{
"id": "cce_abc123",
"transaction_id": "cct_abc123",
"account_id": "cca_abc123",
"amount": "1000"
}
]
}