List users
The list is obtained at the organization or space level.
Permissions
info
This action requires the following IAM (Identity and Access Management) permissions:
- iam.user.get
- Console
- API
- Terraform

See the Users table.
From this table, you can perform actions for one of the users in the list.
List of possible actions:
- create a user from this profile;
- manage the spaces assigned to a user;
- manage the roles assigned to a user;
- manage the permissions assigned to a user.
List the users of an organization
Example:
curl 'https://api.{region}.numspot.com/iam/organisations/{organisationId}/users'
Response:
{
"nextPageToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9",
"totalSize": 150,
"items": [
{
"email": "john.smith@acme.org",
"firstname": "…",
"lastname": "…",
"id": "123e4567-e89b-12d3-a456-426614174000",
"active": true,
"createdOn": "2018-11-13T20:20:39+00:00",
"updatedOn": "2018-11-13T20:20:39+00:00"
}
]
}
info
See the page on using the API for the implementation.
List the users of a space
https://docs.numspot.com/openapi/#tag/identity-access-management/GET/iam/spaces/{spaceId}/users
Example:
curl 'https://api.{region}.numspot.com/iam/spaces/{spaceId}/users'
Response:
{
"nextPageToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9",
"totalSize": 150,
"items": [
{
"email": "john.smith@acme.org",
"firstname": "…",
"lastname": "…",
"id": "123e4567-e89b-12d3-a456-426614174000",
"active": true,
"createdOn": "2018-11-13T20:20:39+00:00",
"updatedOn": "2018-11-13T20:20:39+00:00"
}
]
}
info
See the page on using the API for the implementation.
The Terraform documentation is available on the Numspot registry ↗.