Account Map and Group Maps: Exclusions Mapping
On This Page
Overview
An account or group map exclusion provides the ability to explicitly exclude an account or group from owner or permissions preservation. Account or group map exclusions can be defined during the creation of the map or can be imported from a comma-separated values (CSV) file.
If you receive an error when importing a CSV file, the file does not meet the expected format. You will need to edit the file before attempting to import it again. Please see Account Map / Group Map | CSV File Guidelines for map templates and sample downloads.
Importing an Exclusion File
Select Connections and select either User maps or Group maps depending on the map type.
Find the map and select Manage mappings.
Select Import source exclusions.
The Import source user exclusions modal appears. You have the option of uploading a file from your computer or from the source connection.
To upload a file from your computer, verify you are on the Upload tab and select Browse. Navigate to the file and select Open.
To select a file from the source connection, click Select from the source connection. Navigate to the file or use the Manually enter path option to enter the path for the mapping file you want to use.Once you select the file, click Use this file.
The screen will read the import file and display the exceptions on the screen.
Creating an Exclusion Through the UI
Click More Options and select Create source exclusion or Create destination exclusion depending on the location of the user/group you want to exclude.
A field displays under the connection you selected.
Select Choose.
Select the user and click Use this user.
Click Done to save the exclusion. The user/group is added to the list on the screen.
Repeat these steps for each exclusion you need to add.
Creating an Account Map with Exclusions Through the API
Exclusions can be specified while creating an account map or can be added after the account map has been created.
Create an Account Map with Exclusions Specified Within the JSON
POST {{url}}v1/account_maps |
{
"name": "{{account_map_name}}",
"source": {
"connection": {
"id": "{{connection_id}}"
},
"exclusions": [
{
"sid": {
"name": "Joe Smith",
"email": "jsmith@company.com",
"type": "account"
}
},
{
"sid": {
"name": "Mary Smith",
"email": "msmith@company.com",
"type": "account"
}
}
]
},
"destination": {
"connection": {
"id": "{{connection_id}}"
}
},
"type": "account_map"
} |
Create an Account Map With Exclusions Imported From a CSV File Located on a Connection
To create an account map with exceptions imported from a CSV file located on the source platform,
Create the CSV file following Account Map / Group Map | CSV File Guidelines.
Upload the CSV file to an existing connection or create a new connection to the location of the CSV file.
Be sure to specify the full path of the CSV file, including the extension.
POST {{url}}v1/account_maps |
{
"name": "{{account_map_name}}",
"source": {
"connection": {
"id": "{{connection_id}}"
},
"exclusions": {
"text": {
"connection": {
"id": "{{connection_id}}"
},
"target": {
"path": "/Path to Exclusions/Exclusions.csv"
}
}
}
},
"destination": {
"connection": {
"id": "{{connection_id}}"
}
}
"type": "account_map"
}
|
View Account Map Exclusions
View all the exclusions within the account map.
GET {{url}}v1/account_maps/{{account_map_id}}/exclusions
View only the source exclusions.
View only the destination exclusions.
Use the offset and limit to view different sections of a large number of exclusions.
Import Exclusions Into an Existing Account Map
Exclusions can be added to an existing account map by either appending to the current list of exclusions or overwriting all exclusions with a new list of exclusions. Also, they can be added by specifying the exclusion in the JSON or importing them from a CSV.
After modifying an existing account map list of exclusions, DryvIQ will not go back and remap content already transferred. However, the updated account map will be used for future operations.
If importing from a CSV file,
Create the CSV file following Account Map / Group Map | CSV File Guidelines
Upload the CSV file to an existing connection or create a new connection to the location of the CSV file
Be sure to specify the full path of the CSV file, including the extension
Overwrite
POST url/v1/account_maps/account_map_id/exclusions/source |
Append
POST url/v1/account_maps/account_map_id/exceptions |
Delete an Exclusion From an Account Map
Group Map
A group map is managed in much the same way as account maps, but must be managed separately. All above documentation applies to group maps as well, just substitute "group_maps" in the URL for "account_maps" and "group_map" as the type, if the type is required in the JSON.
POST {{url}}v1/group_maps |