Skip to main content
View as Markdown

Download an asset

GET /api/v1/test-results/{testResultId}/assets/{assetId}

Streams the raw binary content of a specific asset.

Path parameters

NameTypeRequiredDescription
testResultIdstringyesTest result UUID
assetIdstringyesAsset UUID

Header parameters

NameTypeRequiredDescription
X-Organization-IdintegernoSelects which of the caller's organizations the request acts on. When omitted, the caller's default organization is used.

Example request

curl https://api.mobilenexthq.com/api/v1/test-results/{testResultId}/assets/{assetId} \
-X GET \
-H 'Authorization: Bearer mob_...'

Responses

200 — Raw asset content

401 — Missing or invalid Bearer token

{
"error": {
"code": "string",
"message": "string"
}
}

404 — Resource not found

{
"error": {
"code": "string",
"message": "string"
}
}