実績のあるSMS向けAPIにより、大規模配信を実現
テキストメッセージの送受信が、MessagingXでの数行のコーディングだけで実現します。MessagingXはクロスチャネルメッセージング向けの信頼性に優れたプラットフォームです。

世界の顧客に向けて
信頼性の高いSMSメッセージを通じアピール
信頼性に優れたSMSソリューションの開発は、MessagingXを使用すると簡単です。Twilioが提供する、開発者向けAPI、拡張性、内蔵ソフトウェアは、コンプライアンスや、ルーティング、高度なユースケースに対応します。どれも、市場展開の迅速化と並外れた配信到達性を実現します。
API
柔軟性に優れたSMS APIにより
概念からグローバルソリューションを実現

Programmable Messaging API
SMS、MMS、WhatsAppのトランザクションメッセージを単一APIを通じて送信できます。
- ローカライズされた送信者、コンプライアンスツール、グローバルガイドラインにより、180か国以上に確実にリーチ。
- コンプライアンス、配信到達性、返信などをTwilioのプログラム可能なソフトウェアを通じて管理。
- リアルタイム分析により、メッセージ配信やエンゲージメントを監視・トラブルシューティング。

Conversations API
SMSなどのチャネルを通じた双方向エンゲージメントを単一APIを介して促進します。
- SMS、MMS、チャット、Facebook Messenger、GoogleのBusiness Messages、WhatsAppでの商取引やサポートを強化。
- 参加者の管理、メッセージのアーカイブ、ワークフローのオーケストレーションをコードの追加なしに実現。
- クイックスタート、サンプルアプリ、SDKにより、迅速に市場参入。
ユースケース
顧客関係の
構築と拡張
通知
アラートや、予約のリマインダー、通知、配信などを、Programmable Messaging APIを通じてパーソナライズし、送信できます。
認証
ワンタイムパスワードを発行してオンボーディングを迅速化し、サポートコストと不正行為を同時に削減します。
プロモーション
Programmable Messaging APIにより、マーケティングメッセージと特典情報を区別し、リード、セールス、ロイヤルティを促進します。
対話によるケアとコマース
顧客ジャーニー全体をサポートするため、Conversations APIを利用し、サポート、セールス、リード創出に双方向型SMSを活用します。
開発者リソース
- Node.js
- Python
- C#
- Java
- Go
- PHP
- Ruby
- twilio-cli
- curl
//Downloadthehelperlibraryfromhttps://www.twilio.com/docs/node/install//FindyourAccountSIDandAuthTokenattwilio.com/console//andsettheenvironmentvariables.Seehttp://twil.io/secureconstaccountSid=process.env.TWILIO_ACCOUNT_SID;constauthToken=process.env.TWILIO_AUTH_TOKEN;constclient=require('twilio')(accountSid,authToken);client.messages.create({from:'+15017122661',body:'Hi there',to:'+15558675310'}).then(message=>console.log(message.sid));
# Download the helper library from https://www.twilio.com/docs/python/installimportosfromtwilio.restimportClient# Find your Account SID and Auth Token at twilio.com/console# and set the environment variables. See http://twil.io/secureaccount_sid=os.environ['TWILIO_ACCOUNT_SID']auth_token=os.environ['TWILIO_AUTH_TOKEN']client=Client(account_sid,auth_token)message=client.messages.create(from_='+15017122661',body='Hi there',to='+15558675310')print(message.sid)
// Install the C# / .NET helper library from twilio.com/docs/csharp/installusingSystem;usingTwilio;usingTwilio.Rest.Api.V2010.Account;classProgram{staticvoidMain(string[]args){// Find your Account SID and Auth Token at twilio.com/console// and set the environment variables. See http://twil.io/securestringaccountSid=Environment.GetEnvironmentVariable("TWILIO_ACCOUNT_SID");stringauthToken=Environment.GetEnvironmentVariable("TWILIO_AUTH_TOKEN");TwilioClient.Init(accountSid,authToken);varmessage=MessageResource.Create(from:newTwilio.Types.PhoneNumber("+15017122661"),body:"Hi there",to:newTwilio.Types.PhoneNumber("+15558675310"));Console.WriteLine(message.Sid);}}
// Install the Java helper library from twilio.com/docs/java/installimportcom.twilio.Twilio;importcom.twilio.rest.api.v2010.account.Message;importcom.twilio.type.PhoneNumber;publicclassExample{// Find your Account SID and Auth Token at twilio.com/console// and set the environment variables. See http://twil.io/securepublicstaticfinalStringACCOUNT_SID=System.getenv("TWILIO_ACCOUNT_SID");publicstaticfinalStringAUTH_TOKEN=System.getenv("TWILIO_AUTH_TOKEN");publicstaticvoidmain(String[]args){Twilio.init(ACCOUNT_SID,AUTH_TOKEN);Messagemessage=Message.creator(newcom.twilio.type.PhoneNumber("+15558675310"),newcom.twilio.type.PhoneNumber("+15017122661"),"Hi there").create();System.out.println(message.getSid());}}
// Download the helper library from https://www.twilio.com/docs/go/installpackagemainimport("fmt""github.com/twilio/twilio-go"api"github.com/twilio/twilio-go/rest/api/v2010")funcmain(){// Find your Account SID and Auth Token at twilio.com/console// and set the environment variables. See http://twil.io/secureclient:=twilio.NewRestClient()params:=&api.CreateMessageParams{}params.SetFrom("+15017122661")params.SetBody("Hi there")params.SetTo("+15558675310")resp,err:=client.Api.CreateMessage(params)iferr!=nil{fmt.Println(err.Error())}else{ifresp.Sid!=nil{fmt.Println(*resp.Sid)}else{fmt.Println(resp.Sid)}}}
<?php// Update the path below to your autoload.php,// see https://getcomposer.org/doc/01-basic-usage.mdrequire_once'/path/to/vendor/autoload.php';useTwilio\Rest\Client;// Find your Account SID and Auth Token at twilio.com/console// and set the environment variables. See http://twil.io/secure$sid=getenv("TWILIO_ACCOUNT_SID");$token=getenv("TWILIO_AUTH_TOKEN");$twilio=newClient($sid,$token);$message=$twilio->messages->create("+15558675310",// to["from"=>"+15017122661","body"=>"Hi there"]);print($message->sid);
# Download the helper library from https://www.twilio.com/docs/ruby/installrequire'rubygems'require'twilio-ruby'# Find your Account SID and Auth Token at twilio.com/console# and set the environment variables. See http://twil.io/secureaccount_sid=ENV['TWILIO_ACCOUNT_SID']auth_token=ENV['TWILIO_AUTH_TOKEN']@client=Twilio::REST::Client.new(account_sid,auth_token)message=@client.messages.create(from:'+15017122661',body:'Hi there',to:'+15558675310')putsmessage.sid
# Install the twilio-cli from https://twil.io/cli
twilio api:core:messages:create \
--from +15017122661 \
--body "Hi there" \
--to +15558675310
curl -X POST "https://api.twilio.com/2010-04-01/Accounts/$TWILIO_ACCOUNT_SID/Messages.json"\--data-urlencode "From=+15017122661"\--data-urlencode "Body=Hi there"\--data-urlencode "To=+15558675310"\-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN
ドキュメントはこちら
クイックスタートガイド、コードスニペット、SDK、その他、Twilioの包括的なリソースライブラリーをご覧いただき、SMSソリューションをMessagingXで迅速に構築してくだい。
料金
SMSが簡単になる
MessagingX
テキストメッセージの大規模な送受信は、信頼性に優れた単一プラットフォーム「MessagingX」で2種類の開発者向けAPIを使用すると実現します。料金は従量制です。使用量や使用期間に応じて割引が適用されます。