Build›Fetch specified build details (Server 2)
Build
Fetch specified build details (Server 2)
To fetch build details of the buildid specified by the user.
Fetch specified build details (Server 2) curl --request GET \
--url "https://manual-api.lambdatest.com/builds/{build_id}" \
--header "Authorization: Basic <encoded-value>"
{
"data": {
"build_id": 1,
"name": "asdaskjaaa",
"user_id": 1212,
"username": "john smith",
"status_ind": "completed",
"create_timestamp": "2018-12-23 14:30:14",
"end_timestamp": "2018-12-25 12:46:38",
"tags": [
"tag1",
"tag2",
"tag3"
]
},
"message": "Retrieve build list was successful",
"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
build_idintegerrequired
Build ID that details you want to fetch
Response
application/jsonsuccessful operation
dataobject
data.build_idnumber
Example: 1
data.namestring
Example: "asdaskjaaa"
data.user_idnumber
Example: 1212
data.usernamestring
Example: "john smith"
data.status_indstring
Example: "completed"
data.create_timestampstring
Example: "2018-12-23 14:30:14"
data.end_timestampstring
Example: "2018-12-25 12:46:38"
data.tagsstring[]
Example:["tag1","tag2","tag3"]
Fetch specified build details (Server 2) curl --request GET \
--url "https://manual-api.lambdatest.com/builds/{build_id}" \
--header "Authorization: Basic <encoded-value>"
{
"data": {
"build_id": 1,
"name": "asdaskjaaa",
"user_id": 1212,
"username": "john smith",
"status_ind": "completed",
"create_timestamp": "2018-12-23 14:30:14",
"end_timestamp": "2018-12-25 12:46:38",
"tags": [
"tag1",
"tag2",
"tag3"
]
},
"message": "Retrieve build list was successful",
"status": "success"
}