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 Authorization string header required
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Path Parameters build_id integer required
Build ID that details you want to fetch
Response 200▼
application/json successful operation
data object
▶ Hide child attributesdata. build_id number
Example: 1
data. name string
Example: "asdaskjaaa"
data. user_id number
Example: 1212
data. username string
Example: "john smith"
data. status_ind string
Example: "completed"
data. create_timestamp string
Example: "2018-12-23 14:30:14"
data. end_timestamp string
Example: "2018-12-25 12:46:38"
data. tags string[]
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"
}