Using xero-ruby with xero.com

Ruby integration

Install
gem install xero-ruby
Quick start
require 'xero-ruby'

client = XeroRuby::Client.new(api_key: "YOUR_ACCESS_TOKEN")
Retrieve all statements
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://api.xero.com/bankfeeds.xro/1.0/Statements
Searches for feed connections
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://api.xero.com/bankfeeds.xro/1.0/FeedConnections
Retrieve single feed connection based on a unique id provided
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://api.xero.com/bankfeeds.xro/1.0/FeedConnections/{id}
SDK on GitHub 📄 API Docs
SDK
xero-ruby
Ruby
API
xero.com
xero.com:xero_bankfeeds
At a glance
Language Ruby
Endpoints7
Base URLhttps://api.xero.com/bankfeeds.xro/1.0