Skip to main content
POST
/
billspree
/
terms
/
post-meter-readings
Post Meter Readings
curl --request POST \
  --url https://{workspace}.spreesuite.com/billspree/terms/post-meter-readings \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "method": "Update",
  "action": "Post Meter Readings",
  "apiVersion": "v2",
  "operation": "schedule",
  "data": {
    "termID": 5,
    "reading": "current",
    "sheduleTime": "2026-06-15T10:00:00"
  }
}
'
{
  "success": true,
  "statusCode": 123,
  "message": "<string>",
  "error": null,
  "data": {}
}

Authorizations

Authorization
string
header
required

Auth token returned from the login endpoint. Send as: Authorization: <token> (no Bearer prefix)

Body

application/json
method
string
required

Always "Update"

Example:

"Update"

action
string
required

Always "Post Meter Readings"

Example:

"Post Meter Readings"

apiVersion
string
required
Example:

"v2"

operation
string
required

Always "schedule"

Example:

"schedule"

data
object
required

Response

200 - application/json

Meter readings posted successfully

success
boolean
statusCode
integer
message
string
error
unknown
data
object