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. Deprecated
  3. Card

Card Schema

Property
Type
Description

fullName

string

Recipient that needs to be on the card

amount

number

Available mount to spend with the card

firstName

string

First name of the card holder

lastName

string

last name of the card holder

email

string

Email of the card recipient

billingAddress

object

Recipient address on the card. The country is required inside the billingAddress

isPhysical

boolean

If set to true, then card shipped to the provided address - only shipping for physical USA

person

string

prepaid|user - user is a registered user on the platform, and prepaid is just temporary prepaid card with a limited amount and limited feature

cardHolderType

string

business or individual. This defaults to individual if no values pass

bulk

string

In case we want to receive the card in bulk. This defaults to individual

The billing address object reference above

Property
Type
Description

line1

string

recipient street address

city

string

recipient city

country

string

recipient country

state

string

recipient state

postal_code

string

recipient postal code

PreviousCardNextRetrieve a single card

Last updated 2 years ago

Was this helpful?

🧑‍đŸ’ģ
â„šī¸