POST api/CosEccSummary/SaveTestResultComments

Request Information

URI Parameters

None.

Body Parameters

TestResultComments
NameDescriptionTypeAdditional information
CaseNo

integer

None.

Comments

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CaseNo": 1,
  "Comments": "sample string 2"
}

application/xml, text/xml

Sample:
<TestResultComments xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.DTO.MedicalExam">
  <CaseNo>1</CaseNo>
  <Comments>sample string 2</Comments>
</TestResultComments>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AsapResponseOfTestResultComments
NameDescriptionTypeAdditional information
isSuccess

boolean

None.

message

string

None.

jsonObj

TestResultComments

None.

totalCount

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "isSuccess": true,
  "message": "sample string 2",
  "jsonObj": {
    "CaseNo": 1,
    "Comments": "sample string 2"
  },
  "totalCount": 3
}

application/xml, text/xml

Sample:
<AsapResponseOfTestResultCommentszIntITI8 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.Common">
  <isSuccess>true</isSuccess>
  <jsonObj xmlns:d2p1="http://schemas.datacontract.org/2004/07/ASAP_BL.DTO.MedicalExam">
    <d2p1:CaseNo>1</d2p1:CaseNo>
    <d2p1:Comments>sample string 2</d2p1:Comments>
  </jsonObj>
  <message>sample string 2</message>
  <totalCount>3</totalCount>
</AsapResponseOfTestResultCommentszIntITI8>