コンテンツにスキップ
アカウントを作成
または
サインイン
Stripe ドキュメントのロゴ
/
AI に質問する
アカウントを作成
サインイン
始める
支払い
売上
プラットフォームおよびマーケットプレイス
資金管理
開発者向けのツール
概要
Stripe Payments について
    概要
    通貨
    支払い拒否
    入金
    継続支払い
    3D セキュア認証
      3D セキュアを使用して認証する
      SCA 免除数
      スタンドアロンの 3D セキュア
      3D セキュアの結果をインポートする
      クエリーを作成する
    支払いの返金とキャンセル
    残高と売上処理にかかる期間
    領収書
    Webhook イベントに対応する
    SCA 対応
構築済みのシステムをアップグレード
支払いの分析
オンライン決済
概要ユースケースを見つけるManaged Payments
Payment Links を使用する
決済ページを構築
高度なシステムを構築
アプリ内実装を構築
決済手段
決済手段を追加
決済手段を管理
Link による購入の迅速化
支払いインターフェイス
Payment Links
Checkout
Web Elements
アプリ内 Elements
決済シナリオ
カスタムの決済フロー
柔軟なアクワイアリング
オーケストレーション
店頭支払い
端末
他の Stripe プロダクト
Financial Connections
仮想通貨
Climate
ホーム支払いAbout Stripe payments3D Secure authentication

認証コンバージョンのクエリー

Stripe Sigma で、使用されている認証、コンバージョン、 SCA 免除に関する情報を取得します。

ページをコピー

Sigma スキーマの Analytics Tables (分析テーブル) セクションの authentication_report_attempts テーブルをご確認ください。authentication_report_attempts テーブルの各行は、個々の試行オブジェクトに関するデータを表しています。Stripe のドキュメントページには、分割表示形式のスキーマも示されています。

試行コンバージョンに関する情報

複数回の試行を含む可能性のある PaymentIntent または SetupIntent のそれぞれから、すべての試行に関するレポートを取得できます。

注

拒否された支払いが再試行された場合など、単一の取引に対して複数回の試行が行われることがあります。特定の取引にフィルタリングするには、is_final_attempt 列を使用します。この列は数日後に最終的に構成されます。

次のクエリー例では、authentication_report_attempts テーブルを使用して、チャレンジフローを使用して正常に認証された Payment Intents のリストを取得します。

select attempt_id, intent_id, payment_method, threeds_reason as step_up_reason, charge_outcome from authentication_report_attempts where intent_type = 'payment' and threeds_outcome_result = 'authenticated' and authentication_flow = 'challenge' and is_final_attempt limit 5
attempt_idintent_idpayment_methodstep_up_reasoncharge_outcome
payatt_1IRdZ9F…pi_1Hn8d…card_chargerequested_by_radar_ruleauthorized
payatt_1I4AFxF…pi_1J8Ljt…card_chargerequested_by_radar_ruleauthorized
payatt_1HvmxU…pi_1HhsH…card_chargerequested_by_radar_ruleauthorized
payatt_1I5npGF…pi_1IdKak…card_chargerequested_by_radar_ruleauthorized
payatt_1HcbWZ…pi_1IAhBh…card_chargerequested_by_radar_ruleauthorized

SCA 免除の情報

Stripe または発行会社/銀行が使用している SCA 免除に関する情報もクエリーできます。強力な顧客認証の免除をご覧ください。

次のクエリーは、リクエストされた免除とは関係のない理由で拒否された低リスクのオーソリへの転送が使用された SCA 免除の支払いを示しています。

select attempt_id, intent_id, charge_outcome, charge_outcome_reason from authentication_report_attempts where intent_type = 'payment' and sca_exemption_requested = 'low_risk' and sca_exemption_mechanism = 'authorization' -- direct to authorization and sca_exemption_status = 'non_sca_decline' and is_final_attempt limit 5
attempt_idintent_idcharge_outcomecharge_outcome_reason
payatt_3JeL…pi_3JeL…issuer_declinedinsufficient_funds
payatt_1Itw…pi_1Itw…issuer_declineddo_not_honor
payatt_1Ini3…pi_1Ini3…issuer_declineddo_not_honor
payatt_1IiO7…pi_1IiO7…issuer_declineddo_not_honor
payatt_1I0hGm…pi_1I0hGk…issuer_declinedinsufficient_funds

重複排除の影響

次のクエリは、is_final_attempt によって重複を排除すると設定の認証率の計算にどのような影響が生じるかを示しています。

注

Stripe の重複排除ロジックでは、同じ customer_id、currency、amount で拒否された支払いのグループ (場合によっては最後のものを除く) が時間的に近くに表示されていないか確認します。このようなグループは、コンバージョン計算で単一の単位として扱われます。Sigma テーブルには、すべての未加工データが含まれていますが、各グループの代表的な取引にフィルタリングするために使用できる is_final_attempt 列も含まれています。

with setup_attempts as ( select created, is_final_attempt, threeds_outcome_result in ( 'attempt_acknowledged', 'authenticated', 'delegated', 'exempted' ) as threeds_succeeded from authentication_report_attempts where created between date'2021-10-29' and date'2021-11-03' and intent_type = 'setup' and is_threeds_triggered ) select date_trunc('day', created) as day, 1. * count_if(threeds_succeeded) / count(*) as authentication_rate__raw, 2. * count_if(threeds_succeeded and is_final_attempt) / nullif(count_if(is_final_attempt), 0) as authentication_rate__deduped from setup_attempts group by 1 order by 1
dayauthentication_rate__rawauthentication_rate__deduped
2021-10-290.590.80
2021-10-300.600.81
2021-10-310.590.81
2021-11-010.610.83
2021-11-020.620.83
このページはお役に立ちましたか。
はいいいえ
お困りのことがございましたら 、サポートにお問い合わせください。
早期アクセスプログラムにご参加ください。
変更ログをご覧ください。
ご不明な点がございましたら、お問い合わせください。
LLM ですか?llms.txt を読んでください。
Powered by Markdoc