> ## 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.

# Get Member Access Profile

> Returns the authenticated member’s app preferences, member-owned accessibility-support details, church language settings, and available offline capabilities. Support details are never exposed through a staff API unless the member explicitly shares them.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/platform/access-profile
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: Pastoral Care
    description: >-
      Manage the authenticated member’s confidential care requests,
      consent-based follow-up preferences, private life moments, and quiet days.
  - 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.
  - name: Access & Inclusion
    description: >-
      Manage the authenticated member’s display, language, bandwidth, and
      explicitly shared accessibility-support preferences.
paths:
  /v1/platform/access-profile:
    get:
      tags:
        - Access & Inclusion
      summary: Get Member Access Profile
      description: >-
        Returns the authenticated member’s app preferences, member-owned
        accessibility-support details, church language settings, and available
        offline capabilities. Support details are never exposed through a staff
        API unless the member explicitly shares them.
      operationId: getPlatformAccessProfile
      responses:
        '200':
          description: Access profile returned.
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
              example:
                data:
                  profile:
                    preferred_locale: sw
                    preferred_caption_language: en
                    text_scale: large
                    contrast_mode: high
                    reading_font: dyslexia_friendly
                    reduce_motion: true
                    audio_first: false
                    data_saver: true
                    load_images: false
                    large_print_bulletins: true
                    sign_language_interpreter: false
                    mobility_assistance: true
                    audio_description: false
                    sensory_notes: null
                    dietary_allergy_notes: null
                    additional_support_notes: null
                    share_with_support_team: true
                    support_request_status: requested
                  church:
                    default_locale: en
                    supported_locales:
                      - en
                      - sw
                    access_support_email: care@example.church
                    low_bandwidth_stream_url: https://stream.example.church/audio
                  offline_capabilities:
                    - key: sermons
                      label: Downloaded sermon audio
                      available: true
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  responses:
    Unauthorized:
      description: >-
        The API key or member bearer token is missing, invalid, expired, or
        belongs to another church.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  schemas:
    ErrorResponse:
      type: object
      description: >-
        Error response. Validation failures also include an `errors` object
        keyed by field name.
      properties:
        status:
          type: string
          example: Error
        message:
          type: string
          example: The request could not be completed.
        error:
          type:
            - string
            - 'null'
          example: null
        error_message:
          type:
            - string
            - 'null'
          example: null
        errors:
          type: object
          additionalProperties: true
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        Public client key copied from Developer Access. The member bearer token
        authenticates the request.
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Sanctum
      description: Member access token returned by `POST /v1/auth/token`.

````