Get Employee Dimensions

post

/bi/v1/{orgIdentifier}/getEmployeeDimensions

Get the Employee Dimensions for a specified location.

Request

Path Parameters
Body ()
The request body defines the details of the API request.
Root Schema : locRequestPayload
Type: object
Request payload with location reference
Show Source
  • Title: Application Name
    Maximum Length: 128
    The name of the application which is accessing the API.

    First Available Version: 20.1.10

  • Title: Include
    List of objects to include in response
  • Title: Location Reference
    The location reference, this may be a store number or name depending on the organization
  • Title: Search Criteria
    Search criteria to filter results based on field value
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : employeeDimensions
Type: object
The response body contains employee information about a specified location.
Show Source
Nested Schema : employees
Type: array
An array of employees for a given location
Show Source
Nested Schema : employee
Type: object
The response body contains employee information about a specified location.
Show Source
  • Title: Employee Class Master Name
    Maximum Length: 99
    Default Employee Class Master Name. It does not change with other employee classes assigned to job codes for this employee.

    First Available Version: 20.1.12

  • Title: Employee Class Master Number
    Maximum Length: 16
    Default Employee Class Master Number. It does not change with other employee classes assigned to job codes for this employee.

    First Available Version: 20.1.12

  • Title: Employee Class Name
    Maximum Length: 99
    Default employee class name assigned to the employee. It does not change with other employee classes assigned to job codes for this employee.

    First Available Version: 20.1.12

  • Title: Employee Class Number
    Maximum Length: 16
    Default Employee Class Number. It does not change with other employee classes assigned to job codes for this employee.

    First Available Version: 20.1.12

  • Title: Employee ID
    Maximum Length: 16
    Unique identifier of the employee
  • Title: External Payroll ID
    Maximum Length: 16
    External payroll id for the employee.

    First Available Version: 20.1.10

  • Title: Employee First Name
    Maximum Length: 99
    The first name of the employee
  • Title: Employee Home Location Reference
    Maximum Length: 99
    The employee's home location reference
  • Title: Employee Last Name
    Maximum Length: 99
    The last name of the employee
  • Title: Employee Number
    Maximum Length: 16
    The identification number of the employee
  • Title: Employee Payroll ID
    Maximum Length: 16
    The employee's payroll identifier
  • Title: UUID
    Maximum Length: 16
    Unique identifier for employee for data privacy. This attribute will not be returned in the response if value is null

400 Response

Bad Request
Body ()
Root Schema : exceptionDetailType
Type: object
Error details
Show Source

401 Response

Unauthorized
Body ()
Root Schema : exceptionDetailType
Type: object
Error details
Show Source

403 Response

Service Unavailable
Body ()
Root Schema : exceptionDetailType
Type: object
Error details
Show Source

404 Response

Resource Not Found
Body ()
Root Schema : exceptionDetailType
Type: object
Error details
Show Source

Default Response

Unexpected Error
Body ()
Root Schema : exceptionDetailType
Type: object
Error details
Show Source
Back to Top

Examples

The following example shows how to view all the Employee Dimensions for a specified location by submitting a POST request on the REST resource using cURL. For more information, see Use cURL

curl -i -X POST -H "Authorization: Bearer 
   
    " -H "Content-Type:application/json" -d {"locRef":"1234"} https://baseurl/bi/v1/orgidentifier/getEmployeeDimensions 
   

Example of Response Header

The following shows an example of the response header.

HTTP/1.1 200 OK  Date: Tue, 20 Oct 2020 21:24:33 GMT  Transfer-Encoding: chunked  Content-Type: application/json

Example of Response Body

The following example shows the contents of the response body in JSON format:

{
 "locRef:"1234",
 "employees":[{
   "num": 1372,
   "uuId": 145326,
   "employeeId": 145326,
   "fName": "Adam",
   "lName": "Smith",
   "externalPayrollID": 145326,
   "payrollId": 2327895,
   "homeLocRef": "1234"
   "className": "Shift Manager",
   "classNum": 123,
   "classMstrName": "Shift Manager",
   "classMstrNum": 123
 }]
}

The following example shows how to view all the Employee Dimensions for a specified location by submitting a POST request on the REST resource using cURL. For more information, see Use cURL

curl -i -X POST -H "Authorization: Bearer 
  
   " -H "Content-Type:application/json" -d {"locRef":"1234"} https://baseurl/bi/v1/orgidentifier/getEmployeeDimensions 
  

Example of Response Header

The following shows an example of the response header.

HTTP/1.1 200 OK  Date: Tue, 20 Oct 2020 21:24:33 GMT  Transfer-Encoding: chunked  Content-Type: application/json

Example of Response Body

The following example shows the contents of the response body in JSON format:

{
 "locRef:"1234",
 "employees":[{
   "num": 1372,
   "uuId": 145326,
   "employeeId": 145326,
   "fName": "Adam",
   "lName": "Smith",
   "externalPayrollID": 145326,
   "payrollId": 2327895,
   "homeLocRef": "1234"
   "className": "Shift Manager",
   "classNum": 123,
   "classMstrName": "Shift Manager",
   "classMstrNum": 123
 }]
}
Back to Top