Quickstart Guide
Get started with SchoolManager in under 10 minutes by creating an account and setting up your first school.
Prerequisites
Before you begin, ensure you have a valid email address and internet connection. You will also need administrator access to create the initial school profile.
Creating Your SchoolManager Account
Follow these steps to set up your account and first school:
Sign up for an account
Visit the registration page at https://dashboard.example.com/register and enter your details. Confirm your email address to activate the account.
Create your school profile
After logging in, click Create New School. Provide the school name, address, and contact information. This sets up your central dashboard.
Add users and classes
Navigate to the Users section and invite teachers or staff by email. Then create classes under the Classes tab using the form below.
Configuring Your First Class
Use the following configuration example to add classes programmatically:
const response = await fetch('https://api.example.com/classes', {
method: 'POST',
headers: { 'Authorization': 'Bearer YOUR_API_KEY', 'Content-Type': 'application/json' },
body: JSON.stringify({ name: 'Grade 10 Math', capacity: 30 })
});
import requests
response = requests.post(
'https://api.example.com/classes',
headers={'Authorization': 'Bearer YOUR_API_KEY'},
json={'name': 'Grade 10 Math', 'capacity': 30}
)
curl -X POST https://api.example.com/classes \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"name": "Grade 10 Math", "capacity": 30}'
Navigating the Dashboard
Once setup is complete, explore the main sections:
- Overview: View attendance and performance metrics at a glance
- Users: Manage staff and student accounts
- Classes: Schedule and organize courses
Access all features through the responsive web interface at https://dashboard.example.com.
Download the SchoolManager mobile app for on-the-go management of classes and notifications.
Next Steps
Continue your setup with these resources:
Last updated today
Built with Documentation.AI