bloom_remit2 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c9fe3102c89ee58605e86339d9a9b4f642b475ffb6efa9e6dfdf4ee6480506de
4
+ data.tar.gz: 7103274c649289b34227eabedd51437675f2afed4695988573b19df98c16034c
5
+ SHA512:
6
+ metadata.gz: 9899e21a046843bb50059265f37d2ac9a606b87dc96122419d5c77b551bb0f0e9645368029a19cd5bdd3a5dca46f807d5c6ba609e7479c32233f576228ebc30a
7
+ data.tar.gz: 06dbce27bfa38b8e5eb919ca9342899d4e79f08bb39d2de3736a6311edd2b9d1eb4dedbc5b7ecad0b5567c6f621633ec4e2a8e4876c57368580b64f899bb4f86
@@ -0,0 +1,49 @@
1
+ version: 2
2
+ jobs:
3
+ build:
4
+ docker:
5
+ - image: circleci/ruby:2.7.1
6
+ working_directory: ~/repo
7
+ steps:
8
+ - checkout
9
+
10
+ # Download and cache dependencies
11
+ - restore_cache:
12
+ keys:
13
+ - v1-dependencies-{{ checksum "Gemfile.lock" }}
14
+ # fallback to using the latest cache if no exact match is found
15
+ - v1-dependencies-
16
+
17
+ - run:
18
+ name: install dependencies and setup test environment
19
+ command: |
20
+ cp spec/config.yml.sample spec/config.yml && \
21
+ gem install bundler -v 2.1.4 && \
22
+ bundle install --jobs=4 --retry=3 --path vendor/bundle
23
+
24
+ - save_cache:
25
+ paths:
26
+ - ./vendor/bundle
27
+ key: v1-dependencies-{{ checksum "Gemfile.lock" }}
28
+
29
+ # run tests!
30
+ - run:
31
+ name: run tests
32
+ command: |
33
+ mkdir /tmp/test-results
34
+ TEST_FILES="$(circleci tests glob "spec/**/*_spec.rb" | \
35
+ circleci tests split --split-by=timings)"
36
+
37
+ bundle exec rspec \
38
+ --format progress \
39
+ --format RspecJunitFormatter \
40
+ --out /tmp/test-results/rspec.xml \
41
+ --format progress \
42
+ $TEST_FILES
43
+
44
+ # collect reports
45
+ - store_test_results:
46
+ path: /tmp/test-results
47
+ - store_artifacts:
48
+ path: /tmp/test-results
49
+ destination: test-results
@@ -0,0 +1,30 @@
1
+ name: Ruby Gem
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - rubygems
7
+
8
+ jobs:
9
+ build:
10
+ name: Build + Publish
11
+ runs-on: ubuntu-latest
12
+
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - name: Set up Ruby 2.7.1
16
+ uses: actions/setup-ruby@v1
17
+ with:
18
+ ruby-version: 2.7.x
19
+ ref: rubygems
20
+
21
+ - name: Publish to RubyGems
22
+ run: |
23
+ mkdir -p $HOME/.gem
24
+ touch $HOME/.gem/credentials
25
+ chmod 0600 $HOME/.gem/credentials
26
+ printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
27
+ gem build *.gemspec
28
+ gem push *.gem
29
+ env:
30
+ GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_AUTH_TOKEN}}
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /spec/config.yml
9
+ /tmp/
10
+
11
+ # rspec failure tracking
12
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,6 @@
1
+ ---
2
+ language: ruby
3
+ cache: bundler
4
+ rvm:
5
+ - 2.7.1
6
+ before_install: gem install bundler -v 2.1.4
@@ -0,0 +1,10 @@
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
+ and this project adheres to [Semantic
6
+ Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+ ### Added
10
+ - Initial release
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at xlablaza@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [https://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: https://contributor-covenant.org
74
+ [version]: https://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in bloom_remit2.gemspec
4
+ gemspec
@@ -0,0 +1,89 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ bloom_remit2 (0.1.0)
5
+ activesupport
6
+ gem_config
7
+ httparty
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ activesupport (6.0.3.3)
13
+ concurrent-ruby (~> 1.0, >= 1.0.2)
14
+ i18n (>= 0.7, < 2)
15
+ minitest (~> 5.1)
16
+ tzinfo (~> 1.1)
17
+ zeitwerk (~> 2.2, >= 2.2.2)
18
+ addressable (2.7.0)
19
+ public_suffix (>= 2.0.2, < 5.0)
20
+ byebug (11.1.3)
21
+ coderay (1.1.3)
22
+ concurrent-ruby (1.1.7)
23
+ crack (0.4.3)
24
+ safe_yaml (~> 1.0.0)
25
+ diff-lcs (1.4.4)
26
+ gem_config (0.3.2)
27
+ hashdiff (1.0.1)
28
+ httparty (0.18.1)
29
+ mime-types (~> 3.0)
30
+ multi_xml (>= 0.5.2)
31
+ i18n (1.8.5)
32
+ concurrent-ruby (~> 1.0)
33
+ method_source (1.0.0)
34
+ mime-types (3.3.1)
35
+ mime-types-data (~> 3.2015)
36
+ mime-types-data (3.2020.0512)
37
+ minitest (5.14.2)
38
+ multi_xml (0.6.0)
39
+ prettier (0.20.1)
40
+ pry (0.13.1)
41
+ coderay (~> 1.1)
42
+ method_source (~> 1.0)
43
+ pry-byebug (3.9.0)
44
+ byebug (~> 11.0)
45
+ pry (~> 0.13.0)
46
+ public_suffix (4.0.6)
47
+ rake (13.0.1)
48
+ rspec (3.9.0)
49
+ rspec-core (~> 3.9.0)
50
+ rspec-expectations (~> 3.9.0)
51
+ rspec-mocks (~> 3.9.0)
52
+ rspec-core (3.9.2)
53
+ rspec-support (~> 3.9.3)
54
+ rspec-expectations (3.9.2)
55
+ diff-lcs (>= 1.2.0, < 2.0)
56
+ rspec-support (~> 3.9.0)
57
+ rspec-mocks (3.9.1)
58
+ diff-lcs (>= 1.2.0, < 2.0)
59
+ rspec-support (~> 3.9.0)
60
+ rspec-support (3.9.3)
61
+ rspec_junit_formatter (0.4.1)
62
+ rspec-core (>= 2, < 4, != 2.12.0)
63
+ safe_yaml (1.0.5)
64
+ thread_safe (0.3.6)
65
+ tzinfo (1.2.7)
66
+ thread_safe (~> 0.1)
67
+ vcr (6.0.0)
68
+ webmock (3.8.3)
69
+ addressable (>= 2.3.6)
70
+ crack (>= 0.3.2)
71
+ hashdiff (>= 0.4.0, < 2.0.0)
72
+ zeitwerk (2.4.0)
73
+
74
+ PLATFORMS
75
+ ruby
76
+
77
+ DEPENDENCIES
78
+ bloom_remit2!
79
+ bundler (~> 2.0)
80
+ prettier
81
+ pry-byebug
82
+ rake (~> 13.0)
83
+ rspec (~> 3.0)
84
+ rspec_junit_formatter
85
+ vcr
86
+ webmock
87
+
88
+ BUNDLED WITH
89
+ 2.1.4
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 Xavier Luis Ablaza
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,403 @@
1
+ # BloomRemit Ruby Library
2
+ [![CircleCI](https://circleci.com/gh/makisu/bloom_remit2.svg?style=svg)](https://circleci.com/gh/makisu/bloom_remit2)
3
+
4
+ Ruby wrapper for BloomRemit's API
5
+
6
+ ## Installation
7
+
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem 'bloom_remit2'
12
+ ```
13
+
14
+ And then execute:
15
+
16
+ ```ruby
17
+ bundle install
18
+ ```
19
+
20
+ Or install it yourself as:
21
+
22
+ ```ruby
23
+ gem install bloom_remit2
24
+ ```
25
+
26
+ ## Usage
27
+
28
+ In an initializer:
29
+
30
+ ```ruby
31
+ BloomRemit2.configure do |c|
32
+ c.api_token = 'BLOOM-REMIT-API-TOKEN'
33
+ c.api_secret_key = 'BLOOM-REMIT-API-SECRET-KEY'
34
+ end
35
+ ```
36
+
37
+ ## Partners
38
+
39
+ ### Shows partner details
40
+ ```ruby
41
+ # GET /api/v1/partners/:api_token
42
+
43
+ BloomRemit2::Partner.retrieve
44
+ ```
45
+
46
+ ## Agents
47
+
48
+ ### Show a list of agents belonging to this partner
49
+ ```ruby
50
+ # GET /api/v1/partners/:api_token/agents
51
+ # Return a list of agents created by this partner, sorted by newest first.
52
+
53
+ BloomRemit2::Agent.list
54
+ ```
55
+
56
+ ### Show an agent belonging to this partner
57
+ ```ruby
58
+ # GET /api/v1/partners/:api_token/:agents/:id
59
+
60
+ BloomRemit2::Agent.retrieve('xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx')
61
+ ```
62
+
63
+ ### Create a new agent under this partner
64
+ ```ruby
65
+ # POST /api/v1/partners/:api_token/agents
66
+
67
+ BloomRemit2::Agent.create('Seoul Branch')
68
+ ```
69
+
70
+ ### Update the attributes of an agent belonging to this partner
71
+ **TODO: Needs to be implemented; update doesn't work at the moment**
72
+ ```ruby
73
+ # PUT /api/v1/partners/:api_token/agents/:id
74
+
75
+ agent_id = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx',
76
+ BloomRemit2::Agent.update(
77
+ agent_id,
78
+ name: 'Incheon Branch'
79
+ )
80
+ ```
81
+
82
+ ### Delete an agent belonging to this partner
83
+ ```ruby
84
+ # DELETE /api/v1/partners/:api_token/agents/:id
85
+
86
+ agent_id = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
87
+ BloomRemit2::Agent.delete(agent_id)
88
+ ```
89
+
90
+ ## Credits
91
+
92
+ ### Retrieve a credit address
93
+ **TODO: Needs to be implemented; this returns a 500 Internal Server Error**
94
+ ```ruby
95
+ # GET /api/v1/partners/:api_token/credits
96
+
97
+ BloomRemit2::Credit.list
98
+ ```
99
+
100
+ ### Show a list of credit transactions
101
+ ```ruby
102
+ # GET /api/v1/partners/:api_token/credits/history
103
+
104
+ BloomRemit2::Credit.history
105
+ ```
106
+
107
+ ## Rates
108
+
109
+ ### Returns a real-time hash of currency exchange rates. Updates every minute
110
+ ```ruby
111
+ # GET /api/v1/rates
112
+
113
+ BloomRemit2::Rate.list
114
+ => fetches all the rates
115
+
116
+ BloomRemit2::Rate.retrieve('USDPHP')
117
+ => fetches one rate
118
+ ```
119
+
120
+ The rate returned is defined as:
121
+ - The rate that Bloom purchases the base currency (USD) for the counter currency (PHP)
122
+ - The rate that a BloomRemit partner can sell the base currency (USD) for the
123
+ counter currency (PHP)
124
+ - The amount of PHP (counter currency) that a BloomRemit partner receives from Bloom by exchanging 1 USD (base currency)
125
+
126
+ ## Recipients
127
+
128
+ ### Create a new recipient for a sender belonging to this partner
129
+ ```ruby
130
+ # POST /api/v1/partners/:api_token/recipients
131
+
132
+ BloomRemit2::Recipient.create(
133
+ sender_id,
134
+ {
135
+ first_name: 'Luis',
136
+ last_name: 'Buenaventura',
137
+ email: 'luis@bloom.solutions',
138
+ mobile: '639171234567',
139
+ address: '251 Salcedo St., Legaspi Village',
140
+ city: 'Makati City',
141
+ province: 'Metro Manila',
142
+ country: 'PH'
143
+ }
144
+ )
145
+ ```
146
+
147
+ ### List all recipients for a user belonging to this partner
148
+ ```ruby
149
+ # GET /api/v1/partners/:api_token/senders/:sender_id/recipients
150
+
151
+ sender_id = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
152
+ BloomRemit2::Recipient.list(sender_id)
153
+ ```
154
+
155
+ ### Show details about a recipient of a given user, and their associated remittance
156
+ IDs
157
+ ```ruby
158
+ # GET /api/v1/partners/:api_token/senders/:sender_id/recipients/:id
159
+
160
+ sender_id = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
161
+ recipient_id = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
162
+ BloomRemit2::Recipient.retrieve(sender_id, recipient_id)
163
+ ```
164
+
165
+ ### Update the attributes of a recipient of a user belonging to this partner
166
+ ```ruby
167
+ # PUT /api/v1/partners/:api_token/senders/:sender_id/recipients/:id
168
+
169
+ sender_id = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
170
+ recipient_id = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
171
+ BloomRemit2::Recipient.update(
172
+ sender_id,
173
+ recipient_id,
174
+ {
175
+ first_name: 'Luis',
176
+ last_name: 'Buenaventura',
177
+ email: 'luis@bloom.solutions',
178
+ mobile: '639171234567',
179
+ address: '251 Salcedo St., Legaspi Village',
180
+ city: 'Makati City',
181
+ province: 'Metro Manila',
182
+ country: 'PH'
183
+ }
184
+ )
185
+ ```
186
+
187
+ ### Delete recipient record of a user belonging to this partner safely
188
+ ```ruby
189
+ # DELETE /api/v1/partners/:api_token/senders/:sender_id/recipients/:id
190
+
191
+ sender_id = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
192
+ recipient_id = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
193
+ BloomRemit2::Recipient.delete(sender_id, recipient_id)
194
+ ```
195
+
196
+ ## Remittances
197
+
198
+ ### Show all remittances belonging to the given user
199
+ ```ruby
200
+ # GET /api/v1/partners/:api_token/senders/:sender_id/remittances
201
+
202
+ sender_id = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
203
+ BloomRemit2::Remittance.list(sender_id)
204
+ ```
205
+
206
+ ### Initiate a new money transfer by providing a recipient_id and a remittance hash
207
+ **TODO: Need to add tests**
208
+ ```ruby
209
+ # POST /api/v1/partners/:api_token/senders/:sender_id/remittances
210
+
211
+ sender_id = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
212
+ recipient_id = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
213
+ BloomRemit2::Remittance.execute(
214
+ sender_id,
215
+ {
216
+ recipient_id: 1,
217
+ remittance: {
218
+ account_name: 'Luis Buenaventura',
219
+ account_number: '1234567890',
220
+ dest_currency: 'PHP',
221
+ flat_fee_in_orig_currency: 0,
222
+ forex_margin: 0,
223
+ orig_currency: 'PHP',
224
+ paid_in_orig_currency: 0,
225
+ payout_method: 'BPI',
226
+ receivable_in_dest_currency: 25000
227
+ }
228
+ }
229
+ )
230
+ => remittance hash, not a BloomRemit2::Remittance
231
+ ```
232
+
233
+ ### Show information about a given recipient along with their associated remittance
234
+ ```ruby
235
+ # GET /api/v1/partners/:api_token/senders/:sender_id/remittances/:id
236
+
237
+ sender_id = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
238
+ remittance_id = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
239
+ BloomRemit2::Remittance.retrieve(sender_id, remittance_id)
240
+ ```
241
+
242
+ ### Cancel a remittance
243
+ **TODO: Need to add tests**
244
+
245
+ Note that this change the status of the remittance to
246
+ 'cancelled' and refunds the partner credits used, but does not delete it from
247
+ the database
248
+ ```ruby
249
+ # DELETE /api/v1/partners/:api_token/senders/:sender_id/remittances/:id
250
+
251
+ sender_id = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
252
+ remittance_id = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
253
+ BloomRemit2::Remittance.cancel(sender_id, remittance_id)
254
+ => remittance_hash, not a BloomRemit2::Remittance
255
+ ```
256
+
257
+ ### Returns the total fees for a remittance amount and payout method
258
+ **TODO: Needs to be implemented; this returns a 500 Internal Server error**
259
+
260
+ In order to calculate the cost of a given remittance, you will need to provide
261
+ an amount, a currency, and a payout_method. You may provide either the
262
+ origin_amount (the money paid by the sender), or the destination_amount (the
263
+ money received by the beneficiary), and the calculator will compute the fees
264
+ automatically.
265
+
266
+ If you provide the origin_amount, the calculator will give you the amount
267
+ receivable at the destination of the remittance. If you provide the
268
+ destination_amount, the calculator will give you the amount that must be paid by
269
+ the sender at the point of origin.
270
+ ```ruby
271
+ # POST /api/v1/partners/:api_token/remittances/calculate
272
+
273
+ BloomRemit2::Remittance.calculate(
274
+ origin_amount: 15000,
275
+ origin_currency: 'PHP',
276
+ payout_method: 'BPI'
277
+ )
278
+
279
+ BloomRemit2::Remittance.calculate(
280
+ destination_amount: 10000,
281
+ destination_currency: 'PHP',
282
+ payout_method: 'BPI'
283
+ )
284
+
285
+ BloomRemit2::Remittance.calculate(
286
+ origin_amount: 125000,
287
+ payout_method: 'BPI'
288
+ )
289
+ ```
290
+
291
+ ## Sender uploads
292
+
293
+ **TODO: Needs to be implemented**
294
+
295
+ ## Senders
296
+
297
+ ### Show a list of senders belonging to this partner
298
+
299
+ Returns a list of senders created by this partner, sorted by newest first
300
+ ```ruby
301
+ # GET /api/v1/partners/:api_token/senders
302
+
303
+ BloomRemit2::Sender.list
304
+ ```
305
+
306
+ ### Show a sender belonging to this partner
307
+ ```ruby
308
+ # GET /api/v1/partners/:api_token/senders/:id
309
+
310
+ sender_id = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
311
+ BloomRemit2::Sender.retrieve(sender_id)
312
+ ```
313
+
314
+ ### Show a sender belonging to this partner by supplying their email address
315
+ ```ruby
316
+ # GET /api/v1/partners/:api_token/senders/find_by_email
317
+
318
+ BloomRemit2::Sender.find_by_email('helloluis@me.com')
319
+ ```
320
+
321
+ ### Show a sender belonging to this partner by supplying their mobile
322
+ **TODO: Needs to be implemented**
323
+ ```ruby
324
+ # GET /api/v1/partners/:api_token/senders/find_by_mobile
325
+
326
+ BloomRemit2::Sender.find_by_mobile('639171234567')
327
+ ```
328
+
329
+ ### Create a new sender under this partner
330
+ ```ruby
331
+ # POST /api/v1/partners/:api_token/senders
332
+
333
+ BloomRemit2::Sender.create({
334
+ agent_id: '12345-54321',
335
+ sender: {
336
+ first_name: "Luis",
337
+ last_name: "Buenaventura",
338
+ email: "luis@www.bloomremit.net",
339
+ mobile: "+639175551111",
340
+ address: "251 Salcedo St., Legaspi Village",
341
+ city: "Makati City",
342
+ country: "PH"
343
+ }
344
+ })
345
+ ```
346
+
347
+ ### Update the attributes of a sender belonging to this partner
348
+ ```ruby
349
+ # PUT /api/v1/partners/:api_token/senders/:id
350
+
351
+ BloomRemit2::Sender.update(
352
+ sender_id,
353
+ {
354
+ first_name: 'Luis',
355
+ last_name: 'Buenaventura',
356
+ mobile: "+639175551111",
357
+ address: "251 Salcedo St., Legaspi Village",
358
+ city: "Makati City",
359
+ country: "PH",
360
+ postal_code: "1600",
361
+ identification: {
362
+ url: "http://aws.amazon.com/bucket/image.jpg"
363
+ }
364
+ }
365
+ )
366
+ ```
367
+
368
+ ### Delete a sender belonging to this partner
369
+ ```ruby
370
+ # DELETE /api/v1/partners/:api_token/senders/:id
371
+
372
+ sender_id = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
373
+ BloomRemit2::Sender.delete(sender_id)
374
+ ```
375
+
376
+ ## Static
377
+
378
+ ### Lists remittance strategies
379
+ **TODO: Needs to be implemented**
380
+ ```ruby
381
+ # GET /api/v1/strategies
382
+
383
+ BloomRemit2::RemittanceStrategy.list
384
+ ```
385
+
386
+ ## Development
387
+
388
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
389
+
390
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
391
+
392
+ ## Contributing
393
+
394
+ Bug reports and pull requests are welcome on GitHub at https://github.com/makisu/bloom_remit2. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/makisu/bloom_remit2/blob/master/CODE_OF_CONDUCT.md).
395
+
396
+
397
+ ## License
398
+
399
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
400
+
401
+ ## Code of Conduct
402
+
403
+ Everyone interacting in the BloomRemit2 project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/makisu/bloom_remit2/blob/master/CODE_OF_CONDUCT.md).