SharinPix DocumentationMain DocumentationSharinPix Image SyncHow to use image sync on multiple albums (batch)?

How to use image sync on multiple albums (batch)?

In this section, we will discuss how to perform image sync on multiple albums in a single command.

There are 2 ways to make batch image sync migrations:

  1. By passing an SOQL scope with at least the album's ID;
  2. By passing a list of object IDs (album IDs).

1. By passing an SOQL scope with at least the album's ID

Below is an example whereby we will perform image syncs on all Accounts.

sharinpix.ImageSyncMigration.resyncAlbumsFromSoql('Select Id From Account');
Click to copy

Once successfully executed, this command will start a batch and perform image sync on each album in the provided scope.

2. By passing a list of object IDs (album IDs)

Below is an example whereby we will perform image on all the album IDs provided.

sharinpix.ImageSyncMigration.resyncAlbumsFromIds(new List<Id> {
  '001SaleforceID1',
  '001SaleforceID2',
  '001SaleforceID3',
  '001SaleforceID4',
  '001SaleforceID5'
});
Click to copy

Once successfully executed, this command will start a batch and perform image sync on each album in the provided list of IDs.

Note: All Record IDs in the list must be of the same SObject type.

0 Comments

Add your comment

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.