Logoelepay
Codesetting

List all enabled EasyQR payment methods

EasyQR利用できる決済方法を取得します。

GET
/code-setting/payment-methods

Authorization

AuthorizationBearer <token>

API呼出すの認証は、秘密鍵を認証トークンとして扱い、Bearer 認証経由で行われます。 秘密鍵は、全ての API リクエスト操作が可能となる重要なキーなので、取扱いにご注意ください。

In: header

Response Body

application/json;charset=utf-8

curl -X GET "https://api.elepay.io/code-setting/payment-methods"
{
  "total": 0,
  "paymentMethods": [
    {
      "paymentMethod": "alipay",
      "resources": [
        "web"
      ],
      "brand": [
        "string"
      ],
      "ua": "string",
      "channelProperties": {
        "isSupportRefund": true,
        "isSupportPartialRefund": true,
        "isSupportMultipleRefund": true,
        "isSupportSource": true,
        "isSupportMultipleSource": true,
        "maxAmount": 0,
        "minAmount": 0,
        "resourceWebEnv": "all"
      },
      "customerProperties": {
        "isSupportCustomer": true,
        "isSupportMultipleSource": true
      }
    }
  ]
}