> ## 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.

# Get info about activity types (used in profile activity)



## OpenAPI

````yaml /openapi/chat-client.yaml get /support/activity-types
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:
  /support/activity-types:
    get:
      tags:
        - support
      summary: Get info about activity types (used in profile activity)
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        type:
                          type: string
                          example: privacy_message
                        label:
                          deprecated: true
                          description: |
                            Readable label of activity type.
                            Deprecated, translate locally instead.
                          type: string
                          example: Datenschutzhinweis gesendet
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````