Getting Started

Quick Start

First API calls with Postman.

1 min read v1 API
  1. Visit /postman and download collection + environment
  2. Import both into Postman
  3. POST /api/v1/auth/login with a seeded user
  4. Copy token to {{company_token}} or {{customer_token}}
  5. Call GET /api/v1/auth/me to verify JWT
  6. Explore company routes: GET /api/v1/company/dashboard/
http
POST /api/v1/auth/login
Content-Type: application/json

{
  "email": "company@example.com",
  "password": "password"
}

Use Authorization: Bearer {token} on all jwt.verify routes.