POST api/Surgeon/UpdateSurgeonNote?userId={userId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userId

integer

Required

Body Parameters

SurgeonNotesDTO
NameDescriptionTypeAdditional information
SurgeonId

string

None.

NoteId

string

None.

Note

string

None.

ImagePath

string

None.

ApprovalStatus

integer

None.

AddedAt

date

None.

Request Formats

application/json, text/json

Sample:
{
  "SurgeonId": "sample string 1",
  "NoteId": "sample string 2",
  "Note": "sample string 3",
  "ImagePath": "sample string 4",
  "ApprovalStatus": 5,
  "AddedAt": "2025-12-17T09:59:10.3741503+00:00"
}

multipart/form-data

Sample:
{"SurgeonId":"sample string 1","NoteId":"sample string 2","Note":"sample string 3","ImagePath":"sample string 4","ApprovalStatus":5,"AddedAt":"2025-12-17T09:59:10.3741503+00:00"}

application/xml, text/xml

Sample:
<SurgeonNotesDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ScrupUpBusinessModel.DTO">
  <AddedAt>2025-12-17T09:59:10.3741503+00:00</AddedAt>
  <ApprovalStatus>5</ApprovalStatus>
  <ImagePath>sample string 4</ImagePath>
  <Note>sample string 3</Note>
  <NoteId>sample string 2</NoteId>
  <SurgeonId>sample string 1</SurgeonId>
</SurgeonNotesDTO>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'SurgeonNotesDTO'.

Response Information

Resource Description

string

Response Formats

application/json, text/json, multipart/form-data

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>