Skip to main content
POST
/
v1
/
projects
/
{project_id}
/
elements
/
{element_id}
/
indicators
/
{indicator_id}
/
disaggregations
/
{disaggregation_id}
/
results
/
{result_id}
/
certify
Certify 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/{result_id}/certify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "certification_status": "Approved",
  "certification_comments": "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.

result_id
integer
required

The ID of the result.

Body

application/json
certification_status
enum<string>
required
Available options:
Approved,
Rejected
Example:

"Approved"

certification_comments
string
Example:

"architecto"

Response

Result certified

The response is of type object.