ProjectControllerCopyIntoProject Method

POST /Project/Copy/{id} Copies the contents of a project into another project.

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("Copy")]
public IActionResult CopyIntoProject(
	Guid id,
	[FromBodyAttribute] Guid targetProjectId,
	Guid? sessionId = null
)

Parameters

id
Type: SystemGuid
The ID of the project to duplicate.
targetProjectId
Type: SystemGuid
The target ID of the target project.
sessionId (Optional)
Type: SystemNullableGuid
ID of the current session.

Return Value

Type: IActionResult
A status code indicating success or the reason for failure.
See Also