The will call endpoint is used to retrieve an order by order ID after it has been placed.  This will allow you to see all of the details of the order including the individual UUIDs (barcodes) of each ticket sold in the order.


Retrieve Order Details

Method
Endpoint
Authenticated
GET
/v2/b2b/willcall/orders/{orderId}
Yes


Response

A detailed order object

Sample Order Object
{
    "orderId""452958",
    "email""someone@email.acme",
    "billingEmail""someone@email.acme",
    "contactFirstName""FirstName",
    "contactLastName""LastName",
    "billingFirstName""FirstName",
    "billingLastName""LastName",
    "phoneNumber""5555555555",
    "billingPhoneNumber""5555555555",
    "orderNumber""100002515",
    "eventItems": [
        {
            "eventId""5d03e18d60309f4e3d6f56bc",
            "eventName""General Admission",
            "eventTemplateId""564e094be4b06560ff59dba8",
            "admissionType""generalAdmission",
            "eventDate""2019-11-06T09:00:00-05:00",
            "items": [
                {
                    "orderItemId""490679",
                    "itemType""Event",
                    "itemTypeId""572a3b7060309f15ea0f3466",
                    "itemTypeName""Adult",
                    "ticketTypeId""572a3b7060309f15ea0f3466",
                    "ticketTypeName""Adult",
                    "quantity": 2,
                    "unitPrice""25.00",
                    "discountedUnitPrice""25.00",
                    "subtotal""50.00",
                    "discountedSubtotal""50.00",
                    "tickets": [
                        {
                            "id""963188",
                            "tenantId": 165,
                            "uuid""32acd269-7044-425d-9e8f-5ba8f67d78f8",
                            "ticketTypeId""572a3b7060309f15ea0f3466",
                            "eventId""5d03e18d60309f4e3d6f56bc",
                            "firstName""FirstName",
                            "lastName""LastName",
                            "email""someone@email.acme",
                            "phoneNumber""5555555555",
                            "ticketStatus""Normal",
                            "printed"false,
                            "conversionStatus""NoConversion",
                            "ticketDetails": [
                                {
                                    "ticketId""963188",
                                    "orderId""452958",
                                    "eventId""5d03e18d60309f4e3d6f56bc",
                                    "orderItemId""490679",
                                    "quantity": 1,
                                    "tenantId": 165
                                }
                            ]
                        },
                        {
                            "id""963189",
                            "tenantId": 165,
                            "uuid""3b734dba-cca3-4806-b1b2-850b8f488aea",
                            "ticketTypeId""572a3b7060309f15ea0f3466",
                            "eventId""5d03e18d60309f4e3d6f56bc",
                            "firstName""FirstName",
                            "lastName""LastName",
                            "email""someone@email.acme",
                            "phoneNumber""5555555555",
                            "ticketStatus""Normal",
                            "printed"false,
                            "conversionStatus""NoConversion",
                            "ticketDetails": [
                                {
                                    "ticketId""963189",
                                    "orderId""452958",
                                    "eventId""5d03e18d60309f4e3d6f56bc",
                                    "orderItemId""490679",
                                    "quantity": 1,
                                    "tenantId": 165
                                }
                            ]
                        }
                    ],
                    "comboTemplateType""fixedPrice",
                    "conversionStatus""NoConversion"
                }
            ],
            "ticketDetails": {
                "ticketDurationDays": 365,
                "checkInWindow": {
                    "minutesBefore": 0,
                    "minutesAfter": 0,
                    "blockScan"false,
                    "autoRebook"true
                },
                "postStartPurchase": {
                    "allowLateTicketPurchase"true
                },
                "purchaseAvailability": {
                    "timeFrame""after",
                    "minutes": 0
                },
                "ticketPrintLines": [
                    "",
                    "",
                    "",
                    ""
                ],
                "doNotPrint"false,
                "expireFromEventDate"false,
                "hideEventDate"false
            },
            "state""active",
            "hasForms"false,
            "hasResources"true
        }
    ],
    "createdOn""2019-11-06T17:16:55-05:00",
    "checkInStatus""NotCheckedIn",
    "legacy"false,
    "saleChannel""Online",
    "membershipId""null",
    "refundStatus""Not Refunded",
    "orderBalance""0.00",
    "ccLastFourDigits""4242",
    "invoiceAfter"false,
    "customerId": 2911113,
    "paymentMethod": 1,
    "paymentMethodName""CreditCard"
}