Click or drag to resize
ITicketFlowActionManagerGetEntryActions Method (Int64, NullableInt64, NullableInt64)

[This is preliminary documentation and is subject to change.]

Returns actions that initiate a ticket flow. Only returns actions that include ticket types for the target company and ticket user (if specified). If the provided user id belongs to a service provider, the result will only include actions which are available the specified service provider.

Namespace: Netadmin.Management.Ticketing
Assembly: Netadmin.Management.Interfaces (in Netadmin.Management.Interfaces.dll) Version: release/9.0@131b654fe7332b0776120c2b44d96c6cac5ac9a2
Syntax
IEnumerable<ITicketFlowAction> GetEntryActions(
	long companyId,
	Nullable<long> ticketUserId,
	Nullable<long> ticketRegardingTypeId
)

Parameters

companyId
Type: SystemInt64
The id of the current company
ticketUserId
Type: SystemNullableInt64
The id of the current ticket user
ticketRegardingTypeId
Type: SystemNullableInt64
The id for the ticket regarding type id, or null for no regarding type

Return Value

Type: IEnumerableITicketFlowAction
Available actions
Exceptions
ExceptionCondition
InvalidIdentifierExceptionThrown if the companyId is zero or less
InvalidIdentifierExceptionThrown if the ticketUserId has a value and it is zero or less
ObjectNotFoundExceptionThrown if the ticketUserId has a valid value but cannot be opened
See Also