Diary PATCH
PATCH /diary/:entryId
Required permission scope: diary
Updates the diary entry matching the given identifier. The user identified by the id in the mfpuser-id header must be authorized to update the entry.
Request body
The request body is a representation of a diary entry, with the properties that are changing. (Immutable or calculated properties,such as id and nutritional_contents, must not be present.)
Example request body, updating a duration on an exercise entry:
{
"item": {
"duration": 2700
}
}