Home

Pharmacy

GET api/Pharmacy/{systemID}/ConnectionInfo

Retrieves Pharmacy Connection Information

Request Information

Parameters

NameDescriptionAdditional information
systemID
The SystemID of the pharmacy system.

Define this parameter in the request URI.

    

Response Codes

    
  • OK (200)
  • NotFound (404)
  • InternalServerError (500)
  •     

Response Information

PharmaciesDB object

Response body formats

application/json, text/json

Sample:
{
  "SystemID": "sample string 1",
  "Name": "sample string 2",
  "IPAddress": "sample string 3",
  "HostName": "sample string 4",
  "Port": 5,
  "CCIPAddress": "sample string 6",
  "CCHostName": "sample string 7",
  "CCPort": 8,
  "UseQDirect": true
}

text/javascript

Sample:
{"SystemID":"sample string 1","Name":"sample string 2","IPAddress":"sample string 3","HostName":"sample string 4","Port":5,"CCIPAddress":"sample string 6","CCHostName":"sample string 7","CCPort":8,"UseQDirect":true}

application/xml, text/xml

Sample:
<PharmaciesDB xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QCFWebAPI.Models">
  <CCHostName>sample string 7</CCHostName>
  <CCIPAddress>sample string 6</CCIPAddress>
  <CCPort>8</CCPort>
  <HostName>sample string 4</HostName>
  <IPAddress>sample string 3</IPAddress>
  <Name>sample string 2</Name>
  <Port>5</Port>
  <SystemID>sample string 1</SystemID>
  <UseQDirect>true</UseQDirect>
</PharmaciesDB>