Creates a new checkin for a goal with optional value, status, and note
Checkin status
Default:"not_started"
Enum:"not_started""in_progress""on_track""behind""at_risk""closed""postponed"
POST
curl -i -X POST \
https://api.rhythms.ai/rest/v2/checkins \
-H 'Content-Type: application/json' \
-d '{
"goal_uuid": "string",
"checkinable_uuid": "string",
"value": null,
"status": "not_started",
"note": null,
"checkin_date": "string",
"timezone_offset": 0,
"score": 0,
"progress_mode": "manual",
"labels": [
"string"
]
}'Success
Response
{
"uuid": "string",
"goal_uuid": "string",
"metric_uuid": null,
"value": null,
"progress": null,
"score": null,
"checkin_date": "string",
"status": "not_started",
"note": null,
"creator_uuid": "string",
"source_info": "{}",
"mentioned_entities": "[]"
}