Münzen API
  • Home
  • Getting Started
  • API Overview
    • API Reference
    • API Requests
    • API Authentication
    • Environments
    • Errors
    • Callbacks (Webhooks)
    • Currencies, Confirmations, and Limits
    • How to accept crypto payments
    • Proof of Funds
    • AML & Compliance Checks
  • Testing
    • How to check integration
  • Invoices
    • What is Invoices
    • Create an Invoice
    • Invoice Statuses
    • Invoice Callbacks
  • Channels
    • What is Channels
    • Create a Channel
    • Channel Payment Statuses
    • Channel Callbacks
  • Payment Widget
    • What is Payment Widget
    • Integration Guide for Payment Widget
      • Params for Channel Widget
  • Payouts
    • What is Payouts
    • Create a Payout
    • Payout Statuses
    • Payout Callbacks
  • Useful Information
    • Testnet Faucets
Powered by GitBook
On this page
  1. Payouts

Payout Callbacks

First, read general information about callbacks: Callbacks (Webhooks).

We will send a callback on the following events:

Event
Description

status_changed

This event is triggered when the payout status changes

Since we start processing your payout request, we will send a callback to your server. Here is an example of callbacks:

{
  "type": "payout",
  "event": "status_changed",
  "data": {
    "id": "01894a4e-d138-723a-835f-cec13d63b763",
    "customer_external_id": "[email protected]",
    "currency": "USDTMATIC",
    "transaction_hash": "0xebd868859d3d0736f724691bb1a4c41478b12914cdbde31159099af537f8efa7",
    "transaction_risk_score": null,
    "amount_requested": 5,
    "amount_sent": 4.949961,
    "fee_amount": 0.050039,
    "status": "complete",
    "status_reason": null
  },
  "timestamp": 1689168919
}
PreviousPayout StatusesNextTestnet Faucets

Last updated 1 year ago