Retrieve Clinical Specimen Alias for Specimen Identifiers

get

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

This endpoint supports the retrieval of Patient/Subject Clinical Specimen Aliases for multiple Clinical Specimen Row IDs. It returns Paginated List of 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
  • Collection Format: multi
    Minimum Number of Items: 1
    Maximum Number of Items: 2147483647
    Patient/Subject Clinical Specimen Row IDs
  • 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 : PageableCollectionClinicalSpecimenAlias
Type: object
Model for paginated collections of data.
Show Source
Nested Schema : items
Type: array
A collection of paged items.
Show Source
Nested Schema : ClinicalSpecimenAlias
Type: object
Model for a Clinical Specimen Alias 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

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/aliases?id=1005&id=1010&id=1012&id=1015

Example of Response Body

The following example shows the response returned in JSON format.

{
  "resourceType": "SpecimenAlias",
  "items": [
    {
      "identifier": {
        "system": "CDM",
        "value": "159"
      },
      "serviceProviderIdentifier": "vcf",
      "specimenAlias": "ALIAS_SVCPRV1_SN 005",
      "specimenAliasUpper": "ALIAS_SVCPRV1_SN 005",
      "specimenReference": {
        "reference": "/ohfapi/cg/v3.3/patientapi/clinicalspecimens/1005"
      }
    },
    {
      "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"
      }
    },
    {
      "identifier": {
        "system": "CDM",
        "value": "17"
      },
      "serviceProviderIdentifier": "vcf",
      "specimenAlias": "ALIAS_SVCPRV1_TCGA-06-0187-01A-01W2",
      "specimenAliasUpper": "ALIAS_SVCPRV1_TCGA-06-0187-01A-01W2",
      "specimenReference": {
        "reference": "/ohfapi/cg/v3.3/patientapi/clinicalspecimens/1015"
      }
    }
  ],
  "count": 3,
  "hasMore": false,
  "links": [
    {
      "rel": "self",
      "href": "/ohfapi/cg/v3.3/patientapi/clinicalspecimens/aliases?id=1005&id=1010&id=1012&id=1015"
    }
  ]
} 

API URL ??? Subject Context

http://localhost:7010/ohfapi/cg/v3.3/subjectapi/clinicalspecimens/aliases?id=1035&id=1040&id=1041&id=1075

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"
      }
    },
    {
      "identifier": {
        "system": "CDM",
        "value": "4"
      },
      "serviceProviderIdentifier": "SVCPRV1",
      "specimenAlias": "ALIAS_SVCPRV1_TCGA-02-0026-10A-01W",
      "specimenAliasUpper": "ALIAS_SVCPRV1_TCGA-02-0026-10A-01W",
      "specimenReference": {
        "reference": "/ohfapi/cg/v3.3/subjectapi/clinicalspecimens/1040"
      }
    },
    {
      "identifier": {
        "system": "CDM",
        "value": "47"
      },
      "serviceProviderIdentifier": "SVCPRV1",
      "specimenAlias": "ALIAS_SVCPRV1_NEGATIVE 2",
      "specimenAliasUpper": "ALIAS_SVCPRV1_NEGATIVE 2",
      "specimenReference": {
        "reference": "/ohfapi/cg/v3.3/subjectapi/clinicalspecimens/1075"
      }
    }
  ],
  "count": 3,
  "hasMore": false,
  "links": [
    {
      "rel": "self",
      "href": "/ohfapi/cg/v3.3/subjectapi/clinicalspecimens/aliases?id=1035&id=1040&id=1041&id=1075"
    }
  ]
}
Back to Top