HRMS Backend API Console

Browse your backend endpoints, see what they expect, and fire real requests using your JWT – all from inside the app. Supports both JSON and file uploads.

No token stored
POST/api/auth/registerGroup: Auth

Register new user (admin-provisioned)

Description

SUPER_ADMIN (or authorized HR) can create a new login/staff account for a company. Multi-company aware: companyId is taken from the JWT token.

Auth

Authorization: Bearer <SUPER_ADMIN token>

Expected Input

JSON body: { email, firstName, lastName, role ("HR" | "STAFF" | "SUPER_ADMIN"), department?, position? }

Output Shape

JSON: { success, message, data: { user: { id, email, firstName, lastName, role, department, position, companyId } } }

Try this endpoint

// Response will appear here