GET
/api/public/v1/employee-onboardings/{employeeId}

Get an onboarding employee

Retrieve a single onboarding record for an employee.

Path Parameters

NameTypeRequiredDescription
employeeIdstring
Required
Employee ID.
GETExample request
curl
curl -X GET "https://www.pxb.app/api/public/v1/employee-onboardings/{employeeId}" \
  -H "X-Organization-Id: your_org_id" \
  -H "X-API-Key: your_api_key"
200Example response
json
{
  "message": "Employee retrieved successfully!",
  "content": {
    "employee": {
      "id": "emp_456",
      "onboardingStep": 2
    }
  }
}