Okta Workflow is a no code development environment to create workflows to perform a large number of operations based on Connections. If there is not a Connector available you can create your own using their Connector Builder, and the best part is that you can try it out using their free Integration account.
Okta workflow no code approach is drag and drop between functions / actions. Most functions have Inputs and Outputs, so you can drag an Output onto an Input. Once done you can highlight Input or Output to see the connection.
For example:
Here are the basic steps.
- Create a Connector.
- Configure Authentication.
- Create a
httpHelperflow - used by the connector to make requests using the connection Acces token. - Create a
_pingAuthflow - Validates the Access Token to see if it needs to be renewed. - Create a
actionflow- Performs an operation that can be used in Flow. - Deploy it
Create a Connector.
- Connect to your Okta Workflow instance.
- Select
Connector Builder. - Under
Connectorsclick the+icon. - Provide the name for the connector and click the
Savebutton.
Configure Authentication.
- Click the
Add Authenticationbutton and fill out the details
Create a Test Connection
- Click
Test Connections - Click
+New Connection - Provide the details and click the
Createbutton
Create a httpHelper flo.
- Select
Flows - Click
+New Flow - In the
When this happensblock clickAdd eventand selectHelper Flow.
- In the
Then do thisblock clickAdd functionto add functions. - When finished it should look like.
- Save it as
httpHelper
Create a _pingAuth flo.
- Select
Flows - Click
+New Flow - In the
When this happensblock clickAdd eventand selectAuthping.
- In the
Then do thisblock clickAdd functionto add functions. - When finished it should look like.
- Save it as
_authPing
Create a action flo.
- Select
Flows - Click
+New Flow - In the
When this happensblock clickAdd eventand selectAction.
- In the
Then do thisblock clickAdd functionto add functions. - When finished it should look like.
- Save it as the name you want to display when selecting the action.
Deploy
- Click
Deployment - Click
Validate connectorand thenDone
- Click
Deploy test version
- Click
Deploy local connector
That gets a connector deployed and ready for using in an actual flow.

Top comments (0)