PowerAutomate Invoke a flow with bespoke 200 response

Hello

I have managed to create a power automate flow that generates an acknowledgement letter from an add in on a gift, and it has been working well.

I would like to expand the success msg after a letter is generated, this is the current 200 message which seems to be default.

f66f6e4745f962dab47b0107f80ddebb-huge-sc

There is some documentation here about invoking a flow

Create an acknowledgement letter - Microsoft Integrations (blackbaud.com)

I have edited the response to look like this

8aa1aede685a1681cd42ecca42033520-huge-im

But this hasn’t changed the 200 success message, is anyone able to help?

Comments

  • Alex Wong
    Alex Wong Community All-Star
    Ninth Anniversary Kudos 5 Facilitator 3 bbcon 2025 Attendee Badge

    @Ashley Gelderblom
    You have to check your flow run to make sure the Response action is the one you changed and did get executed.

    I have a flow that trigger on gift page to delete the gift record

    when not authorized:

    9f64a450020740babd2431c91d0a72ed-huge-im

    when successful:

    231519f91ffad884d02e889439d449cd-huge-im

    when failed:

    d4daaeae82252696554244fe2ac0a7eb-huge-im

    and it is working properly with correct message displayed depending on the flow path that got executed

  • @Alex Wong thanks Alex- how are you branching those?

  • Alex Wong
    Alex Wong Community All-Star
    Ninth Anniversary Kudos 5 Facilitator 3 bbcon 2025 Attendee Badge

    @Ashley Gelderblom
    i have a sharepoint list that records custom add-in and who is allow to do run those add-in.

    in the flow, I get the sharepoint list item for the add-in and check the email address that came back from the Validate a user identify token action and filter against who is allowed. if not allowed, the path where action of Response Unauthorized is triggered

    if allowed then in run the API endpoint, success of API action = Response Delete Success action path, if failed, Response Delete Failed action path. This is done through using Configure Run After on the 2 response actions.

  • @Alex Wong Ah I got it, thanks for your help