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

# Post Manual Components

> Step 5 of the bill-run flow. Upload manual override values for specific billing components on a term. Only required for manually-valued templates — skip for flat-rate or fully metered plans. `data.data` is a JSON-stringified object containing `termID` and `compsData`.



## OpenAPI

````yaml POST /billspree/terms/post-manual-component-values
openapi: 3.1.0
info:
  title: Billspree API
  description: REST API for Billspree — billing, AR management, and workspace operations.
  version: 1.0.0
servers:
  - url: https://{workspace}.spreesuite.com
    variables:
      workspace:
        default: your-workspace
        description: Your organization's subdomain (e.g. demo → demo.spreesuite.com)
security:
  - apiKeyAuth: []
paths:
  /billspree/terms/post-manual-component-values:
    post:
      tags:
        - Bill Run
      summary: Post Manual Components
      description: >-
        Step 5 of the bill-run flow. Upload manual override values for specific
        billing components on a term. Only required for manually-valued
        templates — skip for flat-rate or fully metered plans. `data.data` is a
        JSON-stringified object containing `termID` and `compsData`.
      operationId: postManualComponents
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PostManualComponentsRequest'
            example:
              method: Update
              action: Upload Manual Comps
              apiVersion: v2
              operation: schedule
              data:
                data: >-
                  {"termID": 5, "compsData": [["CONN-001", "Fixed Charge",
                  "500"], ["CONN-002", "Fixed Charge", "750"]]}
                sheduleTime: '2026-06-15T10:00:00'
      responses:
        '200':
          description: Manual components posted successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericSuccessResponse'
components:
  schemas:
    PostManualComponentsRequest:
      type: object
      required:
        - method
        - action
        - apiVersion
        - operation
        - data
      properties:
        method:
          type: string
          description: Always `"Update"`
          example: Update
        action:
          type: string
          description: Always `"Upload Manual Comps"`
          example: Upload Manual Comps
        apiVersion:
          type: string
          example: v2
        operation:
          type: string
          description: Always `"schedule"`
          example: schedule
        data:
          type: object
          required:
            - data
            - sheduleTime
          properties:
            data:
              type: string
              description: >-
                JSON-stringified object: `{ "termID": 5, "compsData":
                [["CONN-001", "ComponentName", "value"], ...] }`. Each row in
                `compsData` is `[connectionNumber, componentName, value]`
            sheduleTime:
              type: string
              description: ISO datetime — pass current time to run immediately
    GenericSuccessResponse:
      type: object
      properties:
        success:
          type: boolean
        statusCode:
          type: integer
        message:
          type: string
        error:
          nullable: true
        data:
          type: object
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        Auth token returned from the login endpoint. Send as: `Authorization:
        <token>` (no Bearer prefix)

````