GA4GH: List runs
GET/ga4gh/wes/v1/runs
Uses the GA4GH workflow execution service API to list all run records.
Request
Query Parameters
page_size int32
Page size
page_token string
Page token
Responses
- 200
- 400
- 403
OK
- application/json
- Schema
- Example (auto)
Schema
runs object[]
next_page_tokenstring
{
"runs": [
{
"run_id": "string",
"state": "UNKNOWN"
}
],
"next_page_token": "string"
}
Bad request
- application/json
- Schema
- Example (auto)
Schema
msgstring
status_codeint32
{
"msg": "string",
"status_code": 0
}
Operation not allowed
- python
- curl
- java
- r
- javascript
- go
- powershell
- HTTP.CLIENT
- REQUESTS
import http.client
conn = http.client.HTTPSConnection("docs.seqera.io")
payload = ''
headers = {
'Accept': 'application/json'
}
conn.request("GET", "/ga4gh/wes/v1/runs", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))