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

# Register For Event

> Creates a built-in registration for the authenticated member.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/events/{event}/register
openapi: 3.1.0
info:
  title: TheFaithApp Partner API
  version: 1.0.0
  description: >-
    The v1 API for third-party apps that sign in TheFaithApp members and access
    church-scoped content and workflows.
  contact:
    name: TheFaithApp Support
    email: support@thefaithapp.com
servers:
  - url: https://api.thefaithapp.com
    description: Production
security:
  - apiKeyAuth: []
    bearerAuth: []
tags:
  - name: Hosted Auth
    description: Sign members in through the hosted TheFaithApp authentication flow.
  - name: Core Experience
    description: Load member context and the personalized home experience.
  - name: Content
    description: >-
      Read sermons, media, YouTube videos, devotionals, and streaming
      configuration.
  - name: Engagement
    description: Manage member favorites and devotional bookmarks.
  - name: Churches
    description: Read church profiles, public directory records, and branch information.
  - name: Events & Volunteers
    description: >-
      Browse events and volunteer opportunities, then manage registrations and
      commitments.
  - name: Notifications & Bulletins
    description: Read church and member notifications and published bulletins.
  - name: Prayer
    description: Submit a prayer request for the authenticated member.
  - name: Member Connections
    description: Manage the member’s campus and ministry connections.
  - name: Community Groups
    description: >-
      Discover groups and manage membership, feeds, attendance, study guides,
      and leader notes.
  - name: Community Preferences & Research
    description: >-
      Manage community preferences, summaries, and consent-based research
      participation.
  - name: Resource Sharing
    description: Offer shared resources and manage member loan requests and transitions.
  - name: Mutual Aid
    description: >-
      Manage needs and offers, private responses, safety reports, and member
      activity.
  - name: Analytics
    description: Record product analytics events and retrieve aggregate metrics.
  - name: Notification Analytics
    description: Record and summarize notification delivery, open, and click events.
paths:
  /v1/events/{event}/register:
    post:
      tags:
        - Events & Volunteers
      summary: Register For Event
      description: Creates a built-in registration for the authenticated member.
      operationId: postEventsEventRegister
      parameters:
        - name: event
          in: path
          description: Unique identifier of the event to register for.
          required: true
          schema:
            type: integer
            example: 132
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - registrant_name
                - registrant_email
                - member_id
              properties:
                registrant_name:
                  type: string
                  example: Jane Doe
                registrant_email:
                  type: string
                  format: email
                  example: jane@example.com
                phone:
                  type: string
                  example: '+256700000000'
                guests:
                  type: integer
                  example: 1
                notes:
                  type: string
                  example: Looking forward to it
                member_id:
                  type: integer
                  example: 1
            example:
              registrant_name: Jane Doe
              registrant_email: jane@example.com
              phone: '+256700000000'
              guests: 1
              notes: Looking forward to it
              member_id: 1
      responses:
        '201':
          description: Registration created successfully.
          content:
            application/json:
              schema:
                type: object
              example:
                status: Success
                message: Registration successful
                data:
                  id: 1
                  event_id: 132
                  member_id: 1
                  name: Jane Doe
                  email: jane@example.com
                  phone: '+256700000000'
                  guests: 1
                  notes: Looking forward to it
                  status: registered
                  registration_date: '2026-05-27T17:57:14.000000Z'
                  checked_in: false
                  check_in_time: null
        '400':
          description: The event cannot be registered for in its current state.
        '401':
          description: Unauthorized - Missing or invalid API key or member bearer token.
        '404':
          description: Event or member not found.
        '422':
          description: Validation failed.
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        Client API key copied from Developer Access in the TheFaithApp
        dashboard.
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Sanctum
      description: Member access token returned by `POST /v1/auth/token`.

````