Xero · Example Payload

Xero Createfolder Example

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Xero Createfolder 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": "createFolder",
  "method": "POST",
  "path": "/Folders",
  "summary": "Creates a new folder",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": "{ \"Name\": \"My Docs\" }"
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": "{ \"Name\": \"My Docs\", \"FileCount\": 0, \"IsInbox\": false, \"Id\": \"913970ad-8c8e-4666-8294-35b9cac23206\" }"
    },
    {
      "status": "400",
      "contentType": "application/json",
      "example": "[ { \"type\":\"Validation\", \"title\":\"Validation failure\", \"detail\":\"Name contains one or more bad characters\" } ]"
    }
  ]
}