Xero · Example Payload

Xero Getcurrencies Example

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Xero Getcurrencies 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": "getCurrencies",
  "method": "GET",
  "path": "/Currencies",
  "summary": "Retrieves currencies for your Xero organisation",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "Id": "e6803fc8-8035-4251-b3e4-39d6b2de0f4a",
        "Status": "OK",
        "ProviderName": "Provider Name Example",
        "DateTimeUTC": "/Date(1552322853043)/",
        "Currencies": [
          {
            "Code": "NZD",
            "Description": "New Zealand Dollar"
          }
        ]
      }
    }
  ]
}