Get up and running with CognexiaAI ERP in under 30 minutes
In this tutorial, you'll create your first CRM workflow, add users, configure permissions, and make your first API call. By the end, you'll have a working CognexiaAI ERP instance ready for development.
Sign up for a free trial account to get started:
# Navigate to registration https://app.cognexiaai.com/register # Or use CLI cognexia-cli signup --email your@email.com
Free Trial: Includes 14 days access to all features, 50 users, and unlimited API calls.
Complete the onboarding wizard to configure your organization:
Name, industry, size, location
Choose CRM, HR, Finance, etc.
Define admin, manager, staff roles
Connect email, calendar, storage
Let's add a customer contact using the web interface:
Or use the API:
curl -X POST https://api.cognexiaai.com/v1/crm/contacts \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"firstName": "John",
"lastName": "Doe",
"email": "john@example.com",
"company": "Acme Corp",
"tags": ["lead", "enterprise"]
}'Set up role-based access control (RBAC):
# Navigate to Settings > User Management > Roles # Create roles: Admin, Manager, Sales, Support # Or via CLI cognexia-cli roles create \ --name "Sales Manager" \ --permissions "crm:read,crm:write,reports:read"
cognexia-cli users invite \ --email teammate@company.com \ --role "Sales Manager" \ --send-email
Generate an API key and test the connection:
Go to Settings → API Keys → Generate New Key
Security: Save your API key securely. It won't be shown again.
# Test API connection
curl https://api.cognexiaai.com/v1/auth/verify \
-H "Authorization: Bearer YOUR_API_KEY"
# Expected response:
{
"status": "success",
"user": {
"id": "usr_123",
"email": "you@company.com",
"role": "admin"
}
}# List all contacts
curl https://api.cognexiaai.com/v1/crm/contacts \
-H "Authorization: Bearer YOUR_API_KEY"
# Response includes pagination
{
"data": [...],
"pagination": {
"page": 1,
"per_page": 50,
"total": 1
}
}Build your first analytics dashboard:
You've successfully set up CognexiaAI ERP, created your first contact, configured permissions, made API calls, and built a dashboard. You're ready to start building!