GET api/Rep/{repDID}/Note
Gets the notes for the specified Rep
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| repDID |
The Rep's ID |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of RepNoteViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
Unique ID for the note record |
integer |
None. |
| RepDID |
The Rep's ID |
string |
None. |
| RepNoteCategoryID |
The Rep Note Category ID |
integer |
Required |
| CorrespondenceTypeID |
The Correspondence Type ID |
integer |
Required |
| Subject |
Note subject or title |
string |
None. |
| Message |
Full Description and Content of the note record |
string |
None. |
| OrderID |
Order ID the note is associated with, if applicable. |
integer |
None. |
| Unresolved |
Is the note unresolved |
boolean |
Required |
| IsCritical |
Is the note critical |
boolean |
Required |
| DateCreated | date |
None. |
|
| CreatedBy | string |
None. |
|
| DateLastModified | date |
None. |
|
| LastModifiedBy | string |
None. |
Response Formats
application/xml, text/xml
Sample:
<ListOfRepNoteViewModel>
<RepNoteViewModel>
<ID>1</ID>
<RepDID>sample string 1</RepDID>
<RepNoteCategoryID>2</RepNoteCategoryID>
<CorrespondenceTypeID>3</CorrespondenceTypeID>
<Subject>sample string 4</Subject>
<Message>sample string 5</Message>
<OrderID>1</OrderID>
<Unresolved>True</Unresolved>
<IsCritical>True</IsCritical>
<DateCreated>11/03/2025 08:34:58</DateCreated>
<CreatedBy>sample string 9</CreatedBy>
<DateLastModified>11/03/2025 08:34:58</DateLastModified>
<LastModifiedBy>sample string 10</LastModifiedBy>
</RepNoteViewModel>
<RepNoteViewModel>
<ID>1</ID>
<RepDID>sample string 1</RepDID>
<RepNoteCategoryID>2</RepNoteCategoryID>
<CorrespondenceTypeID>3</CorrespondenceTypeID>
<Subject>sample string 4</Subject>
<Message>sample string 5</Message>
<OrderID>1</OrderID>
<Unresolved>True</Unresolved>
<IsCritical>True</IsCritical>
<DateCreated>11/03/2025 08:34:58</DateCreated>
<CreatedBy>sample string 9</CreatedBy>
<DateLastModified>11/03/2025 08:34:58</DateLastModified>
<LastModifiedBy>sample string 10</LastModifiedBy>
</RepNoteViewModel>
</ListOfRepNoteViewModel>
application/json, text/json
Sample:
[
{
"ID": 1,
"RepDID": "sample string 1",
"RepNoteCategoryID": 2,
"CorrespondenceTypeID": 3,
"Subject": "sample string 4",
"Message": "sample string 5",
"OrderID": 1,
"Unresolved": true,
"IsCritical": true,
"DateCreated": "2025-11-03T08:34:58.8836367-05:00",
"CreatedBy": "sample string 9",
"DateLastModified": "2025-11-03T08:34:58.8836367-05:00",
"LastModifiedBy": "sample string 10"
},
{
"ID": 1,
"RepDID": "sample string 1",
"RepNoteCategoryID": 2,
"CorrespondenceTypeID": 3,
"Subject": "sample string 4",
"Message": "sample string 5",
"OrderID": 1,
"Unresolved": true,
"IsCritical": true,
"DateCreated": "2025-11-03T08:34:58.8836367-05:00",
"CreatedBy": "sample string 9",
"DateLastModified": "2025-11-03T08:34:58.8836367-05:00",
"LastModifiedBy": "sample string 10"
}
]