POST api/Rep/{repDID}/Note
Creates a new Rep Note
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| repDID |
The Rep's ID |
string |
Required |
Body Parameters
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. |
Request Formats
application/xml, text/xml
<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>10/28/2025 16:45:07</DateCreated> <CreatedBy>sample string 9</CreatedBy> <DateLastModified>10/28/2025 16:45:07</DateLastModified> <LastModifiedBy>sample string 10</LastModifiedBy> </RepNoteViewModel>
application/json, text/json
{
"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-10-28T16:45:07.43472-04:00",
"CreatedBy": "sample string 9",
"DateLastModified": "2025-10-28T16:45:07.43472-04:00",
"LastModifiedBy": "sample string 10"
}
application/x-www-form-urlencoded
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
<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>10/28/2025 16:45:07</DateCreated> <CreatedBy>sample string 9</CreatedBy> <DateLastModified>10/28/2025 16:45:07</DateLastModified> <LastModifiedBy>sample string 10</LastModifiedBy> </RepNoteViewModel>
application/json, text/json
{
"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-10-28T16:45:07.4457169-04:00",
"CreatedBy": "sample string 9",
"DateLastModified": "2025-10-28T16:45:07.4457169-04:00",
"LastModifiedBy": "sample string 10"
}