ProjectControllerGetDefaultTenantProject Method |
Gets the default tenant project for the specified tenant ID, or if it does not exist.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.4.0.1000)
Syntax[HttpGetAttribute("TenantDefault/{tenantId}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<ProjectData> GetDefaultTenantProject(
Guid tenantId,
GetEntryOptions options,
Guid? sessionId = null
)<HttpGetAttribute("TenantDefault/{tenantId}")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(440)>
Public Function GetDefaultTenantProject (
tenantId As Guid,
options As GetEntryOptions,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of ProjectData)public:
[HttpGetAttribute(L"TenantDefault/{tenantId}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(440)]
ActionResult<ProjectData^>^ GetDefaultTenantProject(
Guid tenantId,
GetEntryOptions options,
Nullable<Guid> sessionId = nullptr
)[<HttpGetAttribute("TenantDefault/{tenantId}")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(440)>]
member GetDefaultTenantProject :
tenantId : Guid *
options : GetEntryOptions *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<ProjectData>
Parameters
- tenantId
- Type: SystemGuid
The ID of the tenant associated with the default tenant project. - options
- Type: Dundas.BI.FileSystemGetEntryOptions
Options affecting the behavior of the operation. - sessionId (Optional)
- Type: SystemNullableGuid
ID of the current session.
Return Value
Type:
ActionResultProjectDataThe operation completed successfully. The payload contains a
ProjectData object.
See Also