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

# Check quote submission requirements

> Returns portal-specific quote submission requirements and blocking reasons for the authenticated actor and workspace.




## OpenAPI

````yaml /openapi/tools-v1.yaml get /api/tools/v1/quote/submissions/requirements
openapi: 3.1.0
info:
  title: Govly Tools API (Alpha)
  version: 1.0.0-alpha
  description: >
    ALPHA / UNSTABLE: This API is still in active development. Endpoint
    behavior, request fields, response fields, error codes, and operation names
    may change before the Tools API is declared stable.

    REST-callable tool surface for agent and automation workflows. Agents are
    the primary consumer, but integrations can be built on this API. Responses
    are JSON for typed clients; MCP tools may render action results into
    text-oriented formats separately.
servers:
  - url: https://app.govly.com
security:
  - bearerApiKey: []
  - headerApiKey: []
tags:
  - name: Opportunities
    description: Search, fetch, and inspect Govly opportunity records.
  - name: Awards
    description: Search and inspect awarded government contracts.
  - name: Workspaces
    description: Create, update, and inspect opportunity workspaces.
  - name: Workspace Members
    description: Add users and teams to workspaces.
  - name: Workspace Attachments
    description: List and upload workspace attachments.
  - name: Workspace Comments
    description: Post comments to workspaces.
  - name: Follows
    description: Follow opportunities and related workspace activity.
  - name: Saved Searches
    description: List saved opportunity searches and cached matches.
  - name: Documents
    description: >-
      Read document representations and request temporary original-file
      downloads.
  - name: Quote Submissions
    description: >-
      Inspect quote submission requirements, submit quotes, and poll submission
      status.
  - name: Inbox
    description: Read and triage the authenticated user's matched inbox items.
paths:
  /api/tools/v1/quote/submissions/requirements:
    get:
      tags:
        - Quote Submissions
      summary: Check quote submission requirements
      description: >
        Returns portal-specific quote submission requirements and blocking
        reasons for the authenticated actor and workspace.
      operationId: get_quote_submission_requirements
      parameters:
        - name: workspaceId
          in: query
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Quote submission requirements
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QuoteSubmissionRequirementsEnvelope'
        '401':
          $ref: '#/components/responses/Error'
        '403':
          $ref: '#/components/responses/Error'
        '404':
          $ref: '#/components/responses/Error'
        '422':
          $ref: '#/components/responses/Error'
components:
  schemas:
    QuoteSubmissionRequirementsEnvelope:
      type: object
      required:
        - data
      properties:
        data:
          $ref: '#/components/schemas/QuoteSubmissionRequirements'
    QuoteSubmissionRequirements:
      type: object
      required:
        - eligible
        - requiredFields
        - optionalFields
        - blockingReasons
      properties:
        workspaceId:
          type: string
        opportunityId:
          type: string
        portal:
          type: string
          enum:
            - chess
        eligible:
          type: boolean
          description: >-
            True when the authenticated actor can submit with the returned
            requirements.
        requiredFields:
          type: array
          items:
            $ref: '#/components/schemas/QuoteSubmissionField'
        optionalFields:
          type: array
          items:
            $ref: '#/components/schemas/QuoteSubmissionField'
        fileRules:
          $ref: '#/components/schemas/QuoteSubmissionFileRules'
        blockingReasons:
          type: array
          items:
            $ref: '#/components/schemas/QuoteSubmissionBlockingReason'
    ErrorEnvelope:
      type: object
      required:
        - errors
      properties:
        errors:
          type: array
          items:
            type: object
            required:
              - status
              - code
              - title
              - detail
            properties:
              status:
                type: string
              code:
                type: string
              title:
                type: string
              detail:
                type: string
              source:
                type: object
                properties:
                  pointer:
                    type: string
    QuoteSubmissionField:
      type: object
      required:
        - name
        - type
      properties:
        name:
          type: string
        type:
          type: string
        description:
          type: string
    QuoteSubmissionFileRules:
      type: object
      required:
        - maxBytes
        - allowedExtensions
      properties:
        maxBytes:
          type: integer
        allowedExtensions:
          type: array
          items:
            type: string
    QuoteSubmissionBlockingReason:
      type: object
      required:
        - code
        - message
      properties:
        code:
          type: string
          enum:
            - quote_submission_not_available_for_portal
            - missing_or_inactive_portal_account
            - workspace_not_linked_to_opportunity
        message:
          type: string
  responses:
    Error:
      description: Error response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorEnvelope'
  securitySchemes:
    bearerApiKey:
      type: http
      scheme: bearer
      bearerFormat: API key
    headerApiKey:
      type: apiKey
      in: header
      name: X-API-KEY

````