Key Results
Key Results are quantitative metrics that let you track Objective's performance.
The Key Result Object
Attribute | Type | Description |
id | string | Unique key result identifier. |
name | string | Name of the key result. |
created_at | string | Time when the key result was created. RFC 3339 format. |
modified_at | string | Time when the key result was last updated. RFC 3339 format. |
objective_id | string | Objective identifier. |
confidence | string | Decimal string between 0.0 and 1.0 indicating confidence of reaching the target. |
type | string | Metric type. One of |
current_value | string | Decimal. Current metric value. |
target_value_min | string, nullable | Decimal. Minimum target value. |
target_value_max | string, nullable | Decimal. Maximum target value. |
Target values are optional for some metric types.
postive
andnegative
metrics will have onlytarget_value_min
set.range
metrics will have bothtarget_value_min
andtarget_value_max
set.baseline
will not have either of the target values set.milestone
will always havetarget_value_min
set to1.00
.
Example:
List Key Results
GET
https://api.simpleokr.com/v1/keyresults
Returns a list of your Key Results.
Query Parameters
Name | Type | Description |
---|---|---|
page_token | string | Page identifier |
cycle_id | string | Cycle ID |
Retrieve Key Result
GET
https://api.simpleokr.com/v1/keyresults/:id
Retrieve an existing Key Result.
Path Parameters
Name | Type | Description |
---|---|---|
id | string | Key Result ID |
Update Key Result
POST
https://api.simpleokr.com/v1/keyresults/:id
Path Parameters
Name | Type | Description |
---|---|---|
id | string | Key Result ID |
Request Body
Name | Type | Description |
---|---|---|
target_value_max | string | Maximum target value where applicable. |
target_value_min | string | Minimum target value where applicable. |
objective_id | string | Objective ID. |
current_value | string | A decimal string representing current value. |
confidence | string | Confidence. A decimal string value between 0 and 1. |
type | string | Key Result type. |
name | string | Key Result name. |
Delete Key Result
DELETE
https://api.simpleokr.com/v1/keyresults/:id
Deletes and existing Key Result.
Path Parameters
Name | Type | Description |
---|---|---|
id | string | Key Result ID |
Last updated