Retrieve Clinical Specimen Alias for Specimen Identifiers
get
/HSDataService-web/api/3.2.0/{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
- application/json
- application/xml
Path Parameters
- apiContext
-
Type:
stringRequired:truePattern:subjectapi|patientapiPatient/Subject API context
Query Parameters
- id
-
Type:
arrayRequired:trueCollection Format:multiMinimum Number of Items:1Maximum Number of Items:2147483647Patient/Subject Clinical Specimen Row IDs-
Type:
integer(int64)
- 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 : PageableCollectionClinicalSpecimenAlias
Type:
objectModel for paginated collections of data.
- count
-
Type:
integer(int64)Number of objects in the 'items' collection. - hasMore
-
Type:
booleanDefault Value:falseA boolean indicating if more pages are available. - items
-
Type:
arrayitemsA collection of paged items. - links
-
Type:
arraylinksA collection of links containing hrefs to the current, next, and previous pages as applicable. - resourceType
-
Type:
stringIdentify the resource type
Nested Schema : items
Type:
arrayA collection of paged items.
-
Type:
objectClinicalSpecimenAliasModel for a Clinical Specimen Alias object in CDM.
Nested Schema : links
Nested Schema : ClinicalSpecimenAlias
Type:
objectModel for a Clinical Specimen Alias object in CDM.
- identifier
-
Type:
objectIdentifierIdentifier assigned by a given system - serviceProviderIdentifier
-
Type:
stringIdentifier of the Service Provider that issued the Alias for the Clinical Specimen. - specimenAlias
-
Type:
stringClinical Specimen Alias value. - specimenAliasUpper
-
Type:
stringClinical Specimen Alias upper case value. - specimenReference
-
Type:
objectLinkedReference
Nested Schema : Identifier
Type:
objectIdentifier assigned by a given system
- system
-
Type:
stringSystem which assigned this identifier - value
-
Type:
stringIdentifier value
Nested Schema : LinkedReference
Type:
object- display
-
Type:
string - reference
-
Type:
string
400 Response
Invalid parameters supplied
404 Response
Clinical specimen or clinical specimen metadata not found
Examples
The following example submits a GET request.
API URL — Patient Context
http://localhost:7001/HSDataService-web/api/3.2.0/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": "/HSDataService-web/api/3.2.0/patientapi/clinicalspecimens/1005"
}
},
{
"identifier": {
"system": "CDM",
"value": "16"
},
"serviceProviderIdentifier": "vcf",
"specimenAlias": "ALIAS_SVCPRV1_CNV_dummy_01",
"specimenAliasUpper": "ALIAS_SVCPRV1_CNV_DUMMY_01",
"specimenReference": {
"reference": "/HSDataService-web/api/3.2.0/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": "/HSDataService-web/api/3.2.0/patientapi/clinicalspecimens/1015"
}
}
],
"count": 3,
"hasMore": false,
"links": [
{
"rel": "self",
"href": "/HSDataService-web/api/3.2.0/patientapi/clinicalspecimens/aliases?id=1005&id=1010&id=1012&id=1015"
}
]
}
API URL — Subject Context
http://localhost:7001/HSDataService-web/api/3.2.0/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": "/HSDataService-web/api/3.2.0/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": "/HSDataService-web/api/3.2.0/subjectapi/clinicalspecimens/1040"
}
},
{
"identifier": {
"system": "CDM",
"value": "47"
},
"serviceProviderIdentifier": "SVCPRV1",
"specimenAlias": "ALIAS_SVCPRV1_NEGATIVE 2",
"specimenAliasUpper": "ALIAS_SVCPRV1_NEGATIVE 2",
"specimenReference": {
"reference": "/HSDataService-web/api/3.2.0/subjectapi/clinicalspecimens/1075"
}
}
],
"count": 3,
"hasMore": false,
"links": [
{
"rel": "self",
"href": "/HSDataService-web/api/3.2.0/subjectapi/clinicalspecimens/aliases?id=1035&id=1040&id=1041&id=1075"
}
]
}