Brushfire Attendees API

The Attendees API from Brushfire — 18 operation(s) for attendees.

Operations 20

GET /attendees/{attendeeId} Retrieve all relevant attendee information for the given attendee number
POST /attendees/{attendeeId}/cancel Cancel an attendee (zero financial change only)
POST /attendees/{attendeeId}/code Associate an external code with a Brushfire attendee for scanning, etc.
GET /attendees/{attendeeId}/communities Gets all the available communities for this specific attendee based upon any rules that might be in place
POST /attendees/{attendeeId}/community Set or clear the community for the specified attendee (as long as the group's community doesn't override)
POST /attendees/{attendeeId}/completed Set a registered attendee's completed state
GET /attendees/{attendeeId}/data Returns all data for the specified attendee in the same structure as {eventId}/data
POST /attendees/{attendeeId}/donate Donate back an attendee
GET /attendees/{attendeeId}/fields Retrieve fields for an attendee
POST /attendees/{attendeeId}/fields Update fields for an attendee
GET /attendees/{attendeeId}/fieldscustom Retrieve fields for an attendee
POST /attendees/{attendeeId}/fieldscustom Update fields for an attendee
POST /attendees/{attendeeId}/gift Set an attendee registration as a gift
POST /attendees/{attendeeId}/group Set or clear the group (and the associated community) for the specified attendee
POST /attendees/{attendeeId}/link Copy all fields from the source attendee to the specified attendee and link them together
GET /attendees/{attendeeId}/print Retrieve the printable resources for a single attendee
POST /attendees/{attendeeId}/type Change an attendee type (zero financial change only)
GET /attendees/helpdesk/{email} Retrieve attendees that match provided email
POST /attendees/ids Convert a list of attendee numbers to their corresponding unique IDs, checking permissions for each
POST /attendees/print Retrieve the printable resources for multiple attendees

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/brushfire-attendees-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

