Xero · Example Payload

Xero Createtrackingcategory Example

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Xero Createtrackingcategory 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": "createTrackingCategory",
  "method": "PUT",
  "path": "/TrackingCategories",
  "summary": "Xero Create tracking categories",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "name": "FooBar"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "Id": "1a9f8e03-9916-4a42-93a9-e8fa4902d49c",
        "Status": "OK",
        "ProviderName": "Provider Name Example",
        "DateTimeUTC": "/Date(1555085855988)/",
        "TrackingCategories": [
          {
            "Name": "FooBar",
            "Status": "ACTIVE",
            "TrackingCategoryID": "b1df776b-b093-4730-b6ea-590cca40e723",
            "Options": []
          }
        ]
      }
    }
  ]
}