Objectives
Create Objective
{
"name": "New Objective",
"description": "Description of the objective",
"status": "on_track",
"metrics": [
{ "key": "metric1", "value": "value1" },
{ "key": "metric2", "value": "value2" }
]
}{
"message": "Objective created",
"objective": {
"id": 1,
"externalId": "generated-external-id",
"name": "New Objective",
"description": "Description of the objective",
"status": "on_track",
"userId": 1,
"createdAt": "2023-10-27T13:00:00Z",
"updatedAt": "2023-10-27T13:00:00Z",
"metrics": [
{
"id": 1,
"objectiveId": 1,
"value": "{\"key\":\"metric1\",\"value\":\"value1\"}",
"createdAt": "2023-10-27T13:00:00Z"
}
],
"aiAssistants": []
}
}Get All Objectives
Get Objective by ID
Update Objective
Delete Objective
Last updated