GET api/Surgeon/GetSurgeonNotes?userID={userID}&surgeonId={surgeonId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userID | integer |
Required |
|
| surgeonId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SurgeonNotesDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| SurgeonId | string |
None. |
|
| NoteId | string |
None. |
|
| Note | string |
None. |
|
| ImagePath | string |
None. |
|
| ApprovalStatus | integer |
None. |
|
| AddedAt | date |
None. |
Response 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-17T10:01:01.1707787+00:00"
},
{
"SurgeonId": "sample string 1",
"NoteId": "sample string 2",
"Note": "sample string 3",
"ImagePath": "sample string 4",
"ApprovalStatus": 5,
"AddedAt": "2025-12-17T10:01:01.1707787+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-17T10:01:01.1707787+00:00"},{"SurgeonId":"sample string 1","NoteId":"sample string 2","Note":"sample string 3","ImagePath":"sample string 4","ApprovalStatus":5,"AddedAt":"2025-12-17T10:01:01.1707787+00:00"}]
application/xml, text/xml
Sample:
<ArrayOfSurgeonNotesDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ScrupUpBusinessModel.DTO">
<SurgeonNotesDTO>
<AddedAt>2025-12-17T10:01:01.1707787+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>
<SurgeonNotesDTO>
<AddedAt>2025-12-17T10:01:01.1707787+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>
</ArrayOfSurgeonNotesDTO>