Users›Edit details by admin
Users
Edit details by admin
Edit details by admin
curl --request POST \
--url "https://auth.lambdatest.com//api/organization/user" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"group_id": 0,
"name": "<name>",
"user_id": 0
}'
{
"message": "User profile updated successfully",
"type": "success"
}
Authorizations
Authorizationstringheaderrequired
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Body
application/jsonEdit details by admin
Response
application/jsonEdit name by admin Success
curl --request POST \
--url "https://auth.lambdatest.com//api/organization/user" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"group_id": 0,
"name": "<name>",
"user_id": 0
}'
{
"message": "User profile updated successfully",
"type": "success"
}