Open this page in the API Guide

AccountRegistrationController.GetPendingRequests Method

Gets the pending registration requests.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax
[HttpGetAttribute]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<IList<AccountRegistrationRequestData>> GetPendingRequests(
	int pageNumber,
	int pageSize,
	Guid? sessionId = null
)

Parameters

pageNumber
Type: System.Int32
The page number.
pageSize
Type: System.Int32
The size of the page.
sessionId (Optional)
Type: System.Nullable<Guid>
The session ID.

Return Value

Type: ActionResult<IList<AccountRegistrationRequestData>>
The operation completed successfully. The payload contains an array of AccountRegistrationRequestData objects.
See Also