Answers for "stripe payment method"

1

stripe payment method

{
  "id": "pm_1J2RZI2eZvKYlo2CaP803dMY",
  "object": "payment_method",
  "billing_details": {
    "address": {
      "city": "Kuala Lumpur",
      "country": null,
      "line1": "Level 10, 1 Sentral, Jalan Rakyat, Kuala Lumpur Sentral",
      "line2": null,
      "postal_code": "50706",
      "state": null
    },
    "email": "[email protected]",
    "name": null,
    "phone": "+15555555555"
  },
  "card": {
    "brand": "visa",
    "checks": {
      "address_line1_check": null,
      "address_postal_code_check": null,
      "cvc_check": "pass"
    },
    "country": "US",
    "exp_month": 8,
    "exp_year": 2022,
    "fingerprint": "Xt5EWLLDS7FJjR1c",
    "funding": "credit",
    "generated_from": null,
    "last4": "4242",
    "networks": {
      "available": [
        "visa"
      ],
      "preferred": null
    },
    "three_d_secure_usage": {
      "supported": true
    },
    "wallet": null
  },
  "created": 123456789,
  "customer": null,
  "livemode": false,
  "metadata": {
    "order_id": "123456789"
  },
  "type": "card"
}
Posted by: Guest on June-15-2021
-1

stripe payment refund

{
  "id": "re_1I65p52eZvKYlo2CrOr8b3iF",
  "object": "refund",
  "amount": 100,
  "balance_transaction": null,
  "charge": "ch_1I65p42eZvKYlo2Ch6Z0IPRW",
  "created": 1609815783,
  "currency": "usd",
  "metadata": {},
  "payment_intent": null,
  "reason": null,
  "receipt_number": null,
  "source_transfer_reversal": null,
  "status": "succeeded",
  "transfer_reversal": null
}
Posted by: Guest on January-05-2021

Browse Popular Code Answers by Language