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

# Show activity by ID performed by a profile.



## OpenAPI

````yaml /openapi/chat-client.yaml get /profiles/{profileId}/activities/{activityId}
openapi: 3.0.3
info:
  version: 1.0.0
  title: HealviChat Client API
servers:
  - url: https://{tenant_domain}/third-party/v1
    variables:
      tenant_domain:
        default: your-tenant.onhealvi.com
        description: Your tenant domain
security:
  - bearerAuth: []
paths:
  /profiles/{profileId}/activities/{activityId}:
    get:
      tags:
        - profiles
      summary: Show activity by ID performed by a profile.
      parameters:
        - in: path
          name: profileId
          schema:
            type: integer
          required: true
        - in: path
          name: activityId
          schema:
            type: integer
          required: true
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/Activity'
components:
  schemas:
    Activity:
      description: >
        Describes an activity performed by a profile. For example, when a
        customer messages the business for the first

        time, a "privacy message" informing the customer will be sent. This will
        be persisted as an activity of

        type "privacy_message".
      type: object
      properties:
        id:
          type: integer
        type:
          $ref: '#/components/schemas/ActivityType'
        value:
          description: Optional data for given activity type.
          type: object
          nullable: true
        created_at:
          description: Datetime when activity was created.
          type: string
          format: date-time
          nullable: true
          example: '2023-01-01T12:00:00Z'
        updated_at:
          description: Datetime when activity was last updated.
          type: string
          format: date-time
          nullable: true
          example: '2023-01-01T12:00:00Z'
    ActivityType:
      description: Type of activity.
      type: string
      enum:
        - customer_initiated_conversation
        - privacy_message
        - welcome_message
        - marketing_opt_in
        - marketing_opt_out
        - rating
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````