POST api/SaveInvestorNotes
Request Information
URI Parameters
None.
Body Parameters
InvestorNotesModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| HTML_NOTE | string |
None. |
|
| INVESTOR_ID | integer |
None. |
|
| CLIENT_ID | integer |
None. |
|
| USER_ID | integer |
None. |
|
| StrCREATED_ON | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"HTML_NOTE": "sample string 2",
"INVESTOR_ID": 3,
"CLIENT_ID": 1,
"USER_ID": 1,
"StrCREATED_ON": "sample string 4"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BaseApiResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": [
"sample string 1",
"sample string 2"
]
}