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

# Share test run report

> Share a test run report



## OpenAPI

````yaml /public-apis/openapi/test-run-share-report.json post /v1/test-runs/share-report
openapi: 3.0.0
info:
  version: 1.0.0
  contact:
    name: Maxim Engineering
    email: eng@getmaxim.ai
  title: Maxim SDK API - test-run-share-report
  description: API documentation for Maxim SDK test-run-share-report endpoints
servers:
  - url: https://api.getmaxim.ai
security: []
paths:
  /v1/test-runs/share-report:
    post:
      tags:
        - Test run report
      summary: Share test run report
      description: Share a test run report
      parameters:
        - schema:
            type: string
            description: Unique identifier for the workspace
          required: true
          name: workspaceId
          in: query
        - schema:
            type: string
            description: Test run ID to share
          required: true
          name: id
          in: query
      responses:
        '200':
          description: Successfully shared test run report
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      runs:
                        type: array
                        items:
                          type: object
                      total:
                        type: number
        '400':
          description: Bad request
        '401':
          description: Unauthorized
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-maxim-api-key
      description: API key for authentication

````