Skip to main content
GET
/
api
/
2.0
/
lab_facility_identifiers
/
{id}
/
Retrieve Lab Facility Identifier
curl --request GET \
  --url https://sandbox.elationemr.com/api/2.0/lab_facility_identifiers/{id}/ \
  --header 'Authorization: Bearer <token>'
{
  "active": true,
  "lab_facility": "<string>",
  "practice": 123,
  "practice_facility": "<string>",
  "vendor": {
    "display_name": "<string>",
    "id": 123,
    "name": "<string>"
  },
  "bidi_connection": {
    "alias": "<string>",
    "enabled": true,
    "id": 123,
    "priority": 32767,
    "protocol": "<string>"
  },
  "compendium": 123,
  "created_date": "2023-11-07T05:31:56Z",
  "deleted_date": "2023-11-07T05:31:56Z",
  "description": "<string>",
  "id": 123,
  "lab_connection": 123,
  "practice_secondary_id": "<string>",
  "user_facing": true
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

id
integer<int64>
required

Response

200 - application/json
active
boolean
required

Whether the facility identifier should be used. Should be true in most cases.

lab_facility
string
required

The id that represents the lab.

Maximum string length: 50
practice
integer<int64>
required
practice_facility
string
required

The id that represents the practice; often an account number provided by the lab vendor.

Maximum string length: 50
vendor
object
required
bidi_connection
object | null
compendium
integer<int64> | null

The id of the compendium that will be used when the user selects this facility identifier.

created_date
string<date-time> | null
read-only
deleted_date
string<date-time> | null
read-only
description
string | null

The text that will displayed to users in the lab order dialog.

Maximum string length: 255
id
integer
read-only
lab_connection
integer | null
practice_secondary_id
string | null
user_facing
boolean

Whether this facility identifier will be visible in the lab order dialog. Should be true for most cases.