Open this page in the API Guide

ProjectController.GetPublishTargets Method

Gets the latest 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("GetPublishTargets")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<IList<KeyValuePairData>> GetPublishTargets(
	[FromBodyAttribute] IList<Guid> entityIds,
	Guid? sessionId = null
)

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<KeyValuePairData>>
The operation completed successfully. The payload contains an array of KeyValuesPairData objects.
See Also