Skip to main content
POST
/
billspree
/
terms
/
post-manual-component-values
Post Manual Components
curl --request POST \
  --url https://{workspace}.spreesuite.com/billspree/terms/post-manual-component-values \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "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"
  }
}
'
{
  "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 "Upload Manual Comps"

Example:

"Upload Manual Comps"

apiVersion
string
required
Example:

"v2"

operation
string
required

Always "schedule"

Example:

"schedule"

data
object
required

Response

200 - application/json

Manual components posted successfully

success
boolean
statusCode
integer
message
string
error
unknown
data
object