POST api/BusinessNote
Add a new business note
Request Information
URI Parameters
None.
Body Parameters
BusinessNoteDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| BusinessID | integer |
None. |
|
| BusinessNote | string |
None. |
|
| InsertBy | integer |
None. |
|
| InsertDate | date |
None. |
|
| UpdateBy | integer |
None. |
|
| UpdateDate | date |
None. |
|
| UserName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"BusinessID": 2,
"BusinessNote": "sample string 3",
"InsertBy": 4,
"InsertDate": "2025-11-07T05:26:43.6733597-07:00",
"UpdateBy": 1,
"UpdateDate": "2025-11-07T05:26:43.6733597-07:00",
"UserName": "sample string 6"
}
text/html
Sample:
{"Id":1,"BusinessID":2,"BusinessNote":"sample string 3","InsertBy":4,"InsertDate":"2025-11-07T05:26:43.6733597-07:00","UpdateBy":1,"UpdateDate":"2025-11-07T05:26:43.6733597-07:00","UserName":"sample string 6"}
application/xml, text/xml
Sample:
<BusinessNoteDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TrainingFundREST._DAL"> <BusinessID>2</BusinessID> <BusinessNote>sample string 3</BusinessNote> <Id>1</Id> <InsertBy>4</InsertBy> <InsertDate>2025-11-07T05:26:43.6733597-07:00</InsertDate> <UpdateBy>1</UpdateBy> <UpdateDate>2025-11-07T05:26:43.6733597-07:00</UpdateDate> <UserName>sample string 6</UserName> </BusinessNoteDTO>
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>