Documentation
Guides

Quick Start Guide

Get up and running with Umbra ERP in just a few minutes

7 min read

Prerequisites

Before you begin, make sure you have an active Umbra ERP account and have completed the basic Account Setup. You will need admin or manager permissions to complete these steps.

Step-by-Step Walkthrough

Set Up Your Company

Start by completing your company profile in Settings. Add your business name, logo, address, and tax information. This data will appear on all invoices and quotes you generate.

Choose your default currency, date format, and fiscal year start month to match your business requirements.

1 of 4

API Quick Start

For developers, the Umbra ERP API lets you integrate your business workflows programmatically. Here is a quick example:

Create an Invoice via API
Bash
curl -X POST https://api.umbraerp.com/v1/invoices \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"customer_id": "cust_abc123",
"items": [
{
"description": "Consulting Services",
"quantity": 10,
"unit_price": 150.00
}
],
"due_date": "2026-04-15",
"currency": "USD"
}'

See the full API Documentation for all available endpoints.

You're All Set

Congratulations! You have set up your company, invited your team, and created your first invoice. Continue to the Core Features guide to learn about the full capabilities of Umbra ERP.