Skip to content

Admin deployment file manifest

GET
/api/v1/admin/deployments/{id}/files
curl --request GET \
--url https://api.deploybase.eu/api/v1/api/v1/admin/deployments/example/files \
--header 'Authorization: <Authorization>'

Returns the file listing of a deployment’s CDN storage with derived page URLs. Stored manifest when captured at build time; live listing (backfilled) otherwise.

id
required
string

Deployment ID (UUID)

OK

Media type application/json
object
data
meta
object
request_id
string
timestamp
string
trace_id
string
data
object
captured_at
string
deployment_id
string
file_count
integer
files
Array<object>
object
page_url
string
path
string
size_bytes
integer
source

“stored” | “live”

string
total_bytes
integer
truncated
boolean
Example generated
{
"data": {
"captured_at": "example",
"deployment_id": "example",
"file_count": 1,
"files": [
{
"page_url": "example",
"path": "example",
"size_bytes": 1
}
],
"source": "example",
"total_bytes": 1,
"truncated": true
},
"meta": {
"request_id": "example",
"timestamp": "example",
"trace_id": "example"
}
}

Bad Request

Media type application/json
object
code
string
details
error
string
meta
object
request_id
string
timestamp
string
trace_id
string
Example generated
{
"code": "example",
"details": "example",
"error": "example",
"meta": {
"request_id": "example",
"timestamp": "example",
"trace_id": "example"
}
}

Unauthorized

Media type application/json
object
code
string
details
error
string
meta
object
request_id
string
timestamp
string
trace_id
string
Example generated
{
"code": "example",
"details": "example",
"error": "example",
"meta": {
"request_id": "example",
"timestamp": "example",
"trace_id": "example"
}
}

Forbidden

Media type application/json
object
code
string
details
error
string
meta
object
request_id
string
timestamp
string
trace_id
string
Example generated
{
"code": "example",
"details": "example",
"error": "example",
"meta": {
"request_id": "example",
"timestamp": "example",
"trace_id": "example"
}
}

Not Found

Media type application/json
object
code
string
details
error
string
meta
object
request_id
string
timestamp
string
trace_id
string
Example generated
{
"code": "example",
"details": "example",
"error": "example",
"meta": {
"request_id": "example",
"timestamp": "example",
"trace_id": "example"
}
}

Bad Gateway

Media type application/json
object
code
string
details
error
string
meta
object
request_id
string
timestamp
string
trace_id
string
Example generated
{
"code": "example",
"details": "example",
"error": "example",
"meta": {
"request_id": "example",
"timestamp": "example",
"trace_id": "example"
}
}

Service Unavailable

Media type application/json
object
code
string
details
error
string
meta
object
request_id
string
timestamp
string
trace_id
string
Example generated
{
"code": "example",
"details": "example",
"error": "example",
"meta": {
"request_id": "example",
"timestamp": "example",
"trace_id": "example"
}
}