Getting StartedQuickstart

Quickstart

Get up and running with Protuno quickly by creating an account, setting up your store, and processing your first transaction.

curl -X POST https://api.example.com/v1/transactions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "amount": 12.99,
    "currency": "USD",
    "items": [{"sku": "CM-001", "quantity": 1}]
  }'
{
  "id": "txn_abc123",
  "status": "success",
  "amount": 12.99
}

Prerequisites

Before starting, ensure you have:

  • A valid email address for account registration
  • Business details ready (store name, address, tax info)
  • Test payment method (use sandbox mode)

Protuno offers a free trial with full access to core features. No credit card required to begin.

Step 1: Create Your Account

Sign up at https://app.protuno.com/register to get started.

Visit Registration Page

Navigate to the Protuno dashboard signup page.

Enter Details

Provide your email, password, and business name. Verify your email via the confirmation link.

Complete Onboarding

Answer basic questions about your store type (retail, restaurant, etc.) to customize your dashboard.

Step 2: Configure Your Store

Set up your store settings for seamless operations.

Access Settings

From the dashboard, go to Stores > New Store.

Enter Store Info

Add store name, address, currency (e.g., USD), and tax rates.

Connect Hardware

Pair POS terminals, receipt printers, or barcode scanners via Bluetooth or USB.

Step 3: Add Initial Products

Populate your inventory quickly.

Use the dashboard:

// Example product data structure
{
  "name": "Coffee Mug",
  "sku": "CM-001",
  "price": 12.99,
  "inventory": 100,
  "category": "Mugs"
}

Step 4: Process Your First Test Transaction

Test payments in sandbox mode using the API.

Replace YOUR_API_KEY with your actual key from Settings > API Keys. Always test in sandbox first.

Dashboard Overview and Next Steps

Explore key sections post-setup.