先行利用を申し込む

お名前とメールアドレスまたは電話番号をご入力ください。Tajo のアクセス方法をご案内します。

SMS を送信

ロイヤルティプログラムの更新、注文通知、期限のあるオファーなどを、パーソナライズした SMS で顧客に届けます。

クイックスタート

基本的な SMS リクエスト

POST https://api.brevo.com/v3/transactionalSMS/sms
Content-Type: application/json
api-key: YOUR_API_KEY
{
"type": "transactional",
"unicodeEnabled": false,
"sender": "TajoLoyalty",
"recipient": "+1234567890",
"content": "Hi John! You've earned 150 points from your recent purchase. Your total: 1,250 points. Redeem at tajo.com/rewards"
}

レスポンス

{
"reference": "sms_abc123",
"messageId": "msg_def456"
}

ロイヤルティプログラム向け SMS テンプレート

ポイント獲得の通知

{
"type": "transactional",
"sender": "TajoRewards",
"recipient": "+1234567890",
"content": "🎉 Great news {{contact.FIRSTNAME}}! You earned {{params.pointsEarned}} points from order #{{params.orderNumber}}. Total: {{params.totalPoints}} points. Shop more at {{params.storeUrl}}",
"params": {
"pointsEarned": "200",
"orderNumber": "ORD-2024-001",
"totalPoints": "1,450",
"storeUrl": "shop.tajo.com"
}
}

ティア昇格のお知らせ

{
"content": "🌟 Congratulations {{contact.FIRSTNAME}}! You've been upgraded to {{params.newTier}} status! Enjoy {{params.benefits}}. Your new point balance: {{params.totalPoints}}",
"params": {
"newTier": "Gold",
"benefits": "free shipping & exclusive offers",
"totalPoints": "2,500"
}
}

特典引き換えの確認

{
"content": "✅ Reward redeemed! {{params.rewardName}} - {{params.pointsUsed}} points used. Coupon: {{params.couponCode}} (expires {{params.expiryDate}}). Remaining: {{params.remainingPoints}} points",
"params": {
"rewardName": "20% Off",
"pointsUsed": "1000",
"couponCode": "SAVE20NOW",
"expiryDate": "Mar 15",
"remainingPoints": "450"
}
}

注文ステータスの更新

{
"content": "📦 Your order #{{params.orderNumber}} has {{params.status}}! {{params.details}} Track: {{params.trackingUrl}}",
"params": {
"orderNumber": "ORD-2024-001",
"status": "shipped",
"details": "Arriving in 2-3 business days",
"trackingUrl": "track.tajo.com/ORD-2024-001"
}
}

パーソナライズしたキャンペーン SMS

誕生日限定オファー

{
"type": "marketing",
"sender": "TajoBday",
"recipient": "+1234567890",
"content": "🎂 Happy Birthday {{contact.FIRSTNAME}}! Here's a special gift: {{params.birthdayBonus}} bonus points + {{params.discountCode}} for {{params.discountAmount}} off! Valid until {{params.expiryDate}}",
"params": {
"birthdayBonus": "500",
"discountCode": "BIRTHDAY25",
"discountAmount": "25%",
"expiryDate": "end of month"
}
}

カート放棄からの復帰

{
"content": "🛒 Hi {{contact.FIRSTNAME}}, you left {{params.itemCount}} items in your cart worth {{params.cartValue}}. Complete your purchase and earn {{params.potentialPoints}} points! Continue: {{params.cartUrl}}",
"params": {
"itemCount": "3",
"cartValue": "$299.97",
"potentialPoints": "300",
"cartUrl": "tajo.com/cart"
}
}

フラッシュセールのお知らせ

{
"content": "⚡ {{contact.FIRSTNAME}}, FLASH SALE: {{params.saleDetails}}! {{params.loyaltyTier}} members get {{params.bonusPoints}} bonus points! Shop now: {{params.saleUrl}} ({{params.timeLeft}} left)",
"params": {
"saleDetails": "50% off electronics",
"loyaltyTier": "Gold",
"bonusPoints": "double",
"saleUrl": "tajo.com/flash",
"timeLeft": "6 hours"
}
}

SMS の高度な機能

テンプレートを使った SMS

{
"type": "transactional",
"templateId": 123,
"params": {
"customerName": "John Doe",
"pointsBalance": "2,350",
"nextReward": "Free shipping at 2,500 points"
}
}

