View in English

  • Apple Developer
    • 今すぐ始める

    「今すぐ始める」を詳しく見る

    • 概要
    • 学ぶ
    • Apple Developer Program

    最新情報

    • 最新ニュース
    • Hello Developer
    • プラットフォーム

    プラットフォームを詳しく見る

    • Appleプラットフォーム
    • iOS
    • iPadOS
    • macOS
    • tvOS
    • visionOS
    • watchOS
    • App Store

    特集

    • デザイン
    • 配信
    • ゲーム
    • アクセサリ
    • Web
    • Home
    • CarPlay
    • テクノロジー

    テクノロジーを詳しく見る

    • 概要
    • Xcode
    • Swift
    • SwiftUI

    特集

    • アクセシビリティ
    • App Intent
    • Apple Intelligence
    • ゲーム
    • 機械学習とAI
    • セキュリティ
    • Xcode Cloud
    • コミュニティ

    コミュニティを詳しく見る

    • 概要
    • 「Appleに相談」イベント
    • コミュニティによるイベント
    • デベロッパフォーラム
    • オープンソース

    特集

    • WWDC
    • Swift Student Challenge
    • デベロッパストーリー
    • App Store Awards
    • Apple Design Awards
    • Apple Developer Center
    • ドキュメント

    ドキュメントを詳しく見る

    • ドキュメントライブラリ
    • テクノロジー概要
    • サンプルコード
    • ヒューマンインターフェイスガイドライン
    • ビデオ

    リリースノート

    • 注目のアップデート
    • iOS
    • iPadOS
    • macOS
    • watchOS
    • visionOS
    • tvOS
    • Xcode
    • ダウンロード

    ダウンロードを詳しく見る

    • すべてのダウンロード
    • オペレーティングシステム
    • アプリ
    • デザインリソース

    特集

    • Xcode
    • TestFlight
    • フォント
    • SF Symbols
    • Icon Composer
    • サポート

    サポートを詳しく見る

    • 概要
    • ヘルプガイド
    • デベロッパフォーラム
    • フィードバックアシスタント
    • お問い合わせ

    特集

    • アカウントヘルプ
    • App Reviewガイドライン
    • App Store Connectヘルプ
    • 近日導入予定の要件
    • 契約およびガイドライン
    • システムステータス
  • クイックリンク

    • イベント
    • ニュース
    • Forum
    • サンプルコード
    • ビデオ
 

ビデオ

メニューを開く メニューを閉じる
  • コレクション
  • すべてのビデオ
  • 利用方法

