> ## 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 Meter Readings

> Step 4 of the bill-run flow. Locks and posts meter readings for the term so they can be used in billing calculations. Only required for metered templates — skip for flat-rate plans.



## OpenAPI

````yaml POST /billspree/terms/post-meter-readings
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-meter-readings:
    post:
      tags:
        - Bill Run
      summary: Post Meter Readings
      description: >-
        Step 4 of the bill-run flow. Locks and posts meter readings for the term
        so they can be used in billing calculations. Only required for metered
        templates — skip for flat-rate plans.
      operationId: postMeterReadings
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PostMeterReadingsRequest'
            example:
              method: Update
              action: Post Meter Readings
              apiVersion: v2
              operation: schedule
              data:
                termID: 5
                reading: current
                sheduleTime: '2026-06-15T10:00:00'
      responses:
        '200':
          description: Meter readings posted successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericSuccessResponse'
components:
  schemas:
    PostMeterReadingsRequest:
      type: object
      required:
        - method
        - action
        - apiVersion
        - operation
        - data
      properties:
        method:
          type: string
          description: Always `"Update"`
          example: Update
        action:
          type: string
          description: Always `"Post Meter Readings"`
          example: Post Meter Readings
        apiVersion:
          type: string
          example: v2
        operation:
          type: string
          description: Always `"schedule"`
          example: schedule
        data:
          type: object
          required:
            - termID
            - reading
            - sheduleTime
          properties:
            termID:
              type: integer
              description: Term to post readings for
            reading:
              type: string
              description: >-
                `"current"` for current period readings, `"initial"` for
                initial/opening readings
            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)

````