Skip to main content
PUT
/
api
/
Meetings
/
{meetingId}
/
Notes
Update Meeting Notes.
curl --request PUT \
  --url https://api.example.com/api/Meetings/{meetingId}/Notes \
  --header 'Content-Type: application/json' \
  --data '
{
  "value": "<string>",
  "followUpDate": "2023-11-07T05:31:56Z",
  "followUpUserId": 123
}
'

Path Parameters

meetingId
integer<int32>
required

Body

application/json
value
string | null
followUpDate
string<date-time> | null
followUpUserId
integer<int32>

Response

200

OK