GET /hr_api/v1/employees/:uuid

Return details of an existing Employee

Params

Property Required Details Location

uuid

Must be a String

URL

Examples

GET /hr_api/v1/employees/:uuid
200
{
  "employee": {
    "employee_id_string": "123456",
    "former_employee_id_string": null,
    "uuid": "737c1dd0-4134-4743-849d-8e38d0e11644",
    "is_employed": null,
    "start_date": null,
    "end_date": null,
    "employments": [
      {
        "uuid": "d724cd8d-afb2-403f-bea4-cccab7207f5f",
        "hire_date": "2016-01-01T00:00:00.000+00:00",
        "original_hire_date": "2016-01-01T00:00:00.000+00:00",
        "adjusted_hire_date": "2016-01-01T00:00:00.000+00:00",
        "is_on_leave": false,
        "is_terminated": true,
        "termination_is_voluntary": true,
        "termination_reason_comments": "TEST",
        "termination_date": "2016-02-02T00:00:00.000+00:00",
        "last_date_worked": "2016-02-02T00:00:00.000+00:00",
        "last_date_paid": null,
        "employee": {
          "employee_id_string": "123456",
          "former_employee_id_string": null,
          "uuid": "737c1dd0-4134-4743-849d-8e38d0e11644",
          "is_employed": null,
          "start_date": null,
          "end_date": null
        },
        "termination_reason": {
          "keyword_type": "ReasonForLeaving",
          "keyword_id": null,
          "uuid": "5e4405f6-532c-46be-a72a-8b372803525b",
          "category_code": "reaon_for_leaving",
          "comments": "<p>comment for test reason for leaving</p>",
          "sort": 100,
          "category_status": "active",
          "category_description": "test reason for leaving keyword"
        }
      }
    ],
    "person_info": {
      "date_of_birth": "1976-01-05T00:00:00.000+00:00",
      "date_of_death": null,
      "gender_code": 1,
      "is_veteran": null,
      "is_disabled": null,
      "is_tobacco_user": null,
      "race": null,
      "ethnicity": null,
      "primary_language": null,
      "religion": null,
      "marital_status": null,
      "mobility_keyword_id": null,
      "mobility_comments": null,
      "employee": {
        "employee_id_string": "123456",
        "former_employee_id_string": null,
        "uuid": "737c1dd0-4134-4743-849d-8e38d0e11644",
        "is_employed": null,
        "start_date": null,
        "end_date": null
      },
      "person": {
        "uuid": "20317796-8abd-4f89-97bb-2b378e7c4ec4",
        "status": "active",
        "formatted_name": "Michael Hefferan",
        "given_name": "Michael",
        "family_name": "Hefferan",
        "form_of_address": "Mr",
        "middle_name": null,
        "preferred_name": null,
        "person_info": {
          "date_of_birth": "1976-01-05T00:00:00.000+00:00",
          "date_of_death": null,
          "gender_code": 1,
          "is_veteran": null,
          "is_disabled": null,
          "is_tobacco_user": null,
          "race": null,
          "ethnicity": null,
          "primary_language": null,
          "religion": null,
          "marital_status": null,
          "mobility_keyword_id": null,
          "mobility_comments": null,
          "employee": {
            "employee_id_string": "123456",
            "former_employee_id_string": null,
            "uuid": "737c1dd0-4134-4743-849d-8e38d0e11644",
            "is_employed": null,
            "start_date": null,
            "end_date": null
          }
        }
      }
    }
  }
}