How to customize alert schemas for Azure Logic Apps - triggers

I have this Logic App that usually runs once the same time everyday. I need an email to be sent to a set of recipients every time the app runs. For this, I created an action group and added the email addresses of the recipients with the Notification type Email/SMS/Push/Voice. Here, there's an option called "Enable the common alert schema."
I then saved that Action Group. Then I created an alert rule for the condition "Triggers Fired" so that the alert would be activated whenever the trigger is fired, and added that action group to this alert rule.
I am now getting the alert as an email, but I need only a set of information to be received when the trigger fires. When I Enable the common alert schema option, it sends an alert with a template. When I Disable it, I still cannot edit the alert schema there. How should I edit the alert schema to contain only the information I need?

Using logic app compose action you can customize alert schema.
I have reproduced issue from my side and below are steps I followed,
Created Logic app as shown below,
Configured this logic app to an action group.
In logic app, Using compose action formed a customized schema as shown below,
Without compose action the schema is in below format,
With Compose action the schema is in below format,

Related

Is there way to further customise notification subscriptions?

Good morning.
I have a client who has a very specific notification that they want sent out.
There is a custom multi-value control on their Feature WIT that allows the user to select one or more values (that correspond with internal team names). They want a notification to be sent to a custom email address of the team that has been selected. See screenshots below.
The problem is that when creating the notification subscription, the only filter option available for that field is "changes" and I'm unable to get the value that has been selected.
Essentially I'd like to be able to do something like: "If 'ContributingTeam' = [ABC] then [send email to custom address]" but I can only do "If 'ContributingTeam' changes then [send email to custom address] but this doesn't help because I need to send the notification to a different email address depending on which team is selected.
I'm not able to reproduce your issue on my side, the drop down seems normal for the field used for Multivalue control:
Please check whether you choose the correct field, and check what type you used for the field. Also, try to create a new field and try again.

logic Apps : What are possible reason that an new-email-trigger does not fire or failed?

The office365 trigger when new -email arrives (V3) is my logic Appp trigger condition.
The workflow does following:
Triggered on incomnig e-mails
check if sender is an AD User, if not send to a special Mailaddress
analyse the subject and put informations gother in new mailboydies and
distribute the mail to other mailboxes
I have seen a few cases I don' t understand, what it is the reason for that.
I got a trigger sicceeded but the trigger doe not fired Why?
image1: trigger History
image 2: not Fired Triggers
Screenshot shows succeeded triggers but not fired to start a run.
In this time spawn there was no email in the inbox.
I got a trigger failed ( i cannot reconstruct which mail could the reason).
image3: failed Trigger
for this case I can say nothing i found no e-mail at this time,
but it is possible that there was through Dectivation/Activation of logic app
old not readed mails ttries to trigger.
it was the first trigger after creation of this Logic app for testing
(copied from other subscription).
Can someone say me possible reasons for this 2 situations?
A status of skipped just indicates that the nothing new was found to fire the logic. Because the trigger will do check operation every once in a while even though the mailbox do not receive new email.
I think you do not need to worry about the records under "Trigger history". You just need to check the records under "Runs history". The records under "Runs history" can give a more intuitive picture of what's your logic app going on.

Triggering user required action from user self service panel

Is it possible to trigger user required action from keycloak user self service panel ( -/auth/realms/REALM/account ) ?
I've added the step for configuring mobile number (Actuall, taking ready project https://github.com/gwallet/keycloak-sms-authenticator and adding SMS code check step) and the phone number is configured first time the user logs in, but it is failing the possibility for user to change his number afterwards.
I can't simply add phone number to account panel, because the flow forces user to enter code sent with SMS, and then saves the number to user account. Without the flow defined by required action the user could make a typo and not be able to log in ever again.
Is it possible to add button / link with custom action triggering UserRequiredAction?

Unable to communicate instructions for action resubmit that was already approved

My action was approved with Action Tagging. However after some time, I got a message that action tagging is not valid for my app and to consider using mention tagging. Currently the status is:
Approval Status: Available to users (changes needed) This Action Type
is available to all users, but your most recent submission needs
changes.
Capabilities Status:
User Messages (Live) - Allow users to write a personalized message attached to this action.
Tags (Needs Change) - Allow users of my app to tag other users for this action.
Explicitly Shared (Live) - This action can specify the user explicitly shared an action.
So I implemented mention tagging, but each time I re-submit, I get the following response:
We are unable to tell which additional properties you are requesting.
Please specify if you are planning to implement action tagging,
mention tagging, or both. If you are requesting mention tagging you
must select both the user message and tags action properties when
submitting your action. If you are requesting both action tagging and
mention tagging we will need to be able to reproduce both action
properties. For further information, please see here:
https://developers.facebook.com/docs/opengraph/submission_criteria/action_properties/#mentiontagging
Of course on resubmitting I explain very clearly that I want mention tagging and I show the steps to reproduce. I also have selected both the user message and tags action properties. It just seems that the testers simply ignore the message I write in the re-submit dialog.
I also puzzles me that the re-submit dialog has only the first step that you type in how to reproduce the action. It lacks the extra edit boxes that the normal submit dialog had the first time where you explained about the additional properties.
Maybe some kind of bug in the resubmit dialog of an already approved action (that needs changes in the additional properties) does not allow me to write the message I need?

Submit One form to 2 apis

I'm trying to create a form that will submit data to 2 different API's based on a check box and one submit button.
Basically, I'm working on creating a form that allows a site vistor to register for a gotomeeting event. That's the main function of the form. Secondary to that, I want to include a check box that would allow the user to subscribe to an email list.
If the user leaves the checkbox unchecked - he or she would simply be signing up for the event via GTMeeting. If he or she checked the box, that means they register for the event and want to subscribe.
In case 2, The user data needs to be passed separately to Aweber (email client of choice here) and GoToMeeting.
I've created separate forms to handle these tasks separately - and with success. But I cannot figure out how to make the 2 post calls with just one submit button.
I read this post here from ant which seems like it should work: Submit form to 2 different action page
can anyone confirm this for me - in theory?
Thanks.
Craig