This guide covers every integration point with TenantCRM. See the full interactive guide for live examples.
https://crm.scriptimiz.com/api/v1Two methods: JWT Bearer (short-lived, 1hr) and API Keys (long-lived, scoped). Use JWT for user-facing flows and API Keys for server integrations.
// 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.