Get service charges

post

/bi/v1/{orgIdentifier}/getServiceChargeDimensions

Gets the service charges 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 : serviceChargeDimensions
Type: object
The response body contains information about the service charge dimensions for the specified locatio
Show Source
Nested Schema : serviceCharges
Type: array
An array of service charge dimensions
Show Source
Nested Schema : serviceCharge
Type: object
The response body contains information about the service charge for the specified location.
Show Source
  • Title: Category
    Maximum Length: 99
    The category of the service charge. This attribute will not be returned in the response if value is null
  • Title: Charged Tip Flag
    A flag indicating if the service charged is a charged tip. This attribute will not be returned in the response if value is false or null
  • Title: Master Name
    Maximum Length: 99
    The master Service charge name
  • Title: Master Number
    Maximum Length: 16
    The master Service charge number
  • Title: Name
    Maximum Length: 99
    Service charge name
  • Title: Number
    Maximum Length: 16
    Service charge number
  • Title: POS Percentage
    Percentage of the service charge
  • Title: Revenue Flag
    A flag indicating if the service charge is revenue or non-revenue service charge. This attribute will not be returned in the response if value is true or 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 service charge 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/getServiceChargeDimensions 
  

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",
 "serviceCharges":[{
  "num": 15253,
  "name": "Charge Tip",
  "mstrNum": 15253,
  "mstrName": "Charge Tip",
  "posPercent": 10.25,
  "revFlag": true,
  "chrgTipsFlag": true,
  "category": "category"
 }]
}
Back to Top