Retrieve Clinical Specimen Alias for a Specimen Identifier

get

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

This endpoint supports the retrieval of Patient/Subject Clinical Specimen Aliases for a Clinical Specimen Row ID. It returns Clinical Specimen Aliases information like Specimen Alias and its Row ID, Service Provider Identifier and reference to the Clinical Specimen details. Result includes only aliases to which user has read access.

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 ??? Patient Context

http://localhost:7010/ohfapi/cg/v3.3/patientapi/clinicalspecimens/1010/aliases

Example of Response Body

The following example shows the response returned in JSON format.

{
  "resourceType": "SpecimenAlias",
  "items": [
    {
      "identifier": {
        "system": "CDM",
        "value": "16"
      },
      "serviceProviderIdentifier": "vcf",
      "specimenAlias": "ALIAS_SVCPRV1_CNV_dummy_01",
      "specimenAliasUpper": "ALIAS_SVCPRV1_CNV_DUMMY_01",
      "specimenReference": {
        "reference": "/ohfapi/cg/v3.3/patientapi/clinicalspecimens/1010"
      }
    }
  ],
  "count": 1,
  "hasMore": false,
  "links": [
    {
      "rel": "self",
      "href": "/ohfapi/cg/v3.3/patientapi/clinicalspecimens/1010/aliases"
    }
  ]
}

API URL ??? Subject Context

http://localhost:7010/ohfapi/cg/v3.3/subjectapi/clinicalspecimens/1035/aliases

Example of Response Body

The following example shows the response returned in JSON format.

{
  "resourceType": "SpecimenAlias",
  "items": [
    {
      "identifier": {
        "system": "CDM",
        "value": "89"
      },
      "serviceProviderIdentifier": "SVCPRV1",
      "specimenAlias": "ALIAS_SVCPRV1_TCGA-08-0375-11A-8109",
      "specimenAliasUpper": "ALIAS_SVCPRV1_TCGA-08-0375-11A-8109",
      "specimenReference": {
        "reference": "/ohfapi/cg/v3.3/subjectapi/clinicalspecimens/1035"
      }
    }
  ],
  "count": 1,
  "hasMore": false,
  "links": [
    {
      "rel": "self",
      "href": "http://localhost:post/ohfapi/cg/v3.3/subjectapi/clinicalspecimens/1035/aliases"
    }
  ]
}
Back to Top