Xero · Example Payload

Xero Gettaxratebytaxtype Example

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Xero Gettaxratebytaxtype Example is an example object payload from Xero, 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": "getTaxRateByTaxType",
  "method": "GET",
  "path": "/TaxRates/{TaxType}",
  "summary": "Xero Retrieves a specific tax rate according to given TaxType code",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "Id": "455d494d-9706-465b-b584-7086ca406b27",
        "Status": "OK",
        "ProviderName": "Xero API Partner",
        "DateTimeUTC": "/Date(1550797359081)/",
        "TaxRates": [
          {
            "Name": "15% GST on Expenses",
            "TaxType": "INPUT2",
            "ReportTaxType": "INPUT",
            "CanApplyToAssets": true,
            "CanApplyToEquity": true,
            "CanApplyToExpenses": true,
            "CanApplyToLiabilities": true,
            "CanApplyToRevenue": false,
            "DisplayTaxRate": 15.0,
            "EffectiveRate": 15.0,
            "Status": "ACTIVE",
            "TaxComponents": [
              {
                "Name": "GST",
                "Rate": 15.0,
                "IsCompound": false,
                "IsNonRecoverable": false
              }
            ]
          }
        ]
      }
    }
  ]
}