Skip to main content
UsersGet All users
TestMu AI
StatusCommunityBlog
Users

Get All users

Get All users

GET
/api/organization/users
Get All users
curl --request GET \
--url "https://auth.lambdatest.com//api/organization/users" \
--header "Authorization: Basic <encoded-value>"
{
"data": [
{
"email": "[email protected]",
"group": {
"id": 814,
"name": "g2"
},
"id": 407868,
"name": "pawan rai",
"role": "Admin"
},
{
"email": "[email protected]",
"group": {
"id": 817,
"name": "g7"
},
"id": 407869,
"name": "Pawan",
"role": "Admin"
}
]
}

Authorizations

Authorizationstringheaderrequired

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

application/json

Get All users

dataobject[]
data.emailstring
data.groupobject
data.idnumber
Example: 407868
data.namestring
Example: "pawan rai"
data.rolestring
Example: "Admin"
Get All users
curl --request GET \
--url "https://auth.lambdatest.com//api/organization/users" \
--header "Authorization: Basic <encoded-value>"
{
"data": [
{
"email": "[email protected]",
"group": {
"id": 814,
"name": "g2"
},
"id": 407868,
"name": "pawan rai",
"role": "Admin"
},
{
"email": "[email protected]",
"group": {
"id": 817,
"name": "g7"
},
"id": 407869,
"name": "Pawan",
"role": "Admin"
}
]
}