Xero · Example Payload

Xero Gettask Example

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Xero Gettask 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": "getTask",
  "method": "GET",
  "path": "/Projects/{projectId}/Tasks/{taskId}",
  "summary": "Xero Retrieves a single project task",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "name": "Demolition",
        "rate": {
          "currency": "AUD",
          "value": 20
        },
        "chargeType": "TIME",
        "status": "ACTIVE",
        "estimateMinutes": 12000,
        "taskId": "7be77337-feec-4458-bb1b-dbaa5a4aafce",
        "projectId": "b021e7cb-1903-4292-b48b-5b27b4271e3e",
        "totalMinutes": 300,
        "totalAmount": {
          "currency": "AUD",
          "value": 100
        },
        "minutesToBeInvoiced": 300,
        "minutesInvoiced": 0,
        "nonChargeableMinutes": 0,
        "fixedMinutes": 0,
        "amountToBeInvoiced": {
          "currency": "AUD",
          "value": 100
        },
        "amountInvoiced": {
          "currency": "AUD",
          "value": 0
        }
      }
    }
  ]
}