Refund

POST /v2/b2b/b2b/refunds

Body

A Refund Input JSON Object

Response

A Refund Result JSON Object


JSON Objects

Refund Input JSON Object

Field
Description
Notes
orderIdThe id of the order being refunded or partially refunded.
incidentReasonCodeThe reason for the refund, one of (Cancelled Event or Miscellaneous).
notesAny notes about the refund.
noEmailSet to true if you don't want to send the customer an email about the refund. Default is to send the refund email
refundItems[]Array of items being refunded.



refundItems[x].orderItemIdRequired. The order item id of the item being refunded (e.g. provide the id of the ticket for a ticket refund)
refundItems[x].quantityRequired. The number of items being refunded.
refundItems[x].ticketUUIDs[]Optional. Array of tickets to refund as comma separated strings. Provide the full uuid value of the ticket. The uuid value must be accurate* in order to refund a specific ticket.
*If an invalid uuid is provided, the system will still refund tickets based on the orderItemId and quantity, but the ticket status will not update to Refunded.
refundItems[x].incidentReasonCodeThe reason for refunding this item, one of (Cancelled Event or Miscellaneous).


Refund Result JSON Object

Field
Description
Notes
incidentNumberA unique id representing this refund transaction.
refundAmountThe amount that was refunded.
orderThe resulting Order JSON Object after the refund.See Orders
refundedEventsA list of events refunded.
refundedEvents[x].startDateThe date that the event was to occur.
refundedEvents[x].startTimeThe start time of the event.
refundedEvents[x].eventNameThe name of the event.
refundedEvents[x].refundedItemsThe list of items being refunded for this event.
refundedEvents[x].refundedItems[y].ticketTypeThe name of the ticket type being refunded.
refundedEvents[x].refundedItems[y].pricePerTicketThe price per ticket.
refundedEvents[x].refundedItems[y].refundedCountThe number of tickets refunded.
refundedEvents[x].refundedItems[y].totalRefundedThe total amount refunded for this event, ticket type combination.