Example #1
0
 /// <summary>
 /// Swaps the content of two spaces.
 /// </summary>
 /// <param name="sourceSpaceID">The ID of the space to copy the content from.</param>
 /// <param name="targetSpaceID">The id of the space to copy the content to.</param>
 /// <returns>Returns a Birst job ID which can be used to query if the job is complete.</returns>
 public string SwapSpaceContent(string sourceSpaceID, string targetSpaceID)
 {
     return(_webService.swapSpaceContents(LoginToken, sourceSpaceID, targetSpaceID));
 }