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

# Update Member Access Profile

> Updates member-owned display, language, bandwidth, and accessibility-support preferences. Set `share_with_support_team` before using `request_support`; turning sharing off removes the profile from the staff support queue.



## OpenAPI

````yaml /api-reference/openapi.json put /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:
    put:
      tags:
        - Access & Inclusion
      summary: Update Member Access Profile
      description: >-
        Updates member-owned display, language, bandwidth, and
        accessibility-support preferences. Set `share_with_support_team` before
        using `request_support`; turning sharing off removes the profile from
        the staff support queue.
      operationId: putPlatformAccessProfile
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties:
                preferred_locale:
                  type:
                    - string
                    - 'null'
                  description: Preferred interface and content locale.
                preferred_caption_language:
                  type:
                    - string
                    - 'null'
                  description: Preferred caption language.
                text_scale:
                  type: string
                  description: App text-size preference.
                  enum:
                    - system
                    - large
                    - extra_large
                contrast_mode:
                  type: string
                  description: App contrast preference.
                  enum:
                    - system
                    - high
                reading_font:
                  type: string
                  description: Reading presentation preference.
                  enum:
                    - system
                    - dyslexia_friendly
                reduce_motion:
                  type: boolean
                  description: Reduce non-essential app motion.
                audio_first:
                  type: boolean
                  description: Prefer audio-first experiences where available.
                data_saver:
                  type: boolean
                  description: Prefer lighter network use.
                load_images:
                  type: boolean
                  description: Load optional network images.
                large_print_bulletins:
                  type: boolean
                  description: Request large-print bulletin support.
                sign_language_interpreter:
                  type: boolean
                  description: Request sign-language interpretation support.
                mobility_assistance:
                  type: boolean
                  description: Request mobility assistance.
                audio_description:
                  type: boolean
                  description: Request audio description where available.
                sensory_notes:
                  type:
                    - string
                    - 'null'
                  description: Private sensory-support notes.
                  maxLength: 2000
                dietary_allergy_notes:
                  type:
                    - string
                    - 'null'
                  description: Private dietary and allergy notes.
                  maxLength: 2000
                additional_support_notes:
                  type:
                    - string
                    - 'null'
                  description: Other private access-support notes.
                  maxLength: 2000
                share_with_support_team:
                  type: boolean
                  description: >-
                    Allow an authorized church support team to view this
                    profile.
                request_support:
                  type: boolean
                  description: Place the shared profile in the church support queue.
            example:
              preferred_locale: sw
              text_scale: large
              data_saver: true
              load_images: false
              mobility_assistance: true
              share_with_support_team: true
              request_support: true
      responses:
        '200':
          description: Access profile updated.
          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
        '401':
          $ref: '#/components/responses/Unauthorized'
        '422':
          $ref: '#/components/responses/ValidationError'
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'
    ValidationError:
      description: One or more request fields failed validation.
      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`.

````