Retrieves the employee information on a specific employee.

Response Definitions

Response ItemDescription                                         Data type
idThe ID associated with the employee. Each job ID is assigned by NewCraft.String
{attributes}/first_nameThe first name of the employee.String
{attributes}/last_nameThe last name of the employee.String
{attributes}/ssnThe social security number of the employee.String
{attributes}/title}The full job title of the employee. If the person in question is no longer an active employee, this will state their last job title.String
{attributes}/team_id}The ID of the team that the employee is a part of.String
{attributes}/date_of_birthThe employee's birthday, formatted as yyyy-MM-dd.String
{attributes}/start_date}The date that the employee began this position, formatted as yyyy-MM-dd.String
{attributes}/end_dateThe date that the employee left this position, if applicable, formatted as yyyy-MM-dd. If the employee is still in this position, end_date will be NULL.String
{attributes}/managerWhether or not the employee is a manager. "true" means they are, "false" means they aren't.Boolean
{attributes}/phoneThe phone number of the employee.String
{attributes}/personal_emailThe personal email address of the employee.String
{attributes}/work_emailThe work email address of the employee.String
{attributes}/salaryThe amount of money the employee makes in a year, before any taxes or deductions. This includes, in the standard format, information on the type of currency that the employee is being paid in. For instance, if an employee makes a hundred thousand dollars a year, their salary will be given as "$100,000," and the presence of the dollar sign is why the same information cannot simply be stored as an integer.String
{attributes}/genderThe gender of the employee.String
{attributes}/locationThe general location where the employee lives. This includes the city, state, and country of residence, in that order and separated by commas. This does not include the exact address of the employee.String
{attributes}/addressThe exact address of the employee, including street and number.String
{attributes}/manager_idThe employee ID of this employee's manager.String

Sample Response

{
  "data": [
    {
      "id": "2d472b59-c545-4580-992c-bdfa200fa5aa",
      "type": "Employee",
      "attributes": {
        "first_name": "Joseph",
        "last_name": "Wallace",
        "ssn": "555-55-5555",
        "title": "Senior Software Engineer",
        "team_id": "949c4a5a-1b81-44f5-9027-276095ee5d97",
        "date_of_birth": "1992-03-28",
        "start_date": "2015-10-12",
        "end_date": "2019-01-05",
        "manager": false,
        "phone": "(555) 555-5555",
        "personal_email": "[email protected]",
        "work_email": "[email protected]",
        "salary": "$125,000",
        "gender": "male",
        "location": "Los Angeles, CA, USA",
        "address": "2674 Sixth Street, Unit 381",
        "manager_id": "739b4a5a-1b81-18f5-1743-276095ee1d90"
      }
    }
  ]
}
Language
Authorization
OAuth2
URL
Click Try It! to start a request and see the response here!