How to read SMS using SMPP

Hi There,

Is there an activity, like UiPath.SMPP.Activities that you add credentials ip/url and read sms received, also send if possible?

UPDATE:
I solved this by creating SMPP API and developed activity to consume the service.

https://apiurl/sms/read


{
  "sender": "+34234342",
  "receiver": "+123344553",
  "message": "hello world",
  "datetime": "2022-06-22 23:30:00"
}

https://apiurl/sms/send

{
  "sender": "+34234342",
  "receiver": "+123344553",
  "message": "hello world again",
}
1 Like

Got any answers to this yet.

Not yet @akpeko.zigah

@wilbardmtei thank you.

I solved this by creating SMPP API and developed activity to consume the service.

https://apiurl/sms/read

{
  "sender": "+34234342",
  "receiver": "+123344553",
  "message": "hello world",
  "datetime": "2022-06-22 23:30:00"
}

https://apiurl/sms/send

{
  "sender": "+34234342",
  "receiver": "+123344553",
  "message": "hello world again",
}

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.