Retrieve Variants for Reference Identifiers and Database with POST Request

post

/ohfapi/cg/v3.3/variants/byReferenceId

This endpoint supports the retrieval of Variant Identifiers for multiple Reference Identifiers, multiple Database and single Assembly/Alignment ID.It also returns if any Invalid Reference Identifiers are passed in the Request.

Request

Supported Media Types
Query Parameters
Body ()
Root Schema : VariantReferenceIdDatabaseDef
Type: object
Show Source
Nested Schema : databases
Type: array
List of Database Names. For ex.,dbSNP_142
Show Source
Nested Schema : referenceIds
Type: array
Minimum Number of Items: 1
Maximum Number of Items: 2147483647
List of Reference IDs to External Database. For ex.,rs13079411
Show Source
Security
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : PageableDetailedCollection
Type: object
Model for paginated collections of data.
Show Source
Nested Schema : invalidAssemblies
Type: array
List of Invalid Assemblies in request.
Show Source
Nested Schema : invalidGeneNames
Type: array
List of Invalid Genenames in request.
Show Source
Nested Schema : invalidHugoNames
Type: array
List of Invalid Hugonames in request.
Show Source
Nested Schema : invalidReferenceIds
Type: array
List of Invalid Reference IDs in request.
Show Source
Nested Schema : items
Type: array
A collection of paged items.
Show Source
Nested Schema : Serializable
Type: object

400 Response

Assembly/Alignment Id is not supplied

404 Response

Variants not found for the Reference Ids and Reference Databases supplied
Back to Top

Examples

The following example submits a POST request.

API URL

http://localhost:7010/ohfapi/cg/v3.3/variants/byReferenceId?limit=2&offset=0

Example of Request Body

The following example shows the response returned in JSON format.

{
    "alignmentId": 1,
    "referenceIds": [
        "rs142950474",
        "rs142950477",
        "COSM297314",
        "COSM",
        "rs"
    ],
    "databases": [
        "dbSNP_138",
        "COSMIC_COSMIC.V67"
    ]
}

Example of Response Body

The following example shows the response returned in JSON format.

{
  "resourceType" : "Variants",
  "items" : [ {
    "identifier" : {
      "system" : "ODB",
      "value" : "4754980"
    }
  }, {
    "identifier" : {
      "system" : "ODB",
      "value" : "38063682"
    }
  } ],
  "count" : 2,
  "hasMore" : true,
  "links" : [ {
    "rel" : "self",
    "href" : "http://localhost:7010/ohfapi/cg/v3.3/variants/byReferenceId?limit=2&offset=0"
  }, {
    "rel" : "next",
    "href" : "http://localhost:7010/ohfapi/cg/v3.3/variants/byReferenceId?offset=2&limit=2"
  } ],
  "invalidReferenceIds" : [ "COSM", "rs" ]
}
Back to Top