Getting Started with Aesthetic Coaching
Set up your account quickly and begin organizing your first project documentation in minutes.
Prerequisites
Before you begin, ensure you have the following:
- A valid email address for account registration
- Modern web browser (Chrome, Firefox, Safari, or Edge)
- Stable internet connection for uploads
Create Your Account and Log In
Follow these steps to set up your Aesthetic Coaching documentation account.
Sign Up
Visit https://docs.aestheticcoaching.de/signup and enter your email, create a password, and accept the terms.
// Example registration payload (for API users)
{
email: "your-email@example.com",
password: "your-secure-password"
}
Verify Email
Check your inbox for the verification link from Aesthetic Coaching and click to activate your account.
Log In
Return to https://docs.aestheticcoaching.de/login, enter your credentials, and access the dashboard.
Create Your First Documentation Space
Organize your fitness coaching resources like Personal Training guides and Ernährungscoaching plans in dedicated spaces.
- Click New Space on the dashboard.
- Enter name:
Fitness Coaching Projects. - Select template:
Documentation Starter. - Click Create.
Use the API to create spaces programmatically.
const response = await fetch('https://api.aestheticcoaching.de/v1/spaces', {
method: 'POST',
headers: { 'Authorization': `Bearer ${YOUR_API_KEY}` },
body: JSON.stringify({
name: 'Fitness Coaching Projects',
template: 'documentation-starter'
})
});
import requests
response = requests.post(
'https://api.aestheticcoaching.de/v1/spaces',
headers={'Authorization': f'Bearer {YOUR_API_KEY}'},
json={'name': 'Fitness Coaching Projects', 'template': 'documentation-starter'}
)
Name your space descriptively, such as Personal Training Docs or Ernährungscoaching Guides, to match your offerings.
Upload and Organize Initial Documents
Add your first files and structure them efficiently.
Upload Files
In your space, click Upload and select documents like training plans or nutrition PDFs.
Create Folders
Organize by service: create folders for Personal Training, Ernährungscoaching, and Betriebliches Gesundheitsmanagement.
Add Metadata
Edit files to add tags like fitness, nutrition, or corporate-wellness for easy search.
Basic Interface Tour
Familiarize yourself with key areas of the dashboard.
Dashboard
Overview of all spaces and recent activity.
Spaces
Manage documentation collections.
Search
Full-text search across all documents.
Next Steps
Last updated 2 days ago
Built with Documentation.AI