Knowledge base
Tips and tricks Best practice guides, FAQ & more
Find tutorials, guides and use case examples in the
Learning centerThe endpoint Update Lambdatest with TeamId is used to update an Agent of LambdaTest type in Leapwork, based on a specific team. After the successful update of a LambdaTest Agent, the agent Id is returned in the response.
The details of the updated agent can be validated with the help of the Get Agent by Id endpoint.
Please note this endpoint will work with the Leapwork Enterprise Edition only.
(PUT) http://{controllerMachine}:{controllerPort}/api/v4/agents/update/{teamId}/lambdatest/{agentId}
Field |
Type |
Description |
Comment |
accessKey |
string |
An access key is required to restrict unauthorized access to the API. |
The Access Key should include agent scope to access the API. |
agentId
|
string |
Unique id of agent |
|
teamId |
string |
Unique id of team |
|
requestBody |
application/json |
Unique identifiers for the LambdaTest Agent comprising the following parameters:
|
Kindly refer to the documentation for Agents for more details on the usage. |
curl -X PUT --header 'Accept: application/json' --header 'AccessKey: Mo87Nc4qDAtzJNDb' -d '{ \
"HostName": "string", \
"Port": "80", \
"Title": "My Lambdatest Agent", \
"Description": "Lambdatest Agent", \
"UserName": "string", \
"AccessKey": "Password", \
"PlatformName": "string", \
"OSType": "Windows", \
"OSVersion": "10", \
"Browser": "Chrome", \
"BrowserVersion": "latest",\
"ScreenResolution": { \
"Width": 0, \
"Height": 0 \
}, \
}' 'http://localhost:9001/api/v4/agents/update/2226f0c6-71a8-46fd-8f76-9a4d6d87d864/lambdatest/1a8d0f39-ce50-4a35-bed1-770b4de3f957'
$headers = @{}
$headers.Add("accessKey","Mo87Nc4qDAtzJNDb")
$requestBody = @'
{
"HostName": "string",
"Port": "80",
"Title": "My Lambdatest Agent",
"Description": "Lambdatest Agent",
"UserName": "string",
"AccessKey": "Password",
"PlatformName": "string",
"OSType": "Windows",
"OSVersion": "10",
"Browser": "Chrome",
"BrowserVersion": "latest",
"ScreenResolution": {
"Width": 0,
"Height": 0
},
}
'@
Invoke-WebRequest -Uri "http://localhost:9001/api/v4/agents/update/2226f0c6-71a8-46fd-8f76-9a4d6d87d864/lambdatest/1a8d0f39-ce50-4a35-bed1-770b4de3f957" -ContentType "application/json" -Headers $headers -Method PUT -Body $requestBody
Update agent and returns true for successful operation completion in the response.
{
"$id": "1",
"AgentId": "1a8d0f39-ce50-4a35-bed1-770b4de3f957",
"IsSuccessful": true
}
Field |
Type |
Description |
Values |
$id |
string |
ID of internal object |
|
AgentId |
string |
ID of the Agent updated |
|
IsSuccessful |
bool |
Returns ‘true’ for successful operation |
true| false |
Response Code
200 (OK)
401 (Unauthorized - eg: “Incorrect Accesskey”)
403 (Forbidden – eg: “AccessKey does not have the relevant scope permission”)
404 (Not Found – eg: “Asset not found")
500 (Internal Server Error)
©2024, Leapwork. All rights reserved.