Account
Account Settings
Manage your profile, notifications, security settings, and team permissions.
Profile
Notifications
Security
Team
Settings Overview
Profile
Personal information and preferences
- Display name
- Email address
- Time zone
- Language
- Avatar
Billing
Payment methods and invoices
- Payment method
- Billing address
- Invoice history
- Tax ID
- Usage limits
API Keys
Manage API credentials
- Live keys
- Test keys
- Key rotation
- Permissions
- Expiration
Webhooks
Event delivery endpoints
- Endpoint URLs
- Event subscriptions
- Signing secrets
- Retry policy
Programmatic Configuration
Manage account settings via the API for automation and infrastructure-as-code.
# Update notification preferences
curl -X PATCH "https://api.justkalm.com/v1/account/notifications" \
-H "Authorization: Bearer YOUR_SECRET_KEY" \
-H "Content-Type: application/json" \
-d '{
"email": {
"api_alerts": true,
"billing_updates": true,
"weekly_digest": false
},
"slack": {
"webhook_url": "https://hooks.slack.com/...",
"channels": ["api_errors", "rate_limits"]
}
}'