GET Workflow Definitions Steps Extension Name
GET Workflow Definitions Steps Extension Name
The GET /Workflow A workflow is a series of steps necessary to complete a process. In the context of Keyfactor Command, it refers to the workflow builder, which allows you automate event-driven tasks when a certificate is requested or revoked./Definitions/Steps/{extensionName} method is used to retrieve the workflow definition step structure for the step with the specified extensionName. Its primary use case is to populate the UI dialog in which step information is configured. When you are developing a custom workflow step, it can be used to confirm that the workflow step will display correctly in the UI. This method returns HTTP 200 OK on a success with information about the structure of the workflow definition step.
Table 636: GET Workflow Definitions Steps {extensionName} Input Parameters
Name | In | Description |
---|---|---|
extensionName | Path |
Required. A string indicating the extensionName of the workflow definition step to retrieve. Use the GET /Workflow/Definitions/Steps method (see GET Workflow Definitions Steps) to retrieve a list of all the workflow definition steps to determine the extensionName. |
Table 637: GET Workflow Definitions Steps {extensionName} Response Data
Name | Description |
---|---|
DisplayName | A string indicating the display name of the workflow definition step. |
ExtensionName | A string indicating the extension name of the workflow definition step. The built-in extension names are:
|
Outputs | An object containing the outputs for the workflow definition step. For the built-in steps, the only output is an indicator for the next step in the workflow. |
ConfigurationParametersDefinition |
An object containing the configuration parameters for the workflow definition step. These will vary depending on the step. |
SignalsDefinition | An object containing the signals defined for the workflow definition step. These will vary depending on the step. |