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

# Get session identity history

> Get the identity-change history for a session — every recorded
mutation of email / name / userId on this contact record. Stripped
from default session responses (see session.model.ts toJSON), so
this is the only path that returns it.



## OpenAPI

````yaml https://api.gleap.io/api-docs.json get /sessions/{sessionId}/identity-history
openapi: 3.0.0
info:
  title: gleap-server
  version: 14.0.0
  contact: {}
servers:
  - url: https://api.gleap.io/v3
security: []
paths:
  /sessions/{sessionId}/identity-history:
    get:
      tags:
        - Session
      summary: Get session identity history
      description: |-
        Get the identity-change history for a session — every recorded
        mutation of email / name / userId on this contact record. Stripped
        from default session responses (see session.model.ts toJSON), so
        this is the only path that returns it.
      operationId: GetSessionIdentityHistory
      parameters:
        - in: path
          name: sessionId
          required: true
          schema:
            type: string
        - in: header
          name: project
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                properties:
                  history: {}
                required:
                  - history
                type: object
      security:
        - jwt: []
components:
  securitySchemes:
    jwt:
      type: http
      scheme: bearer
      bearerFormat: JWT

````