Versions Compared

Key

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

...

Note

After appending to an existing account map, 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": [
        {
          "source": {
          	"name": "Joe Smith",
            "email": "jsmith@skysyncjsmith@company.com",
            "type": "account"
          },
          "destination": {
          	"name": "suser02",
            "email": "suser02@test.com",
            "type": "account"
          }
        },
        {
          "source": {
          	"name": "Mary Smith",
            "email": "msmith@skysyncmsmith@company.com",
            "type": "account"
          },
          "destination": {
          	"name": "suser03",
            "email": "suser03@test.com",
            "type": "account"
          }
        }
      ]
}

...