Send sms using Blue Prism

tmfsilva

New Member
Hi everyone!

How can I send a sms using BP? Do I need a specific platform to interact with BP? Which one?

Thank you in advance!
 

Sachin_Kharmale

Active Member
Hi ,

Yes you can send SMS using Blue Prism .

For sending SMS you need to create account on www.msg91.com register on the given website.
They have created rest webservices for sending we need to call rest web service from blue prism.

Just Design flow given bellow

View attachment 1573632354007.png

Use HTTP Utility object to send request .

View attachment 1573632403768.png

then it will gives you response for sms sending status code.

I hope it will Help you..

 

tmfsilva

New Member
Hi Sachin,

Thank you so much for the help.
Meanwhile, I found Twilio and already test it. I sent a sms from a BP process to my phone and it worked.
Thank you for your input anyway :)



Best regards,
Teresa
 

ewilson

Member
There are several ways to send an SMS from Blue Prism. There is an existing Twilio skill on the Digital Exchange that provides this capability.

Keep in mind, you will likely have to pay for any SMS service out there. The Twilio skill can be used with a Twilio developer account. They will allow you to send a small number of messages free of charge for testing.
 

mfortunato

New Member
Hi ,

Yes you can send SMS using Blue Prism .

For sending SMS you need to create account on www.msg91.com register on the given website.
They have created rest webservices for sending we need to call rest web service from blue prism.


Just Design flow given bellow
View attachment 4847

Use HTTP Utility object to send request .

View attachment 4848

then it will gives you response for sms sending status code.

I hope it will Help you..

Sachin will it be possible to share all the screens to see how you did the configuration of the send sms request as well as the format.
 

jacksson787

New Member
There was the same question about sms bulk services, when I was trying to implement it on my platform. Few months ago, when my good old friend gave me a comprehensive bulk sms service provider list , I've searched for dozens of different options between them just to understand who can provide the best and most profitable bulk services, and chosen that company which can send different grouped sms messages to different groups of people.
 
Last edited:

Sachin_Kharmale

Active Member
Hi Guys ,

Follow bellow simple Steps -

1- Create new account on www.msg91.com Website.
2- Buy SMS Plan as per your requirement.
3- After purchasing sms Pack they will provide you auth Key it is required to send sms and we need to mentioned it in request.
4- Use Blue Prism Utility-Http VBO to Send http Request - Action - HTTP Request as mentioned in Screen Shot
View attachment 1575461577056.png


In the Request Body Data Item create your request to send SMS

eg- http://control.msg91.com/api/sendsms.php?authkey=YourAuthKey&message= YourTextMessage&sender=ABC&mobile=MobileNumber

ex- http://control.msg91.com/api/sendot...5d&message=Hello&sender=BOT&mobile=9890098900

auth Key - Get From msg91 website.
message - message that you want to send.
sender- Sender ID will show on receivers message Box ex- AD-ICICIB.

Mobile- Receiver Mobile Number.

Also Please Refer their API guides which is provided on their website if you have any queries let me know.

https://docs.msg91.com/collection/msg91-api-integration/5/send-sms-v2/TZ2IXQHS

I hope it will help you.
 
Last edited:

Sachin_Kharmale

Active Member
Hi Ambadas,

If you want to read captcha image text then you need to use OCR Functionality


Now a days there is lots of ocr tools is available like - Google Vision, Microsoft Azure Vision , Abby OCR , Tesseract and more.

i will recommend you i have used ocrspace to recognized the captcha image after reading captcha text we will write on web page using blue prism.

See below screen shot i have give captcha image as a input and after processing captcha getting output.

View attachment 1575467666466.png


Note - All captcha images will not recognized by OCR try all OCR which will gives best result for your captcha Image,
We can call the all OCR with the help of REST API and get the result in blue prism.

I hope it will help you.
 

MadhuG001

Member
Hi Guys ,

Follow bellow simple Steps -

1- Create new account on www.msg91.com Website.
2- Buy SMS Plan as per your requirement.
3- After purchasing sms Pack they will provide you auth Key it is required to send sms and we need to mentioned it in request.
4- Use Blue Prism Utility-Http VBO to Send http Request - Action - HTTP Request as mentioned in Screen Shot
View attachment 4892


In the Request Body Data Item create your request to send SMS

eg- http://control.msg91.com/api/sendsms.php?authkey=YourAuthKey&message= YourTextMessage&sender=ABC&mobile=MobileNumber

ex- http://control.msg91.com/api/sendot...5d&message=Hello&sender=BOT&mobile=9890098900

auth Key - Get From msg91 website.
message - message that you want to send.
sender- Sender ID will show on receivers message Box ex- AD-ICICIB.

Mobile- Receiver Mobile Number.

Also Please Refer their API guides which is provided on their website if you have any queries let me know.

https://docs.msg91.com/collection/msg91-api-integration/5/send-sms-v2/TZ2IXQHS

I hope it will help you.
Thank you so much Sachin.
I will definitely try this.
 

Sai006

New Member
Hi Sachin,

Thank you so much for the help.
Meanwhile, I found Twilio and already test it. I sent a sms from a BP process to my phone and it worked.
Thank you for your input anyway :)



Best regards,
Teresa
Hi Can you Tell me the process for sending SMS in Twilio using Blueprism
 
Top