8

In March I opened a website that provides people with temporary numbers to be used to receive SMS verifications etc.

I've just logged in to the account and realised that I've received a ton of charges for outbound SMS.

They appear to be a default automated response whenever any of my numbers receives a SMS.

I didn't enable this (seems as though it's some sort of money making thing on their side). How do I disable it?

user598200
  • 295
  • 1
  • 4
  • 7

3 Answers3

12

Go to your project, open https://www.twilio.com/console/phone-numbers/incoming and select the number. In Messaging in A MESSAGE COMES IN select TwiML and click Plus button. Give it some name and paste

<?xml version='1.0' ?> <Response></Response>

there. Save

Toolkit
  • 10,779
  • 8
  • 59
  • 68
11

Twilio evangelist here.

When you buy a Twilio phone number it comes configured with a default Message Request URL that uses the TwiML <Sms> verb to send a reply back to any incoming text message.

<Response>
    <Sms>Thanks for the message. Configure your number's SMS URL to change this message.Reply HELP for help.Reply STOP to unsubscribe.Msg&Data rates may apply.</Sms>
</Response>

If you want to prevent those replies you can change this default behavior by providing your own Message Request URL or by using our integrated TwiMLBin feature and returning an empty TwiML response to Twilio:

<Response />

Here is an article from our FAQ that has more info:

https://www.twilio.com/help/faq/sms/how-can-i-receive-sms-messages-without-responding

Hope that helps.

Megan Speir
  • 3,745
  • 1
  • 15
  • 25
Devin Rader
  • 10,260
  • 1
  • 20
  • 32
4

(2021 Update)

Few things were updated in Twilio / mainly their Admin Dashboard GUI but I'll try to simplify it for anyone reading this still. Trust me when I say I completely understand the frustration of the lack of simplicity when it comes to how they operate. The phrase "Work Smarter, Not Harder" doesn't exist in that company (lol):

  • Log into your Admin Dashboard Account: https://www.twilio.com/login

  • Go to your Active Phone Numbers: https://console.twilio.com/?frameUrl=/console/phone-numbers/

    • If that URL changes, add Active Phone Numbers to your Develop dashboard first VIA

    Develop Tab -> Explore Products -> CTRL + F "Phone Numbers" -> Click the Pin Button

    Add Active Numbers to Admin Dashboard

    • Then access your Active Phone Numbers VIA

    Develop Tab -> Phone Numbers -> Manage -> Active Numbers -> Click Active (###) ###-#### Link to Phone Number

    Scroll down to Messaging -> Select Webhooks, TwiML Bins, Functions, Studio, or Proxy is selected for Configure With Other Handlers -> Select Function for When a Message Comes In -> Select Default for Service -> then leave the Function Path empty. Messaging Configuration Settings

Dharman
  • 30,962
  • 25
  • 85
  • 135
Metastrator
  • 81
  • 1
  • 5