> ## Documentation Index
> Fetch the complete documentation index at: https://domoinc-openapi-sync-dataflows.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Activity Log Object Types

> Retrieves a list of available object types that can be queried in the Activity Log API.



## OpenAPI

````yaml /openapi/product/activitylog.yaml get /api/audit/v1/user-audits/objectTypes
openapi: 3.0.0
info:
  title: Activity Log API
  version: v1
  description: |
    The Activity Log API allows users to retrieve audit logs and 
    enumerate object types within their Domo instance.
servers:
  - url: https://{domo_instance}.domo.com
    description: Domo Instance URL
    variables:
      domo_instance:
        default: api
        description: Your specific Domo instance name (e.g., mycompany)
security:
  - developerToken: []
paths:
  /api/audit/v1/user-audits/objectTypes:
    get:
      tags:
        - Activity Log API
      summary: Get Activity Log Object Types
      description: >-
        Retrieves a list of available object types that can be queried in the
        Activity Log API.
      responses:
        '200':
          description: An array of object types.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: string
                example:
                  - ACCOUNT
                  - DATAFLOW_TYPE
                  - DATA_SOURCE
        '401':
          description: Unauthorized (e.g., invalid developer token).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        message:
          type: string
          description: A human-readable error message.
  securitySchemes:
    developerToken:
      type: apiKey
      in: header
      name: X-DOMO-Developer-Token
      description: Domo Developer Token for authentication.

````