Build › Update Build Name (Server 2)
Build
Update Build Name (Server 2) To change build name.
Update Build Name (Server 2) curl -- request PATCH \
-- url "https://manual-api.lambdatest.com/builds/{build_id}" \
-- header "Authorization: Basic <encoded-value>" \
-- header "Content-Type: application/json" \
-- data ' {
"name" : "<name>" ,
"build_result" : "<build_result>"
} '
{
"message" : "Build updated successfully" ,
"status" : "success" ,
"data" : {
"result" : "1"
}
}
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 string required
build id that name need to be changed.
Body application/json Updated Build Name
build_result string<string>
Response 200▼
application/json successful operation
data object
▶ Hide child attributesdata. result string
Example: "1"
Update Build Name (Server 2) curl -- request PATCH \
-- url "https://manual-api.lambdatest.com/builds/{build_id}" \
-- header "Authorization: Basic <encoded-value>" \
-- header "Content-Type: application/json" \
-- data ' {
"name" : "<name>" ,
"build_result" : "<build_result>"
} '
{
"message" : "Build updated successfully" ,
"status" : "success" ,
"data" : {
"result" : "1"
}
}