> ## 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 My Mutual-Aid Activity

> Returns mutual-aid posts created by the member and responses submitted by the member.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/mutual-aid-activity
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/mutual-aid-activity:
    get:
      tags:
        - Mutual Aid
      summary: Get My Mutual-Aid Activity
      description: >-
        Returns mutual-aid posts created by the member and responses submitted
        by the member.
      operationId: getMutualAidActivity
      responses:
        '200':
          description: Mutual-aid activity loaded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MutualAidActivityResponse'
              examples:
                success:
                  summary: Mutual-aid activity loaded.
                  value:
                    status: Success
                    data:
                      activity:
                        posts:
                          - id: 731
                            uuid: 9d693cc6-a354-4f7f-b656-070b7ab48d2e
                            kind: need
                            category: one_time_transport
                            specialized_details: {}
                            title: Ride to Sunday service
                            details: >-
                              Looking for a ride from the northern side of town
                              this Sunday morning.
                            visibility: church
                            branch: null
                            community_group: null
                            outreach_campaign: null
                            approximate_location: Northern Kampala
                            author:
                              id: 308
                              name: Jordan A.
                            is_owner: true
                            show_author_name: true
                            urgency: normal
                            contact_preference: in_app
                            status: open
                            pause_reason: null
                            response_count: 1
                            published_at: '2026-07-18T09:30:00.000000Z'
                            expires_at: '2026-07-21T09:30:00.000000Z'
                            closed_at: null
                            review_note: null
                            created_at: '2026-07-18T09:30:00.000000Z'
                            updated_at: '2026-07-18T09:30:00.000000Z'
                            responses:
                              - id: 902
                                post_id: 731
                                responder:
                                  id: 415
                                  name: Casey M.
                                private_message: >-
                                  I can help with transport. Please message me
                                  in the app.
                                status: pending
                                chat_channel_id: null
                                responded_at: '2026-07-18T10:15:00.000000Z'
                                decided_at: null
                                completed_at: null
                            audits:
                              - id: 1001
                                action: created
                                from_status: null
                                to_status: open
                                reason: null
                                metadata: null
                                actor: null
                                created_at: '2026-07-18T09:30:00.000000Z'
                        responses:
                          - id: 902
                            post_id: 731
                            responder:
                              id: 415
                              name: Casey M.
                            private_message: >-
                              I can help with transport. Please message me in
                              the app.
                            status: pending
                            chat_channel_id: null
                            responded_at: '2026-07-18T10:15:00.000000Z'
                            decided_at: null
                            completed_at: null
                            post:
                              id: 744
                              title: Help moving chairs
                              kind: need
                              category: practical_help
                              status: open
        '401':
          description: Missing or invalid API key or member bearer token.
        '403':
          description: The member is not eligible for mutual aid.
        '404':
          description: Mutual aid is not enabled for this church.
components:
  schemas:
    MutualAidActivityResponse:
      type: object
      properties:
        status:
          type: string
          const: Success
        data:
          type: object
          properties:
            activity:
              type: object
              properties:
                posts:
                  type: array
                  items:
                    $ref: '#/components/schemas/MutualAidPost'
                responses:
                  type: array
                  items:
                    $ref: '#/components/schemas/MutualAidResponse'
    MutualAidPost:
      allOf:
        - $ref: '#/components/schemas/MutualAidPostFields'
        - type: object
          properties:
            id:
              type: integer
            uuid:
              type: string
              format: uuid
            branch:
              type:
                - object
                - 'null'
              additionalProperties: true
            community_group:
              type:
                - object
                - 'null'
              additionalProperties: true
            outreach_campaign:
              type:
                - object
                - 'null'
              additionalProperties: true
            author:
              type: object
              properties:
                id:
                  type:
                    - integer
                    - 'null'
                name:
                  type: string
            is_owner:
              type: boolean
            status:
              type: string
              enum:
                - pending_review
                - changes_requested
                - open
                - matched
                - fulfilled
                - closed
                - expired
                - rejected
            pause_reason:
              type:
                - string
                - 'null'
            response_count:
              type: integer
              minimum: 0
            responses:
              type: array
              items:
                $ref: '#/components/schemas/MutualAidResponse'
            published_at:
              type:
                - string
                - 'null'
              format: date-time
            closed_at:
              type:
                - string
                - 'null'
              format: date-time
            created_at:
              type:
                - string
                - 'null'
              format: date-time
            updated_at:
              type:
                - string
                - 'null'
              format: date-time
    MutualAidResponse:
      type: object
      properties:
        id:
          type: integer
        post_id:
          type: integer
        post:
          type: object
          properties:
            id:
              type: integer
            title:
              type: string
            kind:
              type: string
            category:
              $ref: '#/components/schemas/MutualAidCategory'
            status:
              type: string
        responder:
          type: object
          properties:
            id:
              type: integer
            name:
              type: string
        private_message:
          type: string
        status:
          type: string
          enum:
            - pending
            - accepted
            - declined
            - withdrawn
            - completed
        chat_channel_id:
          type:
            - integer
            - 'null'
        responded_at:
          type:
            - string
            - 'null'
          format: date-time
        decided_at:
          type:
            - string
            - 'null'
          format: date-time
        completed_at:
          type:
            - string
            - 'null'
          format: date-time
    MutualAidPostFields:
      type: object
      properties:
        kind:
          type: string
          enum:
            - need
            - offer
        category:
          $ref: '#/components/schemas/MutualAidCategory'
        specialized_details:
          type:
            - object
            - 'null'
          additionalProperties: false
          properties:
            employment_help_type:
              type:
                - string
                - 'null'
              enum:
                - job_opening
                - job_seeking
                - career_mentoring
                - resume_interview_help
                - null
            work_mode:
              type:
                - string
                - 'null'
              enum:
                - onsite
                - remote
                - hybrid
                - not_applicable
                - null
            commitment:
              type:
                - string
                - 'null'
              enum:
                - one_time
                - short_term
                - ongoing
                - not_applicable
                - null
        title:
          type: string
          minLength: 3
          maxLength: 120
        details:
          type: string
          minLength: 10
          maxLength: 3000
        visibility:
          $ref: '#/components/schemas/MutualAidVisibility'
        branch_id:
          type:
            - integer
            - 'null'
        community_group_id:
          type:
            - integer
            - 'null'
        approximate_location:
          type:
            - string
            - 'null'
          maxLength: 100
        show_author_name:
          type: boolean
        urgency:
          type: string
          enum:
            - normal
            - time_sensitive
        contact_preference:
          type: string
          enum:
            - in_app
            - leader
        expires_at:
          type:
            - string
            - 'null'
          format: date-time
    MutualAidCategory:
      type: string
      enum:
        - meals_groceries
        - one_time_transport
        - clothing_household
        - school_supplies
        - practical_help
        - employment_information
        - donation_drive
        - other
        - temporary_housing
        - emergency_financial_support
        - medical_equipment
    MutualAidVisibility:
      type: string
      enum:
        - church
        - campus
        - community_group
        - leaders
  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`.

````