Project

fio_api

0.01
No release in over 3 years
Low commit activity in last 3 years
API wrapper for FIO bank
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 1.10.6
>= 2.1.1
>= 4.2.0
>= 0
>= 3.4.0
>= 0

Runtime

>= 0.16.2
 Project Readme

<img src=“https://travis-ci.org/14113/fio_api.svg?branch=master” alt=“Build Status” /> <img src=“https://codeclimate.com/badge.png” />

Fio API¶ ↑

This project rocks and uses MIT-LICENSE.

This gem is a wrapper for Fio bank API.

Usage¶ ↑

Add to your gemfile¶ ↑

gem 'fio_api'

Setup API token¶ ↑

FioAPI.token = "8JSKJ823DN86YRH87UIRUI2363ND5xcr3"

Request transactions in date range 2012-11-05 and 2012-12-26¶ ↑

list = FioAPI::List.new                                         # Create new listing request
list.by_date_range(Date.new(2012,11,05), Date.new(2012,12,26))  # Specify listing condition and fetch request
list.response                                                   # Return deserialized response

Request to get transactions form last request¶ ↑

list = FioAPI::List.new
list.from_last_fetch
list.response

Request transactions by listing_id and year¶ ↑

list = FioAPI::List.new
list.by_listing_id_and_year(1, 2012)
list.response

Request to set last request id¶ ↑

list = FioAPI::List.new
list.set_last_fetch_id("SHXG738377834")
list.response

Request to set last request date¶ ↑

list = FioAPI::List.new
list.set_last_fetch_date(Date.new(2012,11,05))
list.response

Import domestic payments for authorization¶ ↑

payment = FioAPI::Payments::Domestic.new(:account_from, :currency, :amount, :account_to,
        :bank_code, :ks, :vs, :ss, :date, :message_for_recipient, :comment)
service = FioAPI::Payment.new [payment]                         # Pass one payment or array of payments
service.import                                                  # Call API
service.response                                                # Return deserialized response with status code etc.
service.success?                                                # => true / false

Contributing to fio_api¶ ↑

  • Check out the latest master to make sure the feature hasn’t been implemented or the bug hasn’t been fixed yet.

  • Check out the issue tracker to make sure someone already hasn’t requested it and/or contributed it.

  • Fork the project.

  • Start a feature/bugfix branch.

  • Commit and push until you are happy with your contribution.

  • Make sure to add tests for it. This is important so I don’t break it in a future version unintentionally.

  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.