/// <summary> /// Changes the assignment for a specific phase for files from a server project, /// </summary> /// <remarks> /// This method requires authentication. /// See the <a href="http://gs2017dev.sdl.com:41234/documentation/api/index#/">API documentation</a> for more information. /// </remarks> /// <exception cref="AuthorizationException"> /// Thrown when the current user does not have permission to make the request. /// </exception> /// <exception cref="ApiException">Thrown when a general API error occurs.</exception> /// <returns>A list of <see cref="Phase"/>s.</returns> public Task ChangeAssignments(string projectId, ChangeAssignmentRequest request) { Ensure.ArgumentNotNullOrEmptyString(projectId, "projectid"); Ensure.ArgumentNotNull(request, "request"); return(ApiConnection.Post <string>(ApiUrls.ChangeAssignments(projectId), request, "application/json")); }
/// <summary> /// Change the project assignments /// </summary> /// <remarks> /// This method requires authentication. /// See the <a href="http://sdldevelopmentpartners.sdlproducts.com/documentation/api">API documentation</a> for more information. /// </remarks> /// <exception cref="AuthorizationException"> /// Thrown when the current user does not have permission to make the request. /// </exception> /// <exception cref="ApiException">Thrown when a general API error occurs.</exception> /// <returns>A list of <see cref="Phase"/>s.</returns> public Task<string> ChangeAssignments(string projectId, ChangeAssignmentRequest request) { Ensure.ArgumentNotNullOrEmptyString(projectId, "projectid"); Ensure.ArgumentNotNull(request, "request"); return ApiConnection.Post<string>(ApiUrls.ChangeAssignments(projectId), request, "application/json"); }