Skip to main content

Creating a new Project

Log in to add to favourites

New

C#
1
2
3
public Project New(string name, string id, string primaryLanguage, IList<string> supportedLanguages = null, string description = null) { }
C#
1
2
3
4
5
6
7
8
9
10
using Zengenti.Contensis.Management; // Create a client var client = ManagementClient.Create(); // Create a project var movieDbProject = client.Projects.New("Movie DB", "movieDb", "en-GB"); // Save the new project movieDbProject.Save();

Still need help?

New support request