cancel
Showing results for 
Search instead for 
Did you mean: 

B1 Service - Alert to a Group

Former Member
0 Kudos

Hi

Is there a way to send an alert in B1if to a User Group using the B1 Service?

Looks like i've to send one by one.

<RecipientCollection>
<Recipient>
<!--multiple such elements are allowed-->
<UserCode>string</UserCode>
<UserType>string (rt_RandomUser, rt_ContactPerson, rt_InternalUser)</UserType>
<NameTo>string</NameTo>
<SendEmail>string (tNO, tYES)</SendEmail>
<EmailAddress>string</EmailAddress>
<SendSMS>string (tNO, tYES)</SendSMS>
<CellularNumber>string</CellularNumber>
<SendFax>string (tNO, tYES)</SendFax>
<FaxNumber>string</FaxNumber>
<SendInternal>string (tNO, tYES)</SendInternal>
</Recipient>
</RecipientCollection>

Kind Regards

Silvio

Accepted Solutions (0)

Answers (1)

Answers (1)

dennis_reiner
Explorer
0 Kudos

Hello,

i dont think this is possible but you can write it by your own.
You can create an seperated step thats sends an message for every user in a group.
The input would be the group name then you have to get all members with an sql and then loop over the users and send an Message.
In your main step you can call the sub step with the group name.
I did not tryed that but i´m pretty sure this will work.