Skip to main content
ArtifactsRetrieve the metadata of all artifacts generated by a job.
TestMu AI
StatusCommunityBlog
Artifacts

Retrieve the metadata of all artifacts generated by a job.

This API fetches the metadata of all the [artifacts](https://www.lambdatest.com/support/docs/hyperexecute-artifacts/) that were produced during the execution of a Job.

GET
/v2.0/job/{jobID}/artefacts
Retrieve the metadata of all artifacts generated by a job.
curl --request GET \
--url "https://api.hyperexecute.cloud/v2.0/job/{jobID}/artefacts" \
--header "Authorization: Basic <encoded-value>"
{
"data": [
[
{
"id": "56bbe571-221a-4938-967c-2aabe5cdd379",
"name": "Final-Report-2",
"job": "d711f5eb-d629-48d1-9ebf-99cf7f3fa2f4",
"removed": false,
"link": null,
"size": "159195",
"remark": "foreman",
"status": "completed",
"createdAt": "2022-11-11T08:04:13Z",
"expiry": "2022-12-11T08:04:13Z",
"updatedAt": "2022-11-11T08:07:30Z",
"removedAt": null
}
]
],
"status": "success"
}

Authorizations

Authorizationstringheaderrequired

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

jobIDstringrequired

Enter your Job ID

Response

application/json

Successful operation

dataobject[]
statusstring
Retrieve the metadata of all artifacts generated by a job.
curl --request GET \
--url "https://api.hyperexecute.cloud/v2.0/job/{jobID}/artefacts" \
--header "Authorization: Basic <encoded-value>"
{
"data": [
[
{
"id": "56bbe571-221a-4938-967c-2aabe5cdd379",
"name": "Final-Report-2",
"job": "d711f5eb-d629-48d1-9ebf-99cf7f3fa2f4",
"removed": false,
"link": null,
"size": "159195",
"remark": "foreman",
"status": "completed",
"createdAt": "2022-11-11T08:04:13Z",
"expiry": "2022-12-11T08:04:13Z",
"updatedAt": "2022-11-11T08:07:30Z",
"removedAt": null
}
]
],
"status": "success"
}