Skip to main content
PUT
/
v2
/
notifications
/
email-config
Update email notification config
curl --request PUT \
  --url https://api.example.com/v2/notifications/email-config/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "subscriptions": []
}
'
{
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
email
string<email>
subscriptions
enum<string>[]
Available options:
KYC,
WITHDRAW,
DEPOSIT

Response

OK