GET v1/patient/getRecordsByTesResult

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

getRecordsByAgeGroupResult
NameDescriptionTypeAdditional information
success

boolean

None.

data

Collection of individualChart

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "data": [
    {
      "label": "sample string 1",
      "value": 2.0,
      "state": "sample string 3"
    },
    {
      "label": "sample string 1",
      "value": 2.0,
      "state": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<getRecordsByAgeGroupResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ntblcpEWORS.Models.patient">
  <data xmlns:d2p1="http://schemas.datacontract.org/2004/07/ntblcpEWORS.Models">
    <d2p1:individualChart>
      <d2p1:label>sample string 1</d2p1:label>
      <d2p1:state>sample string 3</d2p1:state>
      <d2p1:value>2</d2p1:value>
    </d2p1:individualChart>
    <d2p1:individualChart>
      <d2p1:label>sample string 1</d2p1:label>
      <d2p1:state>sample string 3</d2p1:state>
      <d2p1:value>2</d2p1:value>
    </d2p1:individualChart>
  </data>
  <success>true</success>
</getRecordsByAgeGroupResult>