nordigen_ob_client 0.0.4 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/nordigen_ob_client.rb +3 -3
  3. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 31402b13055928acda8e67cb92102f5c7537905bd3003efc7ca33519e0b1ff83
4
- data.tar.gz: 3f8468216d6cb6947ae0f6730a380e41de7717b007cb64dc8706321e9dd87222
3
+ metadata.gz: 94d94165cde4bccbdbbca4e5d4bdee7a88e41d5a587000da6b6e4d0aea7c17e7
4
+ data.tar.gz: 6ab467b375b1d9019f03c591cb3d61db03e1c2c5b2d48f28487044c0cc5dc98c
5
5
  SHA512:
6
- metadata.gz: 8e2c1c19962e6a4d911106ff67b57db74b01ee7852a6934e7d33181c2602d31aad7072d016fe0beedbdd5e364e2acfa0d6ef424317f8f1ee4bb493dc3d4f46d9
7
- data.tar.gz: 8b9e0564a28ac0be990f2823439ecd5c96a8cd32b71f74bed545ae90ff67f03074a41a6e3c82fff09759132e3ea912ec939bc95e39b32710fefa7b0f2a366d7c
6
+ metadata.gz: f6e4383dac5e48d438235799be533ee4f6de52ea487517d0038bfc5e96cc3820a1125afa831aec0f2ffd49c8c3895314f50a59ec46ccca3d9648e1c0afa0f93b
7
+ data.tar.gz: 6882773a0245d92ae08682a90884bb81730762dfd54e521e5ed5b07119c697686fca7541c466116e5d941bec2119b4f7b414e26aba196858e45fdb2e7657e16b
@@ -107,7 +107,7 @@ class NordigenOBClient
107
107
  # - Owner Name
108
108
  # - Product / account type (e.g. Savings, holding, etc.)
109
109
  # - BIC
110
- # - Usage: Private / Bureau
110
+ # - Usage: Private / Business
111
111
  #
112
112
  #############################################################################
113
113
  def get_account_details account_id
@@ -141,7 +141,7 @@ class NordigenOBClient
141
141
  #############################################################################
142
142
  def get_account_balances account_id
143
143
  response = RestClient.get(
144
- "https://ob.nordigen.com/api/v2/accounts/#{account_id}/balances",
144
+ "https://ob.nordigen.com/api/v2/accounts/#{account_id}/balances/",
145
145
  headers=@request_header)
146
146
  accounts = JSON.parse(response.body)
147
147
  accounts
@@ -250,7 +250,7 @@ class NordigenOBClient
250
250
  #############################################################################
251
251
  def delete_requisition requisition_id
252
252
  response = RestClient.delete(
253
- "https://ob.nordigen.com/api/v2/requisitions/#{requisition_id}",
253
+ "https://ob.nordigen.com/api/v2/requisitions/#{requisition_id}/",
254
254
  headers=@request_header)
255
255
  JSON.parse(response.body)
256
256
  response
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nordigen_ob_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Angelos Kapsimanis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-16 00:00:00.000000000 Z
11
+ date: 2022-12-25 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A Ruby client for Nordigen's Open Banking v2.0 API. Look at https://nordigen.com/en/account_information_documenation/api-documention/overview/
14
14
  for more details.