Skip to main content
PATCH
/
studies
/
{studyId}
/
participants
/
{participantId}
/
notes
Append a note to a participant
curl --request PATCH \
  --url https://api.rallyuxr.com/api/public/v1/studies/{studyId}/participants/{participantId}/notes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "note": "<string>"
}'
{
  "note": "<string>",
  "createdByUserId": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

studyId
string
required
participantId
string
required

Body

application/json
note
string
required

The note to append to a participant

Response

The updated or created note

note
string | null
required

The note of the person

createdByUserId
string | null
required

The ID of the user who created the note