Templates /
List template runs
Get a list of template runs
Required permission
Account > Templates > General > Read
Path parameters
templateId
string requiredID of the template
Query parameters
per_page
integerThe number of results to display per request. Maximum of 100 results per page.page
integerThe page number to access.cursor
stringThe cursor returned from the previous page of results, used to request the next page.
Response body
- {object}Response object.
data
{object} requiredResult data.templateRuns
[array] requiredAn array of template run objects.- {object}
name
string requiredName of the template.min length3max length100pattern^[a-zA-Z0-9]+((-|\s)[a-zA-Z0-9]+)*$description
stringDescription of the template.max length200pattern^[a-zA-Z0-9.,?\s\\/'"()[\];`%^&*\-_:!]+$apiVersion
string requiredThe version of the Northflank API to run the template against.one ofv1.2options
{object}Options regarding how the template is run.autorun
booleanIf true, the template will run automatically whenever a change is made to it.concurrencyPolicy
stringDefines the concurrency behaviour of the template with respect to parallel runs.one ofallow, queue, forbidid
string requiredIdentifier for the template runtemplateId
string requiredIdentifier for the templatestatus
string requiredStatus of the template runone ofpending, running, success, failure, aborted, aborting, queued, unknown, skippedstartedAt
stringTimestamp the run started at.concluded
boolean requiredWhether the run has concluded (aborted, success, failed)concludedAt
stringTimestamp the run concluded at.createdAt
string requiredTimestamp the run was created at.updatedAt
string requiredTimestamp the run was last updated at.pagination
{object} requiredData about the endpoint pagination.hasNextPage
boolean requiredIs there another page of results available?cursor
stringThe cursor to access the next page of results.count
number requiredThe number of results returned by this request.
API
CLI
JS Client
GET /v1/templates/{templateId}/runs
Example response
200 OK
A list of template runs.
JSON
{
"data": {
"templateRuns": [
{
"name": "Example Template",
"description": "This is a sample template.",
"apiVersion": "v1.2",
"options": {
"autorun": false,
"concurrencyPolicy": "allow"
},
"id": "3dd592f6-ce63-45ee-acf8-13dc5ec5235c",
"templateId": "example-template",
"status": "success",
"startedAt": "2021-01-01 12:01:00.000Z",
"concluded": true,
"concludedAt": "2021-01-01 12:10:00.000Z",
"createdAt": "2021-01-01 12:00:00.000Z",
"updatedAt": "2021-01-01 12:00:00.000Z"
}
]
},
"pagination": {
"hasNextPage": false,
"count": 1
}
}