Manage Domains
Domains API reference guide
The collections object represents a domain you've created that contains data sources and assigned permissions. The only collection type available is a domain, so collections and domains are referred to interchangeably throughout this page.
Endpoints and methods
POST
Creates a new domain
GET
Retrieves all domains
GET
Retrieves a specific domain
GET
Retrieves all permission IDs for a specific domain
GET
Retrieves a specific domain by name
PUT
Updates a domain name or description
PUT
Updates the domain data source assignment type
PUT
Updates the domain's settings
DELETE
Deletes a domain
POST
Adds data sources to a domain
GET
Retrieves the data sources in the domain
DELETE
Deletes a data source from a domain
POST
Assigns a domain permission to a user
POST
Deletes multiple permissions from a collection
GET
Retrieves user permissions assigned in the domain
DELETE
Removes a domain permission from a user by the permission ID
DELETE
Removes a domain permission from a user by the user ID and permission type
GET
Retrieve a list of permissions for the specified user or group across all domains they are a member of
POST
/collection
POST
/collection
Create a new domain. You can also add data sources, update user permissions, and change the data source assignment after creating the domain.
Required Immuta permission: GOVERNANCE
Body parameters
id string
The unique identifier of the domain.
Optional
-
-
name string
The name of the domain.
Required
-
-
description string
The description of the domain that will be displayed for users.
Optional
-
-
type string
The type of collection.
Required
domain
domain
collectionPermissions array
The users or groups to grant domain-specific permissions to.
Optional
[]
-
collectionPermissions.profileId integer
The profile ID of a single user to grant domain-specific permissions to.
Optional
-
-
collectionPermissions.groupId integer
The group ID of a group to grant domain-specific permissions to.
Optional
-
-
collectionPermissions.permission string
The domain-specific permission to grant to the user or group.
Required if including collectionPermissions.profileId
or collectionPermissions.profileId
-
Manage Policies
Manage Data Products
Audit Activity
Manage Identifiers
collectionDataSources array
The data sources to add to the domain.
Optional
[]
-
collectionDataSources.dataSourceId integer
The data source ID of the data source to add to the domain.
Optional
-
-
Response
Returns a domains object.
GET
/collection
GET
/collection
Retrieve domains created in Immuta. These results can be filtered by permission or by name.
Query parameters
The following table describes optional query parameters for retrieving domains.
type string
The type of collection.
domain
offset integer
The number of items from the beginning of the response to exclude. You can combine the offset
and size
parameters to return a specific set of domains. For example, to return the second and third domain in the response, you would set offset=1
and size=2
.
Minimum value is 0
. Maximum value is the total number of domains minus size
.
size integer
The number of domains to return.
Minimum value is 1
. Maximum value is the total number of domains.
searchText string
The text to search for in domain names. This will return domains with a name that contains this search text.
-
withPermissions string
Only returns domains that the querying user has been granted the permission in.
Manage Policies
Manage Data Products
Audit Activity
Manage Identifiers
isExactMatch boolean
If true
, will only return domains with the exact name.
true
or false
isCollectionPolicySearch boolean
If true
, will only return domains that the user can modify policies on.
true
or false
Response
Returns a data property that contains an array of up to size
domain objects. If no domains exist, the array will be empty.
GET
/collection/{collectionId}
GET
/collection/{collectionId}
Retrieve a domain with the given collectionId
to view the data sources, description, and assigned permissions associated with the domain.
Path parameter
collectionId string
The unique identifier of the domain.
Response
Returns a domains object.
GET
/collection/{collectionId}/allPermissions
GET
/collection/{collectionId}/allPermissions
Retrieve all permissions assigned to the specified domain.
Path parameter
collectionId string
The unique identifier of the domain.
Query parameters
type string
The type of permission to return. Acceptable values include Manage Policies
, Audit Activity
, Manage Data Products
, and Manage Identifiers
.
offset integer
The number of items from the beginning of the response to exclude. You can combine the offset
and size
parameters to return a specific set of permissions. For example, to return the second and third permissions in the response, you would set offset=1
and size=2
.
size integer
The number of permissions to return.
Response
Returns an array of domain permission objects that represent a permission in a domain assigned to a specific user.
GET
/collection/{collectionType}/{collectionName}
GET
/collection/{collectionType}/{collectionName}
Retrieve a domain with the given collectionName
to view the data sources, description, and assigned permissions associated with the domain.
Path parameters
collectionType string
The type of collection. The accepted value is domain
.
collectionName string
The name of the domain.
Response
Returns a domains object.
PUT
/collection/{collectionId}
PUT
/collection/{collectionId}
Change the domain name or description.
Required Immuta permission: GOVERNANCE
Parameters
Path parameter
collectionId string
The unique identifier of the domain.
Body parameters
name string
The name of the domain.
Optional
-
-
description string
The description of the domain that will be displayed for users.
Optional
-
-
Response
Returns a domains object with the new name or description.
PUT
/collection/{collectionId}/autoAddSources
PUT
/collection/{collectionId}/autoAddSources
Private preview: This feature is available to select accounts. Contact your Immuta representative for details.
Change the data source assignment of the domain:
Dynamically: Include the tag name to assign data sources to the domain based on whether the tag is on the data source. Updates to the data sources will continuously be made to ensure only and all data sources with the tag are included in the domain.
Manually: Make the request with no payload to switch the domain assignment to manually add or remove data sources from your domain.
Required Immuta permission: GOVERNANCE
Parameters
Path parameter
collectionId string
The unique identifier of the domain.
Body parameters
tagName string
The name of the tag to use for dynamic assignment.
Optional
-
-
Response
Returns the number of data sources added and removed based on the domain assignment update and the new assignment type.
PUT
/collection/{collectionId}/settings
PUT
/collection/{collectionId}/settings
Private preview: This feature is available to select accounts. Contact your Immuta representative for details.
Change the domain's autoscanning setting.
Required Immuta permission: GOVERNANCE
Parameters
Path parameter
collectionId string
The unique identifier of the domain.
Body parameters
autoscanning boolean
If true, autoscanning is enabled and will run sensitive data discovery automatically for all data sources added to the domain.
Optional
false
true
or false
Response
Returns the new autoscanning setting.
DELETE
/collection/{collectionId}
DELETE
/collection/{collectionId}
Delete a domain. The domain must have zero data sources to delete the domain.
Required Immuta permission: GOVERNANCE
Parameters
Path parameter
collectionId string
The unique identifier of the domain.
Query parameter
dryRun boolean
If true
, the domain will not be deleted.
Response
Returns a 204 code when the domain is successfully deleted. Additional responses are provided below:
400: An invalid ID was provided.
404: The domain was not found.
POST
/collection/{collectionId}/datasources
POST
/collection/{collectionId}/datasources
Add existing data sources to a domain. Data sources can only be added to domains with manual
data source assignment.
The request will fail if any data source IDs that have already been assigned to a domain are included in the payload or if data source assignment is set to automatic
.
Required Immuta permission: GOVERNANCE
Parameters
Path parameter
collectionId string
The unique identifier of the domain.
Body parameter
dataSourceId integer
The unique identifier of the data source in Immuta.
Required
-
-
Response
Returns a unique identifier of the background job that adds the data sources to the domain.
GET
/collection/{collectionId}/datasources
GET
/collection/{collectionId}/datasources
Retrieve the data sources within a domain.
Parameters
Path parameter
collectionId string
The unique identifier of the domain.
Query parameters
offset integer
The number of items from the beginning of the response to exclude. You can combine the offset
and size
parameters to return a specific set of data sources. For example, to return the second and third data source in the response, you would set offset=1
and size=2
.
Minimum value is 0
. Maximum value is the total number of data sources minus size
.
size integer
The number of data sources to return.
Minimum value is 1
. Maximum value is the total number of data sources.
searchText string
The text to search for in data source names. This will return data sources with a name that contains this search text.
-
dataSourceIds integer
Filters search results by data source ID.
-
Response
Returns a data property that contains an array of up to size
data sources. Each entry in the array is a separate data source. If there are no data sources in the domain, the array will be empty.
DELETE
/collection/{collectionId}/datasources/{dataSourceId}
DELETE
/collection/{collectionId}/datasources/{dataSourceId}
Remove data sources from a domain. Data sources can only be removed from domains with manual
data source assignment.
The request will fail if the data source assignment is set to automatic
.
Required Immuta permission: CREATE_DATA_SOURCE
Path parameters
collectionId string
The unique identifier of the domain from which to remove the data source.
dataSourceId integer
The unique identifier of the data source to remove.
Response
Returns a 204 code when the data source is successfully removed from the domain. Additional responses are included below:
403: Requesting user does not have permission to remove the data source.
404: The specified collection or data source was not found.
POST
/collection/{collectionId}/permissions
POST
/collection/{collectionId}/permissions
Assign domain permissions to a specific user.
Required Immuta permission: USER_ADMIN
Parameters
Path parameter
collectionId string
The unique identifier of the domain.
Body parameters
groupId integer
The unique identifier of the group the permission is assigned to.
Optional
[]
-
profileId integer
The unique identifier of the user in the identity manager.
Optional
[]
-
permission string
The domain permission assigned to the user or group.
Required
-
Manage Policies
Manage Data Products
Audit Activity
Manage Identifiers
Response
Returns an array of domain permission objects that represent a permission in a domain assigned to a specific user. If the permission had already been assigned to the user for that domain, the response will include an error for the permissions that were not assigned to that user because the permission already existed.
POST
/collection/{collectionId}/permissions/bulk-delete
POST
/collection/{collectionId}/permissions/bulk-delete
Remove permissions from multiple users or groups in a domain.
Required Immuta permission: USER_ADMIN
Parameters
Path parameter
collectionId string
The unique identifier of the domain.
Body parameters
collectionPermissions.groupId integer
The unique identifier of the group the permission is assigned to.
Required if profileId is not provided
-
-
collectionPermissions.profileId integer
The unique identifier of the user the permission is assigned to.
Required if groupId is not provided
-
-
collectionPermissions.permission string
The domain permission assigned to the user or group.
Required
-
Manage Policies
Manage Data Products
Audit Activity
Manage Identifiers
Response
Returns an array of domain permission objects that represent a permission in a domain deleted from that specific user or group. Response includes permissions that failed to delete.
GET
/collection/{collectionId}/permissions/{memberType}
GET
/collection/{collectionId}/permissions/{memberType}
Retrieve a list of permissions associated with the domain.
Parameters
Path parameters
collectionId string
The unique identifier of the domain.
memberType string
The type of member to get a list of permissions for. Possible values include user
or group
.
Query parameters
type string
The permission to return.
Manage Policies
Manage Data Products
Audit Activity
Manage Identifiers
offset integer
The number of items from the beginning of the response to exclude. You can combine the offset
and size
parameters to return a specific set of domain users. For example, to return the second and third domain users in the response, you would set offset=1
and size=2
.
Minimum value is 0
. Maximum value is the total number of domain users minus size
.
size integer
The number of users to return.
Minimum value is 1
. Maximum value is the total number of domain users.
searchText string
A string used to filter the results returned by the name
.
-
sortField string
Specifies the field to sort the results by.
collectionId
name
profileId
sortOrder string
Specifies how to sort the results of the request.
asc
desc
Response
Returns a data property that contains an array of users or groups who have been assigned that permission in the domain.
GET
/collection/permissions/{memberType}/{memberId}
GET
/collection/permissions/{memberType}/{memberId}
Retrieve a list of permissions for the specified user or group across all domains they are a member of.
Parameters
Path parameters
memberType string
The type of member to get a list of permissions for. Possible values include user
or group
.
memberId string
The unique identifier of the user or group.
Query parameters
type string
The permission to return.
Manage Policies
Manage Data Products
Audit Activity
Manage Identifiers
offset integer
The number of items from the beginning of the response to exclude. You can combine the offset
and size
parameters to return a specific set of domain permissions. For example, to return the second and third permission in the response, you would set offset=1
and size=2
.
Minimum value is 0
. Maximum value is the total number of domain permissions that user or group has minus size
.
size integer
The number of permissions to return.
Minimum value is 1
. Maximum value is the total number of domain permissions that user or group has.
searchText string
A string used to filter the results returned by the name
.
-
sortField string
Specifies the field to sort the results by.
collectionId
name
profileId
sortOrder string
Specifies how to sort the results of the request.
asc
desc
Response
Returns a data property that contains an array of permissions that have been assigned to the user or group in all the domains they are a member of.
DELETE
/collection/{collectionId}/permissions/{permissionId}
DELETE
/collection/{collectionId}/permissions/{permissionId}
Remove a domain permission from a specific user or group.
Required Immuta permission: USER_ADMIN
Path parameters
collectionId string
The unique identifier of the domain.
permissionId string
The unique identifier of the assigned permission.
Response
Returns a 204 code when the permission is successfully removed from the user. Additional responses are provided below:
400: Invalid permission
404: Collection or permission not found
DELETE
/collection/{collectionId}/permissions/{memberType}/{memberId}/{permissionType}
DELETE
/collection/{collectionId}/permissions/{memberType}/{memberId}/{permissionType}
Remove a domain permission based on the permission type.
Required Immuta permission: USER_ADMIN
Path parameters
collectionId string
The unique identifier of the domain.
-
memberType string
The type of member to remove the permission from.
user
group
memberId number
The unique identifier of the user or group.
-
permissionType string
The type of permission to delete.
Manage Policies
Manage Data Products
Audit Activity
Manage Identifiers
Response
Returns a 204 code when the permission is successfully removed. Additional responses are provided below:
400: Invalid permission
404: Collection or permission not found
Domain object attributes
id string
The unique identifier of the domain.
name string
The name of the domain.
description string
The description of the domain that will be displayed for users.
settings array
The domain settings.
settings.autoscanning boolean
If true, sensitive data discovery autoscanning is on.
tags array
The tag used to dynamically assign data sources to the domain.
tags.name string
The name of the tag used to dynamically assign data sources to the domain.
tags.displayName string
The display name of the tag used to dynamically assign data sources to the domain.
tags.id integer
The ID of the tag used to dynamically assign data sources to the domain.
assignmentType string
The way data sources are assigned to the domain. Options are automatic
or manual
.
createdBy integer
The unique identifier of the user who created the domain.
profile.name string
The name of the user who created the domain.
createdAt timestamp
The date and time the domain was created.
updatedAt timestamp
The date and time the domain was updated.
type string
The type of collection. Value is domain
.
Domains permissions object attributes
id string
The unique identifier of the permissions object.
profileId integer
The unique identifier of the user the permission is assigned to.
groupId integer
The unique identifier of the group the permission is assigned to.
collectionId string
The unique identifier of the domain.
permission string
The permission assigned to the user.
createdAt timestamp
The date and time the permission object was created.
source string
Indicates whether the permission was assigned as a user permission or a group permission.
Last updated
Was this helpful?