POST /notes.json
Body Required
-
Action status
Values are
pending
orcomplete
. Default value ispending
. -
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
.
POST /notes.json
curl \
-X POST http://api.example.com/v1/notes.json \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"actionStatus":"pending","notes":"string","timekitId":"string","timekitResponse":{},"type":"note"}'
Request example
{
"actionStatus": "pending",
"notes": "string",
"timekitId": "string",
"timekitResponse": {},
"type": "note"
}
Response examples (200)
{
"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"
}