Dex3
Merchant DashboardHome
  • 👋Introduction
    • Dex3 API
    • Payment Gateway
    • Payout System
  • 🌟Getting Started
    • Create merchant
  • ⚙️Connect to API
    • Connect API
  • 🚩Merchant Status
    • Get Merchant Status
  • 🪙Payment Gateway
    • Create New Payment
      • Create Signature
    • Get Payment Status
    • Get Payment Data
    • Payment Success Webhook
      • Verify Webhook Signature
  • 🫴Payout System
    • Create New Payout
      • Create Signature
    • Get Payout Status
    • Get Payout Data
    • Payout Success Webhook
      • Verify Webhook Signature
    • Payout Contracts
Powered by GitBook
On this page
  • Overview
  • Signature Verification
  • Response

Was this helpful?

  1. Payout System

Payout Success Webhook

PreviousGet Payout DataNextVerify Webhook Signature

Last updated 1 year ago

Was this helpful?

Overview

The Payout Success Webhook is triggered when a customer successfully completes a payout transaction. This webhook provides essential information about the payout, allowing merchants to update their systems and perform necessary actions in response to successful transactions.

Signature Verification

Merchants must perform signature verification to ensure the authenticity and integrity of the webhook payload.

Response

Key

Example

Description

Datatype

order_id

123

Order id which you will track within your application

varchar(200)

payout_id

EKKlnN7QXB5ynmqZTeriefGLgr4jq8

Payout ID for this payout

varchar(50)

productName

Acme

Name of the product

varchar(50)

amount

100

Amount in USD Important : Amount must be divided by 100. Example : 100 = $1 20000 = $200

int

notes

{ "user_id": "3" }

Optional - Send any additional tracking info which you will use to process the payout

json

expiration

1710147039

Payout's expiration in timestamp

int

hash

0x9edb60bdeebd9cbc159ff60470784431fbe2814bb616b0f7f9c0c8cb19ecb331

Transaction Hash of the payout

varchar

signature

a94dfc7c6334402b3d88fe5368e85755767b9e63ac3c259e79163dc8dc199965

Sha256 encrypted signature used to verify payload

varchar

For any additional parameters you require, you can use the Get Payout Data method to get full payout information

🫴
Verify Webhook Signature