For AI agents and LLMs: a machine-readable index is available at llms.txt. A plain-Markdown version of any documentation page is available by appending .md to its URL.
Skip to main content
BuildUpdate Build Name (Server 2)
TestMu AI
StatusCommunityBlog
Build

Update Build Name (Server 2)

To change build name.

PATCH
/builds/{build_id}
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/json

Updated Build Name

namestring<string>
build_resultstring<string>

Response

application/json

successful operation

messagestring
statusstring
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"
}
}