GET api/Rep/{repDID}/Note/{id}
Gets a single Rep note
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| repDID |
The Rep's ID |
string |
Required |
| id |
The unique ID of the note to retrieve |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
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:
<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/01/2025 21:06:07</DateCreated> <CreatedBy>sample string 9</CreatedBy> <DateLastModified>11/01/2025 21:06:07</DateLastModified> <LastModifiedBy>sample string 10</LastModifiedBy> </RepNoteViewModel>
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-01T21:06:07.450292-04:00",
"CreatedBy": "sample string 9",
"DateLastModified": "2025-11-01T21:06:07.450292-04:00",
"LastModifiedBy": "sample string 10"
}