Skip to main content
GET
/
v2
/
notifications
/
email-config
Get email notification config
curl --request GET \
  --url https://api.example.com/v2/notifications/email-config/ \
  --header 'Authorization: Bearer <token>'
{
  "config": {
    "accountId": "<string>",
    "createdAt": "<string>",
    "email": "<string>",
    "id": "<string>",
    "subscriptions": [
      "KYC",
      "WITHDRAW"
    ],
    "updatedAt": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Response

OK

config
object