Page History
Name
Get-JS7OrderResumePosition
SYNOPSIS
Returns workflow positions that can be used when resuming an order in a workflow
SYNTAX
Get-JS7OrderResumePosition [-OrderId] <String> [[-ControllerId] <String>] [<CommonParameters>]
DESCRIPTION
When adding an order to a workflow then a number of positions in the workflow can be used
as the starting position or as end positions. The cmdlet returns allowed positions for a given workflow.
The following REST Web Service API resources are used:
* /orders/resume/positions
PARAMETERS
OrderId
-OrderId <String>
Specifies the identifier of an order for which allowed positions for resumption will be returned.
Required? | true |
Position? | 1 |
Default value | |
Accept pipeline input? | true (ByPropertyName) |
Accept wildcard characters? | false |
ControllerId
-ControllerId <String>
Optionally specifies the identification of the Controller from which workflow positions will be returned.
Required? | false |
Position? | 2 |
Default value | |
Accept pipeline input? | true (ByPropertyName) |
Accept wildcard characters? | false |
RELATED LINKS
EXAMPLES
-------------------------- EXAMPLE 1 --------------------------
PS > $positions = Get-JS7Order -WorkflowPath /ProductDemo/ParallelExecution/pdwFork -Suspended | Get-JS7OrderResumePosition
Returns the available positions of the given workflow that can be used when resuming a suspended order..