Skip to content

Latest commit

 

History

History

api-ruby

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Trinsic API Ruby Library

Version Build Status

The Trinsic API Ruby library provides convenient access to the Trinsic API from applications written in Ruby.

Documentation

See the Trinsic docs for more detailed information on how to start integrating with our identity acceptance network.

Installation

Install the package with:

gem install trinsic_api

or add it to your Gemfile

gem 'trinsic_api'

Usage

The package needs to be configured with your app's access token, which is available in the Trinsic Dashboard.

TrinsicApi.configure do |config|
  config.access_token = ENV['TRINSIC_ACCESS_TOKEN']
end

attachments = TrinsicApi::AttachmentsApi.new
network = TrinsicApi::NetworkApi.new
sessions = TrinsicApi::SessionsApi.new

sessions.create_session({})

You can find a full Ruby server example in the samples folder.

SDK Versioning

Our SDKs follow the Semantic Versioning ("SemVer") scheme.

For example, the version number 1.13.0 has a major version of 1, a minor version of 13, and a patch version of 0.

Breaking changes are only introduced alongside a new major version.

Support

Any issues, inquiries, and feature requests can be sent to support@trinsic.id, or feel free to open a GitHub issue here.

More Information