Paidy · Example Payload

Payment Response

Monthly subscription payment

Buy Now Pay LaterBNPLPaymentsJapanCheckoutDeferred PaymentsRecurring PaymentsTokens

Payment Response is an example object payload from Paidy, with 16 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

idstatuscreated_atexpires_atamountcurrencydescriptionstore_nametesttierbuyerordershipping_addresscapturesrefundsmetadata

Example Payload

Raw ↑
{
  "id": "pay_example123456",
  "status": "authorized",
  "created_at": "2026-06-13T00:00:00Z",
  "expires_at": "2026-07-13T00:00:00Z",
  "amount": 5000,
  "currency": "JPY",
  "description": "Monthly subscription payment",
  "store_name": "My Store",
  "test": false,
  "tier": "classic",
  "buyer": {
    "name1": "山田 太郎",
    "name2": "Taro Yamada",
    "email": "taro@example.com",
    "phone": "090-1234-5678"
  },
  "order": {
    "items": [
      {
        "quantity": 1,
        "id": "prod_001",
        "title": "Subscription Plan A",
        "description": "Monthly subscription",
        "unit_price": 5000
      }
    ],
    "tax": 500,
    "shipping": 0,
    "order_ref": "order_20260613_001"
  },
  "shipping_address": {
    "line1": "Shibuya 1-1",
    "city": "Tokyo",
    "state": "Tokyo",
    "zip": "150-0001"
  },
  "captures": [],
  "refunds": [],
  "metadata": {}
}