その他のビデオ

  • 概要
  • Summary
  • コード
  • App Store ConnectのRetention Messagingの利用方法

    キャンセルする可能性のあるサブスクリプション登録者に事前にアプローチできる、Retention Messagingの利用方法を紹介します。App Store Connectでこの機能を設定する方法、サブスクリプションオファーを追加する方法のほか、Retention Messaging APIを活用してリアルタイムのメッセージや代替オプションを提供し、アプリやゲームのサブスクリプション継続を促す方法について学べます。

    関連する章

    • 0:00 - Introduction
    • 2:38 - Retention Messaging in App Store Connect
    • 6:38 - Real-time Retention Messaging
    • 11:46 - Retention Messaging comparison

    リソース

    • Interest form: Real-time Retention Messaging
    • Supporting monthly subscriptions with a 12-month commitment
    • Retention Messaging API
      • HDビデオ
      • SDビデオ

    関連ビデオ

    WWDC26

    • App Storeでのプレゼンスを最大限に高める方法
    • Appleアプリ内購入の新機能
  • このビデオを検索
    • 6:08 - Signed transaction updates

      // Signed transaction updates
      
      {
          "bundleId": "com.example.app",
          "productId": "Yoga_summer_2026",
          "type": "Auto-Renewable Subscription",
          "transactionReason": "RENEWAL",
          "inAppOwnershipType": "PURCHASED",
          "quantity": 1,
          "price": 0,
          "currency": "USD",
          "offerType": 5, // retention offer
          "offerIdentifier": "Yoga_2026_cancel_free_3m",
          "offerDiscountType": "FREE_TRIAL",
          "offerPeriod": "P3M", 
          "transactionId": "1000098916194"
          "originalTransactionId": "1000011859217",
          "appAccountToken": "23a91ca7-06f3-425f-bff6-820904b510a9",
          ...
      }
    • 7:50 - Retention Messaging API

      // Retention Messaging API: https://api.storekit.apple.com/inApps/v1/messaging
      
      // URL configuration
      PUT /realtime/url
      GET /realtime/url
      DELETE /realtime/url
      
      // Message configuration
      PUT /message/{messageIdentifier}
      DELETE /message/{messageIdentifier}
      GET /message/list
      PUT /default/{productId}/{locale}
      DELETE /default/{productId}/{locale}
      GET /default/{productId}/{locale}
      
      // Image configuration
      PUT /image/{imageIdentifier}
      DELETE /image/{imageIdentifier}
      GET /image/list
      
      // Performance testing - Sandbox only
      POST /performanceTest // initiate test
      GET /performanceTest/result/{requestId} // get results
    • 8:34 - Real-time requests

      // Real-time requests
      
      // Request from the App Store
      {
          "originalTransactionId": "123456789",
          "appAppleId": 6745974591,
          "productId": "Yoga_summer_2026",
          "userLocale": "en-US",
          "requestIdentifier": "c03248af-dd76-4e9b-9c1e-4489cd19a768",
          "environment": "Production", // or Sandbox
          "signedDate": 1780920000000
      }
    • 8:57 - Real-time requests with message

      // Real-time requests
      
      // Request from the App Store
      {
          "originalTransactionId": "123456789",
          "appAppleId": 6745974591,
          "productId": "Yoga_summer_2026",
          "userLocale": "en-US",
          "requestIdentifier": 
              "c03248af-dd76-4e9b-9c1e-4489cd19a768",
          "environment": "Production", // or Sandbox
          "signedDate": 1780920000000
      }
      
      // Your response
      {
          "message": {
              "messageIdentifier": 
                  "551ee7c0-c097-418e-9dd5-2a98533a7390"
          }
      }
    • 9:11 - Real-time request with alternate product

      // Real-time requests
      
      // Request from the App Store
      {
          "originalTransactionId": "123456789",
          "appAppleId": 6745974591,
          "productId": "Yoga_summer_2026",
          "userLocale": "en-US",
          "requestIdentifier": 
              "c03248af-dd76-4e9b-9c1e-4489cd19a768",
          "environment": "Production", // or Sandbox
          "signedDate": 1780920000000
      }
      
      // Your response
      {
          "alternateProduct": {
              "messageIdentifier":
                  "ed7f25fc-5741-46a3-8502-062e0fb8afd0",
              "productId": "Yoga_summer_2026_annual"
          }
      }
    • 9:24 - Real-time request with promotional offer

      // Real-time requests
      
      // Request from the App Store
      {
          "originalTransactionId": "123456789",
          "appAppleId": 6745974591,
          "productId": "Yoga_summer_2026",
          "userLocale": "en-US",
          "requestIdentifier": 
        "c03248af-dd76-4e9b-9c1e-4489cd19a768",
          "environment": "Production", // or Sandbox
          "signedDate": 1780920000000
      }
      
      // Your response
      {
          "promotionalOffer": {
              "messageIdentifier": 
                  "80135e2b-ae15-4ec4-8c5c-9ecc8045c0dc",
              "promotionalOfferSignatureV2": "eyJhbGciOiJFUzI…"
          }
      }
    • 0:00 - Introduction
    • Retention Messaging allows you to reach your subscribers when they are about to cancel you subscription, offering you an opportunity to save your subscribers at this critical moment.

    • 2:38 - Retention Messaging in App Store Connect
    • Retention Messaging in App Store Connect allows you to set up retention messages that are automatically delivered to your customers when they are about to cancel a subscription. You can use Asset Library and retention offers to add value to your retention messages.

    • 6:38 - Real-time Retention Messaging
    • Use real-time Retention Messaging and the Retention Messaging API to reach out to your customers in real time when they are about to cancel their subscriptions. The App Store will make a server-to-server call to your configured endpoint to get your real-time message preference.

    • 11:46 - Retention Messaging comparison
    • Compare Retention Messaging in App Store Connect and real-time Retention Messaging to determine which is the right fit for your app.

Developer Footer

  • ビデオ
  • WWDC26
  • App Store ConnectのRetention Messagingの利用方法
  • メニューを開く メニューを閉じる
    • iOS
    • iPadOS
    • macOS
    • tvOS
    • visionOS
    • watchOS
    Open Menu Close Menu
    • Swift
    • SwiftUI
    • Swift Playground
    • TestFlight
    • Xcode
    • Xcode Cloud
    • SF Symbols
    メニューを開く メニューを閉じる
    • アクセシビリティ
    • アクセサリ
    • Apple Intelligence
    • App Extension
    • App Store
    • オーディオとビデオ(英語)
    • 拡張現実
    • デザイン
    • 配信
    • 教育
    • フォント(英語)
    • ゲーム
    • ヘルスケアとフィットネス
    • アプリ内課金
    • ローカリゼーション
    • マップと位置情報
    • 機械学習とAI
    • オープンソース(英語)
    • セキュリティ
    • SafariとWeb(英語)
    メニューを開く メニューを閉じる
    • 英語ドキュメント(完全版)
    • 日本語ドキュメント(一部トピック)
    • チュートリアル
    • ダウンロード
    • フォーラム(英語)
    • ビデオ
    Open Menu Close Menu
    • サポートドキュメント
    • お問い合わせ
    • バグ報告
    • システム状況(英語)
    メニューを開く メニューを閉じる
    • Apple Developer
    • App Store Connect
    • Certificates, IDs, & Profiles(英語)
    • フィードバックアシスタント
    メニューを開く メニューを閉じる
    • Apple Developer Program
    • Apple Developer Enterprise Program
    • App Store Small Business Program
    • MFi Program(英語)
    • Mini Apps Partner Program
    • News Partner Program(英語)
    • Video Partner Program(英語)
    • セキュリティ報奨金プログラム(英語)
    • Security Research Device Program(英語)
    Open Menu Close Menu
    • Appleに相談
    • Apple Developer Center
    • App Store Awards(英語)
    • Apple Design Awards
    • Apple Developer Academy(英語)
    • WWDC
    最新ニュースを読む。
    Apple Developerアプリを入手する。
    Copyright © 2026 Apple Inc. All rights reserved.
    利用規約 プライバシーポリシー 契約とガイドライン