Create wallets

This endpoint allows you to create a wallet

Must be authorized to call these APIs

Create Wallet

POST https://example.com/wp-json/rimplenet/v1wallets

Request Body

Name
Type
Description

wallet_name*

String

Name of wallet

wallet_symbol*

String

For instance $, #

wallet_id*

String

For instance USD, NGN, BTC

wallet_type*

Wallets are either Crypto or fiat

wallet_decimal*

int

Enter the amount of decimals this wallet would take.

{
    "status_code": 200,
    "status": true,
    "message": "Wallet was successully created",
    "data": {
        "wallet_id": 443,
        "rimplenet_wallet_name": "pounds",
        "rimplenet_wallet_id": "gbp",
        "rimplenet_wallet_symbol": "£",
        "rimplenet_wallet_note": "",
        "rimplenet_wallet_type": "fiat",
        "rimplenet_wallet_decimal": 2,
        "rimplenet_max_withdrawal_amount": 999999999,
        "rimplenet_min_withdrawal_amount": 0,
        "rimplenet_wallet_symbol_position": "left"
    }
}

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

{
    "status_code": 200,
    "status": true,
    "message": "Wallet was successully created",
    "data": {
        "wallet_id": 443,
        "rimplenet_wallet_name": "pounds",
        "rimplenet_wallet_id": "gbp",
        "rimplenet_wallet_symbol": "£",
        "rimplenet_wallet_note": "",
        "rimplenet_wallet_type": "fiat",
        "rimplenet_wallet_decimal": 2,
        "rimplenet_max_withdrawal_amount": 999999999,
        "rimplenet_min_withdrawal_amount": 0,
        "rimplenet_wallet_symbol_position": "left"
    }
}

Last updated