Asset
List assets
Lists assets by build_id.
get/asset
Query parameters
offsetinteger
The starting point for pagination. Defaults to 0 if not provided.
limitinteger
The maximum number of results to return per page"
build_idinteger required
The ID of the build to list assets by.
type'docker-image' | 'lambda' | 'bundle'
The type of the asset.
platform'x86_64' | 'arm_64'
The platform of the asset.
Response
A list of assets.
Example response
[
{
"paging": {
"total": 30,
"limit": 200
},
"results": [
{
"id": 123,
"name": "My Asset",
"build_id": 345,
"type": "docker-image",
"platform": "arm_64",
"url": "https://example.com/my-asset.jpg",
"nrn": "organization=1:account=2:namespace=4:application=4:build=345:asset=123",
"branch": "main",
"commit": {
"id": 234,
"permalink": "https://example.com/1234"
}
}
]
}
]