Dev Support
[DEV ONLY] Activate a test employee's employment
For dev testing purposes only. Not intended for production use.
Activates a test employee's employment by transitioning it from ONBOARDING to ACTIVE status. This endpoint only works for test employments (isTest = true). Attempting to activate a non-test employment will return a 400 Bad Request.
The employee must have completed all onboarding steps before this call succeeds. This operation is idempotent with respect to side-effects and status — calling it on an already-ACTIVE employment is a no-op.
post/v1/employees/{employeeId}/dev-activate
Path parameters
employeeIdstring uuid required
Unique identifier for the employee
Response
Employment successfully activated
Example response
{
"employeeId": "123e4567-e89b-12d3-a456-426614174000",
"status": "ACTIVE",
"activatedOn": "2026-03-23T10:00:00Z"
}