ProjectController.GetPublishTargetsWithHistory Method |
Gets all the publish target projects of the specified source entity IDs.
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("GetPublishTargetsWithHistory")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<IList<KeyValuesPairData>> GetPublishTargetsWithHistory(
[FromBodyAttribute] IList<Guid> entityIds,
Guid? sessionId = null
)
<HttpPostAttribute("GetPublishTargetsWithHistory")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(440)>
Public Function GetPublishTargetsWithHistory (
<FromBodyAttribute> entityIds As IList(Of Guid),
Optional sessionId As Guid? = Nothing
) As ActionResult(Of IList(Of KeyValuesPairData))
public:
[HttpPostAttribute(L"GetPublishTargetsWithHistory")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(440)]
ActionResult<IList<KeyValuesPairData^>^>^ GetPublishTargetsWithHistory(
[FromBodyAttribute] IList<Guid>^ entityIds,
Nullable<Guid> sessionId = nullptr
)
[<HttpPostAttribute("GetPublishTargetsWithHistory")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(440)>]
member GetPublishTargetsWithHistory :
[<FromBodyAttribute>] entityIds : IList<Guid> *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<IList<KeyValuesPairData>>
Parameters
- entityIds
- Type: System.Collections.Generic.IList<Guid>
An array of Guid entity IDs. - sessionId (Optional)
- Type: System.Nullable<Guid>
Current session ID.
Return Value
Type:
ActionResult<IList<KeyValuesPairData>>The operation completed successfully. The payload contains an array of
KeyValuesPairData objects.
See Also