brushfire-attendees-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: 'Brushfire API: Version 2025-07-22 AccessCodes Attendees 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: Attendees
paths:
  /attendees/{attendeeId}:
    get:
      tags:
      - Attendees
      summary: Retrieve all relevant attendee information for the given attendee number
      parameters:
      - name: attendeeId
        in: path
        description: An integer, GUID, or a string that corresponds to a specific attendee
        required: true
        schema:
          type: string
      - name: eventId
        in: query
        description: An integer or a GUID that corresponds to a specific event (only necessary if sending an attendee code)
        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/AttendeeDetailsOutput'
            text/json:
              schema:
                $ref: '#/components/schemas/AttendeeDetailsOutput'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
            text/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
      security:
      - apiKey: []
  /attendees/{attendeeId}/cancel:
    post:
      tags:
      - Attendees
      summary: Cancel an attendee (zero financial change only)
      parameters:
      - name: attendeeId
        in: path
        description: An integer or a GUID that corresponds to a specific attendee
        required: true
        schema:
          type: string
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AttendeeCancelInput'
          text/json:
            schema:
              $ref: '#/components/schemas/AttendeeCancelInput'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/AttendeeCancelInput'
      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: []
  /attendees/{attendeeId}/code:
    post:
      tags:
      - Attendees
      summary: Associate an external code with a Brushfire attendee for scanning, etc.
      parameters:
      - name: attendeeId
        in: path
        description: An integer or a GUID that corresponds to a specific attendee
        required: true
        schema:
          type: string
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AttendeeCodeInput'
          text/json:
            schema:
              $ref: '#/components/schemas/AttendeeCodeInput'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/AttendeeCodeInput'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AttendeeDetailsOutput'
            text/json:
              schema:
                $ref: '#/components/schemas/AttendeeDetailsOutput'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
            text/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
      security:
      - apiKey: []
  /attendees/{attendeeId}/communities:
    get:
      tags:
      - Attendees
      summary: Gets all the available communities for this specific attendee based upon any rules that might be in place
      parameters:
      - name: attendeeId
        in: path
        description: An integer or a GUID that corresponds to a specific attendee
        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/AttendeeCommunityOutput'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AttendeeCommunityOutput'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
            text/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
      security:
      - apiKey: []
  /attendees/{attendeeId}/community:
    post:
      tags:
      - Attendees
      summary: Set or clear the community for the specified attendee (as long as the group's community doesn't override)
      parameters:
      - name: attendeeId
        in: path
        description: An integer or a GUID that corresponds to a specific attendee
        required: true
        schema:
          type: string
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AttendeeCommunityInput'
          text/json:
            schema:
              $ref: '#/components/schemas/AttendeeCommunityInput'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/AttendeeCommunityInput'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AttendeeDetailsOutput'
            text/json:
              schema:
                $ref: '#/components/schemas/AttendeeDetailsOutput'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
            text/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
      security:
      - apiKey: []
  /attendees/{attendeeId}/completed:
    post:
      tags:
      - Attendees
      summary: Set a registered attendee's completed state
      parameters:
      - name: attendeeId
        in: path
        description: An integer or a GUID that corresponds to a specific attendee
        required: true
        schema:
          type: string
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AttendeeCompletedInput'
          text/json:
            schema:
              $ref: '#/components/schemas/AttendeeCompletedInput'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/AttendeeCompletedInput'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AttendeeDetailsOutput'
            text/json:
              schema:
                $ref: '#/components/schemas/AttendeeDetailsOutput'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
            text/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
      security:
      - apiKey: []
  /attendees/{attendeeId}/data:
    get:
      tags:
      - Attendees
      summary: Returns all data for the specified attendee in the same structure as {eventId}/data
      parameters:
      - name: attendeeId
        in: path
        description: An integer, GUID, or a string that corresponds to a specific attendee
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema: {}
            text/json:
              schema: {}
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
            text/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
      security:
      - apiKey: []
  /attendees/{attendeeId}/donate:
    post:
      tags:
      - Attendees
      summary: Donate back an attendee
      parameters:
      - name: attendeeId
        in: path
        description: An integer or a GUID that corresponds to a specific attendee
        required: true
        schema:
          type: string
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AttendeeDonateInput'
          text/json:
            schema:
              $ref: '#/components/schemas/AttendeeDonateInput'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/AttendeeDonateInput'
      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: []
  /attendees/{attendeeId}/fields:
    get:
      tags:
      - Attendees
      summary: Retrieve fields for an attendee
      parameters:
      - name: attendeeId
        in: path
        description: An integer or a GUID that corresponds to a specific attendee
        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:
      - Attendees
      summary: Update fields for an attendee
      parameters:
      - name: attendeeId
        in: path
        description: An integer or a GUID that corresponds to a specific attendee
        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: []
  /attendees/{attendeeId}/fieldscustom:
    get:
      tags:
      - Attendees
      summary: Retrieve fields for an attendee
      parameters:
      - name: attendeeId
        in: path
        description: An integer or a GUID that corresponds to a specific attendee
        required: true
        schema:
          type: string
      - name: fieldsToInclude
        in: query
        description: The Id's of the fields you want returned
        schema:
          type: array
          items:
            type: string
            format: uuid
      - 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:
      - Attendees
      summary: Update fields for an attendee
      parameters:
      - name: attendeeId
        in: path
        description: An integer or a GUID that corresponds to a specific attendee
        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: []
  /attendees/{attendeeId}/gift:
    post:
      tags:
      - Attendees
      summary: Set an attendee registration as a gift
      parameters:
      - name: attendeeId
        in: path
        description: An integer or a GUID that corresponds to a specific attendee
        required: true
        schema:
          type: string
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AttendeeUpdateGiftInput'
          text/json:
            schema:
              $ref: '#/components/schemas/AttendeeUpdateGiftInput'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/AttendeeUpdateGiftInput'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AttendeeUpdateGiftOutput'
            text/json:
              schema:
                $ref: '#/components/schemas/AttendeeUpdateGiftOutput'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
            text/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
      security:
      - apiKey: []
  /attendees/{attendeeId}/group:
    post:
      tags:
      - Attendees
      summary: Set or clear the group (and the associated community) for the specified attendee
      parameters:
      - name: attendeeId
        in: path
        description: An integer or a GUID that corresponds to a specific attendee
        required: true
        schema:
          type: string
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AttendeeGroupInput'
          text/json:
            schema:
              $ref: '#/components/schemas/AttendeeGroupInput'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/AttendeeGroupInput'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AttendeeDetailsOutput'
            text/json:
              schema:
                $ref: '#/components/schemas/AttendeeDetailsOutput'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
            text/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
      security:
      - apiKey: []
  /attendees/{attendeeId}/link:
    post:
      tags:
      - Attendees
      summary: Copy all fields from the source attendee to the specified attendee and link them together
      parameters:
      - name: attendeeId
        in: path
        description: An integer or a GUID that corresponds to a specific attendee
        required: true
        schema:
          type: string
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AttendeeLinkInput'
          text/json:
            schema:
              $ref: '#/components/schemas/AttendeeLinkInput'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/AttendeeLinkInput'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AttendeeDetailsOutput'
            text/json:
              schema:
                $ref: '#/components/schemas/AttendeeDetailsOutput'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
            text/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
      security:
      - apiKey: []
  /attendees/{attendeeId}/print:
    get:
      tags:
      - Attendees
      summary: Retrieve the printable resources for a single attendee
      parameters:
      - name: attendeeId
        in: path
        description: An integer or a GUID that corresponds to a specific attendee
        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: []
  /attendees/{attendeeId}/type:
    post:
      tags:
      - Attendees
      summary: Change an attendee type (zero financial change only)
      parameters:
      - name: attendeeId
        in: path
        description: An integer or a GUID that corresponds to a specific attendee
        required: true
        schema:
          type: string
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AttendeeUpdateTypeInput'
          text/json:
            schema:
              $ref: '#/components/schemas/AttendeeUpdateTypeInput'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/AttendeeUpdateTypeInput'
      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: []
  /attendees/helpdesk/{email}:
    get:
      tags:
      - Attendees
      summary: Retrieve attendees that match provided email
      parameters:
      - name: email
        in: path
        description: An email to search across attendee email fields
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AttendeeHelpdeskOutput'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AttendeeHelpdeskOutput'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
            text/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
      security:
      - apiKey: []
  /attendees/ids:
    post:
      tags:
      - Attendees
      summary: Convert a list of attendee numbers to their corresponding unique IDs, checking permissions for each
      requestBody:
        description: Object containing list of attendee numbers to convert
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AttendeeNumbersToIdsInput'
          text/json:
            schema:
              $ref: '#/components/schemas/AttendeeNumbersToIdsInput'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/AttendeeNumbersToIdsInput'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AttendeeNumbersToIdsOutput'
            text/json:
              schema:
                $ref: '#/components/schemas/AttendeeNumbersToIdsOutput'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
            text/json:
              schema:
                $ref: '#/components/schemas/ApiModelError'
      security:
      - apiKey: []
  /attendees/print:
    post:
      tags:
      - Attendees
      summary: Retrieve the printable resources for multiple attendees
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AttendeePrintInput'
          text/json:
            schema:
              $ref: '#/components/schemas/AttendeePrintInput'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/AttendeePrintInput'
      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: []
