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
Authorizationstringheaderrequired
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Path Parameters
build_idstringrequired
build id that name need to be changed.
Body
application/jsonUpdated Build Name
build_resultstring<string>
Response
application/jsonsuccessful operation
dataobject
data.resultstring
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"
}
}