Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mfk_openapi_ruby_client

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mfk_openapi_ruby_client

  • 1.0.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

mfk_openapi_ruby_client

see https://developer.mfkessai.co.jp/docs/v2

MfkOpenapiRubyClient - the Ruby gem for the Money Forward Kessai API v2

Money Forward Kessai REST API

This SDK is automatically generated by the OpenAPI Generator project:

  • API version: 2.6.7
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.RubyClientCodegen For more information, please visit https://support.mfkessai.co.jp/hc/ja

Client

regenerate ruby client

regenerate

make client/ruby/generate

spec

cd ./clients/ruby
bundle install
bundle exec rspec 

it may be failed because of Open Api Generator has bugs. Fix manually and Commit it

Installation

Build a gem

To build the Ruby code into a gem:

gem build mfk_openapi_ruby_client.gemspec

Then either install the gem locally:

gem install ./mfk_openapi_ruby_client-1.0.0.gem

(for development, run gem install --dev ./mfk_openapi_ruby_client-1.0.0.gem to install the development dependencies)

or publish the gem to a gem hosting service, e.g. RubyGems.

Finally add this to the Gemfile:

gem 'mfk_openapi_ruby_client', '~> 1.0.0'

Install from Git

If the Ruby gem is hosted at a git repository: https://github.com/GIT_USER_ID/GIT_REPO_ID, then add the following in the Gemfile:

gem 'mfk_openapi_ruby_client', :git => 'https://github.com/GIT_USER_ID/GIT_REPO_ID.git'

Include the Ruby code directly

Include the Ruby code directly using -I as follows:

ruby -Ilib script.rb

Getting Started

Please follow the installation procedure and then run the following code:

# Load the gem
require 'mfk_openapi_ruby_client'

# Setup authorization
MfkOpenapiRubyClient.configure do |config|
  # Configure API key authorization: apikey
  config.api_key['apikey'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['apikey'] = 'Bearer'
end

api_instance = MfkOpenapiRubyClient::BillingApi.new
billing_id = 'billing_id_example' # String | 対象の請求IDを指定してください。

begin
  result = api_instance.get_billing(billing_id)
  p result
rescue MfkOpenapiRubyClient::ApiError => e
  puts "Exception when calling BillingApi->get_billing: #{e}"
end

Documentation for API Endpoints

All URIs are relative to https://sandbox-api.mfkessai.co.jp/v2

ClassMethodHTTP requestDescription
MfkOpenapiRubyClient::BillingApiget_billingGET /billings/{billing_id}
MfkOpenapiRubyClient::BillingApiget_billings_listGET /billings
MfkOpenapiRubyClient::CreditFacilityApiget_credit_facilities_listGET /credit_facilities与信枠の一覧を取得します。顧客IDや取引登録期間開始日・終了日で絞り込んで取得することもできます。
MfkOpenapiRubyClient::CreditFacilityApiget_credit_facilityGET /credit_facilities/{credit_facility_id}与信枠IDを指定して対象与信枠1件を取得することができます。
MfkOpenapiRubyClient::CustomerApiassign_bank_transferPOST /customers/{customer_id}/bank_transfer対象顧客1件に振込先口座番号を未割り当ての場合、割り当てます。
MfkOpenapiRubyClient::CustomerApicreate_customerPOST /customers顧客を登録することができます。顧客には必ず一つの請求先が必要であるため同時に請求先一件も登録します。
MfkOpenapiRubyClient::CustomerApiget_customerGET /customers/{customer_id}顧客IDを指定して対象顧客1件を取得することができます。
MfkOpenapiRubyClient::CustomerApiget_customers_listGET /customers顧客の一覧を取得することができます。顧客番号や支払方法、未入金の有無で絞り込んで取得することもできます。
MfkOpenapiRubyClient::CustomerApiupdate_customerPATCH /customers/{customer_id}顧客の情報を更新することができます。
MfkOpenapiRubyClient::CustomerExaminationApicreate_customer_examinationPOST /customer_examinations顧客を指定して与信枠審査を申請することができます。最長で申請後2営業日以内に審査いたします。
自動与信枠審査をご利用の場合、こちらで増枠した金額は今後の与信枠付与に継続して利用されます。また、対象顧客のアラートは解消されます。
Sandbox環境では動作テストのため、任意の審査結果を指定することができます。審査結果の操作を参照してください。
MfkOpenapiRubyClient::CustomerExaminationApiget_customer_examinationGET /customer_examinations/{customer_examination_id}与信枠審査IDを指定して対象与信枠審査1件を取得することができます。
MfkOpenapiRubyClient::CustomerExaminationApiget_customer_examinations_listGET /customer_examinations与信枠審査の一覧を取得します。顧客IDやステータスで絞り込んで取得することもできます。
MfkOpenapiRubyClient::DestinationApicreate_destinationPOST /destinations顧客を指定して請求先を登録することができます。 <aside class="info">請求先は更新ができません。更新したい場合は新規登録をしてご利用ください。
MfkOpenapiRubyClient::DestinationApiget_destinationGET /destinations/{destination_id}請求先IDを指定して対象請求先1件を取得することができます。
MfkOpenapiRubyClient::DestinationApiget_destinations_listGET /destinations請求先の一覧を取得します。顧客IDや顧客番号で特定の顧客に紐づく請求先に絞り込んで取得することもできます。
MfkOpenapiRubyClient::PayoutApiget_payoutGET /payouts/{payout_id}
MfkOpenapiRubyClient::PayoutApiget_payouts_listGET /payouts
MfkOpenapiRubyClient::PayoutRefundApiget_payout_refunds_listGET /payout_refunds
MfkOpenapiRubyClient::PayoutTransactionApiget_payout_transactionGET /payout_transactions/{payout_transaction_id}
MfkOpenapiRubyClient::PayoutTransactionApiget_payout_transactions_listGET /payout_transactions
MfkOpenapiRubyClient::TransactionApicancel_transactionDELETE /transactions/{transaction_id}取引の状態によってはキャンセルができない場合もあります。<a target="_blank" href="https://support.mfkessai.co.jp/hc/ja/articles/900002235166-%E5%8F%96%E5%BC%95%E3%81%AE%E3%82%AD%E3%83%A3%E3%83%B3%E3%82%BB%E3%83%AB\">キャンセルについてを参照してください。
MfkOpenapiRubyClient::TransactionApicreate_transactionPOST /transactions請求先を指定して取引を登録できます。最長で申請後2営業日以内に審査いたします。
Sandbox環境では動作テストのため、任意の審査結果を指定することができます。審査結果の操作を参照してください。
MfkOpenapiRubyClient::TransactionApiget_transactionGET /transactions/{transaction_id}
MfkOpenapiRubyClient::TransactionApiget_transactions_listGET /transactions

Documentation for Models

Documentation for Authorization

apikey

  • Type: API key
  • API key parameter name: apikey
  • Location: HTTP header

FAQs

Package last updated on 18 Mar 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc