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

# List users

> Returns all active users in your organization with their activity data.



## OpenAPI

````yaml /openapi.json get /v1/users
openapi: 3.1.0
info:
  title: Sales Ask API
  version: 1.0.0
  description: >-
    Public API for integrating with Sales Ask. Authenticate every request using
    your organization API key in the x-api-key header. To generate an API key,
    call POST /organizations/:organizationId/api-key while authenticated as an
    organization admin.
servers:
  - url: https://integrations.salesask.com
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /v1/users:
    get:
      tags:
        - Users
      summary: List users
      description: Returns all active users in your organization with their activity data.
      operationId: listUsers
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  users:
                    type: array
                    items:
                      $ref: '#/components/schemas/User'
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    User:
      type: object
      properties:
        name:
          type: string
          nullable: true
          example: Jane Smith
        email:
          type: string
          format: email
          nullable: true
          example: jane@example.com
        lastProcessAIAction:
          type: string
          nullable: true
          description: Description of the last Process AI action the user performed
        lastProcessAIAt:
          type: string
          format: date-time
          nullable: true
          description: When the user last used the Process AI feature
        lastCoachDeanAction:
          type: string
          nullable: true
          description: Description of the last Coach Dean action the user performed
        lastCoachDeanAt:
          type: string
          format: date-time
          nullable: true
          description: When the user last interacted with Coach Dean
        lastRecordedAt:
          type: string
          format: date-time
          nullable: true
          description: When the user last had a recording processed
        accessedAt:
          type: string
          format: date-time
          nullable: true
          description: When the user last accessed the platform
        updatedAt:
          type: string
          format: date-time
          nullable: true
        createdAt:
          type: string
          format: date-time
          nullable: true
    Error:
      type: object
      properties:
        message:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````