How to trigger Microsoft power automate flow from BluePrism?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
06-05-22 03:55 PM
------------------------------
Kashyap N
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
06-05-22 05:41 PM
After which you can trigger it from Blue Prism.
------------------------------
Gopal Bhaire
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
06-05-22 06:51 PM
The reference @GopalBhaire provided, regarding the use of an HTTP request, is probably the most straightforward way of triggering a PA flow from BP. There are other options though if you look through the available triggers on the PA site. Some examples include receiving an email at a specific inbox (BP can easily craft and submit an email). a new file being saved to a drive (ex OneDrive), etc.
Cheers,
------------------------------
Eric Wilson
Director, Integrations and Enablement
Blue Prism Digital Exchange
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
09-05-22 02:47 PM
------------------------------
Kashyap N
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-05-22 06:55 AM
Hi Kashyap
You can call it directly thru 'Web API Service' in system tab. Copy the trigger link till 'paths/' as your base URL and use the rest (from invoke till end) as URL path for an action. You can then call it as an action in your process. Store your workflowid and signature in credential vault.
base url
https://prod-159.westus.logic.azure.com:443/workflows/<wfid>/triggers/manual/paths/
request urlpath in action
invoke?api-version=2016-06-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=<yousig>
Alternatively you can directly use the HTTP VBO.
------------------------------
Gopal Bhaire
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-05-22 02:14 PM
I tried through Web API Service, and done all configuration as you mentioned. When running the action getting InvalidRequestContent error.
------------------------------
Kashyap N
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
11-05-22 12:14 PM
Apologies, I didn't see that you were trying to upload a file to flow. The trigger accepts only Json as body. One workaround will be to encode the file in Blue Prism as base64 and then convert the file back using 'base64tobinary' in PA flow.
But honestly I would just send and email with file from BP and trigger the flow on new email arrival with specific subject, as @ewilson suggested below.
------------------------------
Gopal Bhaire
------------------------------
