Retrieve Consent for a Patient Identifier
get
/HSDataService-web/api/3.2.0/patientapi/patients/{id}/consent
This endpoint supports the retrieval of Consents for a single Patient Identifier passed. It returns all the Consents related information like Status, Type and other associated information.
Request
Supported Media Types
- application/json
- application/xml
Path Parameters
- id
-
Type:
integer
(int64
)Required:true
Patient Row ID
Query Parameters
- limit
-
Type:
integer
(int32
)Pagination query params: ?limit=2&offset=0- offset
Type:integer
(int32
)Pagination query params: ?limit=2&offset=0
Response
Supported Media Types
- application/json
- application/xml
200 Response
successful operation
Body
Model for paginated collections of data.
Root Schema : PageableCollectionConsent
Type:
object
Model for paginated collections of data.
- count
-
Type:
integer
(int64
)Number of objects in the 'items' collection. - hasMore
-
Type:
boolean
Default Value:false
A boolean indicating if more pages are available. - items
-
Type:
array
itemsA collection of paged items. - links
-
Type:
array
linksA collection of links containing hrefs to the current, next, and previous pages as applicable. - resourceType
-
Type:
string
Identify the resource type
Nested Schema : items
Nested Schema : links
Nested Schema : Consent
Type:
object
Model for a Consent object in CDM.
- consentStatus
-
Type:
object
ConsentStatus - consentType
-
Type:
object
ConsentType - identifier
-
Type:
object
CdmIdentifierIdentifier assigned by a given system - patient
-
Type:
object
LinkedReference - period
-
Type:
object
DateRange - subject
-
Type:
object
LinkedReference
Nested Schema : ConsentStatus
Type:
object
- identifier
-
Type:
object
CdmIdentifierIdentifier assigned by a given system - status
-
Type:
object
CodeableConceptModel that represents a value as a reference to one or more terminologies or ontologies or defined by the provision of text.
Nested Schema : ConsentType
Type:
object
- identifier
-
Type:
object
CdmIdentifierIdentifier assigned by a given system - type
-
Type:
object
CodeableConceptModel that represents a value as a reference to one or more terminologies or ontologies or defined by the provision of text.
Nested Schema : CdmIdentifier
Type:
object
Identifier assigned by a given system
- system
-
Type:
string
System which assigned this identifier - value
-
Type:
string
Identifier value
Nested Schema : LinkedReference
Type:
object
- display
-
Type:
string
- reference
-
Type:
string
Nested Schema : DateRange
Type:
object
- end
-
Type:
string
(date-time
) - start
-
Type:
string
(date-time
)
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.
- coding
-
Type:
array
codingRead Only:true
Code(s) defined by a terminology system. - text
-
Type:
string
Plain text representation of the concept.
Nested Schema : coding
Nested Schema : Coding
Type:
object
Model for a reference to a code defined by a terminology system.
- code
-
Type:
string
Symbol in syntax defined by the system. - description
-
Type:
string
Description defined by the system. - display
-
Type:
string
Representation defined by the system. - sysId
-
Type:
string
Identity of the terminology system. - sysName
-
Type:
string
Name of the terminology system. - sysVersion
-
Type:
string
Version of the system - if relevant.
400 Response
Invalid parameters supplied
404 Response
consent not found
Examples
The following example submits a GET request.
API URL
http://localhost:7001/HSDataService-web/api/3.2.0/patientapi/patients/1/consent?limit=2&offset=0
Example of Response Body
The following example shows the response returned in JSON format.
{ "resourceType": "Consent", "items": [ { "identifier": { "system": "CDM", "value": "1" }, "period": { "start": "11/14/1998", "end": "12/31/1998" }, "patient": { "reference": "/HSDataService-web/api/3.2.0/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": "/HSDataService-web/api/3.2.0/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:7001/HSDataService-web/api/3.2.0/patientapi/patients/1/consent?limit=2&offset=0" }, { "rel": "next", "href": "http://localhost:7001/HSDataService-web/api/3.2.0/patientapi/patients/1/consent?offset=2&limit=2" } ] }