PUT /notes/{id}.json
Path parameters
-
Numeric ID of the instance
Minimum value is
1
.
Body Required
-
Action status
Values are
pending
orcomplete
. Default value ispending
. -
createdAt string(date-time)
Created at
-
id integer(int32)
Id
-
notes string | null
Notes
-
timekitId string | null
Timekit
timekitResponse object | null | array | boolean | integer | number | string
Any of: Timekit response
Timekit response
Timekit response
Timekit response
Timekit response
Timekit response
-
Type
Values are
note
,action
, ormeeting
. Default value isnote
. -
updatedAt string(date-time)
Updated at
PUT /notes/{id}.json
curl \
-X PUT http://api.example.com/v1/notes/{id}.json \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"actionStatus":"pending","createdAt":"2024-05-04T09:42:00+00:00","id":42,"notes":"string","timekitId":"string","timekitResponse":{},"type":"note","updatedAt":"2024-05-04T09:42:00+00:00"}'
Request example
{
"actionStatus": "pending",
"createdAt": "2024-05-04T09:42:00+00:00",
"id": 42,
"notes": "string",
"timekitId": "string",
"timekitResponse": {},
"type": "note",
"updatedAt": "2024-05-04T09:42:00+00:00"
}