As of April 2024, this repository is no longer being maintained by privateprep and is archived. If you'd like to fork it and use in your own projects, go ahead!
A wrapper for Intacct's API, which tries to stay as close as it can to the syntax and philosophy of the API itself.
Unlike the other Gems out in the Rubyverse, this library supports one of the Intacct API's most powerful features: multi-function API calls.
In an ERP system like Intacct, you'll probably want to perform multiple actions at once, like debiting one account and crediting another, or creating several associated records simulatenously. The more calls you make, the longer it will take to see a response. That's just a fact. But if you can bundle all of those actions together into a single call, you lower the load on both your system and Intacct's servers and guarantee yourself a quicker response. Intacct's entire API is built around this idea, and IntacctRuby
translates that philosophy into Ruby.
Let's say you want to create a project and a customer associated with that project simultaneously. The Intacct API would tell you to create a call with a <create><CUSTOMER>
function followed by a <create><PROJECT>
function. So let's do it!
# REQUEST_OPTS contains authentication information. See 'Authentication' section
# for more information.
request = IntacctRuby::Request.new(REQUEST_OPTS)
request.create object_type: :CUSTOMER, parameters: {
CUSTOMERID: '1',
FIRST_NAME: 'Han',
LAST_NAME: 'Solo',
TYPE: 'Person',
EMAIL1: 'han@solo.com',
STATUS: 'active'
}
request.create object_type: :PROJECT, parameters: {
PROJECTID: '1',
NAME: 'Get Chewie a Haircut',
PROJECTCATEGORY: 'Improve Wookie Hygene',
CUSTOMERID: '1',
SHAMPOO: 'true', # a custom field
BLOWDRY: 'false' # a custom field
}
request.send
Note: Here :CUSTOMER
and :PROJECT
are object-types which are tagged just after the function tag create
and are case-sensitive along with the extra-parameters(CUSTOMERID, FIRST_NAME ..)
This will fire off a request that looks something like this:
<?xml version="1.0" encoding="UTF-8"?>
<request>
<control><!-- Authentication Params --></control>
<operation transaction="true">
<authentication><!-- Authentication Params --></authentication>
<content>
<function controlid="create-customer-2017-08-03 17:02:40 UTC">
<create>
<CUSTOMER>
<CUSTOMERID>1</CUSTOMERID>
<FIRST_NAME>Han</FIRST_NAME>
<LAST_NAME>Solo</LAST_NAME>
<TYPE>Person</TYPE>
<EMAIL1>han@solo.com</EMAIL1>
<STATUS>active</STATUS>
</CUSTOMER>
</create>
</function>
<function controlid="create-project-2017-08-03 17:02:40 UTC">
<create>
<PROJECT>
<PROJECTID>1</PROJECTID>
<NAME>Get Chewie a Haircut</NAME>
<PROJECTCATEGORY>Improve Wookie Hygene</PROJECTCATEGORY>
<CUSTOMERID>1</CUSTOMERID>
<SHAMPOO>true</SHAMPOO>
<BLOWDRY>false</BLOWDRY>
</PROJECT>
</create>
</function>
</content>
</operation>
</request>
The read requests follow a slightly different pattern. The object-type is mentioned inside the object
tag as seen here Intacct List Journal Entries. Hence, read requests don't accept a object_type:
argument directly, the object type is passed through the parameters argument. The following code will read all GLENTRY objects in a specific interval
Note: The gem encodes the queries to a valid XML so that you don't have to. You can query using the &, >, <
operators as seen below.
request = IntacctRuby::Request.new(REQUEST_OPTS)
# Object-Type GLENTRY is sent through the parameters arguments
request.readByQuery parameters: {
object: 'GLENTRY',
query: "BATCH_DATE >= '03-01-2018' AND BATCH_DATE <= '03-15-2018'",
fields: '*',
pagesize: 100
}
request.send
This will fire off a request that looks something like this:
<?xml version="1.0" encoding="UTF-8"?>
<request>
<control><!-- Authentication Params --></control>
<operation transaction="true">
<authentication><!-- Authentication Params --></authentication>
<content>
<function controlid="readByQuery-2017-08-03 17:02:40 UTC">
<readByQuery>
<object>GLENTRY</object>
<fields>*</fields>
<query>BATCH_DATE >= '03-01-2018' AND BATCH_DATE <= '03-15-2018'</query>
<pagesize>100</pagesize>
</readByQuery>
</function>
</content>
</operation>
</request>
Similarly, for pagination use the readMore
function as mentioned here Intacct Paginate Results
request = IntacctRuby::Request.new(REQUEST_OPTS)
request.readMore parameters: {
resultId: '7765623332WU1hh8CoA4QAAHxI9i8AAAAA5'
}
request.send
This will fire off a request that looks something like this:
<?xml version="1.0" encoding="UTF-8"?>
<request>
<control><!-- Authentication Params --></control>
<operation transaction="true">
<authentication><!-- Authentication Params --></authentication>
<content>
<function controlid="readMore-2017-08-03 17:02:40 UTC">
<readMore>
<resultId>7765623332WU1hh8CoA4QAAHxI9i8AAAAA5</resultId>
</readMore>
</function>
</content>
</operation>
</request>
If there are function errors (e.g. you omitted a required field) you'll see an error on response. Same if you see an internal server error, or any error outside of the 2xx range.
Before we go any further, make sure you've read the Intacct API Quickstart Guide and their article on constructing XML Requests
In IntacctRuby - as with the Intacct API that the gem wraps - your system credentials are pass along with each separate Request
instance. The functions that define a request are followed by a hash that spells out each piece of information required by Intacct for authentication. These fields are:
senderid
sender_password
*userid
companyid
user_password
*
* In Intacct's documentation, these are referred to only as password
. This won't work in Rubyland, though, because we can't have multiple hash entries with the same key.
IntacctRuby::Request.new(
some_function,
another_function,
senderid: 'some_senderid_value',
sender_password: 'some_sender_password_value',
userid: 'some_userid_value',
companyid: 'some_companyid_value',
user_password: 'some_user_password_value'
)
Though, it probably makes more sense to keep all of these in some handy constant for easy reuse:
REQUEST_OPTS = {
senderid: 'some_senderid_value',
sender_password: 'some_sender_password_value',
userid: 'some_userid_value',
companyid: 'some_companyid_value',
user_password: 'some_user_password_value'
}.freeze
IntacctRuby::Request.new(REQUEST_OPTS)
Obviously, Intacct won't do anything if you don't tell it who you are. To save you the bandwidth, this gem will throw errors if any of these auth params are not provided.
Though the examples above show hard-coded username/password pairs, this is a really bad idea to do in production code. Instead, we recommend storing these variables in ENVs, using a tool like Figaro to bring it all together.
This gem creates calls using the following defaults:
- uniqueid: false,
- dtdversion: 3.0,
- includewhitespace: false,
- transaction: true
If you'd like to override any of these, you can do so when you create a new request by adding additional fields to the options hash passed into Request#new
:
REQUEST_OPTS = {
senderid: 'some_senderid_value',
sender_password: 'some_sender_password_value',
userid: 'some_userid_value',
companyid: 'some_companyid_value',
user_password: 'some_user_password_value'
}
REQUEST_OPTS.merge!(
uniqueid: 'some_uniqueid_override',
dtdversion: 'some_dtd_override'
)
IntacctRuby::Request.new(REQUEST_OPTS)
Add this line to your application's Gemfile:
gem 'intacct_ruby'
And then execute:
$ bundle
Or install it yourself as:
$ gem install intacct_ruby
Bug reports and pull requests are welcome on GitHub at https://github.com/privateprep/intacct-ruby/.
This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.