Updates an existing checkin with the specified attributes
PUT
curl -i -X PUT \
'https://api.rhythms.ai/rest/v2/checkins/{id}' \
-H 'Content-Type: application/json' \
-d '{
"value": 0,
"status": "not_started",
"note": "string",
"score": 0,
"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": "[]"
}