curl --request GET \
--url https://api.example.com/api/v1/runs/{id}/artifacts \
--header 'Authorization: Bearer <token>'{
"data": [
{
"stage_id": "<string>",
"node_slug": "<string>",
"retry": 123,
"relative_path": "<string>",
"size": 123
}
]
}Lists captured artifact files for a run.
curl --request GET \
--url https://api.example.com/api/v1/runs/{id}/artifacts \
--header 'Authorization: Bearer <token>'{
"data": [
{
"stage_id": "<string>",
"node_slug": "<string>",
"retry": 123,
"relative_path": "<string>",
"size": 123
}
]
}JWT bearer token issued by fabro-web. See the Authentication guide for details.
Unique run identifier (ULID).
Artifact files captured for the run
List of captured artifact files for a run.
Show child attributes