Gem for connecting to Transunion's AQM System for retrieving credit reports.
Add this line to your application's Gemfile:
gem 'tu_aqm_client'
And then execute:
$ bundle
Or install it yourself as:
$ gem install tu_aqm_client
TU_AQM_ENDPOINT="https://tu_aqm_endpoint.svc"
TuAqmClient::get_credit_report(
user_id: "user_id",
password: "password",
first_name: "Willie",
last_name: "Diaz",
gender: "m",
date_of_birth: Date.parse("12/29/1980"),
civil_status: "married",
id_type: "TIN",
id_number: "764492040",
address_type: "R",
address: "02 8TH CROSSING LOURDES PHILIPPINES",
contact_number: "1111111",
email_address: "[email protected]",
)
user_id
andpassword
are given by Transunionaddress
only accepts alphanumeric values
TuAqmClient::get_credit_report
will then return the credit report as shown in sample_credit_report.md
The gem is available as open source under the terms of the MIT License.