
Clinical Integration Services

The ACR is creating a clinical decision support registry (CDSR) to examine the nationwide ordering patterns and the decision-making process that occurs during imaging orders. Data in this registry can help guide clinician education, clinical policy and public policy.
This registry will provide insights into ordering behavior, produce standard measures for CQI at provider organizations, and will be available for research use.API: https://dart-test.acr.org/dartcs/cdsregistry/fp
Functionality: Ingest data into dart system.
Method: POST
Format:
POST https://dart-test.acr.org/dartcs/cdsregistry/fp
{
"DartHeader":
{ <header elements> },
"Payload":
{ <CDS registry data> }
}
Output
201 – Created : If the data is ingested into dart db successfully
200 – OK : If the data is updated successfully
400 – Bad request : Data is not ingested into dart db (Possible reasons include bad request format and internal processing error in server)DartHeader: Required for the CDR registry to identify data. If any of the following elements are missing in the request, the data won’t be updated into the database and client will receive a 400-Bad request response.
Embed image: CDS Registry JSON Data Elements.png
Payload: Any valid json format (Expected CDS registry data here)Sample Request – Empty payload (API Return will be 201-Created)
POST https://dart-test.acr.org/dartcs/cdsregistry/fp
Content-Type: application/json
{
"dartheader": {
"partnerid": "ndsc",
"appid": "dart",
"dartprojectid": "479",
"projectname": "cms demo",
"programdartid": "29",
"programname": "cdsr",
"mediatype": "csv",
"objecttype": "registry_data",
"headertype": "cdsregistry",
"id": "541eae10-150d-4135-a85d-9ac98e734055",
"creationdate": "2015-10-28t20:17:56.487z",
"modificationdate": "2015-10-28t20:17:56.487z",
"versionno": "1",
"programspecificdata": {
"providertype": "fp",
"dsn": "12236",
"npifp": "1000203",
"datefurnishedservice": "2015-10-28t20:17:56.487z",
"subscriberid": "1002330"
},
},
"payload": {}
}