Check the Rebook Fee Value

GET /v1/b2b/event/instance/rebook/fees?eventIds={eventInstanceId}


Response will return the rebookingFee value

Example:

[
    {
        "eventTemplateId": "5ad547ff58ccc435e559054d",
        "rebookingFee": "1.00",
        "eventId": "65df9c5c551799296e2458b3"
    }
]


Rebook Items

POST /v1/b2b/rebook/orders


Body

A Rebook Input JSON Object.


Response

A Rebook Response JSON Object.

 

JSON Objects

Rebook Input JSON Object

Field
Description
Notes
orderIdThe id of the order being rebooked. Required
incidentReasonCodeThe reason that the rebook is happening. One of (Payment, Cancelled Event, Rebook Event, Miscellaneous). 
notesAny notes about the rebooking. 
noEmailboolean value, true if you don't want to email the customer about the rebooking. Default is true. 
rebookItemsList of items being rebooked.Required
rebookItems[x].orderItemIdThe id of the item being rebooked.Required 
rebookItems[x].itemTypeThe type of item being rebooked, one of (Event, Inventory, Combo, ComboInventory) 
rebookItems[x].itemTypeIdThe id of the item being rebooked. Required
rebookItems[x].itemTypeNameThe name of the item being rebooked. 
rebookItems[x].rebookQuantityThe number of items being rebooked. Required
rebookItems[x].incidentReasonCodeThe reason that the rebook is happening for this item. One of (Payment, Cancelled Event, Rebook Event, Miscellaneous). 
rebookItems[x].rebookToEventIdThe id of the event you are moving these tickets to. Required
payment
Payment details if payment is due
payment.type
Type of payment (e.g. CreditCard)Required if payment due
payment.manualEntryCardNumber
Credit card numberRequired for CC payment
payment.expDate
Expiration date of the credit cardRequired for CC payment
payment.cvc
CVC of the credit cardRequired for CC payment
payment.address
Address of the billing contact
payment.address.streetAddress1
Street Address 1 for the billing contact
payment.address.streetAddress2
Street Address2 for the billing contact

payment.address.city
City for the billing contact
payment.address.state
State for the billing contact. See Country and State List APIs for how to obtain a list of values to display

payment.address.zipCode
ZIP / Postal Code for the billing contact

payment.address.country
Country for the billing contact (e.g. United States). See Country and State List APIs for how to obtain a list of values to display

payment.contactEmail
Email of the billing contactRequired if sending an email confirmation
payment.contactFirstName
First name of the billing contact
payment.contactLastName
Last name of the billing contact



Rebook Response JSON Object

Field
Description
Notes
incidentNumberA unique string to identify this rebooking. 
orderA complete Order JSON object.See Orders for details