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

# Transition RFQ status

> Transition RFQ to a new status with validation and activity logging.
    
    **Available transitions:**
    - New → In Progress
    - In Progress → Quote Sent
    - Quote Sent → Accepted/Rejected
    - Any → Expired (manual override)
    
    **Request body:**
    ```json
    {
        "status": "In Progress",
        "note": "Starting work on quote"
    }
    ```



## OpenAPI

````yaml /api/openapi-cutmake.json post /api/v1/rfqs/{rfq_id}/transition
openapi: 3.1.0
info:
  title: VM App API
  version: 0.1.0
servers:
  - url: https://vinmake-erp.onrender.com
security: []
paths:
  /api/v1/rfqs/{rfq_id}/transition:
    post:
      tags:
        - RFQs
      summary: Transition RFQ status
      description: |-
        Transition RFQ to a new status with validation and activity logging.
            
            **Available transitions:**
            - New → In Progress
            - In Progress → Quote Sent
            - Quote Sent → Accepted/Rejected
            - Any → Expired (manual override)
            
            **Request body:**
            ```json
            {
                "status": "In Progress",
                "note": "Starting work on quote"
            }
            ```
      operationId: transition_rfq_status_api_v1_rfqs__rfq_id__transition_post
      parameters:
        - name: rfq_id
          in: path
          required: true
          schema:
            type: string
            title: Rfq Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              additionalProperties: true
              type: object
              title: Data
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - OAuth2PasswordBearer: []
components:
  schemas:
    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:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: /auth/login

````