GET api/v1/{EMRSystem}/Population/RadiologyResults

Returns the Radiology Results of all statuses for all patients for a given date range and filtered, optionally, by Locations (facilities).

Status: Released

URI Parameters

NameDescriptionTypeAdditional information
EMRSystem

The emr system.

EMRSystem

None.

LocationList

Gets or sets the location list.

string

None.

IncludeBody

Gets or sets a value indicating whether to include the body of the report or not.

boolean

None.

UserId

Identifier of the user initiating the request.

string

Required

FromDateTime

Gets or sets from date time.

datetime

Required if EMRSystem = Cerner, or Epic, or Meditech

ToDateTime

Gets or sets to date time.

datetime

None.

Header Parameters

NameDescriptionTypeAdditional information
LoginId

Gets or sets the login identifier. This Login Id will be encrypted and passed in Sansoro specific Http Request Headers.

string

Required if EMRSystem = Allscripts, or Athena, or Cerner, or Meditech, or Sandbox

Password

Gets or sets the password. This Password will be encrypted and passed in Sansoro specific Http Request Headers.

string

Data type: Password

Required if EMRSystem = Allscripts, or Athena, or Cerner, or Meditech, or Sandbox

EmrInstance

Gets or sets the emr instance. This emr instance info will be encrypted and passed in Sansoro specific Http Request Headers.

string

None.

ApplicationName

Gets or sets the requesting application name. This requesting application name will be encrypted and passed in Sansoro specific Http Request Headers.

string

Required if using application keys

ApplicationKey

Gets or sets the requesting application key. This requesting application key will be encrypted and passed in Sansoro specific Http Request Headers.

string

Data type: Password

Required if using application keys

AuthorizationToken

Gets or sets the custom authorization token. This requesting authorization token will be encrypted and passed in Sansoro specific Http Request Headers.

string

None.

RequestVerboseLogging

Enables verbose logging for a single request. When "true", verbose logging will occur. When "false", the configuration setting will be respected. This value will be passed in Sansoro specific Http Request Headers.

boolean

None.

Response Information

Collection of UdmPopulationRadiologyResultResponse
NameDescriptionTypeAdditional information
ResultId

Gets or sets the result identifier.

string

None.

ResultDateTime

Gets or sets the result date/time.

datetime

None.

BeginExamDateTime

Gets or sets the exam begin date/time.

datetime

None.

EndExamDateTime

Gets or sets the exam end date/time.

datetime

None.

ResultStatus

Gets or sets the result status.

CodedObject

None.

OrderId

Gets or sets the order identifier.

string

None.

OrderingProvider

Gets or sets the ordering provider.

Provider

None.

ExamAccessionNumber

Gets or sets the exam accession number.

string

None.

ExamType

Gets or sets the exam type.

RadiologyExamType

None.

ReadingRadiologists

Gets or sets the reading radiologists.

Collection of Provider

None.

Reports

Gets or sets the radiology reports.

Collection of RadiologyReport

None.

Patient

Gets or sets the patient.

BasePatient

None.

Encounter

Gets or sets the encounter.

Encounter

None.

CreatedUpdatedDateTime

Gets or sets the exam laterality.

datetime

None.

Response Codes

Http Status Code 200 - Indicates that the request was processed successfully.

Http Status Code 400 - Indicates that the request did not contain all the required fields or had an invalid value.

Http Status Code 401 - Indicates that authentication to the underlying EMR server using the provided LoginId and Password failed.

Http Status Code 403 - Indicates that there is an issue with the request UserId.

Http Status Code 408 - Indicates that the request to the underlying EMR server timed out.

Http Status Code 500 - Indicates that an internal server error occurred during processing of the request.

Http Status Code 502 - Indicates that a request made to the underlying EMR server could not be completed.

Response Formats

application/json

