Skip to main content
GET
/
api
/
v1
/
groups
/
{group_id}
/
employees
/
{employee_id}
Get a single Employee within a Group
curl --request GET \
  --url https://fulfillment.noyo.com/api/v1/groups/{group_id}/employees/{employee_id} \
  --header 'Authorization: Bearer <token>'
{
  "created": 123,
  "employment": {
    "employment_dates": {
      "full_time_start": "2017-01-17",
      "hire_date": "2017-01-17",
      "rehire": "2018-02-01",
      "retirement": "2019-01-01",
      "terminated": "2018-01-01"
    },
    "employment_status": "full-time",
    "hours_worked": 40,
    "occupation": "Engineer",
    "salary": {
      "amount": 52000,
      "type": "salary",
      "unit": "annual"
    }
  },
  "group_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "modified": 123,
  "person": {
    "date_of_birth": "1977-06-03",
    "first_name": "Catherine",
    "home_address": {
      "city": "Bend",
      "state": "OR",
      "street_one": "339 Hickory Street",
      "zip_code": "97701",
      "county": "Deschutes",
      "street_two": "Apartment 5"
    },
    "last_name": "Briggs",
    "sex": "F",
    "contact": {
      "email_address": "[email protected]",
      "email_address_type": "home",
      "home_phone": "+15555551212",
      "preferred_language": "Engish",
      "preferred_method": "email",
      "speaks_english": true,
      "work_phone": "+15555551212"
    },
    "details": {
      "american_indian": {
        "state": "AL",
        "tribe": "Ojibwe"
      },
      "disability": {
        "communication": true,
        "disabled": true,
        "reason": "<string>"
      },
      "is_military": true,
      "is_student": true,
      "tobacco": {
        "duration": "5 years",
        "frequency": "Daily",
        "types": "cigarettes",
        "user": true
      }
    },
    "maiden_name": "<string>",
    "mailing_address": {
      "city": "Bend",
      "state": "OR",
      "street_one": "339 Hickory Street",
      "zip_code": "97701",
      "county": "Deschutes",
      "street_two": "Apartment 5"
    },
    "marital_status": "married",
    "middle_name": "S",
    "ssn": "123456789",
    "suffix": "<string>"
  },
  "version": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "classifications": {},
  "custom_individual_id": "<string>",
  "location_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

employee_id
string
required

The Noyo ID or Custom Individual ID of the employee you would like to view

Example:

"D123456789"

group_id
string<uuid>
required

The Noyo ID of the Group the employee belongs to.

Example:

"30b74a44-d5b1-4123-a7a4-6d3aec251ba4"

Response

200 - application/json

Successful Response - Returns a single Employee

created
integer
required

The date the record was originated

employment
object
required

Employment information for the employee

group_id
string<uuid>
required

Unique identifier of the group in Noyo

id
string<uuid>
required

Unique identifier of the employee in Noyo

modified
integer
required

The date the record was last updated

person
object
required

Personal information for the employee

version
string<uuid>
required

Version of the employee record

classifications
object

Fields that classify employees for group structure mapping

custom_individual_id
string

The custom identifier for this employee in your system

location_id
string<uuid>

Unique identifier of the employee group location in Noyo