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

# Get single collaborator history

> Retrieve history for a specific collaborator



## OpenAPI

````yaml get /v1/collaborators/{id}/history
openapi: 3.1.0
info:
  title: Capital Check In API
  description: >-
    API for the Capital Check In platform - Employee check-in management system
    with identity verification, geolocation, and schedule management
  license:
    name: MIT
  version: 1.0.0
  contact:
    name: Capital Check In Support
    email: hi@capitalcheckin.app
    url: https://capitalcheckin.app
servers:
  - url: https://api.capitalcheckin.app
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/collaborators/{id}/history:
    get:
      tags:
        - Collaborators
      summary: Get single collaborator history
      description: Retrieve history for a specific collaborator
      parameters:
        - name: id
          in: path
          required: true
          description: Collaborator ID
          schema:
            type: string
      responses:
        '200':
          description: Collaborator history
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CollaboratorHistoryResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    CollaboratorHistoryResponse:
      type: object
      properties:
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
                description: History entry ID
              action:
                type: string
                description: Action performed
              description:
                type: string
                description: Description of the action
              timestamp:
                type: string
                format: date-time
                description: When the action occurred
              user_id:
                type: string
                description: User who performed the action
          description: List of history entries
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: OAuth2
      description: OAuth2 access token for authentication

````