Add External Address

This endpoint adds an external address for a user's crypto wallet.

POST / auth/add-external-address

The request should include crypto address, address name, network and currency in the raw request body.

Headers

Name
Value

Content-Type

application/json

Token

<token>

Body

Name
Type
Description

crypto_address

string

The address of the crypto wallet.

address_name

string

Address name unique to the specific wallet

network

string

ETH / TRX

currency

string

Crypto Currency, i.e USDT / USDT

Response

curl --location 'http://sandbox.yogupay.com/auth/add-external-address' \
--header 'token: [Generated after login]' \
--data '{
    "status": 1,
    "success": true,
    "message": "External Address added successfully",
    "id": 123,
    "address": "f497020c417fcb",
    "aml_meta": {
        "result": true,
        "balance": 14864,
        "amlFlow": "fast",
        "termsConfirmRequired": false,
        "proMode": "0",
        "discount": 0,
        "discountDueTime": 0,
        "promoFlow": false,
        "data": {
            "signals": {
                "exchange": 0,
                "risky_exchange": 0,
                "p2p_exchange": 0,
                "enforcement_action": 0,
                "atm": 0,
                "child_exploitation": 0,
                "dark_market": 0,
                "dark_service": 0,
                "exchange_fraudulent": 0,
                "gambling": 0,
                "illegal_service": 0,
                "liquidity_pools": 0,
                "marketplace": 0,
                "miner": 0,
                "mixer": 0,
                "other": 0,
                "p2p_exchange_mlrisk_high": 0,
                "payment": 0,
                "ransom": 0,
                "sanctions": 0,
                "scam": 0,
                "seized_assets": 0,
                "stolen_coins": 0,
                "terrorism_financing": 0,
                "wallet": 0,
                "infrastructure_as_a_service": 0,
                "decentralized_exchange_contract": 0,
                "merchant_services": 0,
                "unnamed_service": 0,
                "malware": 0
            },
            "updated_at": 1771918265,
            "address": "0x5ac16603517a71b40dca43eb3af497020c417fcb",
            "fiat_code_effective": "usd",
            "counterparty": null,
            "reportedAddressBalance": null,
            "addressDetailsData": null,
            "blackListsConnections": false,
            "hasBlackListFlag": false,
            "pdfReport": "http://localhost:8082/reports/report-1771918346489-85ee3a173f6c.pdf",
            "memo": "",
            "customerIsB2B": true,
            "uid": "699d53b9a56ac575769204",
            "asset": "ETH",
            "network": "ETH",
            "status": "success",
            "timestamp": "2026-02-24 07:31:05",
            "flow": "fast",
            "_type": 9,
            "cost": 0
        },
        "pdfReport": "http://localhost:8082/reports/report-1771918346489-85ee3a173f6c.pdf"
}
}'

Last updated