> ## Documentation Index
> Fetch the complete documentation index at: https://docs.floral.so/llms.txt
> Use this file to discover all available pages before exploring further.

# List event participants

> List an event's participants in registration order with contact details, states, CRM matches, and ordinary registration answers. Restricted answers are never included.



## OpenAPI

````yaml /openapi/public-v1-da.json get /api/v1/workspaces/{workspaceSlug}/events/{eventId}/participants
openapi: 3.1.0
info:
  description: >-
    Stable external API for relationship lookup, meeting intelligence, and event
    participation.
  title: Florals offentlige API
  version: 1.0.0
servers:
  - description: Produktion
    url: https://app.floral.so
security: []
tags:
  - description: Søg på tværs af aktive virksomheder og personer.
    name: Søgning
  - description: Opret, hent, gennemgå, opdatér, arkivér og gendan virksomheder.
    name: Virksomheder
  - description: Opret, hent, gennemgå, opdatér, arkivér og gendan personer.
    name: Personer
  - description: Læs aktive offentlige definitioner af brugerdefinerede felter.
    name: Brugerdefinerede felter
  - description: Søg i normaliserede fakta fra det danske virksomhedsregister.
    name: Virksomhedsregister
  - description: Opret, hent og gennemgå mødebriefings.
    name: Briefings
  - description: Hent, gennemgå, kommentér og godkend mødereferater.
    name: Referater
  - description: >-
      List and inspect events, and finalise their attendance. Requires the
      Events add-on.
    name: Events
  - description: >-
      Register, list, inspect, and update event participants, mark attendance,
      and correct finalised attendance. Requires the Events add-on.
    name: Event participants
