Data Redirection

We support data redirection to our servers in different clusters. Use redirectDataToRegion: method to redirect the data to different clusters defined in DataRedirectionRegion Enumerator. Use the method as shown below:

// Possible Values for Clusters
enum DataRedirectionRegion {
  case MOE_REGION_SERV3
  case MOE_REGION_EU
  case MOE_REGION_DEFAULT
}

// Redirect Method
MoEngage.redirectData(to: MOE_REGION_EU)
// Possible Values for Clusters
enum DataRedirectionRegion{
	MOE_REGION_SERV3,
	MOE_REGION_EU,
	MOE_REGION_DEFAULT
};

// Redirect Method
[MoEngage redirectDataToRegion:MOE_REGION_EU];

❗️

IMPORTANT:

Please make sure that you consult with MoEngage team before using this method for redirecting the data.