Update Participant Notes
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"participantNotesTitle" : "Title 1",
"participantNotesBody": "Body for title 1 "
}
Request Code Samples
curl --location --request PUT 'https://service-dash.dlabssaas.io/rest/web/secured/participant/notes/update/45284e7b-22c1-4bcf-af24-b89df7099e5d' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"participantNotesTitle" : "Title 1",
"participantNotesBody": "Body for title 1 "
}'
Responses
application/json Modified at 2024-07-23 08:20:11