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" : 421 ,
"name" : "Pawan" ,
"user_id" : 407869
} '
{
"message" : "User profile updated successfully" ,
"type" : "success"
}
Authorizations Authorization string header required
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Body application/json Edit details by admin
Response 200▼
application/json Edit 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" : 421 ,
"name" : "Pawan" ,
"user_id" : 407869
} '
{
"message" : "User profile updated successfully" ,
"type" : "success"
}