POST api/case/addnotes

Request Information

URI Parameters

None.

Body Parameters

tbl_Case_NotesVM
NameDescriptionTypeAdditional information
ID

integer

None.

CaseID

integer

None.

Note

string

None.

IsPrivate

integer

None.

IsDeleted

integer

None.

CreatedBy

integer

None.

FullName

string

None.

CreatedOn

date

None.

ModifiedBy

integer

None.

ModifiedOn

date

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "CaseID": 1,
  "Note": "sample string 2",
  "IsPrivate": 1,
  "IsDeleted": 1,
  "CreatedBy": 1,
  "FullName": "sample string 3",
  "CreatedOn": "2025-12-17T01:37:50.7948912-06:00",
  "ModifiedBy": 1,
  "ModifiedOn": "2025-12-17T01:37:50.7948912-06:00"
}

application/xml, text/xml

Sample:
<tbl_Case_NotesVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Case_Management_DAL.ViewModel">
  <CaseID>1</CaseID>
  <CreatedBy>1</CreatedBy>
  <CreatedOn>2025-12-17T01:37:50.7948912-06:00</CreatedOn>
  <FullName>sample string 3</FullName>
  <ID>1</ID>
  <IsDeleted>1</IsDeleted>
  <IsPrivate>1</IsPrivate>
  <ModifiedBy>1</ModifiedBy>
  <ModifiedOn>2025-12-17T01:37:50.7948912-06:00</ModifiedOn>
  <Note>sample string 2</Note>
</tbl_Case_NotesVM>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'tbl_Case_NotesVM'.

Response Information

Resource Description

ErrorClass
NameDescriptionTypeAdditional information
Msg

string

None.

Status

string

None.

IsSuccess

boolean

None.

retrn

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Msg": "sample string 1",
  "Status": "sample string 2",
  "IsSuccess": true,
  "retrn": {}
}

application/xml, text/xml

Sample:
<ErrorClass xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MMC_WebAPI.Utilities">
  <IsSuccess>true</IsSuccess>
  <Msg>sample string 1</Msg>
  <Status>sample string 2</Status>
  <retrn />
</ErrorClass>