GET
/
merchant
/
payment
/
item
/
list
curl --request GET \
  --url https://api.unibee.top/merchant/payment/item/list \
  --header 'Authorization: Bearer <token>'
{
  "code": 123,
  "data": {
    "paymentItems": [
      {
        "amount": 123,
        "bizType": 123,
        "createTime": 123,
        "currency": "<string>",
        "description": "<string>",
        "id": 123,
        "invoiceId": "<string>",
        "merchantId": 123,
        "name": "<string>",
        "paymentId": "<string>",
        "quantity": 123,
        "status": 123,
        "subscriptionId": "<string>",
        "uniqueId": "<string>",
        "unitAmount": 123,
        "userId": 123
      }
    ],
    "total": 123
  },
  "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

userId
integer

Filter UserId, Default All

sortField
string

Sort,invoice_id|gmt_create|gmt_modify|period_end|total_amount,Default gmt_modify

sortType
string

Sort Type,asc|desc,Default desc

page
integer

Page,Start 0

count
integer

Count Of Page

Response

200 - application/json

The response is of type object.