Open this page in the API Guide

ProjectController.CreateTenantProject Method

Note: This API is now obsolete.

OBSOLETE - Use POST /Project/ instead. Creates a project with the specified name and tenant ID.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax
[HttpPostAttribute("{id}")]
[ObsoleteAttribute("Deprecated. Use CreateProject instead.")]
public ActionResult<ProjectData> CreateTenantProject(
	Guid id,
	[FromBodyAttribute] CreateProjectOptions options,
	Guid? sessionId = null
)

Parameters

id
Type: System.Guid
The tenant ID.
options
Type: Dundas.BI.WebApi.Models.CreateProjectOptions
An object containing the create project options.
sessionId (Optional)
Type: System.Nullable<Guid>
ID of the current session.

Return Value

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