Retrieve Race for a Subject Identifier

get

/ohfapi/cg/v3.3/subjectapi/subjects/{id}/race

This endpoint supports the retrieval of Races for a single Subject Identifier passed. It returns all the Race related information like Value Code.

Request

Supported Media Types
Path Parameters
Query Parameters
Security
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : PageableCollectionRace
Type: object
Model for paginated collections of data.
Show Source
Nested Schema : items
Type: array
A collection of paged items.
Show Source
Nested Schema : Race
Type: object
Model for a Race object in CDM.
Show Source
Nested Schema : Identifier
Type: object
Identifier assigned by a given system
Show Source
Nested Schema : LinkedReference
Type: object
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 : 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

Races(s) not found
Back to Top

Examples

The following example submits a GET request.

API URL

http://localhost:7010/ohfapi/cg/v3.3/subjectapi/subjects/79/race

Example of Response Body

The following example shows the response returned in JSON format.

{
  "resourceType": "Race",
  "items": [
    {
      "identifier": {
        "system": "CDM",
        "value": "41"
      },
      "valueCode": {
        "coding": [
          {
            "code": "41",
            "display": "Wesort"
          }
        ]
      },
      "patient": {
        "reference": "/ohfapi/cg/v3.3/subjectapi/subjects/79/patients"
      },
      "subject": {
        "reference": "/ohfapi/cg/v3.3/subjectapi/subjects/79"
      }
    }
  ],
  "count": 1,
  "hasMore": false,
  "links": [
    {
      "rel": "self",
      "href": "http://localhost:7010/ohfapi/cg/v3.3/subjectapi/subjects/79/race"
    }
  ]
}
Back to Top