List all runs
Returns a list of runs for a job.
Path Parameters
namespace string required
Possible values: <= 1024 characters
The name of the namespace.
job string required
Possible values: <= 1024 characters
The name of the job.
Query Parameters
limit integer
Default value: 100
The number of results to return from offset.
offset integer
The initial position from which to return results.
Responses
- 200
OK
application/json
Schema
Example (from schema)
Schema
runs object[]
{
"runs": [
{
"id": "870492da-ecfb-4be0-91b9-9a89ddd3db90",
"createdAt": "2019-05-09T19:49:24.201361Z",
"updatedAt": "2019-05-09T19:49:24.201361Z",
"nominalStartTime": null,
"nominalEndTime": null,
"state": "RUNNING",
"startedAt": "2019-05-09T15:17:32.690346",
"endedAt": null,
"durationMs": null,
"args": {
"email": "me@example.com",
"emailOnFailure": "false",
"emailOnRetry": "true",
"retries": "1"
},
"facets": {}
},
{}
]
}
GET /namespaces/:namespace/jobs/:job/runs
Request
Request
curl / cURL
curl -L -X GET 'http://localhost:5000/api/v1/namespaces/:namespace/jobs/:job/runs' \
-H 'Accept: application/json'
python / requests
curl -L -X GET 'http://localhost:5000/api/v1/namespaces/:namespace/jobs/:job/runs' \
-H 'Accept: application/json'
go / native
curl -L -X GET 'http://localhost:5000/api/v1/namespaces/:namespace/jobs/:job/runs' \
-H 'Accept: application/json'
nodejs / axios
curl -L -X GET 'http://localhost:5000/api/v1/namespaces/:namespace/jobs/:job/runs' \
-H 'Accept: application/json'
ruby / Net::HTTP
curl -L -X GET 'http://localhost:5000/api/v1/namespaces/:namespace/jobs/:job/runs' \
-H 'Accept: application/json'
csharp / RestSharp
curl -L -X GET 'http://localhost:5000/api/v1/namespaces/:namespace/jobs/:job/runs' \
-H 'Accept: application/json'
php / cURL
curl -L -X GET 'http://localhost:5000/api/v1/namespaces/:namespace/jobs/:job/runs' \
-H 'Accept: application/json'
java / OkHttp
curl -L -X GET 'http://localhost:5000/api/v1/namespaces/:namespace/jobs/:job/runs' \
-H 'Accept: application/json'
powershell / RestMethod
curl -L -X GET 'http://localhost:5000/api/v1/namespaces/:namespace/jobs/:job/runs' \
-H 'Accept: application/json'