Get latest business date

post

/bi/v1/{orgIdentifier}/getLatestBusDt

Gets the latest business date 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
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : latestBusinessDate
Type: object
The response body contains information about the latest business date for the specified location.
Show Source
  • Title: Current date and time in UTC format
    The current UTC date and time.
  • Title: Latest Business Date
    The latest business date
  • Title: Location Reference
    Maximum Length: 99
    The location reference, this may be a store number or name depending on the organization
  • Title: Software Version
    Maximum Length: 99
    The version number of the Reporting and Analytics module being used for the API calls.

    First Available Version: 20.1.8.3

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 latest business date 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/getLatestBusinessDate 
  

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:

{
 "curUTC": "2019-07-20T17:59:59",
 "locRef": "1234",
 "latestBusDt": "2019-07-20"
 "softwareVersion": "20.1.8.1",
}
Back to Top