> ## 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 Community Coordination Profile

> Updates only the coordination details covered by the member's current consent. Locations must remain approximate, and all resulting suggestions require staff review before an introduction.



## OpenAPI

````yaml /api-reference/openapi.json put /v1/community/coordination-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/community/coordination-profile:
    put:
      tags:
        - Community Preferences & Research
      summary: Update Community Coordination Profile
      description: >-
        Updates only the coordination details covered by the member's current
        consent. Locations must remain approximate, and all resulting
        suggestions require staff review before an introduction.
      operationId: updateCommunityCoordinationProfile
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CoordinationProfileInput'
            example:
              skills_offered:
                - Carpentry
              skills_needed:
                - Meal preparation
              ride_role: offer
              ride_origin_zone: North Parish
              ride_destination_zone: Main Campus
              ride_days:
                - sunday
      responses:
        '200':
          description: Community coordination profile updated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CoordinationProfileResponse'
              examples:
                success:
                  summary: Coordination profile updated.
                  value:
                    status: Success
                    data:
                      coordination:
                        available: true
                        pilot_keys:
                          - skills_reciprocity
                          - recurring_rides
                        profile:
                          id: 42
                          skills_offered:
                            - carpentry
                          skills_needed:
                            - meal preparation
                          skills_help_count: 2
                          last_skills_helped_at: '2026-08-24T09:30:00.000000Z'
                          ride_role: offer
                          ride_origin_zone: North Parish
                          ride_destination_zone: Main Campus
                          ride_days:
                            - sunday
                          household_stage: midlife
                          can_offer:
                            - phone setup
                          would_value:
                            - gardening advice
                          neighborhood_zone: Maple Ward
                          active: true
                          updated_at: '2026-08-28T09:30:00.000000Z'
                        active_connections: 1
                        guardrails:
                          human_review_required: true
                          precise_location_collected: false
                          numeric_risk_score_created: false
                          staff_contact_before_introduction: true
        '401':
          description: Missing or invalid API key or member bearer token.
        '403':
          description: The member has not consented to the requested coordination area.
        '422':
          description: >-
            One or more profile values are invalid or outside the member's
            selected coordination areas.
components:
  schemas:
    CoordinationProfileInput:
      type: object
      minProperties: 1
      properties:
        skills_offered:
          type: array
          maxItems: 20
          uniqueItems: true
          items:
            type: string
            minLength: 2
            maxLength: 80
        skills_needed:
          type: array
          maxItems: 20
          uniqueItems: true
          items:
            type: string
            minLength: 2
            maxLength: 80
        ride_role:
          type: string
          enum:
            - none
            - offer
            - need
            - both
        ride_origin_zone:
          type:
            - string
            - 'null'
          minLength: 2
          maxLength: 100
        ride_destination_zone:
          type:
            - string
            - 'null'
          minLength: 2
          maxLength: 100
        ride_days:
          type: array
          maxItems: 7
          uniqueItems: true
          items:
            type: string
            enum:
              - monday
              - tuesday
              - wednesday
              - thursday
              - friday
              - saturday
              - sunday
        household_stage:
          type:
            - string
            - 'null'
          enum:
            - young_adult
            - young_family
            - midlife
            - older_adult
            - multi_generational
            - null
        can_offer:
          type: array
          maxItems: 20
          uniqueItems: true
          items:
            type: string
            minLength: 2
            maxLength: 80
        would_value:
          type: array
          maxItems: 20
          uniqueItems: true
          items:
            type: string
            minLength: 2
            maxLength: 80
        neighborhood_zone:
          type:
            - string
            - 'null'
          minLength: 2
          maxLength: 100
    CoordinationProfileResponse:
      type: object
      properties:
        status:
          type: string
          const: Success
        data:
          type: object
          properties:
            coordination:
              type: object
              properties:
                available:
                  type: boolean
                pilot_keys:
                  type: array
                  items:
                    type: string
                profile:
                  $ref: '#/components/schemas/CoordinationProfile'
                active_connections:
                  type: integer
                  minimum: 0
                guardrails:
                  type: object
                  properties:
                    human_review_required:
                      type: boolean
                      const: true
                    precise_location_collected:
                      type: boolean
                      const: false
                    numeric_risk_score_created:
                      type: boolean
                      const: false
                    staff_contact_before_introduction:
                      type: boolean
                      const: true
    CoordinationProfile:
      type: object
      properties:
        id:
          type:
            - integer
            - 'null'
        skills_offered:
          type: array
          items:
            type: string
        skills_needed:
          type: array
          items:
            type: string
        skills_help_count:
          type: integer
          minimum: 0
        last_skills_helped_at:
          type:
            - string
            - 'null'
          format: date-time
        ride_role:
          type: string
          enum:
            - none
            - offer
            - need
            - both
        ride_origin_zone:
          type:
            - string
            - 'null'
        ride_destination_zone:
          type:
            - string
            - 'null'
        ride_days:
          type: array
          items:
            type: string
        household_stage:
          type:
            - string
            - 'null'
        can_offer:
          type: array
          items:
            type: string
        would_value:
          type: array
          items:
            type: string
        neighborhood_zone:
          type:
            - string
            - 'null'
        active:
          type: boolean
        updated_at:
          type:
            - string
            - 'null'
          format: date-time
  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`.

````