Project

trackvia

0.0
No commit activity in last 3 years
No release in over 3 years
A simple interface for the old (2013) Trackvia API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

>= 0
>= 0
 Project Readme

Gem Version

Trackvia

Trackvia API Interface This only works with the old 2013 api

Installation

gem install trackvia

or add to gemfile

gem 'trackvia'

Examples

Pull Records

trackvia = Trackvia.new(account_id, api_key, table_id)
records = tracvia.pull_records(view_id)

Update a Record

trackvia = Trackvia.new(account_id, api_key, table_id)
record_locator = '0000000000'
data = {
  name: "new name"
}
trackvia.update_record(record_locator, data)

Pull a Record

trackvia = Trackvia.new(account_id, api_key, table_id)
record_locator = '0000000000'
record = trackvia.pull_record(record_locator)

Perform a Search

trackvia = Trackvia.new(account_id, api_key, table_id)
results = trackvia.search("search term")

Trackvia Old API Reference https://secure.trackvia.com/app/static/TrackVia_API_Developers_Guide.pdf