Account Settings
Manage your profile, security, and notification preferences from the Settings dashboard.
Profile
Update your account details:
- Full Name — Your display name across the dashboard
- Email Address — Used for login and account notifications
- Timezone — Controls timestamp display in logs and analytics
API Endpoint
PUT /v1/account/profile{
"name": "Jane Developer",
"email": "jane@example.com",
"timezone": "Africa/Nairobi"
}Supported Timezones
UTC, America/New_York, America/Los_Angeles, America/Chicago, Europe/London, Europe/Berlin, Europe/Paris, Asia/Tokyo, Asia/Shanghai, Asia/Dubai, Africa/Nairobi, Africa/Kigali, Africa/Lagos, Australia/Sydney, Pacific/Auckland
Password
Change your account password. You must provide your current password for verification.
API Endpoint
PUT /v1/account/password{
"current_password": "••••••••",
"password": "new_secure_password",
"password_confirmation": "new_secure_password"
}WARNING
After changing your password, all existing sessions remain active. If you suspect unauthorized access, revoke your API keys as well.
Notifications
Toggle notification preferences:
| Notification | Description | Default |
|---|---|---|
| Email Alerts | Important account events (quota reached, key revoked) | ✅ On |
| Usage Warnings | Alerts when approaching API quota limits | ✅ On |
| Weekly Digest | Weekly summary of your API usage | ❌ Off |
| Security Alerts | Suspicious activity on your account | ✅ On |
| Marketing Emails | Product updates and announcements | ❌ Off |
Danger Zone — Delete Account
Permanently delete your account and all associated data:
- Navigate to Settings → Danger Zone
- Click Delete my account
- Type
DELETEin the confirmation field - Click Delete Account
API Endpoint
DELETE /v1/account{
"confirmation": "DELETE"
}::: caution Account deletion is irreversible. All API keys, WhatsApp sessions, message history, email templates, and billing data will be permanently removed. :::