Authorizations
Query Parameters
Required range:
1 <= x <= 1000Example:
Required range:
x >= 0Example:
curl --request GET \
--url https://{controlPlaneURL}/api/svc/v1/users \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"email": "<string>",
"tenantName": "<string>",
"metadata": {
"sub": "<string>",
"imageURL": "<string>",
"displayName": "<string>",
"userObject": {},
"inviteAccepted": true,
"registeredInIdp": true,
"preference": {},
"groups": [
"<string>"
],
"tenantRoleManagedBy": "manual",
"ssoName": "<string>"
},
"roles": [
"<string>"
],
"rolesWithResource": [
{
"roleId": "<string>",
"resourceType": "role",
"resourceId": "<string>"
}
],
"active": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"total": 100,
"offset": 0,
"limit": 10
}
}List all users of tenant filtered by query and showInvalidUsers. Pagination is available based on query parameters.
curl --request GET \
--url https://{controlPlaneURL}/api/svc/v1/users \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"email": "<string>",
"tenantName": "<string>",
"metadata": {
"sub": "<string>",
"imageURL": "<string>",
"displayName": "<string>",
"userObject": {},
"inviteAccepted": true,
"registeredInIdp": true,
"preference": {},
"groups": [
"<string>"
],
"tenantRoleManagedBy": "manual",
"ssoName": "<string>"
},
"roles": [
"<string>"
],
"rolesWithResource": [
{
"roleId": "<string>",
"resourceType": "role",
"resourceId": "<string>"
}
],
"active": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"total": 100,
"offset": 0,
"limit": 10
}
}1 <= x <= 1000x >= 0Was this page helpful?