openapi: 3.0.1 info: title: 'Brushfire API: Version 2025-07-22 AccessCodes Orders API' version: '2025-07-22' description: 'The Brushfire REST API provides programmatic access to the Brushfire event ticketing and registration platform. It covers events, ticket types, sections and seats, attendees, orders, the shopping cart and checkout flow, groups, sessions and check-in, promotions and access codes, payment profiles, and webhooks (Hooks). Authenticate by sending your App Key (requested at https://developer.brushfire.com/key) in the Authorization header. The API is date-versioned: send the desired version in the api-version request header (for example, 2025-07-22). This document is the live specification published at api.brushfire.com/swagger.' contact: name: Brushfire Developers url: https://developer.brushfire.com servers: - url: https://api.brushfire.com description: Brushfire API (date-versioned via the api-version header) tags: - name: Orders paths: /orders: get: tags: - Orders summary: Gets list of orders by eventId and/or a date range. parameters: - name: eventId in: query description: An integer or a GUID that corresponds to a specific event. Only required if there is no startsAt or endsAt. schema: type: string - name: startsAt in: query description: Optional start date to filter list schema: type: string format: date-time - name: endsAt in: query description: Optional end date to filter list schema: type: string format: date-time responses: '200': description: OK content: application/json: schema: type: array items: $ref: '#/components/schemas/OrderListOutput' text/json: schema: type: array items: $ref: '#/components/schemas/OrderListOutput' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ApiModelError' text/json: schema: $ref: '#/components/schemas/ApiModelError' security: - apiKey: [] post: tags: - Orders summary: Create an order from an existing cart requestBody: description: '' content: application/json: schema: $ref: '#/components/schemas/OrderCreateInput' text/json: schema: $ref: '#/components/schemas/OrderCreateInput' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/OrderCreateInput' responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/OrderCreateOutput' text/json: schema: $ref: '#/components/schemas/OrderCreateOutput' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ApiModelError' text/json: schema: $ref: '#/components/schemas/ApiModelError' security: - apiKey: [] /orders/{orderId}: get: tags: - Orders summary: Retrieve a single order parameters: - name: orderId in: path description: A string (orderKey) or a GUID representing a specific order required: true schema: type: string - name: accessKey in: query description: The Access Key for the user context schema: type: string - name: qrSize in: query description: The width and height of the QR Code. If blank, no QR will be sent. schema: type: integer format: int32 responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/OrderSingleOutput' text/json: schema: $ref: '#/components/schemas/OrderSingleOutput' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ApiModelError' text/json: schema: $ref: '#/components/schemas/ApiModelError' security: - apiKey: [] /orders/{orderId}/fields: get: tags: - Orders summary: Retrieve fields for an order parameters: - name: orderId in: path description: A string (orderKey) or a GUID representing a specific order required: true schema: type: string - name: accessKey in: query description: The Access Key for the user context schema: type: string responses: '200': description: OK content: application/json: schema: type: array items: $ref: '#/components/schemas/FieldOutput' text/json: schema: type: array items: $ref: '#/components/schemas/FieldOutput' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ApiModelError' text/json: schema: $ref: '#/components/schemas/ApiModelError' security: - apiKey: [] post: tags: - Orders summary: Update fields for an order parameters: - name: orderId in: path description: A string (orderKey) or a GUID representing a specific order required: true schema: type: string requestBody: description: '' content: application/json: schema: $ref: '#/components/schemas/FieldUpdateInput' text/json: schema: $ref: '#/components/schemas/FieldUpdateInput' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/FieldUpdateInput' responses: '200': description: OK content: application/json: schema: type: array items: $ref: '#/components/schemas/FieldOutput' text/json: schema: type: array items: $ref: '#/components/schemas/FieldOutput' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ApiModelError' text/json: schema: $ref: '#/components/schemas/ApiModelError' security: - apiKey: [] /orders/{orderId}/print: get: tags: - Orders summary: Retrieve the printable resources for a single order parameters: - name: orderId in: path description: A string (orderKey) or a GUID representing a specific order required: true schema: type: string - name: type in: query description: A string that is one of "Ticket", "ETicket", or "Namebadge" schema: $ref: '#/components/schemas/PrintType' - name: format in: query description: A string that is one of "PDF", "PNG", "JPG", "GIF", "BMP" or "TIFF" schema: $ref: '#/components/schemas/PrintFormat' - name: imageDpi in: query description: An int representing the dots per inch of the images produced that is 72, 96, 150, 300 or 600. 0 for PDF schema: type: integer format: int32 default: 0 responses: '200': description: OK content: application/json: schema: type: array items: type: string format: byte text/json: schema: type: array items: type: string format: byte '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ApiModelError' text/json: schema: $ref: '#/components/schemas/ApiModelError' security: - apiKey: [] /orders/{orderId}/resend: post: tags: - Orders summary: Resend a confirmation for a single order parameters: - name: orderId in: path description: A string (orderKey) or a GUID representing a specific order required: true schema: type: string requestBody: description: Contains optional access key content: application/json: schema: $ref: '#/components/schemas/OrderConfirmationResendInput' text/json: schema: $ref: '#/components/schemas/OrderConfirmationResendInput' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/OrderConfirmationResendInput' responses: '200': description: OK content: application/json: schema: type: boolean text/json: schema: type: boolean '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ApiModelError' text/json: schema: $ref: '#/components/schemas/ApiModelError' security: - apiKey: [] /orders/direct: post: tags: - Orders summary: Create cart-less order for free, general admission events with no fields. requestBody: description: '' content: application/json: schema: $ref: '#/components/schemas/OrderCreateDirectInput' text/json: schema: $ref: '#/components/schemas/OrderCreateDirectInput' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/OrderCreateDirectInput' responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/OrderResultOutput' text/json: schema: $ref: '#/components/schemas/OrderResultOutput' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ApiModelError' text/json: schema: $ref: '#/components/schemas/ApiModelError' security: - apiKey: [] /orders/helpdesk/{email}: get: tags: - Orders summary: Retrieve orders that match provided email parameters: - name: email in: path description: An email to search across order email fields required: true schema: type: string responses: '200': description: OK content: application/json: schema: type: array items: $ref: '#/components/schemas/OrderHelpdeskOutput' text/json: schema: type: array items: $ref: '#/components/schemas/OrderHelpdeskOutput' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ApiModelError' text/json: schema: $ref: '#/components/schemas/ApiModelError' security: - apiKey: [] /orders/pos: post: tags: - Orders summary: Create a point of sale order from an existing cart requestBody: description: '' content: application/json: schema: $ref: '#/components/schemas/OrderCreatePOSInput' text/json: schema: $ref: '#/components/schemas/OrderCreatePOSInput' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/OrderCreatePOSInput' responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/OrderCreateOutput' text/json: schema: $ref: '#/components/schemas/OrderCreateOutput' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ApiModelError' text/json: schema: $ref: '#/components/schemas/ApiModelError' security: - apiKey: [] /orders/print: post: tags: - Orders summary: Retrieve the printable resources for multiple orders requestBody: description: '' content: application/json: schema: $ref: '#/components/schemas/OrderPrintInput' text/json: schema: $ref: '#/components/schemas/OrderPrintInput' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/OrderPrintInput' responses: '200': description: OK content: application/json: schema: type: array items: type: string format: byte text/json: schema: type: array items: type: string format: byte '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ApiModelError' text/json: schema: $ref: '#/components/schemas/ApiModelError' security: - apiKey: [] /orders/reader/start: post: tags: - Orders summary: Prepares an order to be paid for with a Square or Stripe Reader. requestBody: description: '' content: application/json: schema: $ref: '#/components/schemas/OrderReaderStartInput' text/json: schema: $ref: '#/components/schemas/OrderReaderStartInput' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/OrderReaderStartInput' responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/OrderReaderStartOutput' text/json: schema: $ref: '#/components/schemas/OrderReaderStartOutput' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ApiModelError' text/json: schema: $ref: '#/components/schemas/ApiModelError' security: - apiKey: [] /orders/sms: post: tags: - Orders summary: Sends SMS messages to the provided phone number (only US and Canada) requestBody: description: '' content: application/json: schema: $ref: '#/components/schemas/OrderSmsInput' text/json: schema: $ref: '#/components/schemas/OrderSmsInput' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/OrderSmsInput' responses: '200': description: OK content: application/json: schema: type: boolean text/json: schema: type: boolean '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ApiModelError' text/json: schema: $ref: '#/components/schemas/ApiModelError' security: - apiKey: [] components: schemas: InvoiceRelativeDays: enum: - UponReceipt - SevenDaysAfterOrder - FourteenDaysAfterOrder - ThirtyDaysAfterOrder - ThirtyDaysBeforeEvent - FourteenDaysBeforeEvent - SevenDaysBeforeEvent - DueByEvent type: string OrderListOutput: type: object properties: Id: type: string format: uuid OrderKey: type: string nullable: true OrderedAt: type: string format: date-time OrderedAtLocal: type: string format: date-time IsPOS: type: boolean IsKiosk: type: boolean IsApp: type: boolean AcctCode: type: string nullable: true ObjectNumber: type: integer format: int64 IsAdjustment: type: boolean BillingFirstName: type: string nullable: true BillingLastName: type: string nullable: true HostAddress: type: string nullable: true ThirdPartyCustomerId: type: string nullable: true SubTotal: type: number format: double UndistributedFees: type: number format: double OrderTotal: type: number format: double AttendeeTotal: type: number format: double DiscountTotal: type: number format: double FeeTotal: type: number format: double TaxTotal: type: number format: double DeliveryTotal: type: number description: Deprecated. Delivery has been folded into API.Models.OrderListOutput.FeeTotal; this property is kept for backwards compatibility but should be ignored. format: double FeesTotal: type: number format: double Payments: type: array items: $ref: '#/components/schemas/OrderListPaymentOutput' nullable: true TransactionTotal: type: number format: double readOnly: true PaymentMethodId: type: string format: uuid readOnly: true PaymentMethod: type: string nullable: true readOnly: true PaymentNumber: type: string nullable: true readOnly: true TransactionId: type: string nullable: true readOnly: true ExternalInvoiceId: type: string nullable: true readOnly: true Summary: type: string nullable: true ContactEmail: type: string nullable: true ContactPhone: type: string nullable: true OrderFee: type: number description: Deprecated. Order fees have been folded into API.Models.OrderListOutput.FeeTotal; this property is kept for backwards compatibility but should be ignored. format: double AttendeeCount: type: integer format: int32 PlacedThrough: type: string nullable: true CustomerAccountNumber: type: integer format: int64 nullable: true Notes: type: string nullable: true ExternalId: type: string nullable: true PaidInFull: type: boolean ExternalCustomerId: type: string nullable: true FlagState: type: string nullable: true additionalProperties: false FieldOptionFullOutput: type: object properties: Id: type: string format: uuid Label: type: string nullable: true Capacity: type: integer format: int32 nullable: true Quantity: type: integer format: int32 HasUnitPrice: type: boolean UnitPrice: type: number format: double nullable: true UnitTax: type: number format: double nullable: true IsInclusiveTaxes: type: boolean DisplayPrice: type: number format: double nullable: true PriceDescription: type: string nullable: true IsSelected: type: boolean HasCapacity: type: boolean SpotsRemaining: type: integer format: int32 nullable: true RemainingText: type: string nullable: true additionalProperties: false UnitFeeLineItemOutput: type: object properties: Label: type: string description: Display label (e.g. "Service Fee", "Sales Tax"). nullable: true FeeType: $ref: '#/components/schemas/FeeItemType' Amount: type: number description: The evaluated amount for this line item. format: double additionalProperties: false description: "A single fee or tax line item evaluated for an attendee from the attendee\r\ntype's customFees configuration. On cart outputs this is a live evaluation;\r\non order outputs it is the snapshot of what was collected at purchase time." StringStringKeyValuePair: type: object properties: Key: type: string nullable: true Value: type: string nullable: true additionalProperties: false OrderPrintInput: required: - Orders - Type type: object properties: Type: $ref: '#/components/schemas/PrintType' Orders: type: array items: type: string format: uuid Format: $ref: '#/components/schemas/PrintFormat' ImageDpi: type: integer format: int32 additionalProperties: false OrderReaderStartInput: required: - BillingFirstName - BillingLastName - CartId type: object properties: CartId: minLength: 1 type: string AccessKey: type: string nullable: true BillingFirstName: maxLength: 50 minLength: 0 type: string BillingLastName: maxLength: 50 minLength: 0 type: string ContactEmail: maxLength: 100 minLength: 0 pattern: ^([0-9A-Za-zÀ-ÖØ-öø-ÿ']+[-._+&])*[0-9A-Za-zÀ-ÖØ-öø-ÿ_']+@([-0-9A-Za-zÀ-ÖØ-öø-ÿ]+[.])+[a-zA-Z]{2,63}$ type: string nullable: true ContactPhone: maxLength: 50 minLength: 0 pattern: ^((?:[\.\*\(\)\-\/\s\+]*\d){10,})(.*)$ type: string nullable: true Notes: type: string nullable: true IsKiosk: type: boolean SendEmail: type: boolean Via: type: string nullable: true additionalProperties: false OrderCreateOutput: type: object properties: RequiresAction: type: boolean ActionInfo: type: object additionalProperties: type: string nullable: true nullable: true Results: type: array items: $ref: '#/components/schemas/OrderResultOutput' nullable: true additionalProperties: false OrderCreateInput: required: - BillingCity - BillingCountry - BillingFirstName - BillingLastName - BillingPostalCode - BillingRegion - BillingStreet1 - CartId - ContactPhone type: object properties: CartId: minLength: 1 type: string AccessKey: type: string nullable: true CustomerAccountNumber: type: integer format: int64 nullable: true BillingFirstName: maxLength: 50 minLength: 0 type: string BillingLastName: maxLength: 50 minLength: 0 type: string BillingStreet1: maxLength: 100 minLength: 0 type: string BillingStreet2: maxLength: 100 minLength: 0 type: string nullable: true BillingCity: maxLength: 100 minLength: 0 type: string BillingRegion: maxLength: 100 minLength: 0 type: string BillingCountry: maxLength: 2 minLength: 2 type: string BillingPostalCode: maxLength: 20 minLength: 0 type: string ContactEmail: maxLength: 100 minLength: 0 pattern: ^([0-9A-Za-zÀ-ÖØ-öø-ÿ']+[-._+&])*[0-9A-Za-zÀ-ÖØ-öø-ÿ_']+@([-0-9A-Za-zÀ-ÖØ-öø-ÿ]+[.])+[a-zA-Z]{2,63}$ type: string nullable: true ContactPhone: maxLength: 50 minLength: 0 pattern: ^((?:[\.\*\(\)\-\/\s\+]*\d){10,})(.*)$ type: string PaymentMethodId: type: string format: uuid nullable: true TransactionId: maxLength: 255 minLength: 0 type: string nullable: true TokenInfo: type: object additionalProperties: type: string nullable: true nullable: true CardName: type: string nullable: true CardNumber: pattern: ^(\d{4})(?:[- ]?)(\d{4}|\d{6})(?:[- ]?)((\d{4})(?:[- ]?)(\d{4})|(\d{5}))$ type: string nullable: true CardCsc: pattern: ^\d{3,4}$ type: string nullable: true CardMonth: type: integer format: int32 nullable: true CardYear: type: integer format: int32 nullable: true RoutingNumber: pattern: ^\d{9}$ type: string nullable: true AccountNumber: type: string nullable: true CheckPONumber: type: string nullable: true PaidInFull: type: boolean nullable: true CreditCode: pattern: ^\d{4}-\d{4}-\d{4}$ type: string description: The event credit code to apply to the order. nullable: true example: 1234-5678-9012 PaymentNumberForStorage: type: string nullable: true readOnly: true Notes: type: string nullable: true IsKiosk: type: boolean SendEmail: type: boolean Via: type: string nullable: true IsInvoice: type: boolean InvoiceDue: $ref: '#/components/schemas/InvoiceRelativeDays' ExchangeId: type: string format: uuid nullable: true OriginalOrderId: type: string format: uuid nullable: true additionalProperties: false OrderCreateDirectInput: required: - EventNumber - FirstName - LastName - NumberOfTickets type: object properties: AccessKey: type: string nullable: true FirstName: maxLength: 50 minLength: 0 type: string LastName: maxLength: 50 minLength: 0 type: string Organization: maxLength: 100 minLength: 0 type: string nullable: true Street1: maxLength: 100 minLength: 0 type: string nullable: true Street2: maxLength: 100 minLength: 0 type: string nullable: true City: maxLength: 100 minLength: 0 type: string nullable: true Region: maxLength: 100 minLength: 0 type: string nullable: true Country: maxLength: 2 minLength: 2 type: string nullable: true PostalCode: maxLength: 20 minLength: 0 type: string nullable: true Phone: maxLength: 100 minLength: 0 pattern: ^((?:[\.\*\(\)\-\/\s\+]*\d){10,})(.*)$ type: string nullable: true Email: maxLength: 100 minLength: 0 pattern: ^([0-9A-Za-zÀ-ÖØ-öø-ÿ']+[-._+&])*[0-9A-Za-zÀ-ÖØ-öø-ÿ_']+@([-0-9A-Za-zÀ-ÖØ-öø-ÿ]+[.])+[a-zA-Z]{2,63}$ type: string nullable: true IsPOS: type: boolean EventNumber: type: integer format: int64 NumberOfTickets: maximum: 200 minimum: 1 type: integer format: int32 Notes: type: string nullable: true SendEmail: type: boolean ShipMethod: maxLength: 100 minLength: 0 type: string description: Deprecated. Delivery methods are no longer supported; this field is accepted for backwards compatibility but ignored. nullable: true additionalProperties: false OrderRelationshipOutput: type: object properties: Id: type: string format: uuid OrderKey: type: string nullable: true OrderedAt: type: string format: date-time IsAdjustment: type: boolean Payments: type: array items: $ref: '#/components/schemas/OrderRelationshipPaymentOutput' nullable: true TransactionId: type: string nullable: true readOnly: true TransactionTotal: type: number format: double readOnly: true additionalProperties: false OrderHelpdeskOutput: type: object properties: Id: type: string format: uuid OrderKey: type: string nullable: true ObjectNumber: type: integer format: int64 ObjectTitle: type: string nullable: true ObjectSubtitle: type: string nullable: true OrderedAt: type: string format: date-time OrderedAtLocal: type: string format: date-time FirstName: type: string nullable: true LastName: type: string nullable: true Amount: type: number format: double IsAdjustment: type: boolean Culture: type: string nullable: true FlagState: type: string nullable: true additionalProperties: false OrderPromotionOutput: type: object properties: PromotionId: type: string format: uuid DiscountAmount: type: number format: double additionalProperties: false FieldOutput: type: object properties: Id: type: string format: uuid Label: type: string nullable: true Type: type: string nullable: true Value: nullable: true DisplayValue: type: string nullable: true ValidationExpression: type: string nullable: true IsRequired: type: boolean Notes: type: string nullable: true ErrorMessage: type: string nullable: true IsDisabled: type: boolean IsSensitive: type: boolean SpecialFieldId: type: string format: uuid ParentOptionId: type: string format: uuid nullable: true ParentFieldId: type: string format: uuid nullable: true FormObjectId: type: string format: uuid nullable: true Options: type: array items: $ref: '#/components/schemas/FieldOptionFullOutput' nullable: true ParentOptionIsSelected: type: boolean HasError: type: boolean HasRelevantOutput: type: boolean MinDate: type: string format: date-time nullable: true MaxDate: type: string format: date-time nullable: true AttendeeTypes: type: array items: type: string format: uuid nullable: true RemoteUrl: type: string nullable: true SelectedOptionId: type: string format: uuid nullable: true readOnly: true Confirm: type: boolean DomainValidation: $ref: '#/components/schemas/DomainValidationOutput' DisplayIsPrimary: type: boolean additionalProperties: false FieldUpdateInput: type: object properties: AccessKey: type: string nullable: true FieldValues: type: array items: $ref: '#/components/schemas/FieldInput' nullable: true UpdateNewOnly: type: boolean additionalProperties: false ApiModelError: type: object properties: Errors: type: array items: $ref: '#/components/schemas/StringStringKeyValuePair' nullable: true Message: type: string nullable: true Data: nullable: true StackTrace: type: string nullable: true additionalProperties: false OrderCreatePOSInput: required: - BillingFirstName - BillingLastName - CartId type: object properties: CartId: minLength: 1 type: string AccessKey: type: string nullable: true BillingFirstName: maxLength: 50 minLength: 0 type: string BillingLastName: maxLength: 50 minLength: 0 type: string BillingPostalCode: maxLength: 20 minLength: 0 type: string nullable: true ContactEmail: maxLength: 100 minLength: 0 pattern: ^([0-9A-Za-zÀ-ÖØ-öø-ÿ']+[-._+&])*[0-9A-Za-zÀ-ÖØ-öø-ÿ_']+@([-0-9A-Za-zÀ-ÖØ-öø-ÿ]+[.])+[a-zA-Z]{2,63}$ type: string nullable: true ContactPhone: maxLength: 50 minLength: 0 pattern: ^((?:[\.\*\(\)\-\/\s\+]*\d){10,})(.*)$ type: string nullable: true PaymentMethodId: type: string format: uuid nullable: true TransactionId: maxLength: 255 minLength: 0 type: string nullable: true TokenInfo: type: object additionalProperties: type: string nullable: true nullable: true CardName: type: string nullable: true CardNumber: pattern: ^(\d{4})(?:[- ]?)(\d{4}|\d{6})(?:[- ]?)((\d{4})(?:[- ]?)(\d{4})|(\d{5}))$ type: string nullable: true CardCsc: pattern: ^\d{3,4}$ type: string nullable: true CardMonth: type: integer format: int32 nullable: true CardYear: type: integer format: int32 nullable: true RoutingNumber: pattern: ^\d{9}$ type: string nullable: true AccountNumber: type: string nullable: true CheckPONumber: type: string nullable: true PaidInFull: type: boolean nullable: true CreditCode: pattern: ^\d{4}-\d{4}-\d{4}$ type: string description: The event credit code to apply to the order. nullable: true example: 1234-5678-9012 PaymentNumberForStorage: type: string nullable: true readOnly: true Notes: type: string nullable: true IsKiosk: type: boolean SendEmail: type: boolean Via: type: string nullable: true IsInvoice: type: boolean InvoiceDue: $ref: '#/components/schemas/InvoiceRelativeDays' ExchangeId: type: string format: uuid nullable: true OriginalOrderId: type: string format: uuid nullable: true additionalProperties: false FeeItemType: enum: - Fee - Tax type: string OrderRelationshipPaymentOutput: type: object properties: TransactionId: type: string nullable: true TransactionTotal: type: number format: double ExternalInvoiceId: type: string nullable: true additionalProperties: false PrintType: enum: - Ticket - ETicket - Receipt - MailingLabel - WillCall - NameBadge - Season type: string DomainValidationOutput: type: object properties: AllowDomains: type: array items: type: string nullable: true DisallowDomains: type: array items: type: string nullable: true additionalProperties: false OrderListPaymentOutput: type: object properties: PaymentMethodId: type: string format: uuid PaymentMethod: type: string nullable: true PaymentNumber: type: string nullable: true TransactionId: type: string nullable: true TransactionTotal: type: number format: double ExternalInvoiceId: type: string nullable: true CreditNumber: type: integer format: int64 nullable: true PaidInFull: type: boolean nullable: true additionalProperties: false OrderAttendeeSummaryOutput: type: object properties: AttendeeId: type: string format: uuid AttendeeNumber: type: integer format: int64 AttendeeCode: type: string nullable: true AcctCode: type: string nullable: true HasName: type: boolean FirstName: type: string nullable: true LastName: type: string nullable: true SectionName: type: string nullable: true RowName: type: string nullable: true SeatLabel: type: string nullable: true CreatedAt: type: string format: date-time TypeId: type: string format: uuid TypeName: type: string nullable: true GroupId: type: string format: uuid nullable: true GroupName: type: string nullable: true OrderQuantity: type: integer format: int32 Status: type: string nullable: true IsCompleted: type: boolean IsPreRegistered: type: boolean IsGift: type: boolean ShareEmail: type: string nullable: true GiftingEnabled: type: boolean GiftLastSentAt: type: string format: date-time nullable: true UnitPrice: type: number format: double UnitDiscount: type: number format: double UnitAddons: type: number format: double UnitFee: type: number format: double UnitTax: type: number format: double UnitDelivery: type: number description: Deprecated. Delivery has been folded into API.Models.OrderAttendeeSummaryOutput.UnitFee; this property is kept for backwards compatibility but should be ignored. format: double UnitChange: type: number format: double UnitTotal: type: number format: double UnitFees: type: array items: $ref: '#/components/schemas/UnitFeeLineItemOutput' nullable: true DisplayPrice: type: number format: double readOnly: true DisplayTotal: type: number format: double readOnly: true PriceDescription: type: string nullable: true IsInclusiveFees: type: boolean IsInclusiveTaxes: type: boolean Refundable: type: boolean Promotions: type: array items: $ref: '#/components/schemas/OrderPromotionOutput' nullable: true IsAddon: type: boolean ExternalId: type: string nullable: true ExternalDescription: type: string nullable: true additionalProperties: false OrderConfirmationResendInput: type: object properties: AccessKey: type: string nullable: true additionalProperties: false OrderResultOutput: type: object properties: OrderKey: type: string nullable: true OrderId: type: string format: uuid ObjectNumber: type: integer format: int64 OrderTotal: type: number format: double Quantity: type: integer format: int32 AttendeeCount: type: integer format: int32 AddonCount: type: integer format: int32 Summary: type: string nullable: true Type: type: string nullable: true ContactEmail: type: string nullable: true AnyGeneratesTicket: type: boolean additionalProperties: false OrderSingleOutput: type: object properties: Id: type: string format: uuid OrderKey: type: string nullable: true ObjectNumber: type: integer format: int64 AttendeeCount: type: integer format: int32 OrderedAt: type: string format: date-time OrderedAtLocal: type: string format: date-time IsAdjustment: type: boolean IsPOS: type: boolean IsKiosk: type: boolean IsApp: type: boolean AcctCode: type: string nullable: true BillingName: type: string nullable: true BillingAddress: type: string nullable: true BillingFirstName: type: string nullable: true BillingLastName: type: string nullable: true BillingOrganization: type: string nullable: true BillingStreet1: type: string nullable: true BillingStreet2: type: string nullable: true BillingCity: type: string nullable: true BillingRegion: type: string nullable: true BillingPostal: type: string nullable: true BillingCountry: type: string nullable: true ContactPhone: type: string nullable: true ContactEmail: type: string nullable: true DeliveryMethod: type: string nullable: true HostAddress: type: string nullable: true ThirdPartyCustomerId: type: string nullable: true SubTotal: type: number format: double Total: type: number format: double Summary: type: string nullable: true IsAttendeeTypeAdjustment: type: boolean AttendeeTotal: type: number format: double DiscountTotal: type: number format: double OrderFee: type: number description: Deprecated. Order fees have been folded into API.Models.OrderSingleOutput.FeeTotal; this property is kept for backwards compatibility but should be ignored. format: double FeeTotal: type: number format: double TaxTotal: type: number format: double DeliveryTotal: type: number description: Deprecated. Delivery has been folded into API.Models.OrderSingleOutput.FeeTotal; this property is kept for backwards compatibility but should be ignored. format: double TaxLabel: type: string nullable: true UndistributedFees: type: number format: double FeesTotal: type: number format: double Fields: type: array items: $ref: '#/components/schemas/FieldOutput' nullable: true Attendees: type: array items: $ref: '#/components/schemas/OrderAttendeeSummaryOutput' nullable: true RelatedOrders: type: array items: $ref: '#/components/schemas/OrderRelationshipOutput' nullable: true Payments: type: array items: $ref: '#/components/schemas/OrderListPaymentOutput' nullable: true PaymentMethod: type: string nullable: true readOnly: true TransactionId: type: string nullable: true readOnly: true TransactionTotal: type: number format: double readOnly: true ExternalInvoiceId: type: string nullable: true readOnly: true QRCode: type: string nullable: true Notes: type: string nullable: true ExternalId: type: string nullable: true PaidInFull: type: boolean ExternalCustomerId: type: string nullable: true FlagState: type: string nullable: true additionalProperties: false OrderSmsInput: type: object properties: OrderId: type: string format: uuid PhoneNumber: type: string nullable: true additionalProperties: false PrintFormat: enum: - PDF - PNG - JPG - GIF - BMP - TIFF - ZPL type: string OrderReaderStartOutput: type: object properties: ReferenceId: type: string format: uuid CartId: type: string nullable: true ExternalId: type: string nullable: true AppFee: type: number format: double Description: type: string nullable: true Metadata: type: object additionalProperties: type: string nullable: true nullable: true additionalProperties: false FieldInput: required: - Id type: object properties: Id: type: string format: uuid Value: nullable: true additionalProperties: false securitySchemes: apiKey: type: apiKey description: The App Key you received from https://developer.brushfire.com/key name: Authorization in: header