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 Holder

Update

Update Card Holder Information

PUT https://sandbox.pgecom.com/api/partner/cardholder

Request Body

Name
Type
Description

cardHolderId*

String

Card holder id

line1*

String

Card holder line1

city*

String

Card holder city

state*

String

Card holder state

country*

String

Card holder country

postal_code*

String

Card holder postal code

first_name*

String

Card holder first name

last_name*

String

Card holder last name

line2

String

Card holder line2

{
    "id": "ich_1LWcstEDjZxHmxzHKG1lH9r1",
    "object": "issuing.cardholder",
    "billing": {
        "address": {
            "city": "Johns Creek",
            "country": "US",
            "line1": "9700 Medlock Bridge Road",
            "line2": null,
            "postal_code": "97000",
            "state": "GA"
        }
    },
    "company": null,
    "created": 1660468407,
    "email": "omh61313@cdfaq.com",
    "individual": {
        "dob": null,
        "first_name": "Esterling",
        "last_name": "Accime",
        "verification": {
            "document": {
                "back": null,
                "front": null
            }
        }
    },
    "livemode": false,
    "metadata": {
        "balance": "7500.249",
        "email": "omh61313@cdfaq.com",
        "isPrepaid": "true",
        "userID": "bbdf8b70-394a-4dcc-bf0c-c556f1a61109"
    },
    "name": "Esterling Accime",
    "phone_number": null,
    "requirements": {
        "disabled_reason": null,
        "past_due": []
    },
    "spending_controls": {
        "allowed_categories": [],
        "blocked_categories": [],
        "spending_limits": [],
        "spending_limits_currency": null
    },
    "status": "active",
    "type": "individual"
}

PreviousCard Holder SchemaNextCard

Last updated 1 year ago

Was this helpful?

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