Skip to main content
POST
/
v1
/
projects
/
{project_id}
/
elements
/
{element_id}
/
indicators
/
{indicator_id}
/
disaggregations
/
{disaggregation_id}
/
results
Create disaggregation result
curl --request POST \
  --url https://{tenant}.torchapp.com.au/api/v1/projects/{project_id}/elements/{element_id}/indicators/{indicator_id}/disaggregations/{disaggregation_id}/results \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "result_date": "2026-01-27T02:53:04",
  "target_id": "<string>",
  "result_value": 4326.41688,
  "result_narrative": "architecto",
  "result_status": "n",
  "rating": "g",
  "further_explanation": "architecto",
  "next_priorities": "architecto",
  "additional_observations": "architecto"
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

project_id
integer
required

The ID of the project.

element_id
integer
required

The ID of the element.

indicator_id
integer
required

The ID of the indicator.

disaggregation_id
integer
required

The ID of the disaggregation.

Body

application/json
result_date
string<date-time>
required
Example:

"2026-01-27T02:53:04"

target_id
string
result_value
number
Example:

4326.41688

result_narrative
string
Example:

"architecto"

result_status
string
Maximum string length: 255
Example:

"n"

rating
string
Maximum string length: 255
Example:

"g"

further_explanation
string
Example:

"architecto"

next_priorities
string
Example:

"architecto"

additional_observations
string
Example:

"architecto"

Response

Result created

The response is of type object.