Get Wallets

This endpoint shows all the available wallets

Must be authorized to call this API

Get users wallet

GET https://example.com/wp-json/rimplenet/v1/wallets

{
    "status_code": 200,
    "status": true,
    "message": "Wallet Retrieved",
    "data": [
        {
            "post_id": 443,
            "wallet_id": "gbp",
            "wallet_name": "pounds",
            "wallet_symbol": "£",
            "wallet_max_wdr_amount": "999999999",
            "wallet_min_wdr_amount": "0",
            "wallet_symbol_position": "left",
            "wallet_decimal": "2",
            "wallet_note": "",
            "wallet_type": "fiat"
        },        
        {
            "post_id": 87,
            "wallet_id": "cad",
            "wallet_name": "Canadian Dollars",
            "wallet_symbol": "$",
            "wallet_max_wdr_amount": "999999999",
            "wallet_min_wdr_amount": "0",
            "wallet_symbol_position": "left",
            "wallet_decimal": "2",
            "wallet_note": "Canadian Dollar wallet",
            "wallet_type": "fiat"
        },
        {
            "post_id": 70,
            "wallet_id": "khs",
            "wallet_name": "Shellings",
            "wallet_symbol": "**",
            "wallet_max_wdr_amount": "999999999",
            "wallet_min_wdr_amount": "0",
            "wallet_symbol_position": "left",
            "wallet_decimal": "2",
            "wallet_note": "",
            "wallet_type": "fiat"
        }
    ]
}

To view request params, click on the arrow (>) at the right hand side of the endpoint url to expand or collapse

Sample response

{
    "status_code": 200,
    "status": true,
    "message": "Wallet Retrieved",
    "data": [
        {
            "post_id": 443,
            "wallet_id": "gbp",
            "wallet_name": "pounds",
            "wallet_symbol": "£",
            "wallet_max_wdr_amount": "999999999",
            "wallet_min_wdr_amount": "0",
            "wallet_symbol_position": "left",
            "wallet_decimal": "2",
            "wallet_note": "",
            "wallet_type": "fiat"
        },        
        {
            "post_id": 87,
            "wallet_id": "cad",
            "wallet_name": "Canadian Dollars",
            "wallet_symbol": "$",
            "wallet_max_wdr_amount": "999999999",
            "wallet_min_wdr_amount": "0",
            "wallet_symbol_position": "left",
            "wallet_decimal": "2",
            "wallet_note": "Canadian Dollar wallet",
            "wallet_type": "fiat"
        },
        {
            "post_id": 70,
            "wallet_id": "khs",
            "wallet_name": "Shellings",
            "wallet_symbol": "**",
            "wallet_max_wdr_amount": "999999999",
            "wallet_min_wdr_amount": "0",
            "wallet_symbol_position": "left",
            "wallet_decimal": "2",
            "wallet_note": "",
            "wallet_type": "fiat"
        }
    ]
}

Last updated