Wiki

Clone wiki

Numera.LibrisAPI / telehealth.medical_devices

Home > API Reference Documentation > telehealth.medical_devices

telehealth.medical_devices

You call this action to receive the set of supported medical devices by Libris+. This information will give you enough details so that your code can interact with the Libris to support a telehealth solution.

Input Parameters

PropertyRequiredDescription
imeinoOptionally you can supply the imei of a single device to request that device to send in its current pairing information to the platform

Output

If you submitted an imei you will receive a requested_devices == true property on the result object.

In all cases, you will receive a device_data object structure in the result that contains 3 properties, each with their own *arrays of objects.

PropertyDescription
categoriesList of device category descriptions and ids (scales, etc.)

* id - category id used in device list
* name - category name in different languages
manufacturersList of manufacturers that make the supported devices

* id - manufacturer id used in device list
* name - manufacturer name in different languages
devicesList of supported medical devices

An example object structure is shown below for each device currently supported:

{
    "categories" : [
        {
            "id": 0,
            "name" : {"en":"Weight Scales"}
        },
        {
            "id": 1,
            "name" : {"en":"Blood Pressure Monitors"}
        },
        {
            "id": 2,
            "name" : {"en":"Pulse Oximeters"}
        }
    ],
    "manufacturers" : [
        {
            "id" : 0,
            "name" : {"en":"A&D"}
        },
        {
            "id" : 1,
            "name" : {"en":"Choicemmed"}
        }
    ],
    "devices" : [
        {
            "id": 40014,
            "category_id" : 0,
            "manufacturer_id" : 0,
            "model" : "321PBT",
            "image" : "http://stage.bluelibris.com/static/images/med_dev_and_321PBT.jpg"
        },
        {
            "id": 40015,
            "category_id" : 1,
            "manufacturer_id" : 0,
            "model" : "767PBT",
            "image" : "http://stage.bluelibris.com/static/images/med_dev_and_767.jpg"
        },
        {
            "id": 40018,
            "category_id" : 2,
            "manufacturer_id" : 1,
            "model" : "MD300C318T",
            "image" : "http://stage.bluelibris.com/static/images/med_dev_md300.png"
        },
        {
            "id": 40064,
            "category_id" : 2,
            "manufacturer_id" : 1,
            "model" : "MD300C318T2",
            "image" : "http://stage.bluelibris.com/static/images/med_dev_md300.png"
        },
        {
            "id": 40060,
            "category_id" : 0,
            "manufacturer_id" : 0,
            "model" : "351PBT-Ci",
            "image" : "http://stage.bluelibris.com/static/images/med_dev_and_321PBT.jpg"
        },
        {
            "id": 40061,
            "category_id" : 0,
            "manufacturer_id" : 0,
            "model" : "355PBT-Ci",
            "image" : "http://stage.bluelibris.com/static/images/med_dev_and_321PBT.jpg"
        },
        {
            "id": 40062,
            "category_id" : 1,
            "manufacturer_id" : 0,
            "model" : "767PBT-Ci",
            "image" : "http://stage.bluelibris.com/static/images/med_dev_and_767.jpg"
        }
    ]
}

Updated