GET api/PHR/GetPHRList

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ResponseOfPhrListResponse
NameDescriptionTypeAdditional information
IsSuccess

boolean

None.

Message

string

None.

Status

integer

None.

Result

PhrListResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSuccess": true,
  "Message": "sample string 2",
  "Status": 3,
  "Result": {
    "PhrList": [
      {
        "PhrId": 1,
        "FirstName": "sample string 2",
        "LastName": "sample string 3",
        "Gender": 4,
        "DOB": "sample string 5"
      },
      {
        "PhrId": 1,
        "FirstName": "sample string 2",
        "LastName": "sample string 3",
        "Gender": 4,
        "DOB": "sample string 5"
      }
    ]
  }
}

application/xml, text/xml

Sample:
<ResponseOfPhrListResponseQLZlyOoP xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ETelMed.Entity.Models.Common">
  <IsSuccess>true</IsSuccess>
  <Message>sample string 2</Message>
  <Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/ETelMed.Entity.Models.PHRDetails">
    <d2p1:PhrList>
      <d2p1:PhrListModel>
        <d2p1:DOB>sample string 5</d2p1:DOB>
        <d2p1:FirstName>sample string 2</d2p1:FirstName>
        <d2p1:Gender>4</d2p1:Gender>
        <d2p1:LastName>sample string 3</d2p1:LastName>
        <d2p1:PhrId>1</d2p1:PhrId>
      </d2p1:PhrListModel>
      <d2p1:PhrListModel>
        <d2p1:DOB>sample string 5</d2p1:DOB>
        <d2p1:FirstName>sample string 2</d2p1:FirstName>
        <d2p1:Gender>4</d2p1:Gender>
        <d2p1:LastName>sample string 3</d2p1:LastName>
        <d2p1:PhrId>1</d2p1:PhrId>
      </d2p1:PhrListModel>
    </d2p1:PhrList>
  </Result>
  <Status>3</Status>
</ResponseOfPhrListResponseQLZlyOoP>