Authorization: Bearer ********************
{
"participantNotesTitle" : "Title 1",
"participantNotesBody": "Body for title 1 "
}
curl --location --request POST 'https://service-dash.dlabssaas.io/rest/web/secured/participant/notes/save' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"participantNotesTitle" : "Title 1",
"participantNotesBody": "Body for title 1 "
}'
{
"status": "success",
"data": true,
"info": {
"id": "SUCCESS_SAVE_DATA",
"message": "Participant Note successfully saved !",
"messageEn": null,
"messageId": null,
"field": null,
"redirect": null
}
}