UpPromote Public API
  1. Payment
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
      GET
    • Subscribe a webhook event
      POST
    • Update a webhook subscription
      PUT
    • Delete a webhook subscription
      DELETE
  • 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. Payment

Get paid payments (History)

GET
/api/v2/payments/paid
The payment_method field accepts the values paypal, bank, wise, debit, cheque, venmo, paytm, upi, store_credit, other.

Request

Query Params

Header Params

Responses

🟢200Success
application/json
Body

🔴500Server Error
🟠401Unauthorized
🟠422Parameter Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://aff-api.uppromote.com/api/v2/payments/paid' \
--header 'Accept: application/json' \
--header 'Authorization: ****************************' \
--header 'Content-Type: application/json'
Response Response Example
200 - Example
{
    "status": 200,
    "message": "success",
    "data": [
        {
            "payment_id": 22076,
            "affiliate_id": 1970615,
            "status": "SUCCESS",
            "affiliate_email": "example3@gmail.com",
            "total_referrals": 1,
            "total_processed": 49.32,
            "payment_method": "paypal",
            "processed_at": "2024-06-04T08:01:29Z"
        },
        {
            "payment_id": 23984,
            "affiliate_id": 1987024,
            "status": "SUCCESS",
            "affiliate_email": "example4@outlook.com",
            "total_referrals": 1,
            "total_processed": 3.55,
            "payment_method": "store_credit",
            "processed_at": "2025-02-21T03:37:13Z"
        }
    ]
}
Modified at 2025-10-06 04:45:18
Previous
Get unpaid payments
Next
Count total paid payments
Built with