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

SMS alias

Guest
Aug 21, 2006 Aug 21, 2006

Copy link to clipboard

Copied

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

Views

889

Translate

Translate

Report

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)

Votes

Translate

Translate
Guest
Aug 21, 2006 Aug 21, 2006

Copy link to clipboard

Copied

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)

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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.

Votes

Translate

Translate

Report

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
Documentation