List Users

list of users endpoint. To get all the users linked to a particular merchant account

GET https://vcard.fuspay.finance/api/v1/Merchant/ListUsers?merchant_id=

You can list uses that belong to a particular merchant.

Request Header

Name
Value
Description

Authorization

Bearer Token

Bearer token ${partner_secret_key}

x-partner-id

xxxxxx

Your partner ID eg. p602xxx

Query parameter

Key
Value
Description

merchant_id

xxxxxx

Your merchant ID e.g. 1265295243283

Response body

{
    "success": true,
    "message": "List of users",
    "data": [
        {
            "merchant_id": "1730000000000_intra_merchant_900000",
            "user_id": "66bded7c0aed07000000000",
            "full_name": "Zechariah Adebayo",
            "email": "[email protected]",
            "phone": "2349090594817",
            "date_created": "2001-01-21T16:34:26.000Z"
        }
    ]
}

Last updated