# Refund order Attempt to refund an order, reversing the attached credit card payment. Only fulfilled orders can be refunded and each order can only be sucessfully refunded once. Orders for free tickets or ones that have not been fulfilled, cannot be refunded. Endpoint: POST /orders/{order}/refunds Version: 3.0.0 Security: SessionKey ## Path parameters: - `order` (string) Unique identifier of the order ## Request fields (application/json): - `reason` (string, required) The reason for issuing this refund. ## Response 201 fields (application/json): - `date` (string) The date/time at which the refund was attempted - `amount` (number) The attempted refund amount - `status` (string) The end result of the refund attempt Enum: "Authorised", "Declined" ## Response 400 fields (application/json): - `message` (string) Reason for the given response. ## Response 409 fields (application/json): - `message` (string) Reason for the given response.