POST /notes.json

POST /notes.json
application/json

Body Required

Responses

POST /notes.json
curl \
 -X POST http://api.example.com/v1/notes.json \
 -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": "2023-05-04T09:42:00+00:00",
  "id": 42,
  "notes": "string",
  "timekitId": "string",
  "timekitResponse": {},
  "type": "note",
  "updatedAt": "2023-05-04T09:42:00+00:00"
}