Orders and results
Update order result
Updates an assessment order result.
PUT
/
assessment
/
orders
/
{assessment_order_id}
/
result
Example Request Body
{
"status": "COMPLETED",
"score": 90,
"max_score": 100,
"result_url": "https://example.com",
"completed_at": "2023-04-04T00:00:00.000Z",
"attributes": [
{
"field": "remarks",
"value": "Test completed with passing score"
}
],
"sub_results": [
{
"id": "xyz",
"title": "Title of the test",
"score": 75,
"max_score": 100,
"status": "COMPLETED"
}
]
}
Authorizations
Authorization
string
headerrequiredCreate an API key on the Secrets page in the Kombo dashboard.
Headers
X-Integration-Id
string
requiredID of the integration you want to interact with.
Path Parameters
assessment_order_id
string
requiredPUT /assessment/orders/:assessment_order_id/result parameter
Body
application/json
status
enum<string>
requiredStatus of the assessment.
Please note only the orders with the status of OPEN
can be updated.
Available options:
COMPLETED
, CANCELLED
result_url
string
requiredcompleted_at
string
requiredYYYY-MM-DDTHH:mm:ss.sssZ
score
number
max_score
number
attributes
object[]
sub_results
object[]
Response
200 - application/json
status
enum<string>
requiredAvailable options:
success
data
object
required