-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsubscription.html.erb
executable file
·269 lines (111 loc) · 4.51 KB
/
subscription.html.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
<a href="/api">« Back to index</a>
<div style="padding:30px; padding-top:0px;border-bottom:1px solid #ddd;">
<h2><span style='color:#ff6600; width:200px;margin-right:20px;'>GET</span>/subscriptions</h2>
<strong>Access:</strong> <br />
<strong>Return:</strong>
a list of
<a href="#json" onclick="$('jsonrep').show();">JSON</a>
<a href="#xml" onclick="$('xmlrep').show();">XML</a>
-
Qrrents
<br />
<strong>Parameters:</strong>
<ul>
</ul>
<p><strong>Description:</strong> Returns all subscriptions for the current user
</p>
</div>
<div style="padding:30px; padding-top:0px;border-bottom:1px solid #ddd;">
<h2><span style='color:#ff6600; width:200px;margin-right:20px;'>GET</span>/subscriptions/:id</h2>
<strong>Access:</strong> <br />
<strong>Return:</strong>
<a href="#json" onclick="$('jsonrep').show();">JSON</a>
<a href="#xml" onclick="$('xmlrep').show();">XML</a>
-
The subscription object
<br />
<strong>Parameters:</strong>
<ul>
<li>id:integer - Required. ID of the subscription object</li>
</ul>
<p><strong>Description:</strong> integer | id (URL Param, required)
</p>
</div>
<div style="padding:30px; padding-top:0px;border-bottom:1px solid #ddd;">
<h2><span style='color:#ff6600; width:200px;margin-right:20px;'>GET</span>/subscriptions/new</h2>
<strong>Access:</strong> <br />
<strong>Return:</strong>
<a href="#json" onclick="$('jsonrep').show();">JSON</a>
<a href="#xml" onclick="$('xmlrep').show();">XML</a>
-
an empty subscription
<br />
<strong>Parameters:</strong>
<ul>
</ul>
<p><strong>Description:</strong> Returns a new, empty subscription object
</p>
</div>
<div style="padding:30px; padding-top:0px;border-bottom:1px solid #ddd;">
<h2><span style='color:#ff6600; width:200px;margin-right:20px;'>POST</span>/subscriptions</h2>
<strong>Access:</strong> <br />
<strong>Return:</strong>
<a href="#json" onclick="$('jsonrep').show();">JSON</a>
<a href="#xml" onclick="$('xmlrep').show();">XML</a>
-
Newly created subscription object
<br />
<strong>Parameters:</strong>
<ul>
<li>subscription:hash - The hash of subscription attributes to create</li>
</ul>
<p><strong>Description:</strong> Creates a subscription association in the system between a user and a qrrent
</p>
</div>
<div style="padding:30px; padding-top:0px;border-bottom:1px solid #ddd;">
<h2><span style='color:#ff6600; width:200px;margin-right:20px;'>DELETE</span>/subscriptions/:id</h2>
<strong>Access:</strong> <br />
<strong>Return:</strong>
<a href="#json" onclick="$('jsonrep').show();">JSON</a>
<a href="#xml" onclick="$('xmlrep').show();">XML</a>
-
OK
<br />
<strong>Parameters:</strong>
<ul>
<li>id:integer - Required. ID of the subscription to delete</li>
</ul>
<p><strong>Description:</strong> Deletes a subscription from the system based on a unique id
</p>
</div>
<div style="padding:30px; padding-top:0px;border-bottom:1px solid #ddd;">
<h2><span style='color:#ff6600; width:200px;margin-right:20px;'>PUT</span>/subscriptions/:id</h2>
<strong>Access:</strong> <br />
<strong>Return:</strong>
<a href="#json" onclick="$('jsonrep').show();">JSON</a>
<a href="#xml" onclick="$('xmlrep').show();">XML</a>
-
OK
<br />
<strong>Parameters:</strong>
<ul>
<li>id:integer - Required. Unique id of the subscription to update</li><li>subscription:hash - Subscription object to use for the update</li>
</ul>
<p><strong>Description:</strong> </p>
</div>
<div style="padding:30px; padding-top:0px;border-bottom:1px solid #ddd;">
<h2><span style='color:#ff6600; width:200px;margin-right:20px;'>GET</span>/subscriptions/latest_assets</h2>
<strong>Access:</strong> <br />
<strong>Return:</strong>
a list of
<a href="#json" onclick="$('jsonrep').show();">JSON</a>
<a href="#xml" onclick="$('xmlrep').show();">XML</a>
-
<br />
<strong>Parameters:</strong>
<ul>
</ul>
<p><strong>Description:</strong> Returns an array of asset objects that represent the latest asset in each subscription for the current user
</p>
</div>
<%= render :partial => "sidebar" %>