GET ClinicalRecord/GetStore/{OrgId}/{CenterId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
OrgId

integer

Required

CenterId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of DropDownField
NameDescriptionTypeAdditional information
RECORD_ID

integer

None.

RECORD_DESC

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "RECORD_ID": 1,
    "RECORD_DESC": "sample string 2"
  },
  {
    "RECORD_ID": 1,
    "RECORD_DESC": "sample string 2"
  }
]

text/html

Sample:
[{"RECORD_ID":1,"RECORD_DESC":"sample string 2"},{"RECORD_ID":1,"RECORD_DESC":"sample string 2"}]

application/xml, text/xml

Sample:
<ArrayOfDropDownField xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tm.WebAPI.Models">
  <DropDownField>
    <RECORD_DESC>sample string 2</RECORD_DESC>
    <RECORD_ID>1</RECORD_ID>
  </DropDownField>
  <DropDownField>
    <RECORD_DESC>sample string 2</RECORD_DESC>
    <RECORD_ID>1</RECORD_ID>
  </DropDownField>
</ArrayOfDropDownField>