Operation
Information of the operation
GET
https://{environment}.ulysescloud.com/api/{version}/chain/{chainId}/property{propertyId}/revenue
Request
Property | Type | Required | Default value | Description |
---|---|---|---|---|
chainId | Integer | true | Unique identificator of the chain. | |
propertyId | Integer | true | Unique identificator of the property. | |
from | LocalDate | true | Start of date range | |
to | LocalDate | true | End of date range | |
productId | Integer | false | Filter by only one product | |
productTypeIdList | List of Integer | false | Filter by a type of Product | |
offset | Integer | false | 0 | Offset of the array of results. |
limit | Integer | false | 10 | Limit of results. |
Example request
GET https://prod.ulysescloud.com/api/v1/chain/1/property/1/revenue
Response
Property | Type | Required | Description |
---|---|---|---|
Page | Page | true |
Entity
Field | Type | Required | Description |
---|---|---|---|
date | LocalDate | true | Date of the revenue calculus |
product | Product | true | Product that groups the values |
quantity | Integer | true | |
adults | Integer | true | |
juniors | Integer | true | |
children | Integer | true | |
infants | Integer | true | |
amountAfterTax | BigDecimal | true | |
amountBeforeTax | BigDecimal | true | |
amountDiscount | BigDecimal | true | |
amountTax | BigDecimal | true | |
amountCommission | BigDecimal | true | |
amountCommissionApplied | BigDecimal | true | |
amountFoodBreakdownAfterTax | BigDecimal | ||
amountFoodBreakdownBeforeTax | BigDecimal | ||
amountBeverageBreakdownAfterTax | BigDecimal | ||
amountBeverageBreakdownBeforeTax | BigDecimal | ||
amountOtherBreakdownAfterTax | BigDecimal | ||
amountOtherBreakdownBeforeTax | BigDecimal | ||
amountNetAfterTax | BigDecimal | true | |
amountNetBeforeTax | BigDecimal | true | |
amountFoodBreakdownNetAfterTax | BigDecimal | ||
amountFoodBreakdownNetBeforeTax | BigDecimal | ||
amountBeverageBreakdownNetAfterTax | BigDecimal | ||
amountBeverageBreakdownNetBeforeTax | BigDecimal | ||
amountOtherBreakdownNetAfterTax | BigDecimal | ||
amountOtherBreakdownNetBeforeTax | BigDecimal | ||
amountInvoiceAfterTax | BigDecimal | ||
amountInvoiceBeforeTax | BigDecimal | ||
segment | |||
source | |||
channel | |||
rate | |||
offer | |||
promotion | |||
booker | |||
billTo | |||
central | |||
company | |||
countryCode | String |
Example response
{ "count": 3, "offset": 0, "limit": 10, "list": [{ "date": "2019-01-21", "productId": 79, "quantity": 1, "adults": 1, "juniors": 0, "children": 0, "infants": 0, "amountAfterTax": 380, "amountBeforeTax": 342, "amountDiscount": 0, "amountTax": 38, "amountCommission": 42 }, { "date": "2019-01-21", "productId": 288, "quantity": 1, "adults": 1, "juniors": 0, "children": 0, "infants": 0, "amountAfterTax": 10, "amountBeforeTax": 7.9, "amountDiscount": 0, "amountTax": 2.1, "amountCommission": 0 }, { "date": "2019-01-21", "productId": 365, "quantity": 1, "adults": 1, "juniors": 0, "children": 0, "infants": 0, "amountAfterTax": 10, "amountBeforeTax": 7.9, "amountDiscount": 0, "amountTax": 2.1, "amountCommission": 0 } ] }