Mews · Example Payload

Mews Taxations Getall Example

HospitalityHotelsPMSProperty Management

Mews Taxations Getall Example is an example object payload from Mews, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "taxations_getAll",
  "method": "POST",
  "path": "/api/connector/v1/taxations/getAll",
  "summary": "Get all taxations",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "ClientToken": "E0D439EE522F44368DC78E1BFB03710C-D24FB11DBE31D4621C4817E028D9E1D",
        "AccessToken": "C66EF7B239D24632943D115EDE9CB810-EA00F8FD8294692C940F6B5A8F9453D",
        "Client": "Sample Client 1.0.0"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "Taxations": [
          {
            "Code": "AT-2020",
            "Name": "VAT",
            "LocalName": "MWST"
          },
          {
            "Code": "AT-2020-Extra",
            "Name": "Extra tax on top of VAT",
            "LocalName": "Extra tax on top of MWST"
          },
          {
            "Code": "AT-2016",
            "Name": "VAT",
            "LocalName": "MWST"
          },
          {
            "Code": "AT",
            "Name": "VAT",
            "LocalName": "MWST"
          },
          {
            "Code": "AW",
            "Name": "TAX",
            "LocalName": "TAX"
          },
          {
            "Code": "CA-QC-2023",
            "Name": "TVQ/QST",
            "LocalName": "TVQ/QST"
          },
          {
            "Code": "PH-MA-CUSTOM",
            "Name": "Makati local tax",
            "LocalName": "Makati local tax"
          }
        ],
        "TaxRates": [
          {
            "Code": "AT-2020-21%",
            "TaxationCode": "AT",
            "Value": 0.21,
            "ValidityInvervalsUtc": null,
            "Strategy": {
              "Discriminator": "Relative",
              "Value": {
                "Value": 0.21
              }
            }
          },
          {
            "Code": "AT-2020-Extra-10%",
            "TaxationCode": "AT-2020-Extra",
            "Value": 0.1,
            "ValidityInvervalsUtc": null,
            "Strategy": {
              "Discriminator": "Dependent",
              "Value": {
                "Value": 0.1,
                "BaseTaxationCodes": [
                  "AT-2020"
                ]
              }
            }
          },
          {
            "Code": "AT-5-EUR",
            "TaxationCode": "AT",
            "Value": 5.0,
            "ValidityInvervalsUtc": null,
            "Strategy": {
              "Discriminator": "Flat",
              "Value": {
                "CurrencyCode": "EUR",
                "Value": 5.0
              }
            }
          },
          {
            "Code": "AW-S",
            "TaxationCode": "AW",
            "Value": 0.2062,
            "ValidityInvervalsUtc": [
              {
                "StartUtc": null,
                "EndUtc": "2021-01-14T00:00:00Z"
              }
            ],
            "Strategy": {
              "Discriminator": "Relative",
              "Value": {
                "Value": 0.2062
              }
            }
          },
          {
            "Code": "CA-QC-2023-9.975%",
            "TaxationCode": "CA-QC-2023",
            "Value": 0.0,
            "ValidityInvervalsUtc": [
              {
                "StartUtc": "2023-10-19T19:00:00Z",
                "EndUtc": null
              }
            ],
            "Strategy": {
              "Discriminator": "Dependent",
              "Value": {
                "Value": 0.09975,
                "BaseTaxationCodes": [
                  "CA-QC-MT-LO",
                  "CA-QC-LODGING-2023",
                  "CA-QC-LO-FLAT"
                ]
              }
            }
          },
          {
            "Code": "PH-MA-CUSTOM-0.75%",
            "TaxationCode": "PH-MA-CUSTOM",
            "Value": 0.0075,
            "ValidityInvervalsUtc": null,
            "Strategy": {
              "Discriminator": "Relative",
              "Value": {
                "Value": 0.0075
              }
            }
          }
        ]
      }
    }
  ]
}