Xero · Example Payload

Xero Getreimbursements Example

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Xero Getreimbursements 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": "getReimbursements",
  "method": "GET",
  "path": "/Reimbursements",
  "summary": "Retrieves reimbursements",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "id": "00000000-0000-0000-0000-000000000000",
        "providerName": "provider-name",
        "dateTimeUTC": "2020-08-27 21:59:44.559231",
        "httpStatusCode": "OK",
        "pagination": {
          "page": 1,
          "pageSize": 100,
          "pageCount": 1,
          "itemCount": 3
        },
        "problem": null,
        "reimbursements": [
          {
            "reimbursementID": "ddf9b572-5861-4f97-a109-9d612df52242",
            "name": "Mileage",
            "accountID": "36d33c5d-7dea-4911-9ed0-7fccc16f2b5f",
            "currentRecord": true,
            "standardAmount": null,
            "standardTypeOfUnits": "km",
            "standardRatePerUnit": 0.79,
            "reimbursementCategory": "NoGST",
            "calculationType": "RatePerUnit"
          }
        ]
      }
    }
  ]
}