> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nuvera.global/llms.txt
> Use this file to discover all available pages before exploring further.

# Get beneficiary activity log

> Get the full activity timeline for a beneficiary.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/customers/{customerId}/beneficiaries/{id}/activity
openapi: 3.1.0
info:
  title: Nuvera API
  description: Nuvera Payment Platform REST API
  version: '1.0'
  contact: {}
servers:
  - url: http://localhost:45000
security: []
tags: []
paths:
  /api/v1/customers/{customerId}/beneficiaries/{id}/activity:
    get:
      tags:
        - Beneficiaries
      summary: Get beneficiary activity log
      description: Get the full activity timeline for a beneficiary.
      operationId: BeneficiaryController_activity
      parameters:
        - name: customerId
          required: true
          in: path
          schema:
            type: string
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        default:
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActivityLogListOutputDto_Output'
      security:
        - x-api-key: []
          signed-request: []
components:
  schemas:
    ActivityLogListOutputDto_Output:
      type: object
      properties:
        items:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              entityType:
                type: string
              entityId:
                type: string
              eventType:
                type: string
                enum:
                  - STATUS_CHANGE
                  - PHASE_CHANGE
                  - ASSIGNMENT_CHANGE
                  - COMMENT
              fromStatus:
                anyOf:
                  - type: string
                  - type: 'null'
              toStatus:
                type: string
              note:
                anyOf:
                  - type: string
                  - type: 'null'
              targetUserId:
                anyOf:
                  - type: string
                  - type: 'null'
              targetUserFirstName:
                anyOf:
                  - type: string
                  - type: 'null'
              targetUserLastName:
                anyOf:
                  - type: string
                  - type: 'null'
              createdById:
                type: string
              createdByFirstName:
                anyOf:
                  - type: string
                  - type: 'null'
              createdByLastName:
                anyOf:
                  - type: string
                  - type: 'null'
              createdByRole:
                type: string
              createdAt:
                type: string
            required:
              - id
              - entityType
              - entityId
              - eventType
              - fromStatus
              - toStatus
              - note
              - targetUserId
              - targetUserFirstName
              - targetUserLastName
              - createdById
              - createdByFirstName
              - createdByLastName
              - createdByRole
              - createdAt
            additionalProperties: false
      required:
        - items
      additionalProperties: false
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key
      description: Nuvera API application secret key
    signed-request:
      scheme: bearer
      bearerFormat: JWT
      type: http
      description: RS256 per-request signed JWT

````