components:
  schemas:
    AttendeeDetailsOutput:
      type: object
      properties:
        Id:
          type: string
          format: uuid
        AttendeeNumber:
          type: integer
          format: int64
        AttendeeCode:
          type:
          - string
          - 'null'
        EventId:
          type: string
          format: uuid
        EventNumber:
          type: integer
          format: int64
        Status:
          type:
          - string
          - 'null'
        IsCompleted:
          type: boolean
        IsGift:
          type: boolean
        IsPreRegistered:
          type: boolean
        IsPrinted:
          type: boolean
        ShareEmail:
          type:
          - string
          - 'null'
        GiftLastSentAt:
          type:
          - string
          - 'null'
          format: date-time
        FirstName:
          type:
          - string
          - 'null'
        LastName:
          type:
          - string
          - 'null'
        Phone:
          type:
          - string
          - 'null'
        Email:
          type:
          - string
          - 'null'
        Street1:
          type:
          - string
          - 'null'
        Street2:
          type:
          - string
          - 'null'
        City:
          type:
          - string
          - 'null'
        Region:
          type:
          - string
          - 'null'
        Country:
          type:
          - string
          - 'null'
        PostalCode:
          type:
          - string
          - 'null'
        TypeId:
          type: string
          format: uuid
        TypeName:
          type:
          - string
          - 'null'
        SectionName:
          type:
          - string
          - 'null'
        RowName:
          type:
          - string
          - 'null'
        SeatLabel:
          type:
          - string
          - 'null'
        Wheelchair:
          type:
          - boolean
          - 'null'
        LimitedView:
          type:
          - boolean
          - 'null'
        Amount:
          type: number
          format: double
        SeatInfo:
          type:
          - string
          - 'null'
          readOnly: true
        CommunityId:
          type:
          - string
          - 'null'
          format: uuid
        CommunityName:
          type:
          - string
          - 'null'
        CommunityPartition:
          type:
          - string
          - 'null'
        GroupId:
          type:
          - string
          - 'null'
          format: uuid
        GroupName:
          type:
          - string
          - 'null'
        GroupEmail:
          type:
          - string
          - 'null'
        Fields:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/FieldDisplayOutput'
        OrderFields:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/FieldDisplayOutput'
        GroupFields:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/FieldDisplayOutput'
        Checkins:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/AttendeeCheckinOutput'
        FlexPassCheckins:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/AttendeeFlexPassCheckinOutput'
        QRCode:
          type:
          - string
          - 'null'
        IsAnonymized:
          type: boolean
        FlexPass:
          $ref: '#/components/schemas/AttendeeFlexPassOutput'
        IsFlexPass:
          type: boolean
        AttendeeDisplay:
          $ref: '#/components/schemas/AttendeeDisplayOutput'
        AttendeeDisplayLines:
          $ref: '#/components/schemas/AttendeeDisplayOutput'
        OrderedAt:
          type:
          - string
          - 'null'
          format: date-time
        ShareEnabled:
          type: boolean
        IsAddon:
          type: boolean
        GeneratesTicket:
          type: boolean
        OrderKey:
          type:
          - string
          - 'null'
      additionalProperties: false
    PrintType:
      enum:
      - Ticket
      - ETicket
      - Receipt
      - MailingLabel
      - WillCall
      - NameBadge
      - Season
      type: string
    DomainValidationOutput:
      type: object
      properties:
        AllowDomains:
          type:
          - array
          - 'null'
          items:
            type: string
        DisallowDomains:
          type:
          - array
          - 'null'
          items:
            type: string
      additionalProperties: false
    OrderCreateOutput:
      type: object
      properties:
        RequiresAction:
          type: boolean
        ActionInfo:
          type:
          - object
          - 'null'
          additionalProperties:
            type:

# --- truncated at 32 KB (48 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/brushfire/refs/heads/main/openapi/brushfire-attendees-api-openapi.yml