[
  {
    "ResultId": "sample string 1",
    "ResultDateTime": "2025-12-12T21:08:36.1726474+00:00",
    "BeginExamDateTime": "2025-12-12T21:08:36.1727113+00:00",
    "EndExamDateTime": "2025-12-12T21:08:36.17275+00:00",
    "ResultStatus": {
      "Id": "sample string 1",
      "Name": "sample string 2"
    },
    "OrderId": "sample string 2",
    "OrderingProvider": {
      "ProviderId": "sample string 1",
      "ProviderName": "sample string 2"
    },
    "ExamAccessionNumber": "sample string 3",
    "ExamType": {
      "ExamTypeId": "sample string 1",
      "ExamTypeName": "sample string 2",
      "CPT": "sample string 3"
    },
    "ReadingRadiologists": [
      {
        "ProviderId": "sample string 1",
        "ProviderName": "sample string 2"
      },
      {
        "ProviderId": "sample string 1",
        "ProviderName": "sample string 2"
      }
    ],
    "Reports": [
      {
        "ReportId": "sample string 1",
        "ReportType": {
          "Id": "sample string 1",
          "Name": "sample string 2"
        },
        "DocumentPointer": "sample string 2",
        "Storage": "sample string 3",
        "Format": "sample string 4",
        "Body": "sample string 5",
        "BodyLength": "sample string 6"
      },
      {
        "ReportId": "sample string 1",
        "ReportType": {
          "Id": "sample string 1",
          "Name": "sample string 2"
        },
        "DocumentPointer": "sample string 2",
        "Storage": "sample string 3",
        "Format": "sample string 4",
        "Body": "sample string 5",
        "BodyLength": "sample string 6"
      }
    ],
    "Patient": {
      "PatientId": "sample string 1",
      "DisplayName": "sample string 2",
      "LastName": "sample string 3",
      "FirstName": "sample string 4",
      "MiddleName": "sample string 5",
      "MRN": "sample string 6",
      "BirthDateTime": "2025-12-12T21:08:36.1749232+00:00",
      "Gender": {
        "Id": "sample string 1",
        "Name": "sample string 2"
      },
      "DeceasedDateTime": "2025-12-12T21:08:36.1749267+00:00"
    },
    "Encounter": {
      "EncounterId": "sample string 1",
      "EncounterType": {
        "Id": "sample string 1",
        "Name": "sample string 2"
      },
      "PatientClass": {
        "Id": "sample string 1",
        "Name": "sample string 2"
      },
      "EncounterDateTime": "2025-12-12T21:08:36.1749766+00:00",
      "DischargeDateTime": "2025-12-12T21:08:36.1749784+00:00",
      "FinancialNumber": "sample string 2",
      "Location": {
        "BedId": "sample string 1",
        "Bed": "sample string 2",
        "RoomId": "sample string 3",
        "Room": "sample string 4",
        "UnitId": "sample string 5",
        "Unit": "sample string 6",
        "HospitalId": "sample string 7",
        "Hospital": "sample string 8"
      }
    },
    "CreatedUpdatedDateTime": "2025-12-12T21:08:36.1750579+00:00"
  },
  {
    "ResultId": "sample string 1",
    "ResultDateTime": "2025-12-12T21:08:36.1726474+00:00",
    "BeginExamDateTime": "2025-12-12T21:08:36.1727113+00:00",
    "EndExamDateTime": "2025-12-12T21:08:36.17275+00:00",
    "ResultStatus": {
      "Id": "sample string 1",
      "Name": "sample string 2"
    },
    "OrderId": "sample string 2",
    "OrderingProvider": {
      "ProviderId": "sample string 1",
      "ProviderName": "sample string 2"
    },
    "ExamAccessionNumber": "sample string 3",
    "ExamType": {
      "ExamTypeId": "sample string 1",
      "ExamTypeName": "sample string 2",
      "CPT": "sample string 3"
    },
    "ReadingRadiologists": [
      {
        "ProviderId": "sample string 1",
        "ProviderName": "sample string 2"
      },
      {
        "ProviderId": "sample string 1",
        "ProviderName": "sample string 2"
      }
    ],
    "Reports": [
      {
        "ReportId": "sample string 1",
        "ReportType": {
          "Id": "sample string 1",
          "Name": "sample string 2"
        },
        "DocumentPointer": "sample string 2",
        "Storage": "sample string 3",
        "Format": "sample string 4",
        "Body": "sample string 5",
        "BodyLength": "sample string 6"
      },
      {
        "ReportId": "sample string 1",
        "ReportType": {
          "Id": "sample string 1",
          "Name": "sample string 2"
        },
        "DocumentPointer": "sample string 2",
        "Storage": "sample string 3",
        "Format": "sample string 4",
        "Body": "sample string 5",
        "BodyLength": "sample string 6"
      }
    ],
    "Patient": {
      "PatientId": "sample string 1",
      "DisplayName": "sample string 2",
      "LastName": "sample string 3",
      "FirstName": "sample string 4",
      "MiddleName": "sample string 5",
      "MRN": "sample string 6",
      "BirthDateTime": "2025-12-12T21:08:36.1749232+00:00",
      "Gender": {
        "Id": "sample string 1",
        "Name": "sample string 2"
      },
      "DeceasedDateTime": "2025-12-12T21:08:36.1749267+00:00"
    },
    "Encounter": {
      "EncounterId": "sample string 1",
      "EncounterType": {
        "Id": "sample string 1",
        "Name": "sample string 2"
      },
      "PatientClass": {
        "Id": "sample string 1",
        "Name": "sample string 2"
      },
      "EncounterDateTime": "2025-12-12T21:08:36.1749766+00:00",
      "DischargeDateTime": "2025-12-12T21:08:36.1749784+00:00",
      "FinancialNumber": "sample string 2",
      "Location": {
        "BedId": "sample string 1",
        "Bed": "sample string 2",
        "RoomId": "sample string 3",
        "Room": "sample string 4",
        "UnitId": "sample string 5",
        "Unit": "sample string 6",
        "HospitalId": "sample string 7",
        "Hospital": "sample string 8"
      }
    },
    "CreatedUpdatedDateTime": "2025-12-12T21:08:36.1750579+00:00"
  }
]

'

GET api/v1/{EMRSystem}/Population/RadiologyResults

Returns the Radiology Results of all statuses for all patients for a given date range and filtered, optionally, by Locations (facilities).

Status: Released

URI Parameters


Required
Required if EMRSystem = Cerner, or Epic, or Meditech

Header Parameters

Required if EMRSystem = Allscripts, or Athena, or Cerner, or Meditech, or Sandbox
Data type: Password , Required if EMRSystem = Allscripts, or Athena, or Cerner, or Meditech, or Sandbox
Required if using application keys
Data type: Password , Required if using application keys

Request: {{ method }} {{ url }}

  • Http Request Headers
  • {{header.name}} : {{header.value}} ******
  • Http Request Body
  • {{httpRequestBody}}
  • Http Response Headers
  • {{header.name}} : {{header.value}} ******
  • Http Response Data
  • {{httpResponseData}}