Getting Started with Termatica
Quick start guide to use the system
🚀 Getting Started with Termatica
This guide will help you take your first steps with Termatica in less than 10 minutes.
Step 1: Create Your Account
1. Visit https://termatica.com.br/signup/ 2. Fill in your information 3. Confirm your email 4. Choose a plan
Step 2: Create Your First Document
Via Web Interface
1. Log in to the system 2. Go to Documents in the menu 3. Click New Document 4. Fill in: - Name: Ex: "Terms of Use" - Type: Select the appropriate type - Content: Paste or write your document 5. Click Save
Via API (optional)
`python
import requests
response = requests.post( 'https://termatica.com.br/api/v1/documents/', headers={'Authorization': 'Bearer YOUR_TOKEN'}, json={ 'name': 'Terms of Use', 'content': '<h1>Terms of Use</h1><p>...</p>', 'version': '1.0' } )
document = response.json()
print(f"Document created: {document['id']}")
`
Step 3: Publish a Version
After creating the document, you need to publish a version:
1. Open the document 2. Click Create New Version 3. Make necessary changes 4. Click Publish
Done! Now your document is active and can be used.
Step 4: Configure Public Acceptance (Optional)
To allow people to accept your document:
Configuration
1. Open the document 2. Go to Settings 3. Enable Public Acceptance 4. Set a Slug (ex: "terms-of-use") 5. Configure verification method: - Magic Link (email) - OTP (code) - Both
Share Link
After configuration, you'll have access to:
`
https://your-platform.com/acceptance/terms-of-use/
`
Share this link with your users!
Step 5: Embed on Another Site (Optional)
For Reading (no acceptance)
`html
<iframe
src="https://your-platform.com/documents/read/embedded/UUID/"
width="100%"
height="600"
frameborder="0"
></iframe>
`
For Acceptance (with form)
`html
<iframe
src="https://your-platform.com/embedded/UUID/"
width="100%"
height="800"
frameborder="0"
></iframe>
`
Next Steps
Now that you know the basics, explore:
- Public Reading - How to display documents on other sites - Signature Workflows - Configure electronic signatures - REST API - Integrate with your systems - Audit - Track acceptances and signatures
Need Help?
- 📧 Email: support@termatica.com.br - 📚 Documentation: /docs/ - 🎥 Video tutorial: YouTube
---
Congratulations! 🎉 You're now ready to use Termatica. Explore other sections of the documentation to learn more.