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

# Issues By Sidekick

> Issues grouped by sidekick, with a severity breakdown.



## OpenAPI

````yaml get /api/integrations/insights/issues/by-sidekick
openapi: 3.1.0
info:
  title: Midmarket Integrations API
  description: An API for Midmarket integrations.
  version: 0.1.0
servers:
  - url: https://mm-midmarket-integrations-api-preview.azurewebsites.net
    description: preview
security: []
paths:
  /api/integrations/insights/issues/by-sidekick:
    get:
      tags:
        - insights
      summary: Issues By Sidekick
      description: Issues grouped by sidekick, with a severity breakdown.
      operationId: issues_by_sidekick_api_integrations_insights_issues_by_sidekick_get
      parameters:
        - name: days
          in: query
          required: false
          schema:
            type: integer
            maximum: 365
            minimum: 1
            default: 28
            title: Days
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IssuesBySidekickSchema'
                title: >-
                  Response Issues By Sidekick Api Integrations Insights Issues
                  By Sidekick Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - apiKey: []
components:
  schemas:
    IssuesBySidekickSchema:
      properties:
        sidekickId:
          type: string
          format: uuid
          title: Sidekickid
        sidekickName:
          type: string
          title: Sidekickname
        critical:
          type: integer
          title: Critical
        major:
          type: integer
          title: Major
        minor:
          type: integer
          title: Minor
        info:
          type: integer
          title: Info
        total:
          type: integer
          title: Total
      type: object
      required:
        - sidekickId
        - sidekickName
        - critical
        - major
        - minor
        - info
        - total
      title: IssuesBySidekickSchema
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key
      description: 'Workspace-scoped API key. Format: sk_live_{64 hex chars}'
      x-default: sk_live_your_api_key_here

````