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

# Get access issues

> Get authentication and authorization failures



## OpenAPI

````yaml /swagger/5.12/ai-studio-swagger.yml get /compliance/access-issues
openapi: 3.0.1
info:
  title: Midsommar API
  description: This is the API for the Midsommar user and group management system.
  termsOfService: http://swagger.io/terms/
  contact:
    name: API Support
    url: http://www.swagger.io/support
    email: support@swagger.io
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  version: '1.0'
servers:
  - url: //localhost:8080/api/v1
security: []
paths:
  /compliance/access-issues:
    get:
      tags:
        - Compliance
      summary: Get access issues
      description: Get authentication and authorization failures
      parameters:
        - name: start_date
          in: query
          description: Start date (YYYY-MM-DD), defaults to 7 days ago
          schema:
            type: string
        - name: end_date
          in: query
          description: End date (YYYY-MM-DD), defaults to today
          schema:
            type: string
        - name: app_id
          in: query
          description: Filter by app ID
          schema:
            type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/compliance.AccessIssuesData'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.ErrorResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.ErrorResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.ErrorResponse'
components:
  schemas:
    compliance.AccessIssuesData:
      type: object
      properties:
        by_app:
          type: array
          description: Issues grouped by app
          items:
            $ref: '#/components/schemas/compliance.AccessIssue'
        by_code:
          type: object
          additionalProperties:
            type: integer
          description: Count per response code
        timeline:
          type: array
          description: Daily breakdown
          items:
            $ref: '#/components/schemas/compliance.TimelineData'
        total_401:
          type: integer
        total_403:
          type: integer
        total_4xx:
          type: integer
    models.ErrorResponse:
      type: object
      properties:
        errors:
          type: array
          items:
            type: object
            properties:
              detail:
                type: string
              title:
                type: string
    compliance.AccessIssue:
      type: object
      properties:
        app_id:
          type: integer
        app_name:
          type: string
        count:
          type: integer
        last_occurred:
          type: string
        response_code:
          type: integer
    compliance.TimelineData:
      type: object
      properties:
        count:
          type: integer
        date:
          type: string

````