Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

SMS alias

Guest
Aug 21, 2006 Aug 21, 2006
if I wanted the sourceAddress to say something other than the cf gateway name for an smpp, and say for example suppose a proper mobile phone number, can this be achieved using the cfmx7 sms gateway? Currently I can only see that I would have to have the sender mobile number registered in CF as a gateway itself?
TOPICS
Event gateways
1.1K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Deleted User
Aug 21, 2006 Aug 21, 2006
doh, was getting confused, it is indeed the sourceaddress which according to the example I was running off was also being given the same name as the event gateway (which is generally static)
Translate
Guest
Aug 21, 2006 Aug 21, 2006
doh, was getting confused, it is indeed the sourceaddress which according to the example I was running off was also being given the same name as the event gateway (which is generally static)
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jul 24, 2023 Jul 24, 2023
LATEST

Yes, you can achieve this using the cfmx7 SMS gateway. You can use the sourceAddress parameter to specify the sender's phone number. For example, the following code would send an SMS with the source address 1234567890:

curl -X POST \
  -H "Content-Type: application/json" \
  -d '{
    "to": "1234567890",
    "message": "This is a test message.",
    "sourceAddress": "1234567890"
  }' \
  https://api.cloudfusion.com/sms/v1/send

Note that you will need to have the sender's phone number registered in CloudFusion as a gateway. You can do this by following these steps:

  1. Go to the CloudFusion dashboard.
  2. Click on the Gateways tab.
  3. Click on the Add Gateway button.
  4. Enter the sender's phone number in the Phone Number field.
  5. Select the SMS Bomber Gateway gateway type.
  6. Click on the Save button.

Once the sender's phone number is registered, you can use it as the sourceAddress parameter when sending SMS messages.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources