GET MedicalCenters/{id}

Gets a medical center record by id.

Request Information

Parameters

NameDescriptionAdditional information
id
Medical Center id

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Name": "sample string 2",
  "Category": "sample string 3",
  "Type": "sample string 4"
}

text/html

Sample:
{"ID":1,"Name":"sample string 2","Category":"sample string 3","Type":"sample string 4"}

application/xml, text/xml

Sample:
<MedicalCenter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PhysicianDirectoryWebService.Models">
  <Category>sample string 3</Category>
  <ID>1</ID>
  <Name>sample string 2</Name>
  <Type>sample string 4</Type>
</MedicalCenter>