DuplicateProject

Description

Duplicates a project

Signature
string DuplicateProject(string key, string projectId, string newProjectName)

Parameters

Name Data Type Description

key

string required

The authentication key

projectId

string required

ID of the project to duplicate

newProjectName

string required

Name for the new project

Response

Data Type Description

string

ID of the new Project

Example

var client = new AuthoringSoapClient();

var newProjectId = client.DuplicateProject(clientKey, "p123123123", "New project name");