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
      POST
    • Referral approved
      POST
    • Referral denied
      POST
    • Referral status changed
      POST
    • Affiliate new
      POST
    • Affiliate approved
      POST
    • Affiliate inactive
      POST
    • Affiliate status changed
      POST
    • Payment paid
      POST
  1. Webhook Event Payload

Affiliate inactive

Webhook
POST
affiliate.inactive
Occurs whenever an affiliate is denied/deactivated. 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
{
    "id": 2029241,
    "email": "test234@gmail.com",
    "first_name": "Test",
    "last_name": "234",
    "status": "inactive",
    "email_verified": "verified",
    "company": "1",
    "address": "1",
    "city": "1",
    "state": "1",
    "zipcode": null,
    "country": null,
    "phone": "0123456789",
    "facebook": "1",
    "twitter": "1",
    "youtube": "1",
    "instagram": "1",
    "created_at": "2025-09-24T09:37:58Z",
    "default_affiliate_link": "https://mat-test-85.myshopify.com/collections/all?sca_ref=2029241.",
    "custom_affiliate_link": null,
    "program_id": 29486,
    "program_name": "Standard Affiliate Commission",
    "custom_fields": [],
    "coupons": [],
    "vat_number": null,
    "tax_value": 0,
    "up_line_affiliate_id": null,
    "up_line_affiliate_email": null,
    "payment_method": "debit",
    "payment_info": null,
    "paid_amount": 0,
    "approved_amount": 0,
    "pending_amount": 100,
    "denied_amount": 0
}
Modified at 2025-10-02 02:29:40
Previous
Affiliate approved
Next
Affiliate status changed
Built with