GET
/
merchant
/
member
/
list
curl --request GET \
  --url https://api.unibee.top/merchant/member/list \
  --header 'Authorization: Bearer <token>'
{
  "code": 123,
  "data": {
    "merchantMembers": [
      {
        "MemberGroupPermission": {},
        "MemberRoles": [
          {
            "createTime": 123,
            "id": 123,
            "merchantId": 123,
            "permissions": [
              {
                "group": "<string>",
                "permissions": [
                  "<string>"
                ]
              }
            ],
            "role": "<string>"
          }
        ],
        "createTime": 123,
        "email": "<string>",
        "firstName": "<string>",
        "id": 123,
        "isBlankPasswd": true,
        "isOwner": true,
        "lastName": "<string>",
        "merchantId": 123,
        "mobile": "<string>",
        "status": 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

roleIds
integer[]

The member roleId if specified'

page
integer

Page, Start With 0

count
integer

Count Of Page

Response

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