GET
/
merchant
/
payment
/
method_list
curl --request GET \
  --url https://api.unibee.top/merchant/payment/method_list \
  --header 'Authorization: Bearer <token>'
{
  "code": 123,
  "data": {
    "methodList": [
      {
        "data": {},
        "id": "<string>",
        "isDefault": true,
        "type": "<string>"
      }
    ]
  },
  "message": "<string>",
  "redirect": "<string>",
  "requestId": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

gatewayId
integer
required

The unique id of gateway

userId
integer

The id of user

paymentId
string

The unique id of payment

Response

200 - application/json
code
integer
data
object
message
string
redirect
string
requestId
string