Retrieve Consent for Patients

get

/ohfapi/cg/v3.3/patientapi/consents

This endpoint supports the retrieval of Consents for multiple Patient Record (row) ids passed. It returns Consent related information like Status, Type and other associated information.

Request

Supported Media Types
Query Parameters
  • Collection Format: multi
    Minimum Number of Items: 1
    Maximum Number of Items: 2147483647
    Patient Identifiers
  • Pagination query params: ?limit=2&offset=0
  • Pagination query params: ?limit=2&offset=0
Security
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : PageableCollectionConsent
Type: object
Model for paginated collections of data.
Show Source
Nested Schema : items
Type: array
A collection of paged items.
Show Source
Nested Schema : CodeableConcept
Type: object
Model that represents a value as a reference to one or more terminologies or ontologies or defined by the provision of text.
Show Source
Nested Schema : ConsentStatus
Type: object
Show Source
Nested Schema : ConsentType
Type: object
Show Source
Nested Schema : CdmIdentifier
Type: object
Identifier assigned by a given system
Show Source
Nested Schema : LinkedReference
Type: object
Show Source
Nested Schema : DateRange
Type: object
Show Source
Nested Schema : coding
Type: array
Read Only: true
Code(s) defined by a terminology system.
Show Source
Nested Schema : Coding
Type: object
Model for a reference to a code defined by a terminology system.
Show Source

400 Response

Invalid parameters supplied

404 Response

consents not found
Back to Top

Examples

The following example submits a GET request.

API URL

http://localhost:7010/ohfapi/cg/v3.3/patientapi/consents?id=1&id=2&limit=2&offset=0

Example of Response Body

The following example shows the contents of the response body in JSON format:

{
  "resourceType": "Consent",
  "items": [
    {
      "identifier": {
        "system": "CDM",
        "value": "1"
      },
      "period": {
        "start": "11/14/1998",
        "end": "12/31/1998"
      },
      "patient": {
        "reference": "/ohfapi/cg/v3.3/patientapi/patients/1"
      },
      "consentStatus": {
        "identifier": {
          "system": "CDM",
          "value": "2"
        },
        "status": {
          "coding": [
            {
              "code": "2",
              "display": "Withdrawn",
              "description": "Consent Status Description",
              "sysId": "EHA_CUSTOM_CD_SYS",
              "sysName": "EHA Custom Code System",
              "sysVersion": "1"
            }
          ]
        }
      },
      "consentType": {
        "identifier": {
          "system": "CDM",
          "value": "1"
        },
        "type": {
          "coding": [
            {
              "code": "CS1",
              "display": "CS1Name",
              "description": "Consent Description",
              "sysId": "EHA_CUSTOM_CD_SYS",
              "sysName": "EHA Custom Code System",
              "sysVersion": "1"
            }
          ]
        }
      }
    },
    {
      "identifier": {
        "system": "CDM",
        "value": "2"
      },
      "period": {
        "start": "11/14/1998",
        "end": "12/31/1998"
      },
      "patient": {
        "reference": "/ohfapi/cg/v3.3/patientapi/patients/1"
      },
      "consentStatus": {
        "identifier": {
          "system": "CDM",
          "value": "2"
        },
        "status": {
          "coding": [
            {
              "code": "2",
              "display": "Withdrawn",
              "description": "Consent Status Description",
              "sysId": "EHA_CUSTOM_CD_SYS",
              "sysName": "EHA Custom Code System",
              "sysVersion": "1"
            }
          ]
        }
      },
      "consentType": {
        "identifier": {
          "system": "CDM",
          "value": "1"
        },
        "type": {
          "coding": [
            {
              "code": "CS1",
              "display": "CS1Name",
              "description": "Consent Description",
              "sysId": "EHA_CUSTOM_CD_SYS",
              "sysName": "EHA Custom Code System",
              "sysVersion": "1"
            }
          ]
        }
      }
    }
  ],
  "count": 2,
  "hasMore": true,
  "links": [
    {
      "rel": "self",
      "href": "http://localhost:7010/ohfapi/cg/v3.3/patientapi/consents?id=1&id=2&limit=2&offset=0"
    },
    {
      "rel": "next",
      "href": "http://localhost:7010/ohfapi/cg/v3.3/patientapi/consents?offset=2&limit=2&id=1&id=2"
    }
  ]
}
Back to Top