List the organization spaces
View all the spaces in your organization.
Permissions
This action requires the following IAM (Identity and Access Management) permissions:
- iam.role.get
- Console
- API
- Terraform

In the IAM menu, click Spaces.
You access the Spaces table where you can view all the spaces in your organization.
By clicking Actions for a given space, you can edit the space and assign users or service accounts to it.
By clicking the identifier of a space, you get a more detailed view of the space.
You will find the list of user accounts assigned to this space.
You will also find the list of service accounts assigned to this space.
Example:
curl 'https://api.{region}.numspot.com/organisations/{organisationId}/spaces'
Response:
{
"nextPageToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9",
"totalSize": 150,
"items": [
{
"name": "…",
"description": "…",
"id": "123e4567-e89b-12d3-a456-426614174000",
"organisationId": "123e4567-e89b-12d3-a456-426614174000",
"status": "QUEUED",
"createdOn": "2025-12-16T15:38:31.485Z",
"updatedOn": "2025-12-16T15:38:31.485Z"
}
]
}
To retrieve the details of a given space with the API:
Example:
curl 'https://api.{region}.numspot.com/organisations/{organisationId}/spaces/{spaceId}'
Response:
{
"name": "…",
"description": "…",
"id": "123e4567-e89b-12d3-a456-426614174000",
"organisationId": "123e4567-e89b-12d3-a456-426614174000",
"status": "QUEUED",
"createdOn": "2025-12-16T15:38:31.485Z",
"updatedOn": "2025-12-16T15:38:31.485Z"
}
See the page on using the API for the implementation.
The Terraform documentation is available on the Numspot registry ↗.