PGecom
  • 🚀Introduction
  • đŸŽ¯Guides
    • Getting authenticated
  • 📚Concepts
    • Sandbox Environment
  • 🧑‍đŸ’ģAPI Endpoint
    • Ecommerce
      • đŸ›ī¸Shop
        • GetShopById
        • CreateShop
      • 👔Product
        • ProductSchema
        • GetProductById
        • GetProductBySlug
        • CreateNewProduct
      • 🛒Checkout
        • CreateCheckoutSession
      • Form
        • GetFormById
      • Invoice
        • GetInvoiceById
    • Wordpress Plugin
    • Chrome Extension
    • GiftCards
      • â„šī¸Gift Card Schema
      • ✅List giftcards
      • â˜‘ī¸Order a gift card
      • â˜‘ī¸Get giftcard
      • â˜‘ī¸Rates
    • Send rewards
      • â„šī¸Rewards Schema
      • â˜‘ī¸Send rewards
    • Withdraw
      • â„šī¸Withdraw Schema
      • â˜‘ī¸Process Withdraw
      • â˜‘ī¸Rates
    • Radar
      • â„šī¸Radar Schema
      • â˜‘ī¸Check for Fraudster
    • Top Up
      • â„šī¸Topup Schema
      • â˜‘ī¸Estimate
      • â˜‘ī¸Send
    • Payment
      • Mon Cash
        • CreateMonCashPayment
        • VerifyMonCashPayment
        • WithdrawToMonCashEstimate
        • WithdrawFundsToMonCash
      • PG Pay
        • ConfigurePGPay
        • CreatePGPayPayment
        • VerifyPGPaymentWithToken
        • VerifyPGPaymentWithOrderId
    • Deprecated
      • Card Holder
        • â„šī¸Card Holder Schema
        • â˜‘ī¸Update
      • Card
        • â„šī¸Card Schema
        • ✅Retrieve a single card
        • ✅List cards
        • â˜‘ī¸Create a card
        • â˜‘ī¸Create Customer
  • 🎓Resources
    • Support
    • Production Access
Powered by GitBook
On this page

Was this helpful?

  1. API Endpoint
  2. Send rewards

Send rewards

Send rewards or recharge a user's balance

POST https://sandbox.pgecom.com/api/balance/sendmoney

Headers

Name
Type
Description

authorization*

String

Bearer token

Request Body

Name
Type
Description

email*

Number

Recipient's email

amount*

String

Recipient's amount

isPrepaid

String

PG rewards user or your platform's user. Default to true (your user)

{
    "createdAt": "2022-05-09T09:48:51Z",
    "amount": 5806,
    "id": "7fe037b8-3d86-4bc3-9b47-839565kj1068",
    "userID": "7fe037b8-3d86-4bc3-9b47-839565kj1068",
    "updatedAt": "2022-06-29T10:30:23Z",
    "balance": 5806,
    "newBalance": 5811
}

You can use send rewards as a way to recharge a user's account. The funds will automatically be available on their virtual or physical card

PreviousRewards Schema NextWithdraw

Last updated 1 year ago

Was this helpful?

🧑‍đŸ’ģ
â˜‘ī¸