Quickstart Guide
Get up and running with Gravitre in under 5 minutes. This guide walks you through creating your first workflow and connecting your data.
1. Create your account
Sign up for a Gravitre account at app.gravitre.com. You'll receive a confirmation email to verify your account. Once verified, you can access your dashboard.
2. Create your first workspace
Workspaces help you organize your workflows and team members. Navigate to Settings > Workspaces and click 'Create Workspace'. Give it a name and invite your team members.
3. Connect your first data source
Gravitre supports 50+ integrations including Salesforce, HubSpot, Slack, and more. Go to Connectors > Add Connector and select your preferred integration. Follow the OAuth flow to authorize access.
4. Create your first workflow
Navigate to Workflows > Create Workflow. Use the visual builder to drag and drop nodes, or describe what you want in natural language using the AI Operator.
// Or use the API to create workflows programmatically
const workflow = await gravitre.workflows.create({
name: "Lead Sync Workflow",
trigger: {
type: "schedule",
cron: "0 9 * * *" // Daily at 9 AM
},
steps: [
{
type: "connector",
connector: "salesforce",
action: "query",
config: {
query: "SELECT Id, Name, Email FROM Lead WHERE CreatedDate = TODAY"
}
}
]
});5. Run and monitor
Click 'Run Now' to execute your workflow immediately, or wait for the scheduled trigger. Monitor execution in real-time from the Runs dashboard.