- Visit /postman and download collection + environment
- Import both into Postman
- POST /api/v1/auth/login with a seeded user
- Copy token to {{company_token}} or {{customer_token}}
- Call GET /api/v1/auth/me to verify JWT
- 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.