Revenue list [GET]

Operation

The result of this operation gives us the total amount of daily revenue produced by an specific product or product category throughout a time period 

GET Single property request
https://{environment}.ulysescloud.com/public/api/{version}/con/chain/{chainId}/property/{propertyId}/revenue
GET Multiproperty request
https://{environment}.ulysescloud.com/public/api/{version}/con/chain/{chainId}/property/revenue

Request

PropertyTypeRequiredType parameterDefault valueDescription
chainIdIntegertruepath parameter
Unique identificator of the chain.
propertyIdIntegertruepath parameter
Unique identificator of the property.
fromLocalDatetruerequest parameter
Start of date range
toLocalDatetruerequest parameter
End of date range
productIdIntegerfalserequest parameter
Filter by only one product
productTypeIdListList of Integerfalserequest parameter
Filter by a type of Product
offsetIntegerfalserequest parameter0Offset of the array of results.
limitIntegerfalserequest parameter10Limit of results.

Example Single Property request

GET https://publicapi-providers.ulysescloud.com:9797/public/api/v1/con/chain/1/property/1/revenue

Example Multiproperty request

GET https://publicapi-providers.ulysescloud.com:9797/public/api/v1/con/chain/1/property/revenue


Response

PropertyTypeRequiredDescription
PagePagetrue

Entity



FieldTypeRequiredDescription
dateLocalDatetrueDate of the revenue calculus
productProducttrueProduct that groups the values
quantityIntegertrue
adultsIntegertrue
juniorsIntegertrue
childrenIntegertrue
infantsIntegertrue
amountAfterTaxBigDecimaltrue
amountBeforeTaxBigDecimaltrue
amountDiscountBigDecimaltrue
amountTaxBigDecimaltrue
amountCommissionBigDecimaltrue
amountCommissionAppliedBigDecimaltrue

amountFoodBreakdownAfterTax

BigDecimal

amountFoodBreakdownBeforeTax

BigDecimal

amountBeverageBreakdownAfterTax

BigDecimal

amountBeverageBreakdownBeforeTax

BigDecimal

amountOtherBreakdownAfterTax

BigDecimal



amountOtherBreakdownBeforeTax

BigDecimal



amountNetAfterTaxBigDecimaltrue
amountNetBeforeTaxBigDecimaltrue
amountFoodBreakdownNetAfterTaxBigDecimal

amountFoodBreakdownNetBeforeTaxBigDecimal

amountBeverageBreakdownNetAfterTaxBigDecimal

amountBeverageBreakdownNetBeforeTaxBigDecimal

amountOtherBreakdownNetAfterTaxBigDecimal

amountOtherBreakdownNetBeforeTaxBigDecimal

amountInvoiceAfterTaxBigDecimal

amountInvoiceBeforeTaxBigDecimal

segment

Segment



source

Source



channel

Channel



rate

Rate



offer

Offer



promotion

Promotion



booker

Company



billTo

Company



central

Company



company

Company



countryCode

String



Example response

{
      "date": "2020-05-10",
      "product": {
        "id": 56,
        "code": "DEPRE",
        "name": "Deposit Receipt",
        "productType": {
          "id": 4,
          "code": "DEP",
          "name": "Deposit",
          "nameI18n": "Deposit"
        }
      },
      "quantity": 4,
      "adults": 4,
      "juniors": 0,
      "children": 0,
      "infants": 0,
      "amountAfterTax": 110.666667,
      "amountBeforeTax": 100.606060,
      "amountFoodBreakdownAfterTax": 55.333333,
      "amountFoodBreakdownBeforeTax": 50.303030,
      "amountBeverageBreakdownAfterTax": 55.333333,
      "amountBeverageBreakdownBeforeTax": 50.303030,
      "amountOtherBreakdownAfterTax": 0.000000,
      "amountOtherBreakdownBeforeTax": 0.000000,
      "amountNetAfterTax": 110.666667,
      "amountNetBeforeTax": 100.606060,
      "amountFoodBreakdownNetAfterTax": 55.333333,
      "amountFoodBreakdownNetBeforeTax": 50.303030,
      "amountBeverageBreakdownNetAfterTax": 55.333333,
      "amountBeverageBreakdownNetBeforeTax": 50.303030,
      "amountOtherBreakdownNetAfterTax": 0.000000,
      "amountOtherBreakdownNetBeforeTax": 0.000000,
      "amountDiscount": 0.000000,
      "amountTax": 0.000000,
      "amountCommission": 0.000000,
      "amountCommissionBeforeTax": null,
      "amountCommissionApplied": 0.000000,
      "amountCommissionAppliedBeforeTax": null,
      "amountCommissionFoodBreakdown": null,
      "amountCommissionFoodBreakdownBeforeTax": null,
      "amountCommissionFoodBreakdownApplied": null,
      "amountCommissionFoodBreakdownAppliedBeforeTax": null,
      "amountCommissionBeverageBreakdown": null,
      "amountCommissionBeverageBreakdownBeforeTax": null,
      "amountCommissionBeverageBreakdownApplied": null,
      "amountCommissionBeverageBreakdownAppliedBeforeTax": null,
      "amountCommissionOtherBreakdown": null,
      "amountCommissionOtherBreakdownBeforeTax": null,
      "amountCommissionOtherBreakdownApplied": null,
      "amountCommissionOtherBreakdownAppliedBeforeTax": null,
      "amountInvoiceAfterTax": 110.666667,
      "amountInvoiceBeforeTax": 100.606060,
      "segment": null,
      "source": null,
      "channel": null,
      "rate": null,
      "offer": null,
      "promotion": null,
      "booker": null,
      "billTo": null,
      "central": null,
      "company": null,
      "countryCode": null
}