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 RepNoteViewModelName | 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>01/09/2025 01:58:27</DateCreated> <CreatedBy>sample string 9</CreatedBy> <DateLastModified>01/09/2025 01:58:27</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>01/09/2025 01:58:27</DateCreated> <CreatedBy>sample string 9</CreatedBy> <DateLastModified>01/09/2025 01:58:27</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-01-09T01:58:27.1342878-05:00", "CreatedBy": "sample string 9", "DateLastModified": "2025-01-09T01:58:27.1342878-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-01-09T01:58:27.1342878-05:00", "CreatedBy": "sample string 9", "DateLastModified": "2025-01-09T01:58:27.1342878-05:00", "LastModifiedBy": "sample string 10" } ]