Get point of sale journal log details

post

/bi/v1/{orgIdentifier}/getPOSJournalLogDetails

Get all the Point of Sale Journal Log details 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 : posJournalLogDetails
Type: object
The response body contains information about the point of sale journal log details for the specified location and business date.
Show Source
Nested Schema : revenueCenters
Type: array
An array of point of sale journal log details by reveneue centers
Show Source
Nested Schema : posJournalLogDetailsByRVC
Type: object
The response body contains point of sale journal log details for a revenue center
Show Source
  • logDetails
    An array of point of sale journal log details for a revenue center. This attribute will not be returned in the response if value is null
  • Title: Revenue center number
    Maximum Length: 99
    Revenue Center number. This attribute will not be returned in the response if logDetails is null
Nested Schema : logDetails
Type: array
An array of point of sale journal log details for a revenue center. This attribute will not be returned in the response if value is null
Show Source
Nested Schema : logDetails
Type: object
The response body contains the point of sale journal log details associated with a revenue center
Show Source
  • Title: Employee Number
    Maximum Length: 16
    Unique identifier of the employee who has entered the log. This attribute will not be returned in the response if value is null
  • Title: Guest Check ID
    Maximum Length: 16
    The unique identifier of the guest check
  • Title: Journal text
    Maximum Length: 99
    Journal text of the log. This attribute will not be returned in the response if value is null
  • Title: Transaction ID
    Maximum Length: 16
    Unique identifier of the transaction log. This attribute will not be returned in the response if value is null
  • Title: Transaction Date Time Local
    The date and time the POS journal log was entered in location's timezone.

    First Available Version: 20.1.9.6

  • Title: Transaction Date Time in UTC
    The date and time the POS journal log was entered as a UTC time
  • Title: Type
    Maximum Length: 16
    The type of the log
  • Title: Workstation Number
    Maximum Length: 16
    Unique identifier of the workstation. 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 get the point of sale journal log details for a specified location and 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/getPOSJournalLogDetails 
  

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-10-20",
 "revenueCenters":[{
  "rvcNum": 1372,
  "logDetails":[{
   "guestCheckId": 123,
   "type": 1,
   "transId": 1,
   "transUTC":  "2019-10-20T15:59:59",
   "transLcl":  "2019-10-20T11:59:59",
   "journalTxt": "Journal Text", 
   "wsNum": 123,
   "empNum": 1234
  }]
 }]
}
Back to Top