Skip to main content
UsersGet all member and invited users
TestMu AI
StatusCommunityBlog
Users

Get all member and invited users

Get all member and invited users

GET
/api/organization/users-list
Get all member and invited users
curl --request GET \
--url "https://auth.lambdatest.com//api/organization/users-list" \
--header "Authorization: Basic <encoded-value>"
{
"data": [
{
"Email": "[email protected]",
"Group": "g7",
"InvitedAt": "2022-12-30T17:00:51Z",
"InvitedBy": "pawan rai",
"LastLoginAt": "2022-12-30T17:01:20Z",
"Name": "Pawan",
"Role": "Admin",
"Status": "Active"
},
{
"Email": "[email protected]",
"Group": "g2",
"InvitedAt": null,
"InvitedBy": null,
"LastLoginAt": "2022-12-30T16:57:59Z",
"Name": "pawan rai",
"Role": "Admin",
"Status": "Internal"
},
{
"Email": "[email protected]",
"Group": null,
"InvitedAt": "2022-12-30T17:02:46Z",
"InvitedBy": "pawan rai",
"LastLoginAt": null,
"Name": null,
"Role": "User",
"Status": "Pending"
},
{
"Email": "[email protected]",
"Group": null,
"InvitedAt": "2022-12-30T17:02:46Z",
"InvitedBy": "pawan rai",
"LastLoginAt": null,
"Name": null,
"Role": "Admin",
"Status": "Pending"
}
]
}

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 member and invited users Success

dataobject[]
data.Emailstring
data.Groupstring
Example: "g7"
data.InvitedAtstring
Example: "2022-12-30T17:00:51Z"
data.InvitedBystring
Example: "pawan rai"
data.LastLoginAtstring
Example: "2022-12-30T17:01:20Z"
data.Namestring
Example: "Pawan"
data.Rolestring
Example: "Admin"
data.Statusstring
Example: "Active"
Get all member and invited users
curl --request GET \
--url "https://auth.lambdatest.com//api/organization/users-list" \
--header "Authorization: Basic <encoded-value>"
{
"data": [
{
"Email": "[email protected]",
"Group": "g7",
"InvitedAt": "2022-12-30T17:00:51Z",
"InvitedBy": "pawan rai",
"LastLoginAt": "2022-12-30T17:01:20Z",
"Name": "Pawan",
"Role": "Admin",
"Status": "Active"
},
{
"Email": "[email protected]",
"Group": "g2",
"InvitedAt": null,
"InvitedBy": null,
"LastLoginAt": "2022-12-30T16:57:59Z",
"Name": "pawan rai",
"Role": "Admin",
"Status": "Internal"
},
{
"Email": "[email protected]",
"Group": null,
"InvitedAt": "2022-12-30T17:02:46Z",
"InvitedBy": "pawan rai",
"LastLoginAt": null,
"Name": null,
"Role": "User",
"Status": "Pending"
},
{
"Email": "[email protected]",
"Group": null,
"InvitedAt": "2022-12-30T17:02:46Z",
"InvitedBy": "pawan rai",
"LastLoginAt": null,
"Name": null,
"Role": "Admin",
"Status": "Pending"
}
]
}