Xero · Schema

RefreshToken

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
grant_type string Xero grant type
refresh_token string refresh token provided during authentication flow
client_id string client id for Xero app
client_secret string client secret for Xero app 2
View JSON Schema on GitHub

JSON Schema

xero-refreshtoken-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RefreshToken",
  "title": "RefreshToken",
  "externalDocs": {
    "url": "http://developer.xero.com"
  },
  "type": "object",
  "properties": {
    "grant_type": {
      "description": "Xero grant type",
      "type": "string"
    },
    "refresh_token": {
      "description": "refresh token provided during authentication flow",
      "type": "string"
    },
    "client_id": {
      "description": "client id for Xero app",
      "type": "string"
    },
    "client_secret": {
      "description": "client secret for Xero app 2",
      "type": "string"
    }
  }
}