> ## 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 Profile Details (Legacy)

> Compatibility route for updating the authenticated member profile. New integrations should use `PUT /v1/member`.



## OpenAPI

````yaml /api-reference/openapi.json put /v1/member/details
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/member/details:
    put:
      tags:
        - Core Experience
      summary: Update Member Profile Details (Legacy)
      description: >-
        Compatibility route for updating the authenticated member profile. New
        integrations should use `PUT /v1/member`.
      operationId: putMemberDetails
      requestBody:
        description: Member details to update
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                phone:
                  type: string
                  description: >-
                    Member's phone number in international format (e.g.,
                    +1234567890).
                  example: '+1234567890'
                gender:
                  type: string
                  description: >-
                    Member's gender. Common values include 'male', 'female',
                    'other'.
                  example: male
                  enum:
                    - male
                    - female
                    - other
                bio:
                  type: string
                  description: Member's biography or personal description.
                  example: Member's biography here
      responses:
        '200':
          description: Member details updated successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: Success message indicating the update was successful.
                    example: Member details updated successfully
                  member:
                    type: object
                    description: Updated member object containing all member details.
                    properties:
                      id:
                        type: integer
                        description: Unique identifier for the member.
                        example: 1
                      client_id:
                        type: integer
                        description: ID of the church/client this member belongs to.
                        example: 2
                      name:
                        type: string
                        description: Full name of the member.
                        example: Nick A. Boyer
                      login_type:
                        type: string
                        description: >-
                          Authentication method used by the member (e.g.,
                          'firebase').
                        example: firebase
                      deleted_at:
                        type:
                          - string
                          - 'null'
                        format: date-time
                        description: >-
                          Timestamp when the member was deleted, or null if not
                          deleted.
                        example: null
                      created_at:
                        type: string
                        format: date-time
                        description: Timestamp when the member was created.
                        example: '2025-05-02T15:35:36.000000Z'
                      updated_at:
                        type: string
                        format: date-time
                        description: Timestamp when the member was last updated.
                        example: '2025-05-24T11:43:29.000000Z'
                      email:
                        type: string
                        format: email
                        description: Member's email address.
                        example: jarzikedru@gufum.com
                      uuid:
                        type: string
                        description: >-
                          Unique identifier from the authentication provider
                          (e.g., Firebase UID).
                        example: 9JDO5QVUNFYWd9apKGiJEuLsDRE3
                      phone:
                        type: string
                        description: Member's phone number in international format.
                        example: '+1234567890'
                      gender:
                        type: string
                        description: Member's gender.
                        example: male
                      bio:
                        type: string
                        description: Member's biography or personal description.
                        example: Member's biography here
              examples:
                success:
                  summary: Successful update response
                  value:
                    message: Member details updated successfully
                    member:
                      id: 1
                      client_id: 2
                      name: Nick A. Boyer
                      login_type: firebase
                      deleted_at: null
                      created_at: '2025-05-02T15:35:36.000000Z'
                      updated_at: '2025-05-24T11:43:29.000000Z'
                      email: jarzikedru@gufum.com
                      uuid: 9JDO5QVUNFYWd9apKGiJEuLsDRE3
                      phone: '+1234567890'
                      gender: male
                      bio: Member's biography here
        '401':
          description: Unauthorized - Missing or invalid API key or member bearer token.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error_message:
                    type: string
                    example: Unauthorized
        '404':
          description: Member not found.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Member not found
        '422':
          description: Validation error - Invalid input data.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Invalid phone number format
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`.

````