UpPromote Public API
  1. Webhook Event Payload
UpPromote Public API
  • API overview
  • Affiliate
    • Get affiliates
      GET
    • Get affiliate by ID
      GET
    • Create an affiliate
      POST
    • Approve/Deny affiliate
      POST
    • Set upline for an affiliate
      POST
    • Move an affiliate to a program
      POST
    • Connect a customer to an affiliate
      POST
  • Coupon
    • Get coupons
      GET
    • Assign a coupon to an affiliate
      POST
  • Payment
    • Get unpaid payments
      GET
    • Get paid payments (History)
      GET
    • Count total paid payments
      GET
    • Get a payment by ID
      GET
    • Mark as paid a manual payment
      POST
  • Referral
    • Get list referrals
      GET
    • Get a referral by ID
      GET
    • Create a referral
      POST
    • Add referral adjustment
      POST
  • Webhook
    • Get webhook subscriptions
    • Subscribe a webhook event
    • Update a webhook subscription
    • Delete a webhook subscription
  • Webhook Event Payload
    • Webhook overview
    • Referral new
    • Referral approved
    • Referral denied
    • Referral status changed
    • Affiliate new
    • Affiliate approved
    • Affiliate inactive
    • Affiliate status changed
    • Payment paid
  1. Webhook Event Payload

Payment paid

Webhook
POST
payment.paid
Occurs whenever an affiliate payment is marked as paid or processed. The event payload shown below.

Request

None

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://your-api-server.com'
Response Response Example
{
    "payment_id": 26154,
    "affiliate_id": 2014227,
    "status": "SUCCESS",
    "affiliate_email": "test223@gmail.com",
    "total_referrals": 1,
    "total_processed": 100,
    "payment_method": "debit",
    "processed_at": "2025-09-24T10:52:59Z"
}
Modified at 2025-10-02 02:29:51
Previous
Affiliate status changed
Built with