developer

How to Integrate Your App with TenantCRM API

4 JUN 2026 · 12 MIN READ · 0 VIEWS

This guide covers every integration point with TenantCRM. See the full interactive guide for live examples.

Base URL

https://crm.scriptimiz.com/api/v1

Authentication

Two methods: JWT Bearer (short-lived, 1hr) and API Keys (long-lived, scoped). Use JWT for user-facing flows and API Keys for server integrations.

Quick Start

// Get a token const res = await fetch('BASE_URL/auth/token', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ email: 'you@co.com', password: 'pass' }) }); const { token } = await res.json();

Read the full guide for customer CRUD, feedback, follow-ups, forgot password, and signup flows.