予約送信 SMS

{
"type": "transactional",
"sender": "TajoRemind",
"recipient": "+1234567890",
"content": "⏰ Reminder: Your {{params.pointsExpiring}} points expire in {{params.daysLeft}} days! Use them at tajo.com/rewards",
"scheduledAt": "2024-01-30T09:00:00Z",
"params": {
"pointsExpiring": "500",
"daysLeft": "7"
}
}

Unicode 対応

{
"type": "transactional",
"unicodeEnabled": true,
"content": "🎊 ¡Felicidades {{contact.FIRSTNAME}}! Has ganado {{params.points}} puntos 💎",
"params": {
"points": "150"
}
}

SMS キャンペーンのセグメンテーション

ティア別のメッセージ

{
"type": "marketing",
"content": "{{#if contact.LOYALTY_TIER == 'Platinum'}}💎 VIP Alert: Early access to our sale + triple points!{{else}}🌟 Loyalty member: Get double points on your next purchase!{{/if}}",
"webUrl": "https://tajo.com/sale"
}

地域ターゲティング SMS

{
"content": "📍 {{contact.FIRSTNAME}}, there's a Tajo store near you! Visit {{params.nearestStore}} and show this text for {{params.inStoreBonus}} bonus points!",
"params": {
"nearestStore": "123 Main St, NYC",
"inStoreBonus": "100"
}
}

コンプライアンスとベストプラクティス

オプトインの確認

{
"type": "transactional",
"content": "Welcome to Tajo SMS alerts! Reply YES to confirm you want loyalty updates and exclusive offers. Reply STOP to opt out anytime. Msg & data rates may apply."
}

オプトアウトの処理

{
"type": "transactional",
"content": "You've been unsubscribed from Tajo SMS alerts. You'll still receive important order updates. To rejoin, text START. Questions? Contact [email protected]"
}

エラー処理

{
"code": "invalid_recipient",
"message": "Phone number format invalid",
"details": {
"recipient": "123-456-7890",
"expectedFormat": "+1234567890"
}
}
{
"code": "message_too_long",
"message": "SMS content exceeds character limit",
"details": {
"length": 180,
"limit": 160,
"segments": 2
}
}

SMS の分析

追跡すべき主な指標は次のとおりです。

  • 到達率
  • クリック率(リンクを含む場合)
  • コンバージョン率
  • オプトアウト率
  • 顧客エンゲージメントスコア

コストの最適化

文字数の管理

{
"content": "Hi {{contact.FIRSTNAME}}! +{{params.points}}pts from order #{{params.orderNum}}. Total: {{params.total}}pts. tajo.com/rewards",
"estimatedSegments": 1,
"characterCount": 89
}

セグメント向けの一括 SMS

{
"recipients": [
{
"phone": "+1234567890",
"params": { "name": "John", "points": "150" }
},
{
"phone": "+1234567891",
"params": { "name": "Jane", "points": "200" }
}
],
"content": "Hi {{params.name}}! You earned {{params.points}} points!"
}

Tajo プラットフォームとの連携

  1. 注文確認: 購入確認を自動で SMS 送信します
  2. ポイント通知: ポイント残高をリアルタイムで更新します
  3. ティア変更: ティア昇格を即時に通知します
  4. 失効アラート: ポイントの失効を前もって警告します
  5. プロモーションキャンペーン: 行動に基づいてオファーを出し分けます

ベストプラクティス

  1. 短くまとめる: SMS には文字数の制限があるので、簡潔かつ魅力的に書きます
  2. パーソナライズする: 顧客データを使って内容を関連性の高いものにします
  3. 送信タイミング: 相手のオーディエンスに最適な時間帯に送ります
  4. 明確な CTA: 次のアクションやリンクをはっきり示します
  5. コンプライアンス: 常にオプトアウトの方法を記載します
  6. テストする: メッセージの形式を A/B テストで比較します

次のステップ

  • SMS テンプレートを設定する
  • SMS の自動化を構成する
  • SMS コンタクトリストを管理する
  • SMS 分析を追跡する

先行利用を申し込む

お名前とメールアドレスまたは電話番号をご入力ください。Tajo のアクセス方法をご案内します。

自動判定
AIアシスタント

こんにちは!ドキュメントについて何でもお聞きください。