Get job code daily totals

post

/bi/v1/{orgIdentifier}/getJobCodeDailyTotals

Get the Job Code Daily Totals for a specified location and business date.

Request

Path Parameters
Body ()
The request body defines the details of the API request.
Root Schema : requestPayload
Type: object
Request payload
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: Business Date
    The business date associated with the cash management detail
  • Title: Include
    Maximum Length: 2000
    List of objects to include in response
  • Title: Location Reference
    Maximum Length: 99
    The location reference, this may be a store number or name depending on the organization
  • Title: Search Criteria
    Maximum Length: 2000
    Search criteria to filter results based on field value
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : jcDailyTotals
Type: object
The response body contains information about the daily totals by job code for the specified location.
Show Source
Nested Schema : revenueCenters
Type: array
An array of Employee Daily Totals by Revenue Centers
Show Source
Nested Schema : jcDailyTotalsByRVC
Type: object
The response body contains daily totals by job code of a revenue center for the specified location.
Show Source
  • jobCodes
    An array of daily totals by job code for a revenue center. This attribute will not be returned in the response if value is null
  • Title: Revenue Center Number
    Maximum Length: 16
    Revenue Center number. This attribute will not be returned in the response if jobCodes is null
Nested Schema : jobCodes
Type: array
An array of daily totals by job code for a revenue center. This attribute will not be returned in the response if value is null
Show Source
Nested Schema : jcDailyTotal
Type: object
The response body contains daily totals by job code for a revenue center for the specified location.
Show Source
  • Title: Job Code Number
    Maximum Length: 16
    Job Code Number
  • Title: Overtime 2 Hours
    Number of overtime 2 hours. This attribute will not be returned in the response if value is 0 or null
  • Title: Overtime 2 Pay
    Amount of overtime 2 pay. This attribute will not be returned in the response if value is 0 or null
  • Title: Overtime 3 Hours
    Number of overtime 3 hours. This attribute will not be returned in the response if value is 0 or null
  • Title: Overtime 3 Pay
    Amount of overtime 3 pay. This attribute will not be returned in the response if value is 0 or null
  • Title: Overtime 4 Hours
    Number of overtime 4 hours. This attribute will not be returned in the response if value is 0 or null
  • Title: Overtime 4 Pay
    Amount of overtime 4 pay. This attribute will not be returned in the response if value is 0 or null
  • Title: Overtime Hours
    Number of overtime hours. This attribute will not be returned in the response if value is 0 or null
  • Title: Overtime Pay
    Amount of overtime pay. This attribute will not be returned in the response if value is 0 or null
  • Title: Regular Hours
    Maximum Length: 16
    Number of regular hours
  • Title: Regular Pay
    Maximum Length: 16
    Amount of regualar Pay

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 operational daily totals by Job Codes for a specified location & business date 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","busDt":"2020-10-20"} https://baseurl/bi/v1/orgidentifier/getJobCodeDailyTotals 
  

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",
 "busDt": "2020-07-20",
 "revenueCenters":[{
  "rvcNum":1372,
  "jobCodes":[{
   "jcNum": 12345,
   "regHrs": 123.45,
   "regPay": 1234.56,
   "ovtHrs": 123.45,
   "ovtPay": 1234.56.
   "ovt2Hrs": 123.45,
   "ovt2Pay": 1234.56,
   "ovt3Hrs": 123.45,
   "ovt3Pay": 1234.56,
   "ovt4Hrs": 123.45,
   "ovt4Pay": 1234.56
  }]
 }]
}
Back to Top