OrderCancellation

Details of a cancelled order.

  • cancelledAt
    Type: string Format: date-time
    required

    When the order was cancelled.

  • cancelledBy
    Type: string enum
    required

    Who cancelled the order.

    values
    • buyer

      The buyer cancelled.

    • seller

      The seller cancelled.

    • system

      CardNexus cancelled it automatically.

  • reason
    Type: string
    required

    The cancellation reason code.

  • reasonText
    Type: string nullable
    required

    A free-text note about the cancellation. null when none was given.

Examples
{
  "cancelledBy": "buyer",
  "reason": "changed_mind",
  "reasonText": null,
  "cancelledAt": "2026-06-12T14:20:00.000Z"
}