POST api/Surgeon/AddNote?userId={userId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userId | integer |
Required |
Body Parameters
SurgeonNotesDTO| Name | Description | Type | Additional 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:56:32.013901+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:56:32.013901+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:56:32.013901+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:
Response Information
Resource Description
stringResponse 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>