latestOpenAPI 3.0.1Proprietary2026-08-1844131294.9 KB

59cd6443fdbf

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

employeeIdstring uuid required

Unique identifier for the employee (employment publicId)

status'ACTIVE' required

The resulting employment status after activation

activatedOnstring date-time required

ISO 8601 timestamp of when the employment was activated

Example response

{
  "employeeId": "123e4567-e89b-12d3-a456-426614174000",
  "status": "ACTIVE",
  "activatedOn": "2026-03-23T10:00:00Z"
}