paths:
  /api/v1/workspaces/{workspaceSlug}/events/{eventId}/participants:
    get:
      tags:
        - Event participants
      summary: List event participants
      description: >-
        List an event's participants in registration order with contact details,
        states, CRM matches, and ordinary registration answers. Restricted
        answers are never included.
      operationId: listEventParticipantsV1
      parameters:
        - description: Slug for det arbejdsområde, adgangsoplysningen er bundet til.
          example: acme-nordic
          in: path
          name: workspaceSlug
          required: true
          schema:
            maxLength: 100
            minLength: 1
            pattern: ^[a-z0-9]+(?:-[a-z0-9]+)*$
            type: string
        - description: Stable numeric event ID.
          example: 42
          in: path
          name: eventId
          required: true
          schema:
            minimum: 1
            type: integer
        - in: query
          description: Restrict results to one attendance state.
          example: UNKNOWN
          name: attendanceState
          required: false
          schema:
            type: string
            enum:
              - UNKNOWN
              - ATTENDED
              - NO_SHOW
        - in: query
          description: >-
            Opaque cursor returned as nextCursor by the previous page. Pass it
            back with the same filters; do not inspect or construct it.
          example: eyJ2IjoxLCJjcmVhdGVkQXQiOiIyMDI2LTA5LTAxIn0
          name: cursor
          required: false
          schema:
            type: string
            maxLength: 512
        - in: query
          description: Antal elementer, der skal returneres.
          example: 20
          name: limit
          required: false
          schema:
            default: 20
            type: integer
            minimum: 1
            maximum: 50
        - in: query
          description: Restrict results to one CRM match status.
          example: MATCHED
          name: matchStatus
          required: false
          schema:
            type: string
            enum:
              - UNMATCHED
              - MATCHED
              - AMBIGUOUS
              - REVIEWED
        - in: query
          description: Restrict results to one registration state.
          example: REGISTERED
          name: registrationState
          required: false
          schema:
            type: string
            enum:
              - REGISTERED
              - WAITLISTED
              - CANCELLED
        - description: >-
            Valgfrit korrelations-id fra kalderen. Floral returnerer den
            anvendte værdi i X-Request-ID.
          example: 550e8400-e29b-41d4-a716-446655440000
          in: header
          name: X-Request-ID
          required: false
          schema:
            maxLength: 128
            minLength: 1
            type: string
      responses:
        '200':
          content:
            application/json:
              example:
                items:
                  - attendanceState: UNKNOWN
                    company:
                      id: 42
                      name: Acme Nordic
                    companyName: Acme Nordic
                    createdAt: '2026-09-02T10:20:00.000Z'
                    email: ada@acme-nordic.example
                    eventId: 42
                    id: 0f8b6c1e-3a52-4d6e-9b7a-2c4e5f6a7b8c
                    matchStatus: MATCHED
                    name: Ada Jensen
                    person:
                      id: 84
                      name: Ada Jensen
                    phone: +45 20 11 22 33
                    registrationState: REGISTERED
                    representedCompany:
                      establishmentNumber: null
                      id: 42
                      name: Acme Nordic
                    responses:
                      session_track:
                        answeredAt: '2026-09-02T10:20:00.000Z'
                        value: Workplace strategy
                    source: HOSTED
                    updatedAt: '2026-09-02T10:20:00.000Z'
                    version: >-
                      v1.eyJpZCI6IjBmOGI2YzFlLTNhNTItNGQ2ZS05YjdhLTJjNGU1ZjZhN2I4YyIsInJlc291cmNlIjoicGFydGljaXBhbnQiLCJ2ZXJzaW9uIjoiMiJ9
                    waitlistPosition: null
                nextCursor: null
              schema:
                $ref: '#/components/schemas/EventParticipantListResponse'
          description: Gennemført svar
          headers:
            X-Content-Type-Options:
              description: Angiver altid nosniff ved JSON API-svar.
              schema:
                const: nosniff
                type: string
            X-RateLimit-Limit:
              description: Højeste antal kald i det aktuelle tidsvindue.
              schema:
                minimum: 1
                type: integer
            X-RateLimit-Remaining:
              description: Resterende kald i det aktuelle tidsvindue.
              schema:
                minimum: 0
                type: integer
            X-Request-ID:
              description: >-
                Stabilt korrelations-id for kaldet eller en idempotent
                gentagelse.
              schema:
                minLength: 1
                type: string
        '400':
          content:
            application/json:
              example:
                error:
                  code: INVALID_INPUT
                  message: Kaldet indeholder ugyldige værdier.
                  requestId: 550e8400-e29b-41d4-a716-446655440000
              schema:
                allOf:
                  - $ref: '#/components/schemas/ApiErrorResponse'
                properties:
                  error:
                    properties:
                      code:
                        enum:
                          - INVALID_INPUT
                        type: string
                    required:
                      - code
                    type: object
                type: object
          description: 'Stabile fejl: INVALID_INPUT'
          headers:
            X-Content-Type-Options:
              description: Angiver altid nosniff ved JSON API-svar.
              schema:
                const: nosniff
                type: string
            X-RateLimit-Limit:
              description: Højeste antal kald i det aktuelle tidsvindue.
              schema:
                minimum: 1
                type: integer
            X-RateLimit-Remaining:
              description: Resterende kald i det aktuelle tidsvindue.
              schema:
                minimum: 0
                type: integer
            X-Request-ID:
              description: >-
                Stabilt korrelations-id for kaldet eller en idempotent
                gentagelse.
              schema:
                minLength: 1
                type: string
        '401':
          content:
            application/json:
              example:
                error:
                  code: UNAUTHENTICATED
                  message: En gyldig bearer-adgangsoplysning er påkrævet.
                  requestId: 550e8400-e29b-41d4-a716-446655440000
              schema:
                allOf:
                  - $ref: '#/components/schemas/ApiErrorResponse'
                properties:
                  error:
                    properties:
                      code:
                        enum:
                          - UNAUTHENTICATED
                        type: string
                    required:
                      - code
                    type: object
                type: object
          description: 'Stabile fejl: UNAUTHENTICATED'
          headers:
            X-Content-Type-Options:
              description: Angiver altid nosniff ved JSON API-svar.
              schema:
                const: nosniff
                type: string
            X-RateLimit-Limit:
              description: Højeste antal kald i det aktuelle tidsvindue.
              schema:
                minimum: 1
                type: integer
            X-RateLimit-Remaining:
              description: Resterende kald i det aktuelle tidsvindue.
              schema:
                minimum: 0
                type: integer
            X-Request-ID:
              description: >-
                Stabilt korrelations-id for kaldet eller en idempotent
                gentagelse.
              schema:
                minLength: 1
                type: string
            WWW-Authenticate:
              description: Udfordring til bearer-godkendelse.
              example: Bearer realm="floral-api"
              schema:
                type: string
        '403':
          content:
            application/json:
              example:
                error:
                  code: FORBIDDEN
                  message: Adgangsoplysningen giver ikke adgang til denne handling.
                  requestId: 550e8400-e29b-41d4-a716-446655440000
              schema:
                allOf:
                  - $ref: '#/components/schemas/ApiErrorResponse'
                properties:
                  error:
                    properties:
                      code:
                        enum:
                          - FORBIDDEN
                        type: string
                    required:
                      - code
                    type: object
                type: object
          description: 'Stabile fejl: FORBIDDEN'
          headers:
            X-Content-Type-Options:
              description: Angiver altid nosniff ved JSON API-svar.
              schema:
                const: nosniff
                type: string
            X-RateLimit-Limit:
              description: Højeste antal kald i det aktuelle tidsvindue.
              schema:
                minimum: 1
                type: integer
            X-RateLimit-Remaining:
              description: Resterende kald i det aktuelle tidsvindue.
              schema:
                minimum: 0
                type: integer
            X-Request-ID:
              description: >-
                Stabilt korrelations-id for kaldet eller en idempotent
                gentagelse.
              schema:
                minLength: 1
                type: string
        '404':
          content:
            application/json:
              example:
                error:
                  code: NOT_FOUND
                  message: Ressourcen blev ikke fundet.
                  requestId: 550e8400-e29b-41d4-a716-446655440000
              schema:
                allOf:
                  - $ref: '#/components/schemas/ApiErrorResponse'
                properties:
                  error:
                    properties:
                      code:
                        enum:
                          - NOT_FOUND
                          - FEATURE_DISABLED
                        type: string
                    required:
                      - code
                    type: object
                type: object
          description: 'Stabile fejl: NOT_FOUND, FEATURE_DISABLED'
          headers:
            X-Content-Type-Options:
              description: Angiver altid nosniff ved JSON API-svar.
              schema:
                const: nosniff
                type: string
            X-RateLimit-Limit:
              description: Højeste antal kald i det aktuelle tidsvindue.
              schema:
                minimum: 1
                type: integer
            X-RateLimit-Remaining:
              description: Resterende kald i det aktuelle tidsvindue.
              schema:
                minimum: 0
                type: integer
            X-Request-ID:
              description: >-
                Stabilt korrelations-id for kaldet eller en idempotent
                gentagelse.
              schema:
                minLength: 1
                type: string
        '429':
          content:
            application/json:
              example:
                error:
                  code: RATE_LIMITED
                  message: For mange kald. Prøv igen om lidt.
                  requestId: 550e8400-e29b-41d4-a716-446655440000
              schema:
                allOf:
                  - $ref: '#/components/schemas/ApiErrorResponse'
                properties:
                  error:
                    properties:
                      code:
                        enum:
                          - RATE_LIMITED
                        type: string
                    required:
                      - code
                    type: object
                type: object
          description: 'Stabile fejl: RATE_LIMITED'
          headers:
            X-Content-Type-Options:
              description: Angiver altid nosniff ved JSON API-svar.
              schema:
                const: nosniff
                type: string
            X-RateLimit-Limit:
              description: Højeste antal kald i det aktuelle tidsvindue.
              schema:
                minimum: 1
                type: integer
            X-RateLimit-Remaining:
              description: Resterende kald i det aktuelle tidsvindue.
              schema:
                minimum: 0
                type: integer
            X-Request-ID:
              description: >-
                Stabilt korrelations-id for kaldet eller en idempotent
                gentagelse.
              schema:
                minLength: 1
                type: string
            Retry-After:
              description: Sekunder til den aktuelle grænse nulstilles.
              schema:
                minimum: 1
                type: integer
        '500':
          content:
            application/json:
              example:
                error:
                  code: INTERNAL_ERROR
                  message: Der opstod en uventet fejl.
                  requestId: 550e8400-e29b-41d4-a716-446655440000
              schema:
                allOf:
                  - $ref: '#/components/schemas/ApiErrorResponse'
                properties:
                  error:
                    properties:
                      code:
                        enum:
                          - INTERNAL_ERROR
                        type: string
                    required:
                      - code
                    type: object
                type: object
          description: 'Stabile fejl: INTERNAL_ERROR'
          headers:
            X-Content-Type-Options:
              description: Angiver altid nosniff ved JSON API-svar.
              schema:
                const: nosniff
                type: string
            X-RateLimit-Limit:
              description: Højeste antal kald i det aktuelle tidsvindue.
              schema:
                minimum: 1
                type: integer
            X-RateLimit-Remaining:
              description: Resterende kald i det aktuelle tidsvindue.
              schema:
                minimum: 0
                type: integer
            X-Request-ID:
              description: >-
                Stabilt korrelations-id for kaldet eller en idempotent
                gentagelse.
              schema:
                minLength: 1
                type: string
      security:
        - bearerAuth: []
      x-codeSamples:
        - label: cURL
          lang: Shell
          source: |-
            curl --request GET \
              --url 'https://app.floral.so/api/v1/workspaces/acme-nordic/events/42/participants?limit=20&registrationState=REGISTERED' \
              --header 'Authorization: Bearer $FLORAL_TOKEN'
