POST CalculatedData?item_id={item_id}&as_of_date={as_of_date}&appid={appid}&sg={sg}&hash={hash}&token={token}&run_id={run_id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
item_id

string

Required

as_of_date

date

Required

appid

string

Required

sg

string

Required

hash

string

Required

token

string

Required

run_id

string

None.

Body Parameters

SimpleStringObject
NameDescriptionTypeAdditional information
string_value

string

None.

Request Formats

application/json, text/json

Sample:
{
  "string_value": "sample string 1"
}

application/xml, text/xml

Sample:
<SimpleStringObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/productious_models">
  <string_value>sample string 1</string_value>
</SimpleStringObject>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CalculatedData
NameDescriptionTypeAdditional information
as_of_date

date

None.

value

string

None.

calculated_variable_id

string

None.

calculated_variable_name

string

None.

item_id

string

None.

debug_log

string

None.

Response Formats

application/json, text/json

Sample:
{
  "as_of_date": "2026-05-11T04:37:14.036069+00:00",
  "value": "sample string 2",
  "calculated_variable_id": "sample string 3",
  "calculated_variable_name": "sample string 4",
  "item_id": "sample string 5",
  "debug_log": "sample string 6"
}

application/xml, text/xml

Sample:
<CalculatedData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/productious_models">
  <as_of_date>2026-05-11T04:37:14.036069+00:00</as_of_date>
  <calculated_variable_id>sample string 3</calculated_variable_id>
  <calculated_variable_name>sample string 4</calculated_variable_name>
  <debug_log>sample string 6</debug_log>
  <item_id>sample string 5</item_id>
  <value>sample string 2</value>
</CalculatedData>