Get a list of operations

get

/OperationDefinition

List an individual operation by its supplied parameter.

GET /OperationDefinition?:parameters

Authorization is not required. Authentication is not required to access the OperationDefinition resource.

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

Default Response

Search
Example Request
GET https://fhir-ehr-sc.cerner.com/r4/2f8f5ec1-b7b8-4be5-ae27-e308284dd9c1/OperationDefinition?url=https://fhir-ehr-sc.cerner.com/r4/OperationDefinition/group-export
Example Response:
{
  "resourceType": "Bundle",
  "id": "2654004e-c122-4519-8eaf-c099997905aa",
  "type": "searchset",
  "timestamp": "2022-02-01T04:42:58-05:00",
  "entry": [
    {
      "fullUrl": "https://fhir-ehr-sc.cerner.com/r4/2f8f5ec1-b7b8-4be5-ae27-e308284dd9c1/OperationDefinition?url=https://fhir-ehr-sc.cerner.com/r4/OperationDefinition/group-export",
      "search": {
        "mode": "match"
      },
      "resource": {
        "resourceType": "OperationDefinition",
        "id": "group-export",
        "name": "GrouplevelExport",
        "title": "Soarian Clinicals OperationDefinition for FHIR Bulk API - GrouplevelExport",
        "status": "active",
        "url": "https://fhir-ehr-sc.cerner.com/r4/OperationDefinition/group-export",
        "kind": "operation",
        "date": "2022-02-01T04:42:58-05:00",
        "publisher": "Cerner Corporation",
        "description": "FHIR Operation to obtain a detailed set of FHIR resources of diverse resource types\n\t\t\t\tpertaining to all patients in specified Group. The FHIR server SHALL support invocation of this\n\t\t\t\toperation using the FHIR Asynchronous Request Pattern.",
        "jurisdiction": [
          {
            "coding": [
              {
                "system": "http://unstats.un.org/unsd/methods/m49/m49.html",
                "code": "840",
                "display": "USA"
              }
            ]
          }
        ],
        "code": "export",
        "resource": "Group",
        "system": "false",
        "type": "false",
        "instance": "true",
        "parameter": [
          {
            "name": "_outputformat",
            "use": "in",
            "min": "1",
            "max": "1",
            "documentation": "The format for the requested bulk data files to be generated. Accepted values are:\n\t\t\t\ta. application/fhir+ndjson, b. application/ndjson and c. ndjson\\",
            "type": "string"
          },
          {
            "name": "_since",
            "use": "in",
            "min": "1",
            "max": "1",
            "documentation": "The system shall support a date/time field in the _since parameter on the patient-\n\t\t\t\tand group- level data export requests. Resource data shall only be returned for resource instances\n\t\t\t\twhere the last updated date/time is greater than the date/time supplied in the request. Data\n\t\t\t\tassociated with a resource that was created after the request start date/time (transactionTime)\n\t\t\t\tshall not be returned.",
            "type": "instant"
          },
          {
            "name": "_type",
            "use": "in",
            "min": "1",
            "max": "1",
            "documentation": "The system shall support a string of comma-delimited FHIR resource types in the\n\t\t\t\t_type parameter on the patient- and group-level data export requests. Only Soarian Clinicals R4\n\t\t\t\tresources found in the _type string that are authorized for the population application should be\n\t\t\t\treturned",
            "type": "string"
          }
        ]
      }
    }
  ],
  "link": [
    {
      "relation": "self",
      "url": "https://fhir-ehr-sc.devcerner.com/r4/9015d117-44ed-4061-bec7-dabd439dc474/OperationDefinition?url=https://fhir-ehr-sc.devcerner.com/r4/OperationDefinition/group-export"
    }
  ]
}
Back to Top