components:
  schemas:
    EventParticipantListResponse:
      $schema: https://json-schema.org/draft/2020-12/schema
      type: object
      properties:
        items:
          maxItems: 50
          type: array
          items:
            type: object
            properties:
              attendanceState:
                type: string
                enum:
                  - UNKNOWN
                  - ATTENDED
                  - NO_SHOW
              company:
                anyOf:
                  - type: object
                    properties:
                      id:
                        type: integer
                        exclusiveMinimum: 0
                        maximum: 9007199254740991
                      name:
                        type: string
                    required:
                      - id
                      - name
                    additionalProperties: false
                  - type: 'null'
              companyName:
                type:
                  - string
                  - 'null'
              createdAt:
                type: string
                format: date-time
                pattern: >-
                  ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
              email:
                type:
                  - string
                  - 'null'
              eventId:
                type: integer
                exclusiveMinimum: 0
                maximum: 9007199254740991
              id:
                type: string
                format: uuid
                pattern: >-
                  ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
              matchStatus:
                type: string
                enum:
                  - UNMATCHED
                  - MATCHED
                  - AMBIGUOUS
                  - REVIEWED
              name:
                type:
                  - string
                  - 'null'
              person:
                anyOf:
                  - type: object
                    properties:
                      id:
                        type: integer
                        exclusiveMinimum: 0
                        maximum: 9007199254740991
                      name:
                        type: string
                    required:
                      - id
                      - name
                    additionalProperties: false
                  - type: 'null'
              phone:
                type:
                  - string
                  - 'null'
              registrationState:
                type: string
                enum:
                  - REGISTERED
                  - WAITLISTED
                  - CANCELLED
              representedCompany:
                anyOf:
                  - type: object
                    properties:
                      establishmentNumber:
                        type:
                          - string
                          - 'null'
                      id:
                        anyOf:
                          - type: integer
                            exclusiveMinimum: 0
                            maximum: 9007199254740991
                          - type: 'null'
                      name:
                        type: string
                    required:
                      - establishmentNumber
                      - id
                      - name
                    additionalProperties: false
                  - type: 'null'
              responses:
                type: object
                propertyNames:
                  type: string
                  minLength: 1
                  maxLength: 64
                additionalProperties:
                  type: object
                  properties:
                    answeredAt:
                      type: string
                      format: date-time
                      pattern: >-
                        ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
                    value:
                      anyOf:
                        - type: string
                        - type: number
                        - type: boolean
                        - type: array
                          items:
                            type: string
                  required:
                    - answeredAt
                    - value
                  additionalProperties: false
              source:
                type: string
                enum:
                  - HOSTED
                  - EMBED
                  - MANUAL
                  - WALK_IN
                  - AGENT
                  - API
              updatedAt:
                type: string
                format: date-time
                pattern: >-
                  ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
              version:
                type: string
                minLength: 1
                maxLength: 512
                pattern: ^v1\.[A-Za-z0-9_-]+$
              waitlistPosition:
                anyOf:
                  - type: integer
                    exclusiveMinimum: 0
                    maximum: 9007199254740991
                  - type: 'null'
            required:
              - attendanceState
              - company
              - companyName
              - createdAt
              - email
              - eventId
              - id
              - matchStatus
              - name
              - person
              - phone
              - registrationState
              - representedCompany
              - responses
              - source
              - updatedAt
              - version
              - waitlistPosition
            additionalProperties: false
        nextCursor:
          anyOf:
            - type: string
              minLength: 1
              maxLength: 512
            - type: 'null'
      required:
        - items
        - nextCursor
      additionalProperties: false
    ApiErrorResponse:
      additionalProperties: false
      properties:
        error:
          additionalProperties: false
          properties:
            code:
              enum:
                - CONFLICT
                - FEATURE_DISABLED
                - FORBIDDEN
                - IDEMPOTENCY_CONFLICT
                - INTERNAL_ERROR
                - INVALID_INPUT
                - INVALID_STATE
                - NOT_FOUND
                - PRECONDITION_REQUIRED
                - RATE_LIMITED
                - UNAUTHENTICATED
                - VERSION_CONFLICT
              type: string
            message:
              minLength: 1
              type: string
            requestId:
              maxLength: 128
              minLength: 1
              type: string
          required:
            - code
            - message
            - requestId
          type: object
      required:
        - error
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: Floral PAT
      description: >-
        Godkend med en personlig Floral-adgangsnøgle, der er bundet til ét
        arbejdsområde.
      scheme: bearer
      type: http

````