Dashboard Overview
本日の取引、成功率、通知状態をまとめて確認できます。
- ライブ指標
- ステータス同期
PayCore はクレジットカード、ATM、コンビニコード決済などを一つの API に統合し、決済作成、ブランド決済ページ、決済ステータス、成功通知、再送処理を標準化します。Stripe credit を第一段階として接続し、SmilePay、ECPay などを段階的に拡張できます。
本日の取引、成功率、通知状態をまとめて確認できます。
決済注文、決済方法、ステータスを整理し、将来的に加盟店管理画面へ拡張できます。
決済成功後にバックエンドへ自動通知し、失敗時は Queue Retry に進みます。
Stripe から接続し、SmilePay、ECPay、ATM、コンビニコードを段階的に追加できます。
PayCore は決済作成、ブランド決済ページ、ゲートウェイコールバック、成功通知、再送処理を統一します。
Connect credit card, ATM and convenience-store code payments through one unified API. Channels can be expanded in phases.
SmilePay ATM / CVS can join the same creation, status query and notification workflow.
Different gateways only change gateway / method while merchants keep the same request and response boundary.
After payment succeeds, PayCore notifies the merchant payok_url and retries failed delivery through Queue.
Designed for teams with existing sites, member systems or order systems that want one API for multiple payment methods.
Send merchant order number, amount, currency and return URLs.
Use gateway / method to get the payment page, payment code or transfer information.
After gateway callback verification succeeds, PayCore updates the payment status.
PayCore notifies merchant payok_url after successful payment and retries failed notifications automatically.
{
"merchant_order_no": "ORDER202606190001",
"amount": 1000,
"currency": "TWD",
"gateway": "stripe",
"method": "credit",
"payment_url": "https://pay-core.app/pay/PC202606190001",
"status": "pending",
"created": true
}
PayCore turns payment creation, status sync, payok_url notification and retry into a shared core. Stripe, SmilePay and ECPay are connected as separate channels.
PayCore の状態を案内する 3 つの役割です。Pico は支払い状態、Guard は安全境界、Scanner は異常調査を担当します。
この入口は、承認済みの PayCore 管理者のみ利用できます。不正アクセス、異常なログイン、疑わしい操作は記録および制限される場合があります。
PayCore は場面に合わせて役割を切り替えます。Pico は決済状態を見守り、Guard は権限と検証を守り、Scanner はシステムや上流ゲートウェイの異常を調査します。
Pico は日常の支払い状態アシスタントです。支払い作成、回調、同期、通知結果を見やすく整理します。
Guard は安全を守るアシスタントです。API Key、権限、署名検証、取引境界を保護します。
Scanner は異常スキャン担当です。システムエラー、上流遅延、ゲートウェイ異常の原因確認を助けます。