Skip to main content
PUT
/
v1
/
projects
/
{project_id}
/
elements
/
{element_id}
/
indicators
/
{indicator_id}
/
disaggregations
/
{id}
Update disaggregation
curl --request PUT \
  --url https://{tenant}.torchapp.com.au/api/v1/projects/{project_id}/elements/{element_id}/indicators/{indicator_id}/disaggregations/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "category": "b",
  "name": "n",
  "baseline": 4326.41688,
  "description": "Eius et animi quos velit et."
}
'
{}

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.

id
integer
required

The ID of the disaggregation.

Body

application/json
category
string
Maximum string length: 255
Example:

"b"

name
string
Maximum string length: 255
Example:

"n"

baseline
number
Example:

4326.41688

description
string
Example:

"Eius et animi quos velit et."

Response

Disaggregation updated

The response is of type object.