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. GiftCards

Get giftcard

Get a gift card

POST https://sandbox.pgecom.com/api/v1/giftcard/{{id}}

When you fetch for a gift card, always check if the isActivated is enabled.

If not, that means that this giftCard is currently disabled in our platform and won't be able to place order

{
    "maximum": 30,
    "defaultDelivery": "instant",
    "expressDeliveryFee": 3,
    "displayName": "Free Fire",
    "image": "https://cdn.reloadly.com/giftcards/c722d3a0-3e51-421e-a30a-51680a40e6ae.jpg",
    "provider": "pgecom",
    "isStandardDelivery": false,
    "id": "d46a3b7b-e0d1-4c26-a472-f7d7b48ab8d2",
    "feePercentage": 3,
    "fixedFee": 0,
    "isUrgentDelivery": false,
    "instantDeliveryFee": 3,
    "standardDeliveryFee": 3,
    "isPriceFixed": true,
    "isRegularDelivery": false,
    "createdAt": "2024-05-09T01:28:33.130Z",
    "isExpressDelivery": false,
    "regularDeliveryFee": 3,
    "isInstantDelivery": true,
    "providerId": "14873",
    "platform": "pgrewards",
    "updatedAt": "2024-06-06T23:20:20.799Z",
    "urgentDeliveryFee": 3,
    "minimum": 1,
    "isActivated": true,
    "type": "freefire"
}

PreviousOrder a gift cardNextRates

Last updated 11 months ago

Was this helpful?

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