Create Note
Path parameters
-
Participant ID
POST
/v1/participants/{participant_id}/notes
curl \
-X POST http://localhost:4000/v1/participants/uuidv4/notes \
-H "Content-Type: application/json" \
-d '{"note":{"id":0,"date":"","title":"","content":"","author_id":"","is_pinned":false}}'
Request example
{
"note": {
"id": 0,
"date": "",
"title": "",
"content": "",
"author_id": "",
"is_pinned": false
}
}
Response examples (201)
{
"data": {
"id": 0,
"date": "",
"title": "",
"content": "",
"author_id": "",
"is_pinned": false
}
}