ProjectControllerCreateProject Method

POST /Project/ Creates a project with the specified name.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntax
[HttpPostAttribute]
[ActionNameAttribute("Index")]
public IActionResult CreateProject(
	[FromBodyAttribute] CreateProjectOptions options,
	Guid? sessionId = null
)

Parameters

options
Type: Dundas.BI.WebApi.ModelsCreateProjectOptions
A class containing the create project options.
sessionId (Optional)
Type: SystemNullableGuid
Current session ID.

Return Value

Type: IActionResult
A ProjectData object representing the newly created project, or a status code indicating the reason for failure..
See Also