Retrieve Pathways
get
/ohfapi/cg/v3.3/pathways
This endpoint supports the retrieval of Pathways. It returns Pathway information like Pathway Identifier, Name, Source, Pathway Version, Species, Member Count and other Pathway associated information.
Request
Supported Media Types
- application/json
- application/xml
Query Parameters
-
limit(optional): integer(int32)
Number of rows to return
-
offset(optional): integer(int32)
Row number to start from
Security
-
basicAuth: basic
Type:
basic
Response
Supported Media Types
- application/json
- application/xml
200 Response
successful operation
Model for paginated collections of data.
Root Schema : PageableCollectionPathway
Type:
object
Model for paginated collections of data.
Show Source
-
count(optional):
integer(int64)
Number of objects in the 'items' collection.
-
hasMore(optional):
boolean
Default Value:
false
A boolean indicating if more pages are available. -
items(optional):
array items
A collection of paged items.
-
links(optional):
array link
A collection of links containing hrefs to the current, next, and previous pages as applicable.
-
resourceType(optional):
string
Identify the resource type
Nested Schema : link
Type:
array
A collection of links containing hrefs to the current, next, and previous pages as applicable.
Show Source
Example:
{rel: 'next',href: '/patientapi/patients?limit=100&offset=300'}
Nested Schema : Pathway
Type:
Show Source
object
-
geneReference(optional):
object LinkedReference
-
identifier(optional):
object Identifier
Identifier assigned by a given system
-
memberCount(optional):
integer(int64)
Count of Gene symbols as per HUGO database
-
pathwayMember(optional):
object LinkedReference
-
pathwayName(optional):
string
Pathway Name for the Protien. For ex.,CCDC3
-
pathwaySource(optional):
string
Reference to the Source where the Pathway was obtained. For ex.,Reactome
-
pathwayVersion(optional):
string
Pathway Version Label. For ex.,SIFT_VER2_75
-
species(optional):
string
Scientific Species Name
Nested Schema : Identifier
Type:
object
Identifier assigned by a given system
Show Source
-
system(optional):
string
System which assigned this identifier
-
value(optional):
string
Identifier value
400 Response
Invalid parameters supplied
404 Response
pathways(s) not found
Examples
The following example submits a GET request.
API URL
http://localhost:7010/ohfapi/cg/v3.3/pathways
Example of Response Body
The following example shows the contents of the response body in JSON format:
{ "resourceType": "Pathways", "items": [ { "identifier": { "system": "ODB", "value": "1" }, "pathwayName": "The role of Nef in HIV-1 replication and disease pathogenesis", "pathwaySource": "REACTOME", "pathwayVersion": "GRCH37.75_PATHWAY", "species": "homo sapiens", "memberCount": 17, "pathwayMember": { "reference": "/ohfapi/cg/v3.3/pathways/1" } }], "count": 1, "hasMore": true, "links": [ { "rel": "self", "href": "http://localhost:7010/ohfapi/cg/v3.3/pathways" } ] }