Launchpad get history

Hello,

I have a workflow working with interactive actions to be triggered by Launchpad. I need to keep a history for each user when they submit the form. I’d like to know if there is a way to get the activity of the Launchpad per identity, I tried the historical-identities API and I cannot get the Launchpad activities/history. In the Launchpad UI shows the Recently Completed history, so I’d like to get this info, otherwise I think I will have to save each activity in a source.

Thanks,
Jio

Hi @Jiovanni

Launchpads are used to trigger Launchers which are attached with your workflows. So eventually it is your workflow where all activity is happening.

In Workflow if you navigate to
Admin > Workflow > {workflow name} > Executions

Here you can find all details eg launched by, id, time, status etc.

or alternatively you can use this api as well

Thanks

Thanks Prince,

I tried with all API versions (/workflow-executions/:id/history) and I got 404 Not Found message. Also, I tried with other workflows and got the same message. Please can you confirm this API is working? I am working in dev instance, could this be the issue?
Thank you,
Jio

Hi @Jiovanni

The following will give your workflow executions . Workflow executions are available for up to 90 days before being archived.
{{baseUrl}}/workflows/:id/executions
The above endpoint will give basic information of every execution .


To get a complete information of the execution , use the id from above api and execute with {{baseUrl}}/workflow-executions/:id/history

Thanks
Sid

Why not just a form submitted trigger to send email to a dumping ground?

Like, the way it’s worded, you don’t care about them launching the workflow. You care about the form they submit.

1 Like