インカムテスト連携仕様書
https://docs.google.com/spreadsheets/d/1HDja3V9PkoG_Mxqt54EqgJWU_KgDB0Q2YhYAGnZoikE/edit?usp=sharing
MMP連携
https://mermaid.ai/ このサイトで使用
flowchart LR
subgraph Processing["バッチ処理"]
Batch{"Batch Processing"}
TempTable[("一時テーブル<br>(①Temporary Table)")]
ErrorTable[("③Error Table<br>(エラー格納)")]
TempTable -- 抽出・加工・照合 --> Batch
Batch -- "エラー発生" --> ErrorTable
end
MMP["MMP <br> 成果通知を送信"] -- 通信 --> TempTable
Batch -- "正常終了 (格納)" --> PBTable[("ポイントバック管理用テーブル<br>(②Pointback Table)")]
PBTable -- "成果通知 (Postback)" --> Media["メディア / 広告代理店<br>(adleap, pointincome 等)"]
%% スタイル設定
style Batch fill:#fff4dd,stroke:#d4a017,stroke-width:2px
style MMP fill:#f9f,stroke:#333,stroke-width:2px
style Media fill:#bbf,stroke:#333,stroke-width:2px
style ErrorTable fill:#ffdbdb,stroke:#e91e63,stroke-width:2px