GET api/v1/{practiceId}/healthid/patient/{patientId}

Get url pointed to healthID system for provided patient

Request Information

URI Parameters

NameDescriptionTypeAdditional information
practiceId

provider id in mps system

globally unique identifier

Required

patientId

patient id in mps system

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

object with all required info

Com.Healthbridge.Hhas.Cloud.WebRole.Areas.Clinical.RestControllers.HealthIntegrationController+TokenResponse
NameDescriptionTypeAdditional information
token

string

None.

reference

string

None.

code

integer

None.

message

string

None.

link

string

None.

Response Formats

application/json, text/json

Sample:
{
  "token": "sample string 1",
  "reference": "sample string 2",
  "code": 3,
  "message": "sample string 4",
  "link": "sample string 5"
}

application/xml, text/xml

Sample:
<HealthIntegrationController.TokenResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Hhas.Cloud.WebRole.Areas.Clinical.RestControllers">
  <code>3</code>
  <link>sample string 5</link>
  <message>sample string 4</message>
  <reference>sample string 2</reference>
  <token>sample string 1</token>
</HealthIntegrationController.TokenResponse>