Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

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. 

Image Modified

Importing an Exclusion File

...

POST {{url}}v1/account_maps

Code Block
{
    "name": "{{account_map_name}}",
    "source": {
        "connection": {
            "id": "{{connection_id}}"
        },
        "exclusions": [
            {
                "sid": {
                    "name": "Joe Smith",
                    "email": "jsmith@skysyncjsmith@company.com",
                    "type": "account"
                }
            },
            {
                "sid": {
                    "name": "Mary Smith",
                    "email": "msmith@skysyncmsmith@company.com",
                    "type": "account"
                }
            }
        ]
    },
    "destination": {
        "connection": {
            "id": "{{connection_id}}"
        }
    },
    "type": "account_map"
}

...

Note

After modifying an existing account map list of exclusions, SkySync DryvIQ will not go back and remap content already transferred. However, the updated account map will be used for future operations.

...

POST url/v1/account_maps/account_map_id/exceptions

Code Block
{
    "append": true,
    "items": [
        {
          "sid": {
          	"name": "Joe Smith",
            "email": "jsmith@skysyncjsmith@company.com",
            "type": "account"
          }
        },
        {
          "sid": {
          	"name": "Mary Smith",
            "email": "msmith@skysyncmsmith@company.com",
            "type": "account"
          }
        }
      ]
}

...