Xero · Example Payload

Xero Getemployeeopeningbalances Example

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Xero Getemployeeopeningbalances 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": "getEmployeeOpeningBalances",
  "method": "GET",
  "path": "/Employees/{EmployeeID}/OpeningBalances",
  "summary": "Retrieves the opening balance for a specific employee",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "id": "00000000-0000-0000-0000-000000000000",
        "providerName": "provider-name",
        "dateTimeUTC": "2020-08-28 20:00:07.734396",
        "httpStatusCode": "OK",
        "pagination": {
          "page": 1,
          "pageSize": 100,
          "pageCount": 1,
          "itemCount": 8
        },
        "problem": null,
        "openingBalances": [
          {
            "periodEndDate": "2020-10-01 00:00:00",
            "daysPaid": 3,
            "unpaidWeeks": 2,
            "grossEarnings": 40
          }
        ]
      }
    }
  ]
}