processflow history list

The processflow history list command shows the execution history for a process flow.

Usage

processflow history list --n ProcessFlowName --f FromDateTime --t ToDateTime
Required Argument Description
Yes --n ProcessFlowName Specifies the name of the process flow whose status you want to get. If the process flow name contains spaces, enclose the name in quotes.
Tip: If you are unsure of the exact process flow name you can use the processflow list command to get a list of the process flow names.
No --f FromDateTime

If you want to see the history for a specific date and time range, specify the starting date and time for the range, in the format MM-dd-yyyy HH:mm:ss. For example, December 31, 2014 1:00 PM would be specified as 12-31-2014 13:00:00.

When you specify a date and time range, the history list will include process flows that started execution on or after the date you specified in the --f argument and before the date you specify in the --t argument.

If you omit this argument the history will include process flows that started execution on the current date.

No --t ToDateTime

If you want to see the history for a specific date and time range, specify the ending date and time for the range, in the format MM-dd-yyyy HH:mm:ss. For example, December 31, 2014 1:00 PM would be specified as 12-31-2014 13:00:00.

When you specify a date and time range, the history list will include process flows that started execution on or after the date you specified in the --f argument and before the date you specify in the --t argument.

If you omit this argument the history will include all process flows that started execution on or after the date specified in the --f argument.

Example

This example gets the history of the process flow named "My Process Flow".

processflow history list --n "My Process Flow"