UpPromote Marketplace API
    • Get offers
      GET
    • Get affiliate links
      GET
    • Get referral orders
      GET
    • Get payments
      GET
    • Schemas
      • object
      • Referral

      Get payments

      GET
      /api/v1/payment
      Retrieve a list of payment records issued to you. Each record represents a payment for approved referral commissions.

      Request

      Authorization
      Provide your bearer token in the
      Authorization
      header when making requests to protected resources.
      Example:
      Authorization: Bearer ********************
      Query Params

      Responses

      🟢200Success
      application/json
      Body

      🟠401Unauthorized
      🟠422Parameter Error
      🔴500Server Error
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request GET '/api/v1/payment?page=1&per_page=10&start_date=&end_date&id=12345&shop_id=56789&payment_id=98765' \
      --header 'Authorization: Bearer <token>'
      Response Response Example
      200 - Example 1
      {
          "per_page": 10,
          "current_page": 1,
          "next_page_url": "string",
          "prev_page_url": "string",
          "from": 1,
          "to": 10,
          "data": [
              {
                  "id": 0,
                  "shop_id": 0,
                  "offer_name": "Demo Store",
                  "website": "https://demostore.myshopify.com",
                  "payment_id": 0,
                  "total_referral": 10,
                  "total_sales": "200.00",
                  "commission_amount": "10.00",
                  "currency": "USD",
                  "created_at": "2023-01-11T18:06:03.000000Z"
              }
          ]
      }
      Modified at 2025-07-04 07:16:27
      Previous
      Get referral orders
      Next
      object
      Built with