POST api/ApplicationNote
Add a new message. An email will be sent to the "msgToID" user informing them of this message.
Request Information
URI Parameters
None.
Body Parameters
ApplicationNoteDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| ApplicationID | integer |
None. |
|
| Note | string |
None. |
|
| InsertDate | date |
None. |
|
| InsertBy | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"ApplicationID": 2,
"Note": "sample string 3",
"InsertDate": "2025-11-16T05:44:02.4219699-07:00",
"InsertBy": 5
}
text/html
Sample:
{"Id":1,"ApplicationID":2,"Note":"sample string 3","InsertDate":"2025-11-16T05:44:02.4219699-07:00","InsertBy":5}
application/xml, text/xml
Sample:
<ApplicationNoteDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TrainingFundREST._DAL"> <ApplicationID>2</ApplicationID> <Id>1</Id> <InsertBy>5</InsertBy> <InsertDate>2025-11-16T05:44:02.4219699-07:00</InsertDate> <Note>sample string 3</Note> </ApplicationNoteDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
StatusDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| msg | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"msg": "sample string 1"
}
text/html
Sample:
{"id":1,"msg":"sample string 1"}
application/xml, text/xml
Sample:
<StatusDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TrainingFundREST._DAL"> <id>1</id> <msg>sample string 1</msg> </StatusDTO>