Skip to main content
POST
/
api
/
v4
/
sub-account
/
api-key
/
ip-address
/
delete
Delete Sub-Account API Key IP Address
curl --request POST \
  --url https://whitebit.com/api/v4/sub-account/api-key/ip-address/delete \
  --header 'Content-Type: application/json' \
  --header 'X-TXC-APIKEY: <api-key>' \
  --data '
{
  "apiKeyId": "<string>",
  "ip": "<string>"
}
'
{
  "data": [
    "<string>"
  ]
}

Authorizations

X-TXC-APIKEY
string
header
required

API key authentication using signed requests

Body

application/json
apiKeyId
string
required

ID of the API key to remove IP address from

ip
string
required

IP address to remove from allowed list

Response

IP address removed successfully

data
string[]