Retrieve HUGO Names for a Pathway Identifier

get

/ohfapi/cg/v3.3/pathways/{id}

This endpoint supports the retrieval of HUGO Names by Pathway Identifier.

Request

Supported Media Types
Path Parameters
Query Parameters
Security
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Model for paginated collections of data.
Root Schema : PageableCollectionPathwayMember
Type: object
Model for paginated collections of data.
Show Source
Nested Schema : items
Type: array
A collection of paged items.
Show Source
Nested Schema : PathwayMember
Type: object
Show Source
  • Approved HUGO symbol for species loci, including protein coding genes, RNA genes and pseudogenes, e.g. 'SRY', 'DMRT1', 'FOXL2', etc.

400 Response

Invalid parameters supplied

404 Response

pathway member(s) not found
Back to Top

Examples

The following example submits a GET request.

API URL

 http://localhost:7010/ohfapi/cg/v3.3/pathways/102

Example of Response Body

The following example shows the contents of the response body in JSON format:

{
  "resourceType": "Pathway",
  "items": [
    {
      "hugoName": "CLP1"
    },
    {
      "hugoName": "CPSF1"
    },
    {
      "hugoName": "CPSF2"
    },
    {
      "hugoName": "CPSF3"
    }],
  "count": 4,
  "hasMore": false,
  "links": [
    {
      "rel": "self",
      "href": "http://localhost:7010/ohfapi/cg/v3.3/pathways/102"
    }
  ]
}
Back to Top