Retrieve Clinical Specimen Metadata for a Specimen Identifier

get

/ohfapi/cg/v3.3/{apiContext}/clinicalspecimens/{id}/metadata

This endpoint supports the retrieval of Patient/Subject Clinical Specimen Metadata for a Clinical Specimen Row ID. It returns Clinical Specimen Metadata information like Specimen Number, Specimen Vendor Number and other metadata associated information.

Request

Supported Media Types
Path Parameters
Query Parameters
Security
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : PageableCollection
Type: object
Model for paginated collections of data.
Show Source
Nested Schema : items
Type: array
A collection of paged items.
Show Source
Nested Schema : Serializable
Type: object

400 Response

Invalid parameters supplied

404 Response

Clinical specimen or clinical specimen metadata not found
Back to Top

Examples

The following example submits a GET request.

API URL

http://localhost:7010/ohfapi/cg/v3.3/subjectapi/clinicalspecimens/2/metadata?limit=2&offset=2

Example of Response Body

The following example shows the response returned in JSON format.

{
  "resourceType": "SpecimenMetadata",
  "items": [
    {
      "identifier": {
        "system": "CDM",
        "value": "871045"
      },
      "metadata": {
        "attrName": "ATTR_13",
        "attrDesc": "ATTRIBUTE_DESC_13",
        "strValue": "ATTR_13_VAL_2",
        "strValueUpper": "ATTR_13_VAL_2"
      },
      "specimenReference": {
        "reference": "/ohfapi/cg/v3.3/subjectapi/clinicalspecimens/2",
        "display": "HG0002(vendor2)"
      },
      "specimenVendorNumber": "vendor2",
      "accessionIdentifier": "HG0002"
    },
    {
      "identifier": {
        "system": "CDM",
        "value": "1075613"
      },
      "metadata": {
        "attrName": "ATTR_16",
        "attrDesc": "ATTRIBUTE_DESC_16",
        "strValue": "ATTR_16_VAL_2",
        "strValueUpper": "ATTR_16_VAL_2"
      },
      "specimenReference": {
        "reference": "/ohfapi/cg/v3.3/subjectapi/clinicalspecimens/2",
        "display": "HG0002(vendor2)"
      },
      "specimenVendorNumber": "vendor2",
      "accessionIdentifier": "HG0002"
    }
  ],
  "count": 2,
  "hasMore": true,
  "links": [
    {
      "rel": "self",
      "href": "http://localhost:7010/ohfapi/cg/v3.3/subjectapi/clinicalspecimens/2/metadata?limit=2&offset=2"
    },
    {
      "rel": "next",
      "href": "http://localhost:7010/ohfapi/cg/v3.3/subjectapi/clinicalspecimens/2/metadata?offset=4&limit=2"
    },
    {
      "rel": "prev",
      "href": "http://localhost:7010/ohfapi/cg/v3.3/subjectapi/clinicalspecimens/2/metadata?offset=0&limit=2"
    }
  ]
}
Back to Top