Add Whitelisted Address

POST https://api.sfox.com/v1/whitelisted-addresses

Add a new crypto address to your account's whitelisted withdrawal addresses.

Body Parameters

Parameter
Type
Description

currency_symbol required

string

Currency that can be withdrawn to this address

address required

string

Crypto address to add to whitelist

alias

string

Custom alias to help identify your whitelisted withdrawal address

Responses

200
{
   "id":"4d90ee41-3b36-11ec-bdb0-0ab29ff926a1",
   "alias":"Satoshis Fund",
   "address":"1NLqQmwkGxxQmzS9uwtCGXxbxrcNW4FpYp",
   "currency_symbol":"btc",
   "date_created":"2021-11-01T17:08:15.000Z",
   "date_updated":"2021-11-01T17:08:15.000Z",
   "status":"Pending",
   "tag":null
}

Example Requests

curl -X POST \
  -H 'Content-type: application/json' \
  -H 'Authorization: Bearer < API_TOKEN >' \
  --data '{ "alias": "Satoshis Fund",
            "currency_symbol": "btc",
            "address": "1NLqQmwkGxxQmzS9uwtCGXxbxrcNW4FpYp" }' \
  'https://api.sfox.com/v1/whitelisted-addresses'

Last updated