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

# Create Quote Request

> Submits a new quote request on behalf of a client.



## OpenAPI

````yaml POST /api/v1/ai-agent/create-quote-request
openapi: 3.0.1
info:
  title: Fieldiu Integration API
  description: Internal integration endpoints for Fieldiu.
  version: v1
  contact:
    name: Fieldiu Support
  license:
    name: Proprietary
servers:
  - url: https://integration.fieldiu.online
security:
  - ApiKeyAuth: []
    OrgIdAuth: []
paths:
  /api/v1/ai-agent/create-quote-request:
    post:
      tags:
        - AI Agent
      summary: Create Quote Request
      description: Submits a new quote request on behalf of a client.
      operationId: createQuoteRequest
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateQuoteRequestModel'
      responses:
        '200':
          description: OK
components:
  schemas:
    CreateQuoteRequestModel:
      type: object
      required:
        - clientName
        - description
      properties:
        clientName:
          type: string
          description: Name of the client requesting the quote
        description:
          type: string
          description: Description of the service or scope being quoted
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Your organization's API key
    OrgIdAuth:
      type: apiKey
      in: header
      name: X-ORG-ID
      description: Your organization's identifier

````