dune-api 1.0.1

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.
Files changed (62) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +35 -0
  3. data/.gitmodules +3 -0
  4. data/.rspec +2 -0
  5. data/.travis.yml +19 -0
  6. data/CHANGELOG.md +48 -0
  7. data/Gemfile +7 -0
  8. data/Gemfile.lock +601 -0
  9. data/LICENSE.txt +22 -0
  10. data/README.md +19 -0
  11. data/README.md.backup +61 -0
  12. data/Rakefile +2 -0
  13. data/apiary.apib +1769 -0
  14. data/app/constraints/dune/api/api_constraint.rb +17 -0
  15. data/app/controllers/dune/api/base_controller.rb +68 -0
  16. data/app/controllers/dune/api/v1/channels/members_controller.rb +33 -0
  17. data/app/controllers/dune/api/v1/channels_controller.rb +73 -0
  18. data/app/controllers/dune/api/v1/investments_controller.rb +70 -0
  19. data/app/controllers/dune/api/v1/press_assets_controller.rb +38 -0
  20. data/app/controllers/dune/api/v1/projects_controller.rb +76 -0
  21. data/app/controllers/dune/api/v1/rewards_controller.rb +9 -0
  22. data/app/controllers/dune/api/v1/sessions_controller.rb +27 -0
  23. data/app/controllers/dune/api/v1/tags_controller.rb +37 -0
  24. data/app/controllers/dune/api/v1/users_controller.rb +26 -0
  25. data/app/models/dune/api/access_token.rb +24 -0
  26. data/app/models/dune/api/investment.rb +14 -0
  27. data/app/models/dune/api/project.rb +23 -0
  28. data/app/models/dune/api/user_concern.rb +11 -0
  29. data/app/serializers/channel_member_serializer.rb +7 -0
  30. data/app/serializers/channel_serializer.rb +34 -0
  31. data/app/serializers/dune/api/investment_serializer.rb +44 -0
  32. data/app/serializers/dune/api/project_serializer.rb +86 -0
  33. data/app/serializers/press_asset_serializer.rb +11 -0
  34. data/app/serializers/reward_serializer.rb +13 -0
  35. data/app/serializers/tag_serializer.rb +10 -0
  36. data/app/serializers/user_serializer.rb +46 -0
  37. data/bin/rails +8 -0
  38. data/config/initializers/mime_types.rb +1 -0
  39. data/config/routes.rb +42 -0
  40. data/db/migrate/20140624141405_create_dune_api_access_tokens.rb +11 -0
  41. data/dune-api.gemspec +28 -0
  42. data/lib/dune/api.rb +12 -0
  43. data/lib/dune/api/engine.rb +11 -0
  44. data/lib/dune/api/paginated_controller.rb +19 -0
  45. data/lib/dune/api/version.rb +5 -0
  46. data/spec/constraints/neighborly/api/api_constraint_spec.rb +50 -0
  47. data/spec/controllers/neighborly/api/v1/channels/members_controller_spec.rb +82 -0
  48. data/spec/controllers/neighborly/api/v1/channels_controller_spec.rb +188 -0
  49. data/spec/controllers/neighborly/api/v1/investments_controller_spec.rb +178 -0
  50. data/spec/controllers/neighborly/api/v1/press_assets_controller_spec.rb +129 -0
  51. data/spec/controllers/neighborly/api/v1/projects_controller_spec.rb +317 -0
  52. data/spec/controllers/neighborly/api/v1/rewards_controller_spec.rb +28 -0
  53. data/spec/controllers/neighborly/api/v1/sessions_controller_spec.rb +67 -0
  54. data/spec/controllers/neighborly/api/v1/tags_controller_spec.rb +143 -0
  55. data/spec/controllers/neighborly/api/v1/users_controller_spec.rb +43 -0
  56. data/spec/factories.rb +78 -0
  57. data/spec/fixtures/image.png +0 -0
  58. data/spec/models/neighborly/api/investment_spec.rb +33 -0
  59. data/spec/models/neighborly/api/user_concern_spec.rb +33 -0
  60. data/spec/spec_helper.rb +43 -0
  61. data/spec/support/shared_examples.rb +96 -0
  62. metadata +219 -0
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 dune
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # dune-api
2
+
3
+ De l'union née l'évolution
4
+
5
+ ## PlateForme de financement participatif
6
+
7
+ Bienvenue sur Code source de dune nouvel acteur de l'économie locale française
8
+
9
+
10
+ ## Credits
11
+
12
+ Author: Pierre Legrand
13
+
14
+
15
+ ## License
16
+
17
+ Copyright (c) 2011 Softa
18
+
19
+ Licensed under the MIT license (see MIT-LICENSE file)
data/README.md.backup ADDED
@@ -0,0 +1,61 @@
1
+ # Neighborly::Api
2
+ [![Build Status](https://travis-ci.org/neighborly/neighborly-donate-api.svg?branch=master)](https://travis-ci.org/neighborly/neighborly-donate-api) [![Code Climate](https://codeclimate.com/github/neighborly/neighborly-donate-api.png)](https://codeclimate.com/github/neighborly/neighborly-donate-api)
3
+
4
+ ## What
5
+
6
+ This is the implementation of [Neighbor.ly Donate](https://github.com/neighborly/neighborly-donate)'s API.
7
+
8
+ ## How
9
+
10
+ Include this gem as dependency of your project, adding the following line in your `Gemfile`.
11
+
12
+ ```ruby
13
+ # Gemfile
14
+ gem 'neighborly-api'
15
+ ```
16
+
17
+ Neighborly::Api is a Rails Engine, integrating with your (Neighborly) Rails application with very little of effort. To turn the engine on, mount it in an appropriate route:
18
+
19
+ ```ruby
20
+ # config/routes.rb
21
+ mount Neighborly::Api::Engine => '/api/', as: :neighborly_api
22
+ ```
23
+
24
+ ## Contributing
25
+
26
+ 1. Fork it ( https://github.com/neighborly/neighborly-donate-api/fork )
27
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
28
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
29
+ 4. Push to the branch (`git push origin my-new-feature`)
30
+ 5. Create a new Pull Request
31
+
32
+ ### Running specs
33
+
34
+ We prize for our test suite and coverage, so it would be great if you could run the specs to ensure that your patch is not breaking the existing codebase.
35
+
36
+ When running specs for the first time, you'll need to download Neighborly's source code to be tested against your version of the gem. The following command will install the dummy app in `spec/dummy`.
37
+
38
+ ```
39
+ $ git submodule init
40
+ $ git submodule update
41
+ ```
42
+
43
+ And before you go, you need to initialize a database for this "dummy" app.
44
+
45
+ ```
46
+ $ cd spec/dummy/
47
+ $ ./bin/bootstrap
48
+ $ cd ../../
49
+ $ cp spec/dummy/.env.example .env
50
+ $ rm -rf spec/dummy/spec
51
+ ```
52
+
53
+ To run the specs just run:
54
+
55
+ ```
56
+ $ bundle exec rspec
57
+ ```
58
+
59
+ ## License
60
+
61
+ Licensed under the [MIT license](LICENSE.txt).
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
data/apiary.apib ADDED
@@ -0,0 +1,1769 @@
1
+ FORMAT: 1A
2
+ HOST: https://www.dune-investissement.fr/api/
3
+
4
+ # dune-investissement
5
+ Here you will find how to integrate an application with Dune. Check our [Dashboard source code](https://github.com/dune/dune-dashboard) for a real use case.
6
+
7
+ ## Allowed HTTPs requests:
8
+
9
+ - `POST` - Creates or updates a resource
10
+ - `PUT` - Updates a resource
11
+ - `GET` - Retrieves a resource or list of resources
12
+ - `DELETE` - Delete a resource
13
+
14
+
15
+ ## Typical Server Responses
16
+
17
+ - `200` OK - The request was successful (some API calls may return 201 instead).
18
+ - `201` Created - The request was successful and a resource was created.
19
+ - `204` No Content - The request was successful but there is no representation to return (that is, the response is empty).
20
+ - `400` Bad Request - The request could not be understood or was missing required parameters.
21
+ - `401` Unauthorized - Authentication failed.
22
+ - `403` Forbidden - User does not have permissions for the requested operation.
23
+ - `404` Not Found - Resource was not found.
24
+ - `405` Method Not Allowed - Requested method is not supported for the specified resource.
25
+ - `422` Unprocessable Entity - The resource may contain validation errors.
26
+ - `503` Service Unavailable - The service is temporary unavailable (e.g. scheduled Platform Maintenance). Try again later.
27
+
28
+ # Group Sessions
29
+
30
+ ## /sessions
31
+
32
+ You must be authenticated to use the API, to authenticate you will need an access token.
33
+
34
+ ### Create an access token [POST]
35
+
36
+ + Parameters
37
+
38
+ + email (required, string) ... Your dune account email address
39
+ + password (required, string) ... Your dune account password
40
+
41
+ + Request
42
+
43
+ + Header
44
+
45
+ Accept: application/vnd.api+json;revision=1
46
+
47
+ + Body
48
+
49
+ {
50
+ "email":"mr.nobody@example.com",
51
+ "password":"your-really-strong-password"
52
+ }
53
+
54
+ + Response 201 (application/json)
55
+
56
+ {
57
+ "access_token":"Ndf6kxgLfr_KMhAg8wMpm7Yit2cvHkv9oI8qIXWiHmZdeqI1h0cmn8p4wCEhoZS-AQY",
58
+ "user_id":1
59
+ }
60
+
61
+ + Response 400 (application/json)
62
+
63
+ {}
64
+
65
+ + Response 401 (application/json)
66
+
67
+ {}
68
+
69
+ ### Destroy the access token [DELETE]
70
+
71
+ + Request
72
+
73
+ + Header
74
+
75
+ Accept: application/vnd.api+json;revision=1
76
+ Authorization: Token your-token-here
77
+
78
+
79
+ + Response 200 (application/json)
80
+
81
+ {}
82
+
83
+ # Group Users
84
+
85
+ ## /users/{id}
86
+
87
+ ### Fetch user information [GET]
88
+
89
+ + Request
90
+
91
+ + Header
92
+
93
+ Accept: application/vnd.api+json;revision=1
94
+ Authorization: Token your-token-here
95
+
96
+
97
+ + Response 200 (application/json)
98
+
99
+ {
100
+ "user":{
101
+ "id":18,
102
+ "bio":null,
103
+ "created_at":"2014-07-04T12:42:41+00:00",
104
+ "email":"camila@casperwaters.name",
105
+ "facebook_url":null,
106
+ "linkedin_url":null,
107
+ "other_url":null,
108
+ "profile_type":"personal",
109
+ "twitter_url":null,
110
+ "name":"Mrs. Abigayle Gaylord",
111
+ "image_url":"http://www.dune-investissement.fr/uploads/user/uploaded_image/18/thumb_avatar_image.jpg",
112
+ "total_contributed":"70.0",
113
+ "admin":false,
114
+ "url":"http://www.dune-investissement.fr/api/users/18",
115
+ "html_url":"http://www.dune-investissement.fr/neighbors/18-mrs-abigayle-gaylord",
116
+ "manager":false
117
+ }
118
+ }
119
+
120
+
121
+ ## /users
122
+
123
+ ### List users [GET]
124
+
125
+ Requires the user to be an admin.
126
+
127
+ + Request
128
+
129
+ + Header
130
+
131
+ Accept: application/vnd.api+json;revision=1
132
+ Authorization: Token your-token-here
133
+
134
+ + Body
135
+
136
+ { "query": "foo bar" }
137
+
138
+ + Response 200 (application/json)
139
+
140
+ {
141
+ "users":[
142
+ {
143
+ "id":18,
144
+ "bio":null,
145
+ "created_at":"2014-07-04T12:42:41+00:00",
146
+ "email":"camila@casperwaters.name",
147
+ "facebook_url":null,
148
+ "linkedin_url":null,
149
+ "other_url":null,
150
+ "profile_type":"personal",
151
+ "twitter_url":null,
152
+ "name":"Mrs. Abigayle Gaylord",
153
+ "image_url":"http://www.dune-investissement.fr/uploads/user/uploaded_image/18/thumb_avatar_image.jpg",
154
+ "total_contributed":"70.0",
155
+ "admin":false,
156
+ "url":"http://www.dune-investissement.fr/api/users/18",
157
+ "html_url":"http://www.dune-investissement.fr/neighbors/18-mrs-abigayle-gaylord",
158
+ "manager":false
159
+ }
160
+ ],
161
+ "meta":{
162
+ "page":8,
163
+ "total":217,
164
+ "total_pages":9
165
+ }
166
+ }
167
+
168
+ + Response 401 (application/json)
169
+
170
+ {}
171
+
172
+ # Group Projects
173
+
174
+ ## /projects
175
+
176
+ ### List projects [GET]
177
+
178
+ + Parameters
179
+
180
+ + order_by (optional, string) ... Order by specify field with direction e.g. `goal desc`
181
+ + query (optional, string) ... Search for projects
182
+ + by_category_id (optional, object) ... Filter by category id
183
+ + between_created_at (optional, object) ... Filter by between created at e.g. `{ "between_created_at": { "starts_at": "2014-10-13", "ends_at": "2014-10-15" } }`
184
+ + between_expires_at (optional, object) ... Filter by between expires at
185
+ + between_online_date (optional, object) ... Filter by between online date
186
+ + manageable (optional, boolean) ... When false, it will return only public projects, when true, it will return only manageable projects.
187
+
188
+ + Request
189
+
190
+ + Header
191
+
192
+ Accept: application/vnd.api+json;revision=1
193
+ Authorization: Token your-token-here
194
+
195
+ + Response 200 (application/json)
196
+
197
+ {
198
+ "projects":[
199
+ {
200
+ "id":18,
201
+ "about":"Sint odit autem non eaque asperiores esse eveniet omnis. Et explicabo praesentium eos dolor ut voluptas expedita. Laborum doloremque dicta voluptas fugiat dignissimos ut fugit deleniti. Dolorem neque et ut quis nemo. Nam et voluptatem quam ea et atque. Aut et ipsum veritatis cum. Eveniet consequuntur quod non quis. Sunt corrupti illum ipsum animi. Fugit ipsam facilis ipsum nisi autem alias. A est esse sed nemo tenetur non.",
202
+ "about_html":"\u003cp\u003eSint odit autem non eaque asperiores esse eveniet omnis. Et explicabo praesentium eos dolor ut voluptas expedita. Laborum doloremque dicta voluptas fugiat dignissimos ut fugit deleniti. Dolorem neque et ut quis nemo. Nam et voluptatem quam ea et atque. Aut et ipsum veritatis cum. Eveniet consequuntur quod non quis. Sunt corrupti illum ipsum animi. Fugit ipsam facilis ipsum nisi autem alias. A est esse sed nemo tenetur non.\u003c/p\u003e\n",
203
+ "address_city":"Markbury",
204
+ "address_neighborhood":"",
205
+ "address_state":"NC",
206
+ "address_zip_code":null,
207
+ "budget":"",
208
+ "budget_html":"",
209
+ "campaign_type":"flexible",
210
+ "category_id":8,
211
+ "created_at":"2014-07-04T16:47:29+00:00",
212
+ "expires_at":"2014-08-17T04:59:59+00:00",
213
+ "featured":true,
214
+ "goal":"100000.0",
215
+ "hash_tag":"",
216
+ "headline":"Et hic laboriosam voluptatibus accusantium velit dolor.",
217
+ "hero_image":{
218
+ "hero_image":{
219
+ "url":"/uploads/dune/api/project/hero_image/18/image.jpg",
220
+ "blur":{
221
+ "url":"/uploads/dune/api/project/hero_image/18/blur_image.jpg"
222
+ }
223
+ }
224
+ },
225
+ "home_page":true,
226
+ "name":"Quam soluta.",
227
+ "online_date":"2014-07-05T01:47:25+00:00",
228
+ "online_days":43,
229
+ "organization_type":null,
230
+ "permalink":"quam-soluta",
231
+ "pledged":"170.0",
232
+ "recommended":true,
233
+ "short_url":null,
234
+ "site":"",
235
+ "state":"online",
236
+ "street_address":null,
237
+ "terms":"",
238
+ "terms_html":"",
239
+ "uploaded_image":{
240
+ "uploaded_image":{
241
+ "url":"/uploads/dune/api/project/uploaded_image/18/image.jpg",
242
+ "project_thumb":{
243
+ "url":"/uploads/dune/api/project/uploaded_image/18/project_thumb_image.jpg"
244
+ },
245
+ "project_thumb_small":{
246
+ "url":"/uploads/dune/api/project/uploaded_image/18/project_thumb_small_image.jpg"
247
+ },
248
+ "project_thumb_large":{
249
+ "url":"/uploads/dune/api/project/uploaded_image/18/project_thumb_large_image.jpg"
250
+ },
251
+ "project_thumb_facebook":{
252
+ "url":"/uploads/dune/api/project/uploaded_image/18/project_thumb_facebook_image.jpg"
253
+ }
254
+ }
255
+ },
256
+ "video_embed_url":null,
257
+ "video_thumbnail":{
258
+ "video_thumbnail":{
259
+ "url":null,
260
+ "project_thumb":{
261
+ "url":null
262
+ },
263
+ "project_thumb_small":{
264
+ "url":null
265
+ },
266
+ "project_thumb_large":{
267
+ "url":null
268
+ },
269
+ "project_thumb_facebook":{
270
+ "url":null
271
+ }
272
+ }
273
+ },
274
+ "video_url":"http://vimeo.com/79833901",
275
+ "channel_id":null,
276
+ "rights":{
277
+ "can_approve":false,
278
+ "can_launch":false,
279
+ "can_reject":false,
280
+ "can_push_to_draft":true,
281
+ "can_push_to_trash":false
282
+ },
283
+ "url":"http://localhost:3000/api/projects/18",
284
+ "html_url":"http://localhost:3000/projects/quam-soluta",
285
+ "user":{
286
+ "id":5,
287
+ "bio":null,
288
+ "created_at":"2014-07-04T16:42:01+00:00",
289
+ "email":"org@org.com",
290
+ "facebook_url":null,
291
+ "linkedin_url":null,
292
+ "other_url":null,
293
+ "profile_type":"organization",
294
+ "twitter_url":null,
295
+ "name":"Organization Name",
296
+ "image_url":"/uploads/organization/image/1/large_image.jpg",
297
+ "total_contributed":0,
298
+ "admin":true,
299
+ "url":"http://localhost:3000/api/users/5",
300
+ "html_url":"http://localhost:3000/neighbors/5-organization-name"
301
+ }
302
+ }
303
+ ],
304
+ "meta":{
305
+ "page":1,
306
+ "total":1,
307
+ "total_pages":1
308
+ }
309
+ }
310
+
311
+ + Response 401 (application/json)
312
+
313
+ {}
314
+
315
+ ## /project/{id}
316
+
317
+ ### Fetch Project informations [GET]
318
+
319
+ + Request
320
+
321
+ + Header
322
+
323
+ Accept: application/vnd.api+json;revision=1
324
+ Authorization: Token your-token-here
325
+
326
+ + Response 200 (application/json)
327
+
328
+ {
329
+ "project":{
330
+ "id":18,
331
+ "about":"Sint odit autem non eaque asperiores esse eveniet omnis. Et explicabo praesentium eos dolor ut voluptas expedita. Laborum doloremque dicta voluptas fugiat dignissimos ut fugit deleniti. Dolorem neque et ut quis nemo. Nam et voluptatem quam ea et atque. Aut et ipsum veritatis cum. Eveniet consequuntur quod non quis. Sunt corrupti illum ipsum animi. Fugit ipsam facilis ipsum nisi autem alias. A est esse sed nemo tenetur non.",
332
+ "about_html":"\u003cp\u003eSint odit autem non eaque asperiores esse eveniet omnis. Et explicabo praesentium eos dolor ut voluptas expedita. Laborum doloremque dicta voluptas fugiat dignissimos ut fugit deleniti. Dolorem neque et ut quis nemo. Nam et voluptatem quam ea et atque. Aut et ipsum veritatis cum. Eveniet consequuntur quod non quis. Sunt corrupti illum ipsum animi. Fugit ipsam facilis ipsum nisi autem alias. A est esse sed nemo tenetur non.\u003c/p\u003e\n",
333
+ "address_city":"Markbury",
334
+ "address_neighborhood":"",
335
+ "address_state":"NC",
336
+ "address_zip_code":null,
337
+ "budget":"",
338
+ "budget_html":"",
339
+ "campaign_type":"flexible",
340
+ "category_id":8,
341
+ "created_at":"2014-07-04T16:47:29+00:00",
342
+ "expires_at":"2014-08-17T04:59:59+00:00",
343
+ "featured":true,
344
+ "goal":"100000.0",
345
+ "hash_tag":"",
346
+ "headline":"Et hic laboriosam voluptatibus accusantium velit dolor.",
347
+ "hero_image":{
348
+ "hero_image":{
349
+ "url":"/uploads/dune/api/project/hero_image/18/image.jpg",
350
+ "blur":{
351
+ "url":"/uploads/dune/api/project/hero_image/18/blur_image.jpg"
352
+ }
353
+ }
354
+ },
355
+ "home_page":true,
356
+ "name":"Quam soluta.",
357
+ "online_date":"2014-07-05T01:47:25+00:00",
358
+ "online_days":43,
359
+ "organization_type":null,
360
+ "permalink":"quam-soluta",
361
+ "pledged":"170.0",
362
+ "recommended":true,
363
+ "short_url":null,
364
+ "site":"",
365
+ "state":"online",
366
+ "street_address":null,
367
+ "terms":"",
368
+ "terms_html":"",
369
+ "uploaded_image":{
370
+ "uploaded_image":{
371
+ "url":"/uploads/dune/api/project/uploaded_image/18/image.jpg",
372
+ "project_thumb":{
373
+ "url":"/uploads/dune/api/project/uploaded_image/18/project_thumb_image.jpg"
374
+ },
375
+ "project_thumb_small":{
376
+ "url":"/uploads/dune/api/project/uploaded_image/18/project_thumb_small_image.jpg"
377
+ },
378
+ "project_thumb_large":{
379
+ "url":"/uploads/dune/api/project/uploaded_image/18/project_thumb_large_image.jpg"
380
+ },
381
+ "project_thumb_facebook":{
382
+ "url":"/uploads/dune/api/project/uploaded_image/18/project_thumb_facebook_image.jpg"
383
+ }
384
+ }
385
+ },
386
+ "video_embed_url":null,
387
+ "video_thumbnail":{
388
+ "video_thumbnail":{
389
+ "url":null,
390
+ "project_thumb":{
391
+ "url":null
392
+ },
393
+ "project_thumb_small":{
394
+ "url":null
395
+ },
396
+ "project_thumb_large":{
397
+ "url":null
398
+ },
399
+ "project_thumb_facebook":{
400
+ "url":null
401
+ }
402
+ }
403
+ },
404
+ "video_url":"http://vimeo.com/79833901",
405
+ "channel_id":null,
406
+ "rights":{
407
+ "can_approve":false,
408
+ "can_launch":false,
409
+ "can_reject":false,
410
+ "can_push_to_draft":true,
411
+ "can_push_to_trash":false
412
+ },
413
+ "url":"http://localhost:3000/api/projects/18",
414
+ "html_url":"http://localhost:3000/projects/quam-soluta",
415
+ "user":{
416
+ "id":5,
417
+ "bio":null,
418
+ "created_at":"2014-07-04T16:42:01+00:00",
419
+ "email":"org@org.com",
420
+ "facebook_url":null,
421
+ "linkedin_url":null,
422
+ "other_url":null,
423
+ "profile_type":"organization",
424
+ "twitter_url":null,
425
+ "name":"Organization Name",
426
+ "image_url":"/uploads/organization/image/1/large_image.jpg",
427
+ "total_contributed":0,
428
+ "admin":true,
429
+ "url":"http://localhost:3000/api/users/5",
430
+ "html_url":"http://localhost:3000/neighbors/5-organization-name"
431
+ }
432
+ }
433
+ }
434
+
435
+
436
+ + Response 401 (application/json)
437
+
438
+ {}
439
+
440
+ ### Update a project [PUT]
441
+
442
+ Some atributes may not be saved, it will depends from the user access rights.
443
+
444
+ + Request
445
+
446
+ + Header
447
+
448
+ Accept: application/vnd.api+json;revision=1
449
+ Authorization: Token your-token-here
450
+
451
+ + Body
452
+
453
+ {
454
+ "project":{
455
+ "name":"Foo Bar Project Updated"
456
+ }
457
+ }
458
+
459
+ + Response 204 (application/json)
460
+
461
+ + Response 400 (application/json)
462
+
463
+ {}
464
+
465
+ + Response 401 (application/json)
466
+
467
+ {}
468
+
469
+ + Response 422 (application/json)
470
+
471
+ {
472
+ "errors":{
473
+ "name":[
474
+ "can't be blank"
475
+ ]
476
+ }
477
+ }
478
+
479
+ + Response 403 (application/json)
480
+
481
+ ### Push project to trash [DELETE]
482
+
483
+ + Request
484
+
485
+ + Header
486
+
487
+ Accept: application/vnd.api+json;revision=1
488
+ Authorization: Token your-token-here
489
+
490
+
491
+ + Response 204 (application/json)
492
+
493
+ + Response 400 (application/json)
494
+
495
+ {}
496
+
497
+ + Response 401 (application/json)
498
+
499
+ {}
500
+
501
+ + Response 403 (application/json)
502
+
503
+ ## /project/{id}/approve
504
+
505
+ ### Approve a Project [PUT]
506
+
507
+ + Request
508
+
509
+ + Header
510
+
511
+ Accept: application/vnd.api+json;revision=1
512
+ Authorization: Token your-token-here
513
+
514
+
515
+ + Response 204 (application/json)
516
+
517
+ + Response 400 (application/json)
518
+
519
+ {}
520
+
521
+ + Response 401 (application/json)
522
+
523
+ {}
524
+
525
+ + Response 403 (application/json)
526
+
527
+ ## /project/{id}/launch
528
+
529
+ ### Launch a Project [PUT]
530
+
531
+ + Request
532
+
533
+ + Header
534
+
535
+ Accept: application/vnd.api+json;revision=1
536
+ Authorization: Token your-token-here
537
+
538
+
539
+ + Response 204 (application/json)
540
+
541
+ + Response 400 (application/json)
542
+
543
+ {}
544
+
545
+ + Response 401 (application/json)
546
+
547
+ {}
548
+
549
+ + Response 403 (application/json)
550
+
551
+ ## /project/{id}/reject
552
+
553
+ ### Reject a Project [PUT]
554
+
555
+ + Request
556
+
557
+ + Header
558
+
559
+ Accept: application/vnd.api+json;revision=1
560
+ Authorization: Token your-token-here
561
+
562
+
563
+ + Response 204 (application/json)
564
+
565
+ + Response 400 (application/json)
566
+
567
+ {}
568
+
569
+ + Response 401 (application/json)
570
+
571
+ {}
572
+
573
+ + Response 403 (application/json)
574
+
575
+ ## /project/{id}/push_to_draft
576
+
577
+ ### Push a Project to Draft [PUT]
578
+
579
+ + Request
580
+
581
+ + Header
582
+
583
+ Accept: application/vnd.api+json;revision=1
584
+ Authorization: Token your-token-here
585
+
586
+
587
+ + Response 204 (application/json)
588
+
589
+ + Response 400 (application/json)
590
+
591
+ {}
592
+
593
+ + Response 401 (application/json)
594
+
595
+ {}
596
+
597
+ + Response 403 (application/json)
598
+
599
+
600
+ # Group Investments
601
+
602
+ ## /investments
603
+
604
+ ### List investments [GET]
605
+
606
+ Requires the user to be an admin.
607
+
608
+ + Parameters
609
+
610
+ + query (optional, string) ... Search for investments
611
+ + between_values (optional, object) ... Filter between values
612
+ + project_id (optional, string) ... Filter by project id
613
+
614
+ + Request
615
+
616
+ + Header
617
+
618
+ Accept: application/vnd.api+json;revision=1
619
+ Authorization: Token your-token-here
620
+
621
+ + Request
622
+
623
+ + Header
624
+
625
+ Accept: application/vnd.api+json;revision=1
626
+ Authorization: Token your-token-here
627
+
628
+ + Body
629
+
630
+ {
631
+ "between_values":{
632
+ "initial":"500.00",
633
+ "final":"1000.00"
634
+ }
635
+ }
636
+
637
+
638
+ + Response 200 (application/json)
639
+
640
+ {
641
+ "investments":[
642
+ {
643
+ "id":1714,
644
+ "project_id":62,
645
+ "user_id":1,
646
+ "reward_id":226,
647
+ "value":"25.0",
648
+ "confirmed_at":null,
649
+ "created_at":"2014-01-14T16:32:36.324-06:00",
650
+ "anonymous":false,
651
+ "key":"e624ea64c2a7fc85e15b70cdf9e83fc9",
652
+ "credits":false,
653
+ "payment_method":null,
654
+ "payment_token":null,
655
+ "payment_id":null,
656
+ "address_street":null,
657
+ "address_number":null,
658
+ "address_complement":null,
659
+ "address_neighborhood":null,
660
+ "address_zip_code":null,
661
+ "address_city":null,
662
+ "address_state":null,
663
+ "address_phone_number":null,
664
+ "payment_choice":null,
665
+ "payment_service_fee":"0.0",
666
+ "state":"deleted",
667
+ "short_note":"",
668
+ "payment_service_fee_paid_by_user":false,
669
+ "matching_id":null,
670
+ "rights":{
671
+ "can_pendent":true,
672
+ "can_wait_confirmation":false,
673
+ "can_confirm":true,
674
+ "can_cancel":true,
675
+ "can_request_refund":false,
676
+ "can_refund":false,
677
+ "can_push_to_trash":true
678
+ }
679
+ }
680
+ ],
681
+ "meta":{
682
+ "page":1,
683
+ "total":1,
684
+ "total_pages":1
685
+ }
686
+ }
687
+
688
+ + Response 401 (application/json)
689
+
690
+ {}
691
+
692
+ ## /investment/{id}/confirm
693
+
694
+ ### Manually Confirm a Contibution [PUT]
695
+
696
+ Requires the user to be an admin.
697
+
698
+ + Request
699
+
700
+ + Header
701
+
702
+ Accept: application/vnd.api+json;revision=1
703
+ Authorization: Token your-token-here
704
+
705
+
706
+ + Response 204 (application/json)
707
+
708
+ + Response 400 (application/json)
709
+
710
+ {}
711
+
712
+ + Response 401 (application/json)
713
+
714
+ {}
715
+
716
+ ## /investment/{id}/pendent
717
+
718
+ ### Set a Contibution as Pending [PUT]
719
+
720
+ Requires the user to be an admin.
721
+
722
+ + Request
723
+
724
+ + Header
725
+
726
+ Accept: application/vnd.api+json;revision=1
727
+ Authorization: Token your-token-here
728
+
729
+
730
+ + Response 204 (application/json)
731
+
732
+ + Response 400 (application/json)
733
+
734
+ {}
735
+
736
+ + Response 401 (application/json)
737
+
738
+ {}
739
+
740
+ ## /investment/{id}/refund
741
+
742
+ ### Refund an Investment [PUT]
743
+
744
+ Requires the user to be an admin.
745
+
746
+ + Request
747
+
748
+ + Header
749
+
750
+ Accept: application/vnd.api+json;revision=1
751
+ Authorization: Token your-token-here
752
+
753
+
754
+ + Response 204 (application/json)
755
+
756
+ + Response 400 (application/json)
757
+
758
+ {}
759
+
760
+ + Response 401 (application/json)
761
+
762
+ {}
763
+
764
+ ## /investment/{id}/hide
765
+
766
+ ### Hide an Investment [PUT]
767
+
768
+ Requires the user to be an admin.
769
+
770
+ It will change the investment state to `refunded_and_canceled`.
771
+
772
+ + Request
773
+
774
+ + Header
775
+
776
+ Accept: application/vnd.api+json;revision=1
777
+ Authorization: Token your-token-here
778
+
779
+
780
+ + Response 204 (application/json)
781
+
782
+ + Response 400 (application/json)
783
+
784
+ {}
785
+
786
+ + Response 401 (application/json)
787
+
788
+ {}
789
+
790
+ ## /investment/{id}/cancel
791
+
792
+ ### Cancel an Investment[PUT]
793
+
794
+ Requires the user to be an admin.
795
+
796
+ + Request
797
+
798
+ + Header
799
+
800
+ Accept: application/vnd.api+json;revision=1
801
+ Authorization: Token your-token-here
802
+
803
+
804
+ + Response 204 (application/json)
805
+
806
+ + Response 400 (application/json)
807
+
808
+ {}
809
+
810
+ + Response 401 (application/json)
811
+
812
+
813
+ ## /investments/{id}
814
+
815
+ ### Update an Investment [PUT]
816
+
817
+ Requires the user to be an admin.
818
+
819
+ + Request
820
+
821
+ + Header
822
+
823
+ Accept: application/vnd.api+json;revision=1
824
+ Authorization: Token your-token-here
825
+
826
+ + Body
827
+
828
+ {
829
+ "investment":{
830
+ "value":"10.0"
831
+ }
832
+ }
833
+
834
+ + Response 204 (application/json)
835
+
836
+ + Response 400 (application/json)
837
+
838
+ {}
839
+
840
+ + Response 401 (application/json)
841
+
842
+ {}
843
+
844
+ + Response 422 (application/json)
845
+
846
+ {
847
+ "errors":{
848
+ "value":[
849
+ "can't be blank"
850
+ ]
851
+ }
852
+ }
853
+
854
+
855
+ ### Fetch Investment information [GET]
856
+
857
+ Requires the user to be an admin.
858
+
859
+ + Request
860
+
861
+ + Header
862
+
863
+ Accept: application/vnd.api+json;revision=1
864
+ Authorization: Token your-token-here
865
+
866
+
867
+ + Response 200 (application/json)
868
+
869
+ {
870
+ "investment": {
871
+ "id":1714,
872
+ "project_id":62,
873
+ "user_id":1,
874
+ "reward_id":226,
875
+ "value":"25.0",
876
+ "confirmed_at":null,
877
+ "created_at":"2014-01-14T16:32:36.324-06:00",
878
+ "anonymous":false,
879
+ "key":"e624ea64c2a7fc85e15b70cdf9e83fc9",
880
+ "credits":false,
881
+ "payment_method":null,
882
+ "payment_token":null,
883
+ "payment_id":null,
884
+ "address_street":null,
885
+ "address_number":null,
886
+ "address_complement":null,
887
+ "address_neighborhood":null,
888
+ "address_zip_code":null,
889
+ "address_city":null,
890
+ "address_state":null,
891
+ "address_phone_number":null,
892
+ "payment_choice":null,
893
+ "payment_service_fee":"0.0",
894
+ "state":"deleted",
895
+ "short_note":"",
896
+ "payment_service_fee_paid_by_user":false,
897
+ "matching_id":null,
898
+ "rights":{
899
+ "can_pendent":true,
900
+ "can_wait_confirmation":false,
901
+ "can_confirm":true,
902
+ "can_cancel":true,
903
+ "can_request_refund":false,
904
+ "can_refund":false,
905
+ "can_push_to_trash":true
906
+ }
907
+ }
908
+ }
909
+
910
+ ### Destroy an Investment [DELETE]
911
+
912
+ Requires the user to be an admin.
913
+
914
+ + Request
915
+
916
+ + Header
917
+
918
+ Accept: application/vnd.api+json;revision=1
919
+ Authorization: Token your-token-here
920
+
921
+
922
+ + Response 204 (application/json)
923
+
924
+ + Response 400 (application/json)
925
+
926
+ {}
927
+
928
+ + Response 401 (application/json)
929
+
930
+ # Group Tags
931
+
932
+ ## /tags
933
+
934
+ ### List tags [GET]
935
+
936
+ + Parameters
937
+
938
+ + popular (optional, boolean) ... Filter by popular tags
939
+
940
+ + Request
941
+
942
+ + Header
943
+
944
+ Accept: application/vnd.api+json;revision=1
945
+ Authorization: Token your-token-here
946
+
947
+
948
+ + Response 200 (application/json)
949
+
950
+ {
951
+ "tags":[
952
+ {
953
+ "id":3,
954
+ "name":"bike",
955
+ "total_projects":4,
956
+ "visible":true
957
+ }
958
+ ],
959
+ "meta":{
960
+ "page":1,
961
+ "total":1,
962
+ "total_pages":1
963
+ }
964
+ }
965
+
966
+
967
+ + Response 401 (application/json)
968
+
969
+ {}
970
+
971
+ ### Create a tag [POST]
972
+
973
+ Requires the user to be an admin.
974
+
975
+ + Request
976
+
977
+ + Header
978
+
979
+ Accept: application/vnd.api+json;revision=1
980
+ Authorization: Token your-token-here
981
+
982
+ + Body
983
+
984
+ {
985
+ "tag":{
986
+ "name":"foobar",
987
+ "visible":true
988
+ }
989
+ }
990
+
991
+ + Response 201 (application/json)
992
+
993
+ {
994
+ "tag":{
995
+ "id":3,
996
+ "name":"bike",
997
+ "total_projects":4,
998
+ "visible":true
999
+ }
1000
+ }
1001
+
1002
+ + Response 400 (application/json)
1003
+
1004
+ {}
1005
+
1006
+ + Response 401 (application/json)
1007
+
1008
+ {}
1009
+
1010
+ + Response 422 (application/json)
1011
+
1012
+ {
1013
+ "errors":{
1014
+ "name":[
1015
+ "has already been taken"
1016
+ ]
1017
+ }
1018
+ }
1019
+
1020
+ ## /tags/{id}
1021
+
1022
+ ### Update a tag [PUT]
1023
+
1024
+ Requires the user to be an admin.
1025
+
1026
+ + Request
1027
+
1028
+ + Header
1029
+
1030
+ Accept: application/vnd.api+json;revision=1
1031
+ Authorization: Token your-token-here
1032
+
1033
+ + Body
1034
+
1035
+ {
1036
+ "tag":{
1037
+ "name":"foobar-updated",
1038
+ "visible":true
1039
+ }
1040
+ }
1041
+
1042
+
1043
+ + Response 204 (application/json)
1044
+
1045
+ + Response 400 (application/json)
1046
+
1047
+ {}
1048
+
1049
+ + Response 401 (application/json)
1050
+
1051
+ {}
1052
+
1053
+ + Response 422 (application/json)
1054
+
1055
+ {
1056
+ "errors":{
1057
+ "name":[
1058
+ "has already been taken"
1059
+ ]
1060
+ }
1061
+ }
1062
+
1063
+ ### Fetch tag information [GET]
1064
+
1065
+ + Request
1066
+
1067
+ + Header
1068
+
1069
+ Accept: application/vnd.api+json;revision=1
1070
+ Authorization: Token your-token-here
1071
+
1072
+
1073
+ + Response 200 (application/json)
1074
+
1075
+ {
1076
+ "tag":{
1077
+ "id":3,
1078
+ "name":"bike",
1079
+ "total_projects":4,
1080
+ "visible":true
1081
+ }
1082
+ }
1083
+
1084
+
1085
+ ### Destroy a tag [DELETE]
1086
+
1087
+ Requires the user to be an admin.
1088
+
1089
+ + Request
1090
+
1091
+ + Header
1092
+
1093
+ Accept: application/vnd.api+json;revision=1
1094
+ Authorization: Token your-token-here
1095
+
1096
+
1097
+ + Response 204 (application/json)
1098
+
1099
+ + Response 400 (application/json)
1100
+
1101
+ {}
1102
+
1103
+ + Response 401 (application/json)
1104
+
1105
+ {}
1106
+
1107
+ # Group Channels
1108
+
1109
+ ## /channels
1110
+
1111
+ ### List Channels [GET]
1112
+
1113
+
1114
+ + Parameters
1115
+
1116
+ + query (optional, string) ... Search query
1117
+
1118
+ + Request
1119
+
1120
+ + Header
1121
+
1122
+ Accept: application/vnd.api+json;revision=1
1123
+ Authorization: Token your-token-here
1124
+
1125
+ + Body
1126
+
1127
+ { "query": "Lorem" }
1128
+
1129
+ + Response 200 (application/json)
1130
+
1131
+ {
1132
+ "channels":[
1133
+ {
1134
+ "id":52,
1135
+ "name":"Test",
1136
+ "description":"Lorem Ipsum",
1137
+ "permalink":"3-test-page",
1138
+ "created_at":"2014-07-15T06:35:03.389-05:00",
1139
+ "updated_at":"2014-07-15T06:35:03.389-05:00",
1140
+ "image":{
1141
+ "image":{
1142
+ "url":null,
1143
+ "thumb":{
1144
+ "url":null
1145
+ },
1146
+ "large":{
1147
+ "url":null
1148
+ },
1149
+ "x_large":{
1150
+ "url":null
1151
+ }
1152
+ }
1153
+ },
1154
+ "video_embed_url":null,
1155
+ "video_url":null,
1156
+ "how_it_works":null,
1157
+ "how_it_works_html":null,
1158
+ "terms_url":"http://test.host/terms",
1159
+ "state":"draft",
1160
+ "user_id":3432,
1161
+ "accepts_projects":true,
1162
+ "submit_your_project_text":null,
1163
+ "submit_your_project_text_html":null,
1164
+ "start_content":null,
1165
+ "start_hero_image":{
1166
+ "start_hero_image":{
1167
+ "url":null,
1168
+ "blur":{
1169
+ "url":null
1170
+ }
1171
+ }
1172
+ },
1173
+ "success_content":null,
1174
+ "url":"http://www.dune-investissement.fr/api/channels/52",
1175
+ "html_url":"http://3-test-page.www.dune-investissement.fr/",
1176
+ }],
1177
+ "meta":{
1178
+ "page":1,
1179
+ "total":1,
1180
+ "total_pages":1
1181
+ }
1182
+ }
1183
+
1184
+
1185
+ + Response 401 (application/json)
1186
+
1187
+ {}
1188
+
1189
+ ### Create a Channel [POST]
1190
+
1191
+ Requires the user to be an admin.
1192
+
1193
+ + Request
1194
+
1195
+ + Header
1196
+
1197
+ Accept: application/vnd.api+json;revision=1
1198
+ Authorization: Token your-token-here
1199
+
1200
+ + Body
1201
+
1202
+ {
1203
+ "channel":{
1204
+ "name":"Test",
1205
+ "description":"Lorem Ipsum",
1206
+ "permalink":"3-test-page",
1207
+ "image":null,
1208
+ "video_url":null,
1209
+ "how_it_works":null,
1210
+ "terms_url":"http://test.host/terms",
1211
+ "state":"draft",
1212
+ "user_id":3432,
1213
+ "accepts_projects":true,
1214
+ "submit_your_project_text":null,
1215
+ "start_content":{},
1216
+ "start_hero_image":null,
1217
+ "success_content":{},
1218
+ "user_attributes": {
1219
+ "email": "foo@bar.com"
1220
+ }
1221
+ }
1222
+ }
1223
+
1224
+ + Response 201 (application/json)
1225
+
1226
+ {
1227
+ "channel":{
1228
+ "id":52,
1229
+ "name":"Test",
1230
+ "user_id": 2,
1231
+ "description":"Lorem Ipsum",
1232
+ "permalink":"3-test-page",
1233
+ "created_at":"2014-07-15T06:35:03.389-05:00",
1234
+ "updated_at":"2014-07-15T06:35:03.389-05:00",
1235
+ "image":{
1236
+ "image":{
1237
+ "url":null,
1238
+ "thumb":{
1239
+ "url":null
1240
+ },
1241
+ "large":{
1242
+ "url":null
1243
+ },
1244
+ "x_large":{
1245
+ "url":null
1246
+ }
1247
+ }
1248
+ },
1249
+ "video_embed_url":null,
1250
+ "video_url":null,
1251
+ "how_it_works":null,
1252
+ "how_it_works_html":null,
1253
+ "terms_url":"http://test.host/terms",
1254
+ "state":"draft",
1255
+ "user_id":3432,
1256
+ "accepts_projects":true,
1257
+ "submit_your_project_text":null,
1258
+ "submit_your_project_text_html":null,
1259
+ "start_content":null,
1260
+ "start_hero_image":{
1261
+ "start_hero_image":{
1262
+ "url":null,
1263
+ "blur":{
1264
+ "url":null
1265
+ }
1266
+ }
1267
+ },
1268
+ "success_content":null,
1269
+ "url":"http://www.dune-investissement.fr/api/channels/52",
1270
+ "html_url":"http://3-test-page.www.dune-investissement.fr/",
1271
+ }
1272
+ }
1273
+
1274
+ + Response 400 (application/json)
1275
+
1276
+ {}
1277
+
1278
+ + Response 401 (application/json)
1279
+
1280
+ {}
1281
+
1282
+ + Response 422 (application/json)
1283
+
1284
+ {
1285
+ "errors":{
1286
+ "title":[
1287
+ "can't be blank"
1288
+ ]
1289
+ }
1290
+ }
1291
+
1292
+ ## /channels/{id}
1293
+
1294
+ ### Fetch a channel information [GET]
1295
+
1296
+ + Request
1297
+
1298
+ + Header
1299
+
1300
+ Accept: application/vnd.api+json;revision=1
1301
+ Authorization: Token your-token-here
1302
+
1303
+
1304
+ + Response 200 (application/json)
1305
+
1306
+ {
1307
+ "channel":{
1308
+ "id":52,
1309
+ "name":"Test",
1310
+ "description":"Lorem Ipsum",
1311
+ "permalink":"3-test-page",
1312
+ "created_at":"2014-07-15T06:35:03.389-05:00",
1313
+ "updated_at":"2014-07-15T06:35:03.389-05:00",
1314
+ "image":{
1315
+ "image":{
1316
+ "url":null,
1317
+ "thumb":{
1318
+ "url":null
1319
+ },
1320
+ "large":{
1321
+ "url":null
1322
+ },
1323
+ "x_large":{
1324
+ "url":null
1325
+ }
1326
+ }
1327
+ },
1328
+ "video_embed_url":null,
1329
+ "video_url":null,
1330
+ "how_it_works":null,
1331
+ "how_it_works_html":null,
1332
+ "terms_url":"http://test.host/terms",
1333
+ "state":"draft",
1334
+ "user_id":3432,
1335
+ "accepts_projects":true,
1336
+ "submit_your_project_text":null,
1337
+ "submit_your_project_text_html":null,
1338
+ "start_content":null,
1339
+ "start_hero_image":{
1340
+ "start_hero_image":{
1341
+ "url":null,
1342
+ "blur":{
1343
+ "url":null
1344
+ }
1345
+ }
1346
+ },
1347
+ "success_content":null
1348
+ }
1349
+ }
1350
+
1351
+ # Group Channel Members
1352
+
1353
+ ## /channels/{channel_id}/members
1354
+
1355
+ ## List Channel Members [GET]
1356
+
1357
+ Requires the user to be an admin.
1358
+
1359
+ + Request
1360
+
1361
+ + Header
1362
+
1363
+ Accept: application/vnd.api+json;revision=1
1364
+ Authorization: Token your-token-here
1365
+
1366
+
1367
+ + Response 200 (application/json)
1368
+
1369
+ {
1370
+ "users":[
1371
+ {
1372
+ "id":18,
1373
+ "bio":null,
1374
+ "created_at":"2014-07-04T12:42:41+00:00",
1375
+ "email":"camila@casperwaters.name",
1376
+ "facebook_url":null,
1377
+ "linkedin_url":null,
1378
+ "other_url":null,
1379
+ "profile_type":"personal",
1380
+ "twitter_url":null,
1381
+ "name":"Mrs. Abigayle Gaylord",
1382
+ "image_url":"http://www.dune-investissement.fr/uploads/user/uploaded_image/18/thumb_avatar_image.jpg",
1383
+ "total_contributed":"70.0",
1384
+ "admin":false,
1385
+ "url":"http://www.dune-investissement.fr/api/users/18",
1386
+ "html_url":"http://www.dune-investissement.fr/neighbors/18-mrs-abigayle-gaylord"
1387
+ }
1388
+ ]
1389
+ }
1390
+
1391
+
1392
+ + Response 401 (application/json)
1393
+
1394
+ {}
1395
+
1396
+
1397
+
1398
+ ### Add a user as member of a Channel [POST]
1399
+
1400
+ Requires the user to be an admin.
1401
+
1402
+ + Request
1403
+
1404
+ + Header
1405
+
1406
+ Accept: application/vnd.api+json;revision=1
1407
+ Authorization: Token your-token-here
1408
+
1409
+ + Body
1410
+
1411
+ {
1412
+ "channel_member":{
1413
+ "user_id":1
1414
+ }
1415
+ }
1416
+
1417
+ + Response 201 (application/json)
1418
+
1419
+
1420
+ {
1421
+ "user":{
1422
+ "id":18,
1423
+ "bio":null,
1424
+ "created_at":"2014-07-04T12:42:41+00:00",
1425
+ "email":"camila@casperwaters.name",
1426
+ "facebook_url":null,
1427
+ "linkedin_url":null,
1428
+ "other_url":null,
1429
+ "profile_type":"personal",
1430
+ "twitter_url":null,
1431
+ "name":"Mrs. Abigayle Gaylord",
1432
+ "image_url":"http://www.dune-investissement.fr/uploads/user/uploaded_image/18/thumb_avatar_image.jpg",
1433
+ "total_contributed":"70.0",
1434
+ "admin":false,
1435
+ "url":"http://www.dune-investissement.fr/api/users/18",
1436
+ "html_url":"http://www.dune-investissement.fr/neighbors/18-mrs-abigayle-gaylord"
1437
+ }
1438
+ }
1439
+
1440
+ + Response 400 (application/json)
1441
+
1442
+ {}
1443
+
1444
+ + Response 401 (application/json)
1445
+
1446
+ {}
1447
+
1448
+ + Response 422 (application/json)
1449
+
1450
+ {
1451
+ "errors":{
1452
+ "user_id":[
1453
+ "can't be blank"
1454
+ ]
1455
+ }
1456
+ }
1457
+
1458
+
1459
+ ## /channels/{channel_id}/members/{user_id}
1460
+
1461
+ ### Remove a user from the list of Channel Members [DELETE]
1462
+
1463
+ Requires the user to be an admin.
1464
+
1465
+ + Request
1466
+
1467
+ + Header
1468
+
1469
+ Accept: application/vnd.api+json;revision=1
1470
+ Authorization: Token your-token-here
1471
+
1472
+
1473
+ + Response 204 (application/json)
1474
+
1475
+ + Response 400 (application/json)
1476
+
1477
+ {}
1478
+
1479
+ + Response 401 (application/json)
1480
+
1481
+ {}
1482
+
1483
+
1484
+ ### Update a Channel [PUT]
1485
+
1486
+ Requires the user to be an admin.
1487
+
1488
+ + Request
1489
+
1490
+ + Header
1491
+
1492
+ Accept: application/vnd.api+json;revision=1
1493
+ Authorization: Token your-token-here
1494
+
1495
+ + Body
1496
+
1497
+ {
1498
+ "channel":{
1499
+ "name":"Test",
1500
+ "description":"Lorem Ipsum",
1501
+ "permalink":"3-test-page",
1502
+ "image":null,
1503
+ "video_url":null,
1504
+ "how_it_works":null,
1505
+ "terms_url":"http://test.host/terms",
1506
+ "state":"draft",
1507
+ "user_id":3432,
1508
+ "accepts_projects":true,
1509
+ "submit_your_project_text":null,
1510
+ "start_content":{},
1511
+ "start_hero_image":null,
1512
+ "success_content":{},
1513
+ "user_attributes": {
1514
+ "email": "foo@bar.com"
1515
+ }
1516
+ }
1517
+ }
1518
+
1519
+
1520
+
1521
+ + Response 204 (application/json)
1522
+
1523
+ + Response 400 (application/json)
1524
+
1525
+ {}
1526
+
1527
+ + Response 401 (application/json)
1528
+
1529
+ {}
1530
+
1531
+ + Response 422 (application/json)
1532
+
1533
+ {
1534
+ "errors":{
1535
+ "title":[
1536
+ "can't be blank"
1537
+ ]
1538
+ }
1539
+ }
1540
+
1541
+
1542
+ ### Destroy a Channel [DELETE]
1543
+
1544
+ Requires the user to be an admin.
1545
+
1546
+ + Request
1547
+
1548
+ + Header
1549
+
1550
+ Accept: application/vnd.api+json;revision=1
1551
+ Authorization: Token your-token-here
1552
+
1553
+
1554
+ + Response 204 (application/json)
1555
+
1556
+ + Response 400 (application/json)
1557
+
1558
+ {}
1559
+
1560
+ + Response 401 (application/json)
1561
+
1562
+ {}
1563
+
1564
+
1565
+ # Group Press Assets
1566
+
1567
+ ## /press_assets
1568
+
1569
+ ### List Press Assets [GET]
1570
+
1571
+
1572
+ + Request
1573
+
1574
+ + Header
1575
+
1576
+ Accept: application/vnd.api+json;revision=1
1577
+ Authorization: Token your-token-here
1578
+
1579
+
1580
+ + Response 200 (application/json)
1581
+
1582
+ {
1583
+ "press_assets":[
1584
+ {
1585
+ "id":6,
1586
+ "title":"Foo Bar",
1587
+ "image_url":"/uploads/press_asset/image/6/foo-bar.png",
1588
+ "url":"http://foo.bar",
1589
+ "created_at":"2013-09-10T21:57:41.250-05:00"
1590
+ }],
1591
+ "meta":{
1592
+ "page":1,
1593
+ "total":1,
1594
+ "total_pages":1
1595
+ }
1596
+ }
1597
+
1598
+
1599
+ + Response 401 (application/json)
1600
+
1601
+ {}
1602
+
1603
+ ### Create a Press Asset [POST]
1604
+
1605
+ Requires the user to be an admin.
1606
+
1607
+ + Request
1608
+
1609
+ + Header
1610
+
1611
+ Accept: application/vnd.api+json;revision=1
1612
+ Authorization: Token your-token-here
1613
+
1614
+ + Body
1615
+ {
1616
+ "press_asset":{
1617
+ "title":"Foo Bar",
1618
+ "image":"Image object",
1619
+ "url": "http://foo.bar"
1620
+ }
1621
+ }
1622
+
1623
+ + Response 201 (application/json)
1624
+
1625
+ {
1626
+ "press_asset":{
1627
+ "id":6,
1628
+ "title":"Foo Bar",
1629
+ "image_url":"/uploads/press_asset/image/6/foo-bar.png",
1630
+ "url":"http://foo.bar",
1631
+ "created_at":"2013-09-10T21:57:41.250-05:00"
1632
+ }
1633
+ }
1634
+
1635
+ + Response 400 (application/json)
1636
+
1637
+ {}
1638
+
1639
+ + Response 401 (application/json)
1640
+
1641
+ {}
1642
+
1643
+ + Response 422 (application/json)
1644
+
1645
+ {
1646
+ "errors":{
1647
+ "image":[
1648
+ "can't be blank"
1649
+ ]
1650
+ }
1651
+ }
1652
+
1653
+ ## /press_assets/{id}
1654
+
1655
+ ### Update a Press Asset [PUT]
1656
+
1657
+ Requires the user to be an admin.
1658
+
1659
+ + Request
1660
+
1661
+ + Header
1662
+
1663
+ Accept: application/vnd.api+json;revision=1
1664
+ Authorization: Token your-token-here
1665
+
1666
+ + Body
1667
+
1668
+ {
1669
+ "press_asset":{
1670
+ "title":"Foo Bar Update"
1671
+ }
1672
+ }
1673
+
1674
+
1675
+ + Response 204 (application/json)
1676
+
1677
+ + Response 400 (application/json)
1678
+
1679
+ {}
1680
+
1681
+ + Response 401 (application/json)
1682
+
1683
+ {}
1684
+
1685
+ + Response 422 (application/json)
1686
+
1687
+ {
1688
+ "errors":{
1689
+ "title":[
1690
+ "can't be blank"
1691
+ ]
1692
+ }
1693
+ }
1694
+
1695
+ ### Fetch press asset information [GET]
1696
+
1697
+ + Request
1698
+
1699
+ + Header
1700
+
1701
+ Accept: application/vnd.api+json;revision=1
1702
+ Authorization: Token your-token-here
1703
+
1704
+
1705
+ + Response 200 (application/json)
1706
+
1707
+ {
1708
+ "press_asset":{
1709
+ "id":6,
1710
+ "title":"Foo Bar",
1711
+ "image_url":"/uploads/press_asset/image/6/foo-bar.png",
1712
+ "url":"http://foo.bar",
1713
+ "created_at":"2013-09-10T21:57:41.250-05:00"
1714
+ }
1715
+ }
1716
+
1717
+ ### Destroy a Press Asset [DELETE]
1718
+
1719
+ Requires the user to be an admin.
1720
+
1721
+ + Request
1722
+
1723
+ + Header
1724
+
1725
+ Accept: application/vnd.api+json;revision=1
1726
+ Authorization: Token your-token-here
1727
+
1728
+
1729
+ + Response 204 (application/json)
1730
+
1731
+ + Response 400 (application/json)
1732
+
1733
+ {}
1734
+
1735
+ + Response 401 (application/json)
1736
+
1737
+ {}
1738
+
1739
+ # Group Rewards
1740
+
1741
+ ## /rewards/{id}
1742
+ ### Fetch a reward information [GET]
1743
+
1744
+ + Request
1745
+
1746
+ + Header
1747
+
1748
+ Accept: application/vnd.api+json;revision=1
1749
+ Authorization: Token your-token-here
1750
+
1751
+
1752
+ + Response 200 (application/json)
1753
+
1754
+ {
1755
+ "reward":{
1756
+ "id":277,
1757
+ "project_id":75,
1758
+ "minimum_value":"1000.0",
1759
+ "maximum_investments":null,
1760
+ "description":"Foo Bar Lorem",
1761
+ "created_at":"2014-01-09T02:36:38.297-06:00",
1762
+ "updated_at":"2014-01-10T18:44:53.686-06:00",
1763
+ "row_order":2,
1764
+ "days_to_delivery":20,
1765
+ "soon":false,
1766
+ "title":"Foo Bar"
1767
+ }
1768
+ }
1769
+