locomotivecms_coal 1.6.0.rc1 → 1.6.0.rc2
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.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.travis.yml +1 -1
- data/Gemfile +0 -4
- data/Gemfile.lock +7 -8
- data/MIT-LICENSE +1 -1
- data/README.md +18 -3
- data/lib/locomotive/coal/client.rb +8 -0
- data/lib/locomotive/coal/resources/accounts.rb +33 -0
- data/lib/locomotive/coal/resources/concerns/request.rb +19 -1
- data/lib/locomotive/coal/version.rb +1 -1
- data/lib/locomotive/coal.rb +1 -0
- data/locomotivecms_coal.gemspec +1 -1
- data/spec/fixtures/coal_cassettes/accounts.yml +214 -0
- data/spec/fixtures/coal_cassettes/client.yml +277 -163
- data/spec/fixtures/coal_cassettes/content_assets.yml +144 -445
- data/spec/fixtures/coal_cassettes/content_entries.yml +963 -1647
- data/spec/fixtures/coal_cassettes/content_types.yml +387 -209
- data/spec/fixtures/coal_cassettes/current_site.yml +89 -49
- data/spec/fixtures/coal_cassettes/memberships.yml +143 -77
- data/spec/fixtures/coal_cassettes/my_account.yml +163 -99
- data/spec/fixtures/coal_cassettes/pages.yml +177 -99
- data/spec/fixtures/coal_cassettes/sections.yml +121 -78
- data/spec/fixtures/coal_cassettes/sites.yml +108 -141
- data/spec/fixtures/coal_cassettes/snippets.yml +140 -76
- data/spec/fixtures/coal_cassettes/theme_assets.yml +142 -254
- data/spec/fixtures/coal_cassettes/token.yml +64 -43
- data/spec/fixtures/coal_cassettes/translations.yml +140 -76
- data/spec/fixtures/coal_cassettes/version.yml +54 -30
- data/spec/integration/resources/accounts_spec.rb +38 -0
- data/spec/integration/resources/sections_spec.rb +1 -1
- data/spec/integration/resources/token_spec.rb +1 -1
- metadata +10 -6
@@ -1,1125 +1,5 @@
|
|
1
1
|
---
|
2
2
|
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: post
|
5
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types.json
|
6
|
-
body:
|
7
|
-
encoding: UTF-8
|
8
|
-
string: auth_token=E2aoXzMxkFsLnCcmCcc_&content_type%5Bfields%5D%5B0%5D%5Blabel%5D=Title&content_type%5Bfields%5D%5B0%5D%5Blocalized%5D=true&content_type%5Bfields%5D%5B0%5D%5Bname%5D=title&content_type%5Bfields%5D%5B0%5D%5Btype%5D=string&content_type%5Bname%5D=Article&content_type%5Bslug%5D=articles
|
9
|
-
headers:
|
10
|
-
Accept:
|
11
|
-
- application/json
|
12
|
-
X-Locomotive-Account-Email:
|
13
|
-
- admin@locomotivecms.com
|
14
|
-
X-Locomotive-Account-Token:
|
15
|
-
- E2aoXzMxkFsLnCcmCcc_
|
16
|
-
Content-Type:
|
17
|
-
- application/x-www-form-urlencoded
|
18
|
-
Accept-Encoding:
|
19
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
20
|
-
User-Agent:
|
21
|
-
- Ruby
|
22
|
-
response:
|
23
|
-
status:
|
24
|
-
code: 201
|
25
|
-
message: Created
|
26
|
-
headers:
|
27
|
-
Content-Type:
|
28
|
-
- application/json
|
29
|
-
Etag:
|
30
|
-
- W/"966ab8030e51f35aa22226d2ac99cd46"
|
31
|
-
Cache-Control:
|
32
|
-
- max-age=0, private, must-revalidate
|
33
|
-
X-Request-Id:
|
34
|
-
- 820560a5-8563-4ce9-8131-939a4d72fb1c
|
35
|
-
X-Runtime:
|
36
|
-
- '0.121990'
|
37
|
-
Content-Length:
|
38
|
-
- '643'
|
39
|
-
body:
|
40
|
-
encoding: UTF-8
|
41
|
-
string: '{"_id":"5650f0a287f6436cbc000004","created_at":"2015-11-21T22:30:58Z","updated_at":"2015-11-21T22:30:58Z","name":"Article","slug":"articles","description":null,"label_field_name":"title","order_direction":"asc","public_submission_enabled":false,"public_submission_accounts":[],"public_submission_title_template":null,"entry_template":null,"display_settings":null,"fields":[{"_id":"5650f0a287f6436cbc000005","created_at":null,"updated_at":null,"name":"title","type":"string","label":"Title","hint":null,"required":true,"localized":true,"unique":false,"position":0}],"order_by":"created_at","group_by":null,"public_submission_account_emails":[]}'
|
42
|
-
http_version:
|
43
|
-
recorded_at: Sat, 21 Nov 2015 22:30:58 GMT
|
44
|
-
- request:
|
45
|
-
method: post
|
46
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json
|
47
|
-
body:
|
48
|
-
encoding: UTF-8
|
49
|
-
string: auth_token=E2aoXzMxkFsLnCcmCcc_&content_entry%5Btitle%5D=Hello+world
|
50
|
-
headers:
|
51
|
-
Accept:
|
52
|
-
- application/json
|
53
|
-
X-Locomotive-Account-Email:
|
54
|
-
- admin@locomotivecms.com
|
55
|
-
X-Locomotive-Account-Token:
|
56
|
-
- E2aoXzMxkFsLnCcmCcc_
|
57
|
-
Content-Type:
|
58
|
-
- application/x-www-form-urlencoded
|
59
|
-
Accept-Encoding:
|
60
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
61
|
-
User-Agent:
|
62
|
-
- Ruby
|
63
|
-
response:
|
64
|
-
status:
|
65
|
-
code: 201
|
66
|
-
message: Created
|
67
|
-
headers:
|
68
|
-
Content-Type:
|
69
|
-
- application/json
|
70
|
-
Etag:
|
71
|
-
- W/"d31f710b4100495c197fa8e6aaca64b7"
|
72
|
-
Cache-Control:
|
73
|
-
- max-age=0, private, must-revalidate
|
74
|
-
X-Request-Id:
|
75
|
-
- 7eef1cfb-40b2-46bb-aea6-cc87b2b5c7f8
|
76
|
-
X-Runtime:
|
77
|
-
- '0.072165'
|
78
|
-
Content-Length:
|
79
|
-
- '296'
|
80
|
-
body:
|
81
|
-
encoding: UTF-8
|
82
|
-
string: '{"_id":"5650f0a287f6436cbc000007","created_at":"2015-11-21T22:30:58Z","updated_at":"2015-11-21T22:30:58Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
83
|
-
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
84
|
-
world"}'
|
85
|
-
http_version:
|
86
|
-
recorded_at: Sat, 21 Nov 2015 22:30:58 GMT
|
87
|
-
- request:
|
88
|
-
method: post
|
89
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json
|
90
|
-
body:
|
91
|
-
encoding: UTF-8
|
92
|
-
string: auth_token=E2aoXzMxkFsLnCcmCcc_&content_entry%5Btitle%5D=Lorem+ipsum
|
93
|
-
headers:
|
94
|
-
Accept:
|
95
|
-
- application/json
|
96
|
-
X-Locomotive-Account-Email:
|
97
|
-
- admin@locomotivecms.com
|
98
|
-
X-Locomotive-Account-Token:
|
99
|
-
- E2aoXzMxkFsLnCcmCcc_
|
100
|
-
Content-Type:
|
101
|
-
- application/x-www-form-urlencoded
|
102
|
-
Accept-Encoding:
|
103
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
104
|
-
User-Agent:
|
105
|
-
- Ruby
|
106
|
-
response:
|
107
|
-
status:
|
108
|
-
code: 201
|
109
|
-
message: Created
|
110
|
-
headers:
|
111
|
-
Content-Type:
|
112
|
-
- application/json
|
113
|
-
Etag:
|
114
|
-
- W/"b2a8ac34fe4812114710c413b5a03ca0"
|
115
|
-
Cache-Control:
|
116
|
-
- max-age=0, private, must-revalidate
|
117
|
-
X-Request-Id:
|
118
|
-
- c5b48cd2-21b3-4fe9-a5c5-1d81a87be8a9
|
119
|
-
X-Runtime:
|
120
|
-
- '0.049557'
|
121
|
-
Content-Length:
|
122
|
-
- '296'
|
123
|
-
body:
|
124
|
-
encoding: UTF-8
|
125
|
-
string: '{"_id":"5650f0a287f6436cbc00000a","created_at":"2015-11-21T22:30:58Z","updated_at":"2015-11-21T22:30:58Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
126
|
-
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
127
|
-
ipsum"}'
|
128
|
-
http_version:
|
129
|
-
recorded_at: Sat, 21 Nov 2015 22:30:59 GMT
|
130
|
-
- request:
|
131
|
-
method: get
|
132
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json?auth_token=E2aoXzMxkFsLnCcmCcc_&where=%7B%7D
|
133
|
-
body:
|
134
|
-
encoding: US-ASCII
|
135
|
-
string: ''
|
136
|
-
headers:
|
137
|
-
Accept:
|
138
|
-
- application/json
|
139
|
-
X-Locomotive-Account-Email:
|
140
|
-
- admin@locomotivecms.com
|
141
|
-
X-Locomotive-Account-Token:
|
142
|
-
- E2aoXzMxkFsLnCcmCcc_
|
143
|
-
Accept-Encoding:
|
144
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
145
|
-
User-Agent:
|
146
|
-
- Ruby
|
147
|
-
response:
|
148
|
-
status:
|
149
|
-
code: 200
|
150
|
-
message: OK
|
151
|
-
headers:
|
152
|
-
X-Total-Pages:
|
153
|
-
- '1'
|
154
|
-
X-Per-Page:
|
155
|
-
- '10'
|
156
|
-
X-Total-Entries:
|
157
|
-
- '2'
|
158
|
-
Content-Type:
|
159
|
-
- application/json
|
160
|
-
Etag:
|
161
|
-
- W/"631ce874cf38acbf99d2a64410403b98"
|
162
|
-
Cache-Control:
|
163
|
-
- max-age=0, private, must-revalidate
|
164
|
-
X-Request-Id:
|
165
|
-
- d2acd891-ac21-4c33-b012-65fa36a9493b
|
166
|
-
X-Runtime:
|
167
|
-
- '0.045187'
|
168
|
-
Content-Length:
|
169
|
-
- '595'
|
170
|
-
body:
|
171
|
-
encoding: UTF-8
|
172
|
-
string: '[{"_id":"5650f0a287f6436cbc000007","created_at":"2015-11-21T22:30:58Z","updated_at":"2015-11-21T22:30:58Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
173
|
-
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
174
|
-
world"},{"_id":"5650f0a287f6436cbc00000a","created_at":"2015-11-21T22:30:58Z","updated_at":"2015-11-21T22:30:58Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
175
|
-
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
176
|
-
ipsum"}]'
|
177
|
-
http_version:
|
178
|
-
recorded_at: Sat, 21 Nov 2015 22:30:59 GMT
|
179
|
-
- request:
|
180
|
-
method: delete
|
181
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/hello-world.json?auth_token=E2aoXzMxkFsLnCcmCcc_
|
182
|
-
body:
|
183
|
-
encoding: US-ASCII
|
184
|
-
string: ''
|
185
|
-
headers:
|
186
|
-
Accept:
|
187
|
-
- application/json
|
188
|
-
X-Locomotive-Account-Email:
|
189
|
-
- admin@locomotivecms.com
|
190
|
-
X-Locomotive-Account-Token:
|
191
|
-
- E2aoXzMxkFsLnCcmCcc_
|
192
|
-
Accept-Encoding:
|
193
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
194
|
-
User-Agent:
|
195
|
-
- Ruby
|
196
|
-
response:
|
197
|
-
status:
|
198
|
-
code: 200
|
199
|
-
message: OK
|
200
|
-
headers:
|
201
|
-
Content-Type:
|
202
|
-
- application/json
|
203
|
-
Etag:
|
204
|
-
- W/"d31f710b4100495c197fa8e6aaca64b7"
|
205
|
-
Cache-Control:
|
206
|
-
- max-age=0, private, must-revalidate
|
207
|
-
X-Request-Id:
|
208
|
-
- 0bd27d15-b114-45f2-a963-a281308efb3e
|
209
|
-
X-Runtime:
|
210
|
-
- '0.040459'
|
211
|
-
Content-Length:
|
212
|
-
- '296'
|
213
|
-
body:
|
214
|
-
encoding: UTF-8
|
215
|
-
string: '{"_id":"5650f0a287f6436cbc000007","created_at":"2015-11-21T22:30:58Z","updated_at":"2015-11-21T22:30:58Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
216
|
-
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
217
|
-
world"}'
|
218
|
-
http_version:
|
219
|
-
recorded_at: Sat, 21 Nov 2015 22:30:59 GMT
|
220
|
-
- request:
|
221
|
-
method: delete
|
222
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/lorem-ipsum.json?auth_token=E2aoXzMxkFsLnCcmCcc_
|
223
|
-
body:
|
224
|
-
encoding: US-ASCII
|
225
|
-
string: ''
|
226
|
-
headers:
|
227
|
-
Accept:
|
228
|
-
- application/json
|
229
|
-
X-Locomotive-Account-Email:
|
230
|
-
- admin@locomotivecms.com
|
231
|
-
X-Locomotive-Account-Token:
|
232
|
-
- E2aoXzMxkFsLnCcmCcc_
|
233
|
-
Accept-Encoding:
|
234
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
235
|
-
User-Agent:
|
236
|
-
- Ruby
|
237
|
-
response:
|
238
|
-
status:
|
239
|
-
code: 200
|
240
|
-
message: OK
|
241
|
-
headers:
|
242
|
-
Content-Type:
|
243
|
-
- application/json
|
244
|
-
Etag:
|
245
|
-
- W/"b2a8ac34fe4812114710c413b5a03ca0"
|
246
|
-
Cache-Control:
|
247
|
-
- max-age=0, private, must-revalidate
|
248
|
-
X-Request-Id:
|
249
|
-
- 324904c7-f44a-4f6d-93f9-80ff6a8b1986
|
250
|
-
X-Runtime:
|
251
|
-
- '0.052222'
|
252
|
-
Content-Length:
|
253
|
-
- '296'
|
254
|
-
body:
|
255
|
-
encoding: UTF-8
|
256
|
-
string: '{"_id":"5650f0a287f6436cbc00000a","created_at":"2015-11-21T22:30:58Z","updated_at":"2015-11-21T22:30:58Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
257
|
-
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
258
|
-
ipsum"}'
|
259
|
-
http_version:
|
260
|
-
recorded_at: Sat, 21 Nov 2015 22:30:59 GMT
|
261
|
-
- request:
|
262
|
-
method: post
|
263
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json
|
264
|
-
body:
|
265
|
-
encoding: UTF-8
|
266
|
-
string: auth_token=E2aoXzMxkFsLnCcmCcc_&content_entry%5Btitle%5D=Hello+world
|
267
|
-
headers:
|
268
|
-
Accept:
|
269
|
-
- application/json
|
270
|
-
X-Locomotive-Account-Email:
|
271
|
-
- admin@locomotivecms.com
|
272
|
-
X-Locomotive-Account-Token:
|
273
|
-
- E2aoXzMxkFsLnCcmCcc_
|
274
|
-
Content-Type:
|
275
|
-
- application/x-www-form-urlencoded
|
276
|
-
Accept-Encoding:
|
277
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
278
|
-
User-Agent:
|
279
|
-
- Ruby
|
280
|
-
response:
|
281
|
-
status:
|
282
|
-
code: 201
|
283
|
-
message: Created
|
284
|
-
headers:
|
285
|
-
Content-Type:
|
286
|
-
- application/json
|
287
|
-
Etag:
|
288
|
-
- W/"a46e91e59f0183c16cab085910cd8437"
|
289
|
-
Cache-Control:
|
290
|
-
- max-age=0, private, must-revalidate
|
291
|
-
X-Request-Id:
|
292
|
-
- b81aa8ae-878e-4a23-aacb-e019488c9f2b
|
293
|
-
X-Runtime:
|
294
|
-
- '0.049705'
|
295
|
-
Content-Length:
|
296
|
-
- '296'
|
297
|
-
body:
|
298
|
-
encoding: UTF-8
|
299
|
-
string: '{"_id":"5650f0a387f6436cbc00000d","created_at":"2015-11-21T22:30:59Z","updated_at":"2015-11-21T22:30:59Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
300
|
-
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
301
|
-
world"}'
|
302
|
-
http_version:
|
303
|
-
recorded_at: Sat, 21 Nov 2015 22:30:59 GMT
|
304
|
-
- request:
|
305
|
-
method: post
|
306
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json
|
307
|
-
body:
|
308
|
-
encoding: UTF-8
|
309
|
-
string: auth_token=E2aoXzMxkFsLnCcmCcc_&content_entry%5Btitle%5D=Lorem+ipsum
|
310
|
-
headers:
|
311
|
-
Accept:
|
312
|
-
- application/json
|
313
|
-
X-Locomotive-Account-Email:
|
314
|
-
- admin@locomotivecms.com
|
315
|
-
X-Locomotive-Account-Token:
|
316
|
-
- E2aoXzMxkFsLnCcmCcc_
|
317
|
-
Content-Type:
|
318
|
-
- application/x-www-form-urlencoded
|
319
|
-
Accept-Encoding:
|
320
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
321
|
-
User-Agent:
|
322
|
-
- Ruby
|
323
|
-
response:
|
324
|
-
status:
|
325
|
-
code: 201
|
326
|
-
message: Created
|
327
|
-
headers:
|
328
|
-
Content-Type:
|
329
|
-
- application/json
|
330
|
-
Etag:
|
331
|
-
- W/"4e8de5743c5ee04e0cc1cedda9725657"
|
332
|
-
Cache-Control:
|
333
|
-
- max-age=0, private, must-revalidate
|
334
|
-
X-Request-Id:
|
335
|
-
- c42e9f55-1239-477b-88b4-b296ca24e4e9
|
336
|
-
X-Runtime:
|
337
|
-
- '0.054348'
|
338
|
-
Content-Length:
|
339
|
-
- '296'
|
340
|
-
body:
|
341
|
-
encoding: UTF-8
|
342
|
-
string: '{"_id":"5650f0a387f6436cbc000010","created_at":"2015-11-21T22:30:59Z","updated_at":"2015-11-21T22:30:59Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
343
|
-
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
344
|
-
ipsum"}'
|
345
|
-
http_version:
|
346
|
-
recorded_at: Sat, 21 Nov 2015 22:30:59 GMT
|
347
|
-
- request:
|
348
|
-
method: get
|
349
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json?auth_token=E2aoXzMxkFsLnCcmCcc_&page=2&per_page=1&where=%7B%7D
|
350
|
-
body:
|
351
|
-
encoding: US-ASCII
|
352
|
-
string: ''
|
353
|
-
headers:
|
354
|
-
Accept:
|
355
|
-
- application/json
|
356
|
-
X-Locomotive-Account-Email:
|
357
|
-
- admin@locomotivecms.com
|
358
|
-
X-Locomotive-Account-Token:
|
359
|
-
- E2aoXzMxkFsLnCcmCcc_
|
360
|
-
Accept-Encoding:
|
361
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
362
|
-
User-Agent:
|
363
|
-
- Ruby
|
364
|
-
response:
|
365
|
-
status:
|
366
|
-
code: 200
|
367
|
-
message: OK
|
368
|
-
headers:
|
369
|
-
X-Total-Pages:
|
370
|
-
- '2'
|
371
|
-
X-Per-Page:
|
372
|
-
- '1'
|
373
|
-
X-Total-Entries:
|
374
|
-
- '2'
|
375
|
-
Content-Type:
|
376
|
-
- application/json
|
377
|
-
Etag:
|
378
|
-
- W/"09ca8f62eff62bd2046e0cb6875383f6"
|
379
|
-
Cache-Control:
|
380
|
-
- max-age=0, private, must-revalidate
|
381
|
-
X-Request-Id:
|
382
|
-
- a6596977-2159-4e3a-9b12-aff4303da749
|
383
|
-
X-Runtime:
|
384
|
-
- '0.040094'
|
385
|
-
Content-Length:
|
386
|
-
- '298'
|
387
|
-
body:
|
388
|
-
encoding: UTF-8
|
389
|
-
string: '[{"_id":"5650f0a387f6436cbc000010","created_at":"2015-11-21T22:30:59Z","updated_at":"2015-11-21T22:30:59Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
390
|
-
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
391
|
-
ipsum"}]'
|
392
|
-
http_version:
|
393
|
-
recorded_at: Sat, 21 Nov 2015 22:30:59 GMT
|
394
|
-
- request:
|
395
|
-
method: delete
|
396
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/hello-world.json?auth_token=E2aoXzMxkFsLnCcmCcc_
|
397
|
-
body:
|
398
|
-
encoding: US-ASCII
|
399
|
-
string: ''
|
400
|
-
headers:
|
401
|
-
Accept:
|
402
|
-
- application/json
|
403
|
-
X-Locomotive-Account-Email:
|
404
|
-
- admin@locomotivecms.com
|
405
|
-
X-Locomotive-Account-Token:
|
406
|
-
- E2aoXzMxkFsLnCcmCcc_
|
407
|
-
Accept-Encoding:
|
408
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
409
|
-
User-Agent:
|
410
|
-
- Ruby
|
411
|
-
response:
|
412
|
-
status:
|
413
|
-
code: 200
|
414
|
-
message: OK
|
415
|
-
headers:
|
416
|
-
Content-Type:
|
417
|
-
- application/json
|
418
|
-
Etag:
|
419
|
-
- W/"a46e91e59f0183c16cab085910cd8437"
|
420
|
-
Cache-Control:
|
421
|
-
- max-age=0, private, must-revalidate
|
422
|
-
X-Request-Id:
|
423
|
-
- 138c3cec-d948-4c4e-9c4c-61d0f1e85863
|
424
|
-
X-Runtime:
|
425
|
-
- '0.040546'
|
426
|
-
Content-Length:
|
427
|
-
- '296'
|
428
|
-
body:
|
429
|
-
encoding: UTF-8
|
430
|
-
string: '{"_id":"5650f0a387f6436cbc00000d","created_at":"2015-11-21T22:30:59Z","updated_at":"2015-11-21T22:30:59Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
431
|
-
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
432
|
-
world"}'
|
433
|
-
http_version:
|
434
|
-
recorded_at: Sat, 21 Nov 2015 22:30:59 GMT
|
435
|
-
- request:
|
436
|
-
method: delete
|
437
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/lorem-ipsum.json?auth_token=E2aoXzMxkFsLnCcmCcc_
|
438
|
-
body:
|
439
|
-
encoding: US-ASCII
|
440
|
-
string: ''
|
441
|
-
headers:
|
442
|
-
Accept:
|
443
|
-
- application/json
|
444
|
-
X-Locomotive-Account-Email:
|
445
|
-
- admin@locomotivecms.com
|
446
|
-
X-Locomotive-Account-Token:
|
447
|
-
- E2aoXzMxkFsLnCcmCcc_
|
448
|
-
Accept-Encoding:
|
449
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
450
|
-
User-Agent:
|
451
|
-
- Ruby
|
452
|
-
response:
|
453
|
-
status:
|
454
|
-
code: 200
|
455
|
-
message: OK
|
456
|
-
headers:
|
457
|
-
Content-Type:
|
458
|
-
- application/json
|
459
|
-
Etag:
|
460
|
-
- W/"4e8de5743c5ee04e0cc1cedda9725657"
|
461
|
-
Cache-Control:
|
462
|
-
- max-age=0, private, must-revalidate
|
463
|
-
X-Request-Id:
|
464
|
-
- 66d76351-14cf-436f-a9e3-ae9c33dc358f
|
465
|
-
X-Runtime:
|
466
|
-
- '0.039364'
|
467
|
-
Content-Length:
|
468
|
-
- '296'
|
469
|
-
body:
|
470
|
-
encoding: UTF-8
|
471
|
-
string: '{"_id":"5650f0a387f6436cbc000010","created_at":"2015-11-21T22:30:59Z","updated_at":"2015-11-21T22:30:59Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
472
|
-
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
473
|
-
ipsum"}'
|
474
|
-
http_version:
|
475
|
-
recorded_at: Sat, 21 Nov 2015 22:30:59 GMT
|
476
|
-
- request:
|
477
|
-
method: post
|
478
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json
|
479
|
-
body:
|
480
|
-
encoding: UTF-8
|
481
|
-
string: auth_token=E2aoXzMxkFsLnCcmCcc_&content_entry%5Btitle%5D=Hello+world
|
482
|
-
headers:
|
483
|
-
Accept:
|
484
|
-
- application/json
|
485
|
-
X-Locomotive-Account-Email:
|
486
|
-
- admin@locomotivecms.com
|
487
|
-
X-Locomotive-Account-Token:
|
488
|
-
- E2aoXzMxkFsLnCcmCcc_
|
489
|
-
Content-Type:
|
490
|
-
- application/x-www-form-urlencoded
|
491
|
-
Accept-Encoding:
|
492
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
493
|
-
User-Agent:
|
494
|
-
- Ruby
|
495
|
-
response:
|
496
|
-
status:
|
497
|
-
code: 201
|
498
|
-
message: Created
|
499
|
-
headers:
|
500
|
-
Content-Type:
|
501
|
-
- application/json
|
502
|
-
Etag:
|
503
|
-
- W/"0f366d794e9c37284e8f021f173c16c3"
|
504
|
-
Cache-Control:
|
505
|
-
- max-age=0, private, must-revalidate
|
506
|
-
X-Request-Id:
|
507
|
-
- 3b7f2b08-0b70-4bdc-b89b-47f32ccc36a5
|
508
|
-
X-Runtime:
|
509
|
-
- '0.055332'
|
510
|
-
Content-Length:
|
511
|
-
- '296'
|
512
|
-
body:
|
513
|
-
encoding: UTF-8
|
514
|
-
string: '{"_id":"5650f0a387f6436cbc000013","created_at":"2015-11-21T22:30:59Z","updated_at":"2015-11-21T22:30:59Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
515
|
-
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
516
|
-
world"}'
|
517
|
-
http_version:
|
518
|
-
recorded_at: Sat, 21 Nov 2015 22:30:59 GMT
|
519
|
-
- request:
|
520
|
-
method: post
|
521
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json
|
522
|
-
body:
|
523
|
-
encoding: UTF-8
|
524
|
-
string: auth_token=E2aoXzMxkFsLnCcmCcc_&content_entry%5Btitle%5D=Lorem+ipsum
|
525
|
-
headers:
|
526
|
-
Accept:
|
527
|
-
- application/json
|
528
|
-
X-Locomotive-Account-Email:
|
529
|
-
- admin@locomotivecms.com
|
530
|
-
X-Locomotive-Account-Token:
|
531
|
-
- E2aoXzMxkFsLnCcmCcc_
|
532
|
-
Content-Type:
|
533
|
-
- application/x-www-form-urlencoded
|
534
|
-
Accept-Encoding:
|
535
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
536
|
-
User-Agent:
|
537
|
-
- Ruby
|
538
|
-
response:
|
539
|
-
status:
|
540
|
-
code: 201
|
541
|
-
message: Created
|
542
|
-
headers:
|
543
|
-
Content-Type:
|
544
|
-
- application/json
|
545
|
-
Etag:
|
546
|
-
- W/"ae8aa77621a56e9695ba7d2198d66fb6"
|
547
|
-
Cache-Control:
|
548
|
-
- max-age=0, private, must-revalidate
|
549
|
-
X-Request-Id:
|
550
|
-
- dc4b9368-4179-4667-8d72-f8b314325a86
|
551
|
-
X-Runtime:
|
552
|
-
- '0.049245'
|
553
|
-
Content-Length:
|
554
|
-
- '296'
|
555
|
-
body:
|
556
|
-
encoding: UTF-8
|
557
|
-
string: '{"_id":"5650f0a387f6436cbc000016","created_at":"2015-11-21T22:30:59Z","updated_at":"2015-11-21T22:30:59Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
558
|
-
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
559
|
-
ipsum"}'
|
560
|
-
http_version:
|
561
|
-
recorded_at: Sat, 21 Nov 2015 22:30:59 GMT
|
562
|
-
- request:
|
563
|
-
method: get
|
564
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json?auth_token=E2aoXzMxkFsLnCcmCcc_&where=%7B%22_visible%22:true,%22title%22:%22Hello%20world%22%7D
|
565
|
-
body:
|
566
|
-
encoding: US-ASCII
|
567
|
-
string: ''
|
568
|
-
headers:
|
569
|
-
Accept:
|
570
|
-
- application/json
|
571
|
-
X-Locomotive-Account-Email:
|
572
|
-
- admin@locomotivecms.com
|
573
|
-
X-Locomotive-Account-Token:
|
574
|
-
- E2aoXzMxkFsLnCcmCcc_
|
575
|
-
Accept-Encoding:
|
576
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
577
|
-
User-Agent:
|
578
|
-
- Ruby
|
579
|
-
response:
|
580
|
-
status:
|
581
|
-
code: 200
|
582
|
-
message: OK
|
583
|
-
headers:
|
584
|
-
X-Total-Pages:
|
585
|
-
- '1'
|
586
|
-
X-Per-Page:
|
587
|
-
- '10'
|
588
|
-
X-Total-Entries:
|
589
|
-
- '1'
|
590
|
-
Content-Type:
|
591
|
-
- application/json
|
592
|
-
Etag:
|
593
|
-
- W/"550ac4e8a2ad838f2862a3be059474f8"
|
594
|
-
Cache-Control:
|
595
|
-
- max-age=0, private, must-revalidate
|
596
|
-
X-Request-Id:
|
597
|
-
- 4fb80fa9-7fb9-4c02-921e-3fc4c82ad863
|
598
|
-
X-Runtime:
|
599
|
-
- '0.037633'
|
600
|
-
Content-Length:
|
601
|
-
- '298'
|
602
|
-
body:
|
603
|
-
encoding: UTF-8
|
604
|
-
string: '[{"_id":"5650f0a387f6436cbc000013","created_at":"2015-11-21T22:30:59Z","updated_at":"2015-11-21T22:30:59Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
605
|
-
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
606
|
-
world"}]'
|
607
|
-
http_version:
|
608
|
-
recorded_at: Sat, 21 Nov 2015 22:30:59 GMT
|
609
|
-
- request:
|
610
|
-
method: delete
|
611
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/hello-world.json?auth_token=E2aoXzMxkFsLnCcmCcc_
|
612
|
-
body:
|
613
|
-
encoding: US-ASCII
|
614
|
-
string: ''
|
615
|
-
headers:
|
616
|
-
Accept:
|
617
|
-
- application/json
|
618
|
-
X-Locomotive-Account-Email:
|
619
|
-
- admin@locomotivecms.com
|
620
|
-
X-Locomotive-Account-Token:
|
621
|
-
- E2aoXzMxkFsLnCcmCcc_
|
622
|
-
Accept-Encoding:
|
623
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
624
|
-
User-Agent:
|
625
|
-
- Ruby
|
626
|
-
response:
|
627
|
-
status:
|
628
|
-
code: 200
|
629
|
-
message: OK
|
630
|
-
headers:
|
631
|
-
Content-Type:
|
632
|
-
- application/json
|
633
|
-
Etag:
|
634
|
-
- W/"0f366d794e9c37284e8f021f173c16c3"
|
635
|
-
Cache-Control:
|
636
|
-
- max-age=0, private, must-revalidate
|
637
|
-
X-Request-Id:
|
638
|
-
- e7673d48-5baa-4a6f-acc2-fff183289384
|
639
|
-
X-Runtime:
|
640
|
-
- '0.040892'
|
641
|
-
Content-Length:
|
642
|
-
- '296'
|
643
|
-
body:
|
644
|
-
encoding: UTF-8
|
645
|
-
string: '{"_id":"5650f0a387f6436cbc000013","created_at":"2015-11-21T22:30:59Z","updated_at":"2015-11-21T22:30:59Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
646
|
-
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
647
|
-
world"}'
|
648
|
-
http_version:
|
649
|
-
recorded_at: Sat, 21 Nov 2015 22:30:59 GMT
|
650
|
-
- request:
|
651
|
-
method: delete
|
652
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/lorem-ipsum.json?auth_token=E2aoXzMxkFsLnCcmCcc_
|
653
|
-
body:
|
654
|
-
encoding: US-ASCII
|
655
|
-
string: ''
|
656
|
-
headers:
|
657
|
-
Accept:
|
658
|
-
- application/json
|
659
|
-
X-Locomotive-Account-Email:
|
660
|
-
- admin@locomotivecms.com
|
661
|
-
X-Locomotive-Account-Token:
|
662
|
-
- E2aoXzMxkFsLnCcmCcc_
|
663
|
-
Accept-Encoding:
|
664
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
665
|
-
User-Agent:
|
666
|
-
- Ruby
|
667
|
-
response:
|
668
|
-
status:
|
669
|
-
code: 200
|
670
|
-
message: OK
|
671
|
-
headers:
|
672
|
-
Content-Type:
|
673
|
-
- application/json
|
674
|
-
Etag:
|
675
|
-
- W/"ae8aa77621a56e9695ba7d2198d66fb6"
|
676
|
-
Cache-Control:
|
677
|
-
- max-age=0, private, must-revalidate
|
678
|
-
X-Request-Id:
|
679
|
-
- 26f83bc2-5b1e-46f1-b2a4-c8514dad0a90
|
680
|
-
X-Runtime:
|
681
|
-
- '0.040975'
|
682
|
-
Content-Length:
|
683
|
-
- '296'
|
684
|
-
body:
|
685
|
-
encoding: UTF-8
|
686
|
-
string: '{"_id":"5650f0a387f6436cbc000016","created_at":"2015-11-21T22:30:59Z","updated_at":"2015-11-21T22:30:59Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
687
|
-
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
688
|
-
ipsum"}'
|
689
|
-
http_version:
|
690
|
-
recorded_at: Sat, 21 Nov 2015 22:30:59 GMT
|
691
|
-
- request:
|
692
|
-
method: post
|
693
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json
|
694
|
-
body:
|
695
|
-
encoding: UTF-8
|
696
|
-
string: auth_token=E2aoXzMxkFsLnCcmCcc_&content_entry%5Btitle%5D=Hello+world
|
697
|
-
headers:
|
698
|
-
Accept:
|
699
|
-
- application/json
|
700
|
-
X-Locomotive-Account-Email:
|
701
|
-
- admin@locomotivecms.com
|
702
|
-
X-Locomotive-Account-Token:
|
703
|
-
- E2aoXzMxkFsLnCcmCcc_
|
704
|
-
Content-Type:
|
705
|
-
- application/x-www-form-urlencoded
|
706
|
-
Accept-Encoding:
|
707
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
708
|
-
User-Agent:
|
709
|
-
- Ruby
|
710
|
-
response:
|
711
|
-
status:
|
712
|
-
code: 201
|
713
|
-
message: Created
|
714
|
-
headers:
|
715
|
-
Content-Type:
|
716
|
-
- application/json
|
717
|
-
Etag:
|
718
|
-
- W/"ddaa72ca0cb6a85e8091d5b31b907e72"
|
719
|
-
Cache-Control:
|
720
|
-
- max-age=0, private, must-revalidate
|
721
|
-
X-Request-Id:
|
722
|
-
- 8e0c1533-f795-4ec3-9cd6-ad273e8cd926
|
723
|
-
X-Runtime:
|
724
|
-
- '0.048737'
|
725
|
-
Content-Length:
|
726
|
-
- '296'
|
727
|
-
body:
|
728
|
-
encoding: UTF-8
|
729
|
-
string: '{"_id":"5650f0a387f6436cbc000019","created_at":"2015-11-21T22:30:59Z","updated_at":"2015-11-21T22:30:59Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
730
|
-
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
731
|
-
world"}'
|
732
|
-
http_version:
|
733
|
-
recorded_at: Sat, 21 Nov 2015 22:30:59 GMT
|
734
|
-
- request:
|
735
|
-
method: post
|
736
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json
|
737
|
-
body:
|
738
|
-
encoding: UTF-8
|
739
|
-
string: auth_token=E2aoXzMxkFsLnCcmCcc_&content_entry%5Btitle%5D=Lorem+ipsum
|
740
|
-
headers:
|
741
|
-
Accept:
|
742
|
-
- application/json
|
743
|
-
X-Locomotive-Account-Email:
|
744
|
-
- admin@locomotivecms.com
|
745
|
-
X-Locomotive-Account-Token:
|
746
|
-
- E2aoXzMxkFsLnCcmCcc_
|
747
|
-
Content-Type:
|
748
|
-
- application/x-www-form-urlencoded
|
749
|
-
Accept-Encoding:
|
750
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
751
|
-
User-Agent:
|
752
|
-
- Ruby
|
753
|
-
response:
|
754
|
-
status:
|
755
|
-
code: 201
|
756
|
-
message: Created
|
757
|
-
headers:
|
758
|
-
Content-Type:
|
759
|
-
- application/json
|
760
|
-
Etag:
|
761
|
-
- W/"41d74766b0cd20f3b856062a1085fffb"
|
762
|
-
Cache-Control:
|
763
|
-
- max-age=0, private, must-revalidate
|
764
|
-
X-Request-Id:
|
765
|
-
- ac651233-4493-40e8-98ba-6e1d1c0370fc
|
766
|
-
X-Runtime:
|
767
|
-
- '0.052381'
|
768
|
-
Content-Length:
|
769
|
-
- '296'
|
770
|
-
body:
|
771
|
-
encoding: UTF-8
|
772
|
-
string: '{"_id":"5650f0a387f6436cbc00001c","created_at":"2015-11-21T22:30:59Z","updated_at":"2015-11-21T22:30:59Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
773
|
-
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
774
|
-
ipsum"}'
|
775
|
-
http_version:
|
776
|
-
recorded_at: Sat, 21 Nov 2015 22:30:59 GMT
|
777
|
-
- request:
|
778
|
-
method: get
|
779
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json?auth_token=E2aoXzMxkFsLnCcmCcc_&page=1&where=%7B%7D
|
780
|
-
body:
|
781
|
-
encoding: US-ASCII
|
782
|
-
string: ''
|
783
|
-
headers:
|
784
|
-
Accept:
|
785
|
-
- application/json
|
786
|
-
X-Locomotive-Account-Email:
|
787
|
-
- admin@locomotivecms.com
|
788
|
-
X-Locomotive-Account-Token:
|
789
|
-
- E2aoXzMxkFsLnCcmCcc_
|
790
|
-
Accept-Encoding:
|
791
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
792
|
-
User-Agent:
|
793
|
-
- Ruby
|
794
|
-
response:
|
795
|
-
status:
|
796
|
-
code: 200
|
797
|
-
message: OK
|
798
|
-
headers:
|
799
|
-
X-Total-Pages:
|
800
|
-
- '1'
|
801
|
-
X-Per-Page:
|
802
|
-
- '10'
|
803
|
-
X-Total-Entries:
|
804
|
-
- '2'
|
805
|
-
Content-Type:
|
806
|
-
- application/json
|
807
|
-
Etag:
|
808
|
-
- W/"e0f44b8935bef3516114e155d1ad70a6"
|
809
|
-
Cache-Control:
|
810
|
-
- max-age=0, private, must-revalidate
|
811
|
-
X-Request-Id:
|
812
|
-
- 57941bcb-038c-45fd-9f74-51c3b700307d
|
813
|
-
X-Runtime:
|
814
|
-
- '0.039110'
|
815
|
-
Content-Length:
|
816
|
-
- '595'
|
817
|
-
body:
|
818
|
-
encoding: UTF-8
|
819
|
-
string: '[{"_id":"5650f0a387f6436cbc000019","created_at":"2015-11-21T22:30:59Z","updated_at":"2015-11-21T22:30:59Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
820
|
-
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
821
|
-
world"},{"_id":"5650f0a387f6436cbc00001c","created_at":"2015-11-21T22:30:59Z","updated_at":"2015-11-21T22:30:59Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
822
|
-
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
823
|
-
ipsum"}]'
|
824
|
-
http_version:
|
825
|
-
recorded_at: Sat, 21 Nov 2015 22:30:59 GMT
|
826
|
-
- request:
|
827
|
-
method: delete
|
828
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/hello-world.json?auth_token=E2aoXzMxkFsLnCcmCcc_
|
829
|
-
body:
|
830
|
-
encoding: US-ASCII
|
831
|
-
string: ''
|
832
|
-
headers:
|
833
|
-
Accept:
|
834
|
-
- application/json
|
835
|
-
X-Locomotive-Account-Email:
|
836
|
-
- admin@locomotivecms.com
|
837
|
-
X-Locomotive-Account-Token:
|
838
|
-
- E2aoXzMxkFsLnCcmCcc_
|
839
|
-
Accept-Encoding:
|
840
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
841
|
-
User-Agent:
|
842
|
-
- Ruby
|
843
|
-
response:
|
844
|
-
status:
|
845
|
-
code: 200
|
846
|
-
message: OK
|
847
|
-
headers:
|
848
|
-
Content-Type:
|
849
|
-
- application/json
|
850
|
-
Etag:
|
851
|
-
- W/"ddaa72ca0cb6a85e8091d5b31b907e72"
|
852
|
-
Cache-Control:
|
853
|
-
- max-age=0, private, must-revalidate
|
854
|
-
X-Request-Id:
|
855
|
-
- d79c98d2-d383-4959-9d99-6757a0712f69
|
856
|
-
X-Runtime:
|
857
|
-
- '0.041005'
|
858
|
-
Content-Length:
|
859
|
-
- '296'
|
860
|
-
body:
|
861
|
-
encoding: UTF-8
|
862
|
-
string: '{"_id":"5650f0a387f6436cbc000019","created_at":"2015-11-21T22:30:59Z","updated_at":"2015-11-21T22:30:59Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
863
|
-
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
864
|
-
world"}'
|
865
|
-
http_version:
|
866
|
-
recorded_at: Sat, 21 Nov 2015 22:30:59 GMT
|
867
|
-
- request:
|
868
|
-
method: delete
|
869
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/lorem-ipsum.json?auth_token=E2aoXzMxkFsLnCcmCcc_
|
870
|
-
body:
|
871
|
-
encoding: US-ASCII
|
872
|
-
string: ''
|
873
|
-
headers:
|
874
|
-
Accept:
|
875
|
-
- application/json
|
876
|
-
X-Locomotive-Account-Email:
|
877
|
-
- admin@locomotivecms.com
|
878
|
-
X-Locomotive-Account-Token:
|
879
|
-
- E2aoXzMxkFsLnCcmCcc_
|
880
|
-
Accept-Encoding:
|
881
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
882
|
-
User-Agent:
|
883
|
-
- Ruby
|
884
|
-
response:
|
885
|
-
status:
|
886
|
-
code: 200
|
887
|
-
message: OK
|
888
|
-
headers:
|
889
|
-
Content-Type:
|
890
|
-
- application/json
|
891
|
-
Etag:
|
892
|
-
- W/"41d74766b0cd20f3b856062a1085fffb"
|
893
|
-
Cache-Control:
|
894
|
-
- max-age=0, private, must-revalidate
|
895
|
-
X-Request-Id:
|
896
|
-
- bd501bb9-c392-4f5e-b7f4-76cbb07e0570
|
897
|
-
X-Runtime:
|
898
|
-
- '0.040485'
|
899
|
-
Content-Length:
|
900
|
-
- '296'
|
901
|
-
body:
|
902
|
-
encoding: UTF-8
|
903
|
-
string: '{"_id":"5650f0a387f6436cbc00001c","created_at":"2015-11-21T22:30:59Z","updated_at":"2015-11-21T22:30:59Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
904
|
-
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
905
|
-
ipsum"}'
|
906
|
-
http_version:
|
907
|
-
recorded_at: Sat, 21 Nov 2015 22:31:00 GMT
|
908
|
-
- request:
|
909
|
-
method: post
|
910
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json
|
911
|
-
body:
|
912
|
-
encoding: UTF-8
|
913
|
-
string: auth_token=E2aoXzMxkFsLnCcmCcc_&content_entry%5Btitle%5D=Random+title
|
914
|
-
headers:
|
915
|
-
Accept:
|
916
|
-
- application/json
|
917
|
-
X-Locomotive-Account-Email:
|
918
|
-
- admin@locomotivecms.com
|
919
|
-
X-Locomotive-Account-Token:
|
920
|
-
- E2aoXzMxkFsLnCcmCcc_
|
921
|
-
Content-Type:
|
922
|
-
- application/x-www-form-urlencoded
|
923
|
-
Accept-Encoding:
|
924
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
925
|
-
User-Agent:
|
926
|
-
- Ruby
|
927
|
-
response:
|
928
|
-
status:
|
929
|
-
code: 201
|
930
|
-
message: Created
|
931
|
-
headers:
|
932
|
-
Content-Type:
|
933
|
-
- application/json
|
934
|
-
Etag:
|
935
|
-
- W/"209ad2ffbab1f055473bdd2293eac9a1"
|
936
|
-
Cache-Control:
|
937
|
-
- max-age=0, private, must-revalidate
|
938
|
-
X-Request-Id:
|
939
|
-
- f4b4f7e4-b7f2-466e-9349-5cd69d74e986
|
940
|
-
X-Runtime:
|
941
|
-
- '0.059997'
|
942
|
-
Content-Length:
|
943
|
-
- '299'
|
944
|
-
body:
|
945
|
-
encoding: UTF-8
|
946
|
-
string: '{"_id":"5650f0a487f6436cbc00001f","created_at":"2015-11-21T22:31:00Z","updated_at":"2015-11-21T22:31:00Z","_slug":"random-title","content_type_slug":"articles","_label":"Random
|
947
|
-
title","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Random
|
948
|
-
title"}'
|
949
|
-
http_version:
|
950
|
-
recorded_at: Sat, 21 Nov 2015 22:31:00 GMT
|
951
|
-
- request:
|
952
|
-
method: put
|
953
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/random-title.json
|
954
|
-
body:
|
955
|
-
encoding: UTF-8
|
956
|
-
string: auth_token=E2aoXzMxkFsLnCcmCcc_&content_entry%5Btitle%5D=Random+title%21
|
957
|
-
headers:
|
958
|
-
Accept:
|
959
|
-
- application/json
|
960
|
-
X-Locomotive-Account-Email:
|
961
|
-
- admin@locomotivecms.com
|
962
|
-
X-Locomotive-Account-Token:
|
963
|
-
- E2aoXzMxkFsLnCcmCcc_
|
964
|
-
X-Locomotive-Locale:
|
965
|
-
- ''
|
966
|
-
Content-Type:
|
967
|
-
- application/x-www-form-urlencoded
|
968
|
-
Accept-Encoding:
|
969
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
970
|
-
User-Agent:
|
971
|
-
- Ruby
|
972
|
-
response:
|
973
|
-
status:
|
974
|
-
code: 200
|
975
|
-
message: OK
|
976
|
-
headers:
|
977
|
-
Content-Type:
|
978
|
-
- application/json
|
979
|
-
Etag:
|
980
|
-
- W/"0be2d41e265efc9b10e5f2f25796610c"
|
981
|
-
Cache-Control:
|
982
|
-
- max-age=0, private, must-revalidate
|
983
|
-
X-Request-Id:
|
984
|
-
- 38fc0568-2283-4978-adc4-b133934d5168
|
985
|
-
X-Runtime:
|
986
|
-
- '0.055145'
|
987
|
-
Content-Length:
|
988
|
-
- '301'
|
989
|
-
body:
|
990
|
-
encoding: UTF-8
|
991
|
-
string: '{"_id":"5650f0a487f6436cbc00001f","created_at":"2015-11-21T22:31:00Z","updated_at":"2015-11-21T22:31:00Z","_slug":"random-title","content_type_slug":"articles","_label":"Random
|
992
|
-
title!","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Random
|
993
|
-
title!"}'
|
994
|
-
http_version:
|
995
|
-
recorded_at: Sat, 21 Nov 2015 22:31:00 GMT
|
996
|
-
- request:
|
997
|
-
method: post
|
998
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json
|
999
|
-
body:
|
1000
|
-
encoding: UTF-8
|
1001
|
-
string: auth_token=E2aoXzMxkFsLnCcmCcc_&content_entry%5Btitle%5D=Random+title
|
1002
|
-
headers:
|
1003
|
-
Accept:
|
1004
|
-
- application/json
|
1005
|
-
X-Locomotive-Account-Email:
|
1006
|
-
- admin@locomotivecms.com
|
1007
|
-
X-Locomotive-Account-Token:
|
1008
|
-
- E2aoXzMxkFsLnCcmCcc_
|
1009
|
-
Content-Type:
|
1010
|
-
- application/x-www-form-urlencoded
|
1011
|
-
Accept-Encoding:
|
1012
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1013
|
-
User-Agent:
|
1014
|
-
- Ruby
|
1015
|
-
response:
|
1016
|
-
status:
|
1017
|
-
code: 201
|
1018
|
-
message: Created
|
1019
|
-
headers:
|
1020
|
-
Content-Type:
|
1021
|
-
- application/json
|
1022
|
-
Etag:
|
1023
|
-
- W/"54de5c61bf561c25c106b28f4af5956e"
|
1024
|
-
Cache-Control:
|
1025
|
-
- max-age=0, private, must-revalidate
|
1026
|
-
X-Request-Id:
|
1027
|
-
- e026477d-19a3-4390-9145-3c13f6a9c426
|
1028
|
-
X-Runtime:
|
1029
|
-
- '0.058446'
|
1030
|
-
Content-Length:
|
1031
|
-
- '301'
|
1032
|
-
body:
|
1033
|
-
encoding: UTF-8
|
1034
|
-
string: '{"_id":"5650f0a487f6436cbc000024","created_at":"2015-11-21T22:31:00Z","updated_at":"2015-11-21T22:31:00Z","_slug":"random-title-1","content_type_slug":"articles","_label":"Random
|
1035
|
-
title","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Random
|
1036
|
-
title"}'
|
1037
|
-
http_version:
|
1038
|
-
recorded_at: Sat, 21 Nov 2015 22:31:00 GMT
|
1039
|
-
- request:
|
1040
|
-
method: put
|
1041
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/5650f0a487f6436cbc000024.json
|
1042
|
-
body:
|
1043
|
-
encoding: UTF-8
|
1044
|
-
string: auth_token=E2aoXzMxkFsLnCcmCcc_&content_entry%5Btitle%5D=Titre+au+hasard
|
1045
|
-
headers:
|
1046
|
-
Accept:
|
1047
|
-
- application/json
|
1048
|
-
X-Locomotive-Account-Email:
|
1049
|
-
- admin@locomotivecms.com
|
1050
|
-
X-Locomotive-Account-Token:
|
1051
|
-
- E2aoXzMxkFsLnCcmCcc_
|
1052
|
-
X-Locomotive-Locale:
|
1053
|
-
- fr
|
1054
|
-
Content-Type:
|
1055
|
-
- application/x-www-form-urlencoded
|
1056
|
-
Accept-Encoding:
|
1057
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1058
|
-
User-Agent:
|
1059
|
-
- Ruby
|
1060
|
-
response:
|
1061
|
-
status:
|
1062
|
-
code: 200
|
1063
|
-
message: OK
|
1064
|
-
headers:
|
1065
|
-
Content-Type:
|
1066
|
-
- application/json
|
1067
|
-
Etag:
|
1068
|
-
- W/"00a4656d592c29de774e0a707378a072"
|
1069
|
-
Cache-Control:
|
1070
|
-
- max-age=0, private, must-revalidate
|
1071
|
-
X-Request-Id:
|
1072
|
-
- 058ed604-cdf9-40bf-91d8-d2e4794f0993
|
1073
|
-
X-Runtime:
|
1074
|
-
- '0.051751'
|
1075
|
-
Content-Length:
|
1076
|
-
- '308'
|
1077
|
-
body:
|
1078
|
-
encoding: UTF-8
|
1079
|
-
string: '{"_id":"5650f0a487f6436cbc000024","created_at":"2015-11-21T22:31:00Z","updated_at":"2015-11-21T22:31:00Z","_slug":"titre-au-hasard","content_type_slug":"articles","_label":"Titre
|
1080
|
-
au hasard","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Titre
|
1081
|
-
au hasard"}'
|
1082
|
-
http_version:
|
1083
|
-
recorded_at: Sat, 21 Nov 2015 22:31:00 GMT
|
1084
|
-
- request:
|
1085
|
-
method: delete
|
1086
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/5650f0a287f6436cbc000004.json?auth_token=E2aoXzMxkFsLnCcmCcc_
|
1087
|
-
body:
|
1088
|
-
encoding: US-ASCII
|
1089
|
-
string: ''
|
1090
|
-
headers:
|
1091
|
-
Accept:
|
1092
|
-
- application/json
|
1093
|
-
X-Locomotive-Account-Email:
|
1094
|
-
- admin@locomotivecms.com
|
1095
|
-
X-Locomotive-Account-Token:
|
1096
|
-
- E2aoXzMxkFsLnCcmCcc_
|
1097
|
-
Accept-Encoding:
|
1098
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1099
|
-
User-Agent:
|
1100
|
-
- Ruby
|
1101
|
-
response:
|
1102
|
-
status:
|
1103
|
-
code: 200
|
1104
|
-
message: OK
|
1105
|
-
headers:
|
1106
|
-
Content-Type:
|
1107
|
-
- application/json
|
1108
|
-
Etag:
|
1109
|
-
- W/"966ab8030e51f35aa22226d2ac99cd46"
|
1110
|
-
Cache-Control:
|
1111
|
-
- max-age=0, private, must-revalidate
|
1112
|
-
X-Request-Id:
|
1113
|
-
- 1de846bc-1266-4568-98c1-3616fa79c3fa
|
1114
|
-
X-Runtime:
|
1115
|
-
- '0.057499'
|
1116
|
-
Content-Length:
|
1117
|
-
- '643'
|
1118
|
-
body:
|
1119
|
-
encoding: UTF-8
|
1120
|
-
string: '{"_id":"5650f0a287f6436cbc000004","created_at":"2015-11-21T22:30:58Z","updated_at":"2015-11-21T22:30:58Z","name":"Article","slug":"articles","description":null,"label_field_name":"title","order_direction":"asc","public_submission_enabled":false,"public_submission_accounts":[],"public_submission_title_template":null,"entry_template":null,"display_settings":null,"fields":[{"_id":"5650f0a287f6436cbc000005","created_at":null,"updated_at":null,"name":"title","type":"string","label":"Title","hint":null,"required":true,"localized":true,"unique":false,"position":0}],"order_by":"created_at","group_by":null,"public_submission_account_emails":[]}'
|
1121
|
-
http_version:
|
1122
|
-
recorded_at: Sat, 21 Nov 2015 22:31:00 GMT
|
1123
3
|
- request:
|
1124
4
|
method: post
|
1125
5
|
uri: http://localhost:3000/locomotive/api/v3/tokens.json
|
@@ -1128,13 +8,13 @@ http_interactions:
|
|
1128
8
|
string: email=admin%40locomotivecms.com&password=locomotive
|
1129
9
|
headers:
|
1130
10
|
User-Agent:
|
1131
|
-
-
|
11
|
+
- Faraday v0.15.4
|
1132
12
|
Accept:
|
1133
13
|
- application/json
|
1134
14
|
Accept-Encoding:
|
1135
15
|
- gzip,deflate
|
1136
16
|
Date:
|
1137
|
-
-
|
17
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
1138
18
|
Content-Type:
|
1139
19
|
- application/x-www-form-urlencoded
|
1140
20
|
response:
|
@@ -1144,40 +24,50 @@ http_interactions:
|
|
1144
24
|
headers:
|
1145
25
|
Content-Type:
|
1146
26
|
- application/json
|
1147
|
-
|
1148
|
-
-
|
27
|
+
Content-Length:
|
28
|
+
- '32'
|
29
|
+
Connection:
|
30
|
+
- keep-alive
|
31
|
+
Status:
|
32
|
+
- 201 Created
|
1149
33
|
Cache-Control:
|
1150
34
|
- max-age=0, private, must-revalidate
|
1151
|
-
|
1152
|
-
-
|
35
|
+
Etag:
|
36
|
+
- W/"410e3d6fde24f39257a7cc619b61baa7"
|
1153
37
|
X-Runtime:
|
1154
|
-
- '0.
|
1155
|
-
|
1156
|
-
-
|
38
|
+
- '0.003872'
|
39
|
+
X-Request-Id:
|
40
|
+
- d025eede-bdd0-4782-a646-fa355708efeb
|
41
|
+
Date:
|
42
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
43
|
+
X-Powered-By:
|
44
|
+
- Phusion Passenger 6.0.4
|
45
|
+
Server:
|
46
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
1157
47
|
body:
|
1158
48
|
encoding: UTF-8
|
1159
|
-
string: '{"token":"
|
49
|
+
string: '{"token":"bzwAyFQzcchf_hgDQhz3"}'
|
1160
50
|
http_version:
|
1161
|
-
recorded_at:
|
51
|
+
recorded_at: Sun, 17 Nov 2019 16:39:32 GMT
|
1162
52
|
- request:
|
1163
53
|
method: post
|
1164
54
|
uri: http://localhost:3000/locomotive/sample/api/v3/content_types.json
|
1165
55
|
body:
|
1166
56
|
encoding: UTF-8
|
1167
|
-
string: auth_token=
|
57
|
+
string: auth_token=bzwAyFQzcchf_hgDQhz3&content_type%5Bfields%5D%5B0%5D%5Blabel%5D=Title&content_type%5Bfields%5D%5B0%5D%5Blocalized%5D=true&content_type%5Bfields%5D%5B0%5D%5Bname%5D=title&content_type%5Bfields%5D%5B0%5D%5Btype%5D=string&content_type%5Bname%5D=Article&content_type%5Bslug%5D=articles
|
1168
58
|
headers:
|
1169
59
|
User-Agent:
|
1170
|
-
-
|
60
|
+
- Faraday v0.15.4
|
1171
61
|
Accept:
|
1172
62
|
- application/json
|
1173
63
|
Accept-Encoding:
|
1174
64
|
- gzip,deflate
|
1175
65
|
Date:
|
1176
|
-
-
|
66
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
1177
67
|
X-Locomotive-Account-Email:
|
1178
68
|
- admin@locomotivecms.com
|
1179
69
|
X-Locomotive-Account-Token:
|
1180
|
-
-
|
70
|
+
- bzwAyFQzcchf_hgDQhz3
|
1181
71
|
Content-Type:
|
1182
72
|
- application/x-www-form-urlencoded
|
1183
73
|
response:
|
@@ -1187,21 +77,31 @@ http_interactions:
|
|
1187
77
|
headers:
|
1188
78
|
Content-Type:
|
1189
79
|
- application/json
|
1190
|
-
|
1191
|
-
-
|
80
|
+
Content-Length:
|
81
|
+
- '719'
|
82
|
+
Connection:
|
83
|
+
- keep-alive
|
84
|
+
Status:
|
85
|
+
- 201 Created
|
1192
86
|
Cache-Control:
|
1193
87
|
- max-age=0, private, must-revalidate
|
1194
|
-
|
1195
|
-
-
|
88
|
+
Etag:
|
89
|
+
- W/"642a8243aaad76062066b4a3a8bb1e6c"
|
1196
90
|
X-Runtime:
|
1197
|
-
- '0.
|
1198
|
-
|
1199
|
-
-
|
91
|
+
- '0.056417'
|
92
|
+
X-Request-Id:
|
93
|
+
- 24d35d05-6fb1-4e78-bd4a-9659d52e09a9
|
94
|
+
Date:
|
95
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
96
|
+
X-Powered-By:
|
97
|
+
- Phusion Passenger 6.0.4
|
98
|
+
Server:
|
99
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
1200
100
|
body:
|
1201
101
|
encoding: UTF-8
|
1202
|
-
string: '{"_id":"
|
102
|
+
string: '{"_id":"5dd177c4a95330aa17f8f8e8","created_at":"2019-11-17T16:39:32Z","updated_at":"2019-11-17T16:39:32Z","name":"Article","slug":"articles","description":null,"label_field_name":"title","order_direction":"asc","public_submission_enabled":false,"public_submission_accounts":[],"public_submission_title_template":null,"recaptcha_required":false,"entry_template":null,"display_settings":null,"filter_fields":null,"fields":[{"_id":"5dd177c4a95330aa17f8f8e9","created_at":null,"updated_at":null,"name":"title","type":"string","label":"Title","hint":null,"required":true,"localized":true,"unique":false,"default":null,"position":0,"group":null}],"order_by":"created_at","group_by":null,"public_submission_account_emails":[]}'
|
1203
103
|
http_version:
|
1204
|
-
recorded_at:
|
104
|
+
recorded_at: Sun, 17 Nov 2019 16:39:32 GMT
|
1205
105
|
- request:
|
1206
106
|
method: post
|
1207
107
|
uri: http://localhost:3000/locomotive/api/v3/tokens.json
|
@@ -1210,13 +110,13 @@ http_interactions:
|
|
1210
110
|
string: email=admin%40locomotivecms.com&password=locomotive
|
1211
111
|
headers:
|
1212
112
|
User-Agent:
|
1213
|
-
-
|
113
|
+
- Faraday v0.15.4
|
1214
114
|
Accept:
|
1215
115
|
- application/json
|
1216
116
|
Accept-Encoding:
|
1217
117
|
- gzip,deflate
|
1218
118
|
Date:
|
1219
|
-
-
|
119
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
1220
120
|
Content-Type:
|
1221
121
|
- application/x-www-form-urlencoded
|
1222
122
|
response:
|
@@ -1226,40 +126,50 @@ http_interactions:
|
|
1226
126
|
headers:
|
1227
127
|
Content-Type:
|
1228
128
|
- application/json
|
1229
|
-
|
1230
|
-
-
|
129
|
+
Content-Length:
|
130
|
+
- '32'
|
131
|
+
Connection:
|
132
|
+
- keep-alive
|
133
|
+
Status:
|
134
|
+
- 201 Created
|
1231
135
|
Cache-Control:
|
1232
136
|
- max-age=0, private, must-revalidate
|
1233
|
-
|
1234
|
-
-
|
137
|
+
Etag:
|
138
|
+
- W/"410e3d6fde24f39257a7cc619b61baa7"
|
1235
139
|
X-Runtime:
|
1236
|
-
- '0.
|
1237
|
-
|
1238
|
-
-
|
140
|
+
- '0.004222'
|
141
|
+
X-Request-Id:
|
142
|
+
- f85fee53-aad5-477e-9c59-29ca9980f180
|
143
|
+
Date:
|
144
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
145
|
+
X-Powered-By:
|
146
|
+
- Phusion Passenger 6.0.4
|
147
|
+
Server:
|
148
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
1239
149
|
body:
|
1240
150
|
encoding: UTF-8
|
1241
|
-
string: '{"token":"
|
151
|
+
string: '{"token":"bzwAyFQzcchf_hgDQhz3"}'
|
1242
152
|
http_version:
|
1243
|
-
recorded_at:
|
153
|
+
recorded_at: Sun, 17 Nov 2019 16:39:32 GMT
|
1244
154
|
- request:
|
1245
155
|
method: post
|
1246
156
|
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json
|
1247
157
|
body:
|
1248
158
|
encoding: UTF-8
|
1249
|
-
string: auth_token=
|
159
|
+
string: auth_token=bzwAyFQzcchf_hgDQhz3&content_entry%5Btitle%5D=Hello+world
|
1250
160
|
headers:
|
1251
161
|
User-Agent:
|
1252
|
-
-
|
162
|
+
- Faraday v0.15.4
|
1253
163
|
Accept:
|
1254
164
|
- application/json
|
1255
165
|
Accept-Encoding:
|
1256
166
|
- gzip,deflate
|
1257
167
|
Date:
|
1258
|
-
-
|
168
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
1259
169
|
X-Locomotive-Account-Email:
|
1260
170
|
- admin@locomotivecms.com
|
1261
171
|
X-Locomotive-Account-Token:
|
1262
|
-
-
|
172
|
+
- bzwAyFQzcchf_hgDQhz3
|
1263
173
|
Content-Type:
|
1264
174
|
- application/x-www-form-urlencoded
|
1265
175
|
response:
|
@@ -1269,42 +179,52 @@ http_interactions:
|
|
1269
179
|
headers:
|
1270
180
|
Content-Type:
|
1271
181
|
- application/json
|
1272
|
-
|
1273
|
-
-
|
182
|
+
Content-Length:
|
183
|
+
- '296'
|
184
|
+
Connection:
|
185
|
+
- keep-alive
|
186
|
+
Status:
|
187
|
+
- 201 Created
|
1274
188
|
Cache-Control:
|
1275
189
|
- max-age=0, private, must-revalidate
|
1276
|
-
|
1277
|
-
-
|
190
|
+
Etag:
|
191
|
+
- W/"16a4bbe3a567ff5d5780eecd2c94a41c"
|
1278
192
|
X-Runtime:
|
1279
|
-
- '0.
|
1280
|
-
|
1281
|
-
-
|
193
|
+
- '0.043932'
|
194
|
+
X-Request-Id:
|
195
|
+
- 724946b1-c34f-4073-bc10-bd4aa9a535f9
|
196
|
+
Date:
|
197
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
198
|
+
X-Powered-By:
|
199
|
+
- Phusion Passenger 6.0.4
|
200
|
+
Server:
|
201
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
1282
202
|
body:
|
1283
203
|
encoding: UTF-8
|
1284
|
-
string: '{"_id":"
|
204
|
+
string: '{"_id":"5dd177c4a95330aa17f8f8eb","created_at":"2019-11-17T16:39:32Z","updated_at":"2019-11-17T16:39:32Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
1285
205
|
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
1286
206
|
world"}'
|
1287
207
|
http_version:
|
1288
|
-
recorded_at:
|
208
|
+
recorded_at: Sun, 17 Nov 2019 16:39:32 GMT
|
1289
209
|
- request:
|
1290
210
|
method: post
|
1291
211
|
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json
|
1292
212
|
body:
|
1293
213
|
encoding: UTF-8
|
1294
|
-
string: auth_token=
|
214
|
+
string: auth_token=bzwAyFQzcchf_hgDQhz3&content_entry%5Btitle%5D=Lorem+ipsum
|
1295
215
|
headers:
|
1296
216
|
User-Agent:
|
1297
|
-
-
|
217
|
+
- Faraday v0.15.4
|
1298
218
|
Accept:
|
1299
219
|
- application/json
|
1300
220
|
Accept-Encoding:
|
1301
221
|
- gzip,deflate
|
1302
222
|
Date:
|
1303
|
-
-
|
223
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
1304
224
|
X-Locomotive-Account-Email:
|
1305
225
|
- admin@locomotivecms.com
|
1306
226
|
X-Locomotive-Account-Token:
|
1307
|
-
-
|
227
|
+
- bzwAyFQzcchf_hgDQhz3
|
1308
228
|
Content-Type:
|
1309
229
|
- application/x-www-form-urlencoded
|
1310
230
|
response:
|
@@ -1314,93 +234,115 @@ http_interactions:
|
|
1314
234
|
headers:
|
1315
235
|
Content-Type:
|
1316
236
|
- application/json
|
1317
|
-
|
1318
|
-
-
|
237
|
+
Content-Length:
|
238
|
+
- '296'
|
239
|
+
Connection:
|
240
|
+
- keep-alive
|
241
|
+
Status:
|
242
|
+
- 201 Created
|
1319
243
|
Cache-Control:
|
1320
244
|
- max-age=0, private, must-revalidate
|
1321
|
-
|
1322
|
-
-
|
245
|
+
Etag:
|
246
|
+
- W/"07163160bd10a907c5c3a4777edb3f67"
|
1323
247
|
X-Runtime:
|
1324
|
-
- '0.
|
1325
|
-
|
1326
|
-
-
|
248
|
+
- '0.025287'
|
249
|
+
X-Request-Id:
|
250
|
+
- f6a285ad-e142-417c-bedc-a276b040263c
|
251
|
+
Date:
|
252
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
253
|
+
X-Powered-By:
|
254
|
+
- Phusion Passenger 6.0.4
|
255
|
+
Server:
|
256
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
1327
257
|
body:
|
1328
258
|
encoding: UTF-8
|
1329
|
-
string: '{"_id":"
|
259
|
+
string: '{"_id":"5dd177c4a95330aa17f8f8ee","created_at":"2019-11-17T16:39:32Z","updated_at":"2019-11-17T16:39:32Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
1330
260
|
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
1331
261
|
ipsum"}'
|
1332
262
|
http_version:
|
1333
|
-
recorded_at:
|
263
|
+
recorded_at: Sun, 17 Nov 2019 16:39:32 GMT
|
1334
264
|
- request:
|
1335
265
|
method: get
|
1336
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json?auth_token=
|
266
|
+
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json?auth_token=bzwAyFQzcchf_hgDQhz3&where=%7B%7D
|
1337
267
|
body:
|
1338
268
|
encoding: UTF-8
|
1339
269
|
string: ''
|
1340
270
|
headers:
|
1341
271
|
User-Agent:
|
1342
|
-
-
|
272
|
+
- Faraday v0.15.4
|
1343
273
|
Accept:
|
1344
274
|
- application/json
|
1345
275
|
Accept-Encoding:
|
1346
276
|
- gzip,deflate
|
1347
277
|
Date:
|
1348
|
-
-
|
278
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
1349
279
|
X-Locomotive-Account-Email:
|
1350
280
|
- admin@locomotivecms.com
|
1351
281
|
X-Locomotive-Account-Token:
|
1352
|
-
-
|
282
|
+
- bzwAyFQzcchf_hgDQhz3
|
1353
283
|
response:
|
1354
284
|
status:
|
1355
285
|
code: 200
|
1356
286
|
message: OK
|
1357
287
|
headers:
|
288
|
+
Content-Type:
|
289
|
+
- application/json
|
290
|
+
Transfer-Encoding:
|
291
|
+
- chunked
|
292
|
+
Connection:
|
293
|
+
- keep-alive
|
294
|
+
Status:
|
295
|
+
- 200 OK
|
1358
296
|
X-Total-Pages:
|
1359
297
|
- '1'
|
1360
|
-
X-Per-Page:
|
1361
|
-
- '10'
|
1362
298
|
X-Total-Entries:
|
1363
299
|
- '2'
|
1364
|
-
|
1365
|
-
-
|
1366
|
-
Etag:
|
1367
|
-
- W/"831bc9d9711667b757822c51189d42cd"
|
300
|
+
X-Per-Page:
|
301
|
+
- '10'
|
1368
302
|
Cache-Control:
|
1369
303
|
- max-age=0, private, must-revalidate
|
1370
|
-
|
1371
|
-
-
|
304
|
+
Etag:
|
305
|
+
- W/"3a1d2839e1f56a40ef85a7ca6515af94"
|
1372
306
|
X-Runtime:
|
1373
|
-
- '0.
|
1374
|
-
|
1375
|
-
-
|
307
|
+
- '0.018996'
|
308
|
+
X-Request-Id:
|
309
|
+
- c16a3bf6-046e-4a0f-8309-756908faf081
|
310
|
+
Date:
|
311
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
312
|
+
X-Powered-By:
|
313
|
+
- Phusion Passenger 6.0.4
|
314
|
+
Server:
|
315
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
316
|
+
Content-Encoding:
|
317
|
+
- gzip
|
1376
318
|
body:
|
1377
319
|
encoding: UTF-8
|
1378
|
-
string: '[{"_id":"
|
320
|
+
string: '[{"_id":"5dd177c4a95330aa17f8f8eb","created_at":"2019-11-17T16:39:32Z","updated_at":"2019-11-17T16:39:32Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
1379
321
|
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
1380
|
-
world"},{"_id":"
|
322
|
+
world"},{"_id":"5dd177c4a95330aa17f8f8ee","created_at":"2019-11-17T16:39:32Z","updated_at":"2019-11-17T16:39:32Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
1381
323
|
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
1382
324
|
ipsum"}]'
|
1383
325
|
http_version:
|
1384
|
-
recorded_at:
|
326
|
+
recorded_at: Sun, 17 Nov 2019 16:39:32 GMT
|
1385
327
|
- request:
|
1386
328
|
method: delete
|
1387
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/hello-world.json?auth_token=
|
329
|
+
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/hello-world.json?auth_token=bzwAyFQzcchf_hgDQhz3
|
1388
330
|
body:
|
1389
331
|
encoding: UTF-8
|
1390
332
|
string: ''
|
1391
333
|
headers:
|
1392
334
|
User-Agent:
|
1393
|
-
-
|
335
|
+
- Faraday v0.15.4
|
1394
336
|
Accept:
|
1395
337
|
- application/json
|
1396
338
|
Accept-Encoding:
|
1397
339
|
- gzip,deflate
|
1398
340
|
Date:
|
1399
|
-
-
|
341
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
1400
342
|
X-Locomotive-Account-Email:
|
1401
343
|
- admin@locomotivecms.com
|
1402
344
|
X-Locomotive-Account-Token:
|
1403
|
-
-
|
345
|
+
- bzwAyFQzcchf_hgDQhz3
|
1404
346
|
response:
|
1405
347
|
status:
|
1406
348
|
code: 200
|
@@ -1408,42 +350,54 @@ http_interactions:
|
|
1408
350
|
headers:
|
1409
351
|
Content-Type:
|
1410
352
|
- application/json
|
1411
|
-
|
1412
|
-
-
|
353
|
+
Transfer-Encoding:
|
354
|
+
- chunked
|
355
|
+
Connection:
|
356
|
+
- keep-alive
|
357
|
+
Status:
|
358
|
+
- 200 OK
|
1413
359
|
Cache-Control:
|
1414
360
|
- max-age=0, private, must-revalidate
|
1415
|
-
|
1416
|
-
-
|
361
|
+
Etag:
|
362
|
+
- W/"16a4bbe3a567ff5d5780eecd2c94a41c"
|
1417
363
|
X-Runtime:
|
1418
|
-
- '0.
|
1419
|
-
|
1420
|
-
-
|
364
|
+
- '0.021960'
|
365
|
+
X-Request-Id:
|
366
|
+
- 3ce687c6-6d56-4040-8aba-a57c66203b58
|
367
|
+
Date:
|
368
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
369
|
+
X-Powered-By:
|
370
|
+
- Phusion Passenger 6.0.4
|
371
|
+
Server:
|
372
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
373
|
+
Content-Encoding:
|
374
|
+
- gzip
|
1421
375
|
body:
|
1422
376
|
encoding: UTF-8
|
1423
|
-
string: '{"_id":"
|
377
|
+
string: '{"_id":"5dd177c4a95330aa17f8f8eb","created_at":"2019-11-17T16:39:32Z","updated_at":"2019-11-17T16:39:32Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
1424
378
|
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
1425
379
|
world"}'
|
1426
380
|
http_version:
|
1427
|
-
recorded_at:
|
381
|
+
recorded_at: Sun, 17 Nov 2019 16:39:32 GMT
|
1428
382
|
- request:
|
1429
383
|
method: delete
|
1430
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/lorem-ipsum.json?auth_token=
|
384
|
+
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/lorem-ipsum.json?auth_token=bzwAyFQzcchf_hgDQhz3
|
1431
385
|
body:
|
1432
386
|
encoding: UTF-8
|
1433
387
|
string: ''
|
1434
388
|
headers:
|
1435
389
|
User-Agent:
|
1436
|
-
-
|
390
|
+
- Faraday v0.15.4
|
1437
391
|
Accept:
|
1438
392
|
- application/json
|
1439
393
|
Accept-Encoding:
|
1440
394
|
- gzip,deflate
|
1441
395
|
Date:
|
1442
|
-
-
|
396
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
1443
397
|
X-Locomotive-Account-Email:
|
1444
398
|
- admin@locomotivecms.com
|
1445
399
|
X-Locomotive-Account-Token:
|
1446
|
-
-
|
400
|
+
- bzwAyFQzcchf_hgDQhz3
|
1447
401
|
response:
|
1448
402
|
status:
|
1449
403
|
code: 200
|
@@ -1451,23 +405,35 @@ http_interactions:
|
|
1451
405
|
headers:
|
1452
406
|
Content-Type:
|
1453
407
|
- application/json
|
1454
|
-
|
1455
|
-
-
|
408
|
+
Transfer-Encoding:
|
409
|
+
- chunked
|
410
|
+
Connection:
|
411
|
+
- keep-alive
|
412
|
+
Status:
|
413
|
+
- 200 OK
|
1456
414
|
Cache-Control:
|
1457
415
|
- max-age=0, private, must-revalidate
|
1458
|
-
|
1459
|
-
-
|
416
|
+
Etag:
|
417
|
+
- W/"07163160bd10a907c5c3a4777edb3f67"
|
1460
418
|
X-Runtime:
|
1461
|
-
- '0.
|
1462
|
-
|
1463
|
-
-
|
419
|
+
- '0.020903'
|
420
|
+
X-Request-Id:
|
421
|
+
- e2fdd595-8eb0-4f06-ba8f-ffb591eed832
|
422
|
+
Date:
|
423
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
424
|
+
X-Powered-By:
|
425
|
+
- Phusion Passenger 6.0.4
|
426
|
+
Server:
|
427
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
428
|
+
Content-Encoding:
|
429
|
+
- gzip
|
1464
430
|
body:
|
1465
431
|
encoding: UTF-8
|
1466
|
-
string: '{"_id":"
|
432
|
+
string: '{"_id":"5dd177c4a95330aa17f8f8ee","created_at":"2019-11-17T16:39:32Z","updated_at":"2019-11-17T16:39:32Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
1467
433
|
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
1468
434
|
ipsum"}'
|
1469
435
|
http_version:
|
1470
|
-
recorded_at:
|
436
|
+
recorded_at: Sun, 17 Nov 2019 16:39:32 GMT
|
1471
437
|
- request:
|
1472
438
|
method: post
|
1473
439
|
uri: http://localhost:3000/locomotive/api/v3/tokens.json
|
@@ -1476,13 +442,13 @@ http_interactions:
|
|
1476
442
|
string: email=admin%40locomotivecms.com&password=locomotive
|
1477
443
|
headers:
|
1478
444
|
User-Agent:
|
1479
|
-
-
|
445
|
+
- Faraday v0.15.4
|
1480
446
|
Accept:
|
1481
447
|
- application/json
|
1482
448
|
Accept-Encoding:
|
1483
449
|
- gzip,deflate
|
1484
450
|
Date:
|
1485
|
-
-
|
451
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
1486
452
|
Content-Type:
|
1487
453
|
- application/x-www-form-urlencoded
|
1488
454
|
response:
|
@@ -1492,40 +458,50 @@ http_interactions:
|
|
1492
458
|
headers:
|
1493
459
|
Content-Type:
|
1494
460
|
- application/json
|
1495
|
-
|
1496
|
-
-
|
461
|
+
Content-Length:
|
462
|
+
- '32'
|
463
|
+
Connection:
|
464
|
+
- keep-alive
|
465
|
+
Status:
|
466
|
+
- 201 Created
|
1497
467
|
Cache-Control:
|
1498
468
|
- max-age=0, private, must-revalidate
|
1499
|
-
|
1500
|
-
-
|
469
|
+
Etag:
|
470
|
+
- W/"410e3d6fde24f39257a7cc619b61baa7"
|
1501
471
|
X-Runtime:
|
1502
|
-
- '0.
|
1503
|
-
|
1504
|
-
-
|
472
|
+
- '0.003708'
|
473
|
+
X-Request-Id:
|
474
|
+
- 8a94c6d9-6af0-4d9e-8c9c-f70d5ecb5a56
|
475
|
+
Date:
|
476
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
477
|
+
X-Powered-By:
|
478
|
+
- Phusion Passenger 6.0.4
|
479
|
+
Server:
|
480
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
1505
481
|
body:
|
1506
482
|
encoding: UTF-8
|
1507
|
-
string: '{"token":"
|
483
|
+
string: '{"token":"bzwAyFQzcchf_hgDQhz3"}'
|
1508
484
|
http_version:
|
1509
|
-
recorded_at:
|
485
|
+
recorded_at: Sun, 17 Nov 2019 16:39:32 GMT
|
1510
486
|
- request:
|
1511
487
|
method: post
|
1512
488
|
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json
|
1513
489
|
body:
|
1514
490
|
encoding: UTF-8
|
1515
|
-
string: auth_token=
|
491
|
+
string: auth_token=bzwAyFQzcchf_hgDQhz3&content_entry%5Btitle%5D=Hello+world
|
1516
492
|
headers:
|
1517
493
|
User-Agent:
|
1518
|
-
-
|
494
|
+
- Faraday v0.15.4
|
1519
495
|
Accept:
|
1520
496
|
- application/json
|
1521
497
|
Accept-Encoding:
|
1522
498
|
- gzip,deflate
|
1523
499
|
Date:
|
1524
|
-
-
|
500
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
1525
501
|
X-Locomotive-Account-Email:
|
1526
502
|
- admin@locomotivecms.com
|
1527
503
|
X-Locomotive-Account-Token:
|
1528
|
-
-
|
504
|
+
- bzwAyFQzcchf_hgDQhz3
|
1529
505
|
Content-Type:
|
1530
506
|
- application/x-www-form-urlencoded
|
1531
507
|
response:
|
@@ -1535,42 +511,52 @@ http_interactions:
|
|
1535
511
|
headers:
|
1536
512
|
Content-Type:
|
1537
513
|
- application/json
|
1538
|
-
|
1539
|
-
-
|
514
|
+
Content-Length:
|
515
|
+
- '296'
|
516
|
+
Connection:
|
517
|
+
- keep-alive
|
518
|
+
Status:
|
519
|
+
- 201 Created
|
1540
520
|
Cache-Control:
|
1541
521
|
- max-age=0, private, must-revalidate
|
1542
|
-
|
1543
|
-
-
|
522
|
+
Etag:
|
523
|
+
- W/"1fe8106a60b928bdbe3621c6d0f7220e"
|
1544
524
|
X-Runtime:
|
1545
|
-
- '0.
|
1546
|
-
|
1547
|
-
-
|
525
|
+
- '0.055919'
|
526
|
+
X-Request-Id:
|
527
|
+
- c3db4f2b-90f5-48db-b07b-764fd1b402bc
|
528
|
+
Date:
|
529
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
530
|
+
X-Powered-By:
|
531
|
+
- Phusion Passenger 6.0.4
|
532
|
+
Server:
|
533
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
1548
534
|
body:
|
1549
535
|
encoding: UTF-8
|
1550
|
-
string: '{"_id":"
|
536
|
+
string: '{"_id":"5dd177c4a95330aa17f8f8f1","created_at":"2019-11-17T16:39:32Z","updated_at":"2019-11-17T16:39:32Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
1551
537
|
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
1552
538
|
world"}'
|
1553
539
|
http_version:
|
1554
|
-
recorded_at:
|
540
|
+
recorded_at: Sun, 17 Nov 2019 16:39:32 GMT
|
1555
541
|
- request:
|
1556
542
|
method: post
|
1557
543
|
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json
|
1558
544
|
body:
|
1559
545
|
encoding: UTF-8
|
1560
|
-
string: auth_token=
|
546
|
+
string: auth_token=bzwAyFQzcchf_hgDQhz3&content_entry%5Btitle%5D=Lorem+ipsum
|
1561
547
|
headers:
|
1562
548
|
User-Agent:
|
1563
|
-
-
|
549
|
+
- Faraday v0.15.4
|
1564
550
|
Accept:
|
1565
551
|
- application/json
|
1566
552
|
Accept-Encoding:
|
1567
553
|
- gzip,deflate
|
1568
554
|
Date:
|
1569
|
-
-
|
555
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
1570
556
|
X-Locomotive-Account-Email:
|
1571
557
|
- admin@locomotivecms.com
|
1572
558
|
X-Locomotive-Account-Token:
|
1573
|
-
-
|
559
|
+
- bzwAyFQzcchf_hgDQhz3
|
1574
560
|
Content-Type:
|
1575
561
|
- application/x-www-form-urlencoded
|
1576
562
|
response:
|
@@ -1580,93 +566,115 @@ http_interactions:
|
|
1580
566
|
headers:
|
1581
567
|
Content-Type:
|
1582
568
|
- application/json
|
1583
|
-
|
1584
|
-
-
|
569
|
+
Content-Length:
|
570
|
+
- '296'
|
571
|
+
Connection:
|
572
|
+
- keep-alive
|
573
|
+
Status:
|
574
|
+
- 201 Created
|
1585
575
|
Cache-Control:
|
1586
576
|
- max-age=0, private, must-revalidate
|
1587
|
-
|
1588
|
-
-
|
577
|
+
Etag:
|
578
|
+
- W/"cf739901bc25e172472fd537c8365ae1"
|
1589
579
|
X-Runtime:
|
1590
|
-
- '0.
|
1591
|
-
|
1592
|
-
-
|
580
|
+
- '0.027359'
|
581
|
+
X-Request-Id:
|
582
|
+
- 279f226f-e2bc-46d0-9ad3-2ed0e0b92b6d
|
583
|
+
Date:
|
584
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
585
|
+
X-Powered-By:
|
586
|
+
- Phusion Passenger 6.0.4
|
587
|
+
Server:
|
588
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
1593
589
|
body:
|
1594
590
|
encoding: UTF-8
|
1595
|
-
string: '{"_id":"
|
591
|
+
string: '{"_id":"5dd177c4a95330aa17f8f8f4","created_at":"2019-11-17T16:39:32Z","updated_at":"2019-11-17T16:39:32Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
1596
592
|
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
1597
593
|
ipsum"}'
|
1598
594
|
http_version:
|
1599
|
-
recorded_at:
|
595
|
+
recorded_at: Sun, 17 Nov 2019 16:39:32 GMT
|
1600
596
|
- request:
|
1601
597
|
method: get
|
1602
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json?auth_token=
|
598
|
+
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json?auth_token=bzwAyFQzcchf_hgDQhz3&where=%7B%7D
|
1603
599
|
body:
|
1604
600
|
encoding: UTF-8
|
1605
601
|
string: ''
|
1606
602
|
headers:
|
1607
603
|
User-Agent:
|
1608
|
-
-
|
604
|
+
- Faraday v0.15.4
|
1609
605
|
Accept:
|
1610
606
|
- application/json
|
1611
607
|
Accept-Encoding:
|
1612
608
|
- gzip,deflate
|
1613
609
|
Date:
|
1614
|
-
-
|
610
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
1615
611
|
X-Locomotive-Account-Email:
|
1616
612
|
- admin@locomotivecms.com
|
1617
613
|
X-Locomotive-Account-Token:
|
1618
|
-
-
|
614
|
+
- bzwAyFQzcchf_hgDQhz3
|
1619
615
|
response:
|
1620
616
|
status:
|
1621
617
|
code: 200
|
1622
618
|
message: OK
|
1623
619
|
headers:
|
620
|
+
Content-Type:
|
621
|
+
- application/json
|
622
|
+
Transfer-Encoding:
|
623
|
+
- chunked
|
624
|
+
Connection:
|
625
|
+
- keep-alive
|
626
|
+
Status:
|
627
|
+
- 200 OK
|
1624
628
|
X-Total-Pages:
|
1625
629
|
- '1'
|
1626
|
-
X-Per-Page:
|
1627
|
-
- '10'
|
1628
630
|
X-Total-Entries:
|
1629
631
|
- '2'
|
1630
|
-
|
1631
|
-
-
|
1632
|
-
Etag:
|
1633
|
-
- W/"5a76e81daa6e0efb58c82774cb4b6fb2"
|
632
|
+
X-Per-Page:
|
633
|
+
- '10'
|
1634
634
|
Cache-Control:
|
1635
635
|
- max-age=0, private, must-revalidate
|
1636
|
-
|
1637
|
-
-
|
636
|
+
Etag:
|
637
|
+
- W/"e1f4fc783cb8fb99699ac32236b1feac"
|
1638
638
|
X-Runtime:
|
1639
|
-
- '0.
|
1640
|
-
|
1641
|
-
-
|
639
|
+
- '0.018307'
|
640
|
+
X-Request-Id:
|
641
|
+
- 979bc057-3fb2-432f-a5f0-2aeef87d9ccd
|
642
|
+
Date:
|
643
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
644
|
+
X-Powered-By:
|
645
|
+
- Phusion Passenger 6.0.4
|
646
|
+
Server:
|
647
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
648
|
+
Content-Encoding:
|
649
|
+
- gzip
|
1642
650
|
body:
|
1643
651
|
encoding: UTF-8
|
1644
|
-
string: '[{"_id":"
|
652
|
+
string: '[{"_id":"5dd177c4a95330aa17f8f8f1","created_at":"2019-11-17T16:39:32Z","updated_at":"2019-11-17T16:39:32Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
1645
653
|
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
1646
|
-
world"},{"_id":"
|
654
|
+
world"},{"_id":"5dd177c4a95330aa17f8f8f4","created_at":"2019-11-17T16:39:32Z","updated_at":"2019-11-17T16:39:32Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
1647
655
|
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
1648
656
|
ipsum"}]'
|
1649
657
|
http_version:
|
1650
|
-
recorded_at:
|
658
|
+
recorded_at: Sun, 17 Nov 2019 16:39:32 GMT
|
1651
659
|
- request:
|
1652
660
|
method: delete
|
1653
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/hello-world.json?auth_token=
|
661
|
+
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/hello-world.json?auth_token=bzwAyFQzcchf_hgDQhz3
|
1654
662
|
body:
|
1655
663
|
encoding: UTF-8
|
1656
664
|
string: ''
|
1657
665
|
headers:
|
1658
666
|
User-Agent:
|
1659
|
-
-
|
667
|
+
- Faraday v0.15.4
|
1660
668
|
Accept:
|
1661
669
|
- application/json
|
1662
670
|
Accept-Encoding:
|
1663
671
|
- gzip,deflate
|
1664
672
|
Date:
|
1665
|
-
-
|
673
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
1666
674
|
X-Locomotive-Account-Email:
|
1667
675
|
- admin@locomotivecms.com
|
1668
676
|
X-Locomotive-Account-Token:
|
1669
|
-
-
|
677
|
+
- bzwAyFQzcchf_hgDQhz3
|
1670
678
|
response:
|
1671
679
|
status:
|
1672
680
|
code: 200
|
@@ -1674,42 +682,54 @@ http_interactions:
|
|
1674
682
|
headers:
|
1675
683
|
Content-Type:
|
1676
684
|
- application/json
|
1677
|
-
|
1678
|
-
-
|
685
|
+
Transfer-Encoding:
|
686
|
+
- chunked
|
687
|
+
Connection:
|
688
|
+
- keep-alive
|
689
|
+
Status:
|
690
|
+
- 200 OK
|
1679
691
|
Cache-Control:
|
1680
692
|
- max-age=0, private, must-revalidate
|
1681
|
-
|
1682
|
-
-
|
693
|
+
Etag:
|
694
|
+
- W/"1fe8106a60b928bdbe3621c6d0f7220e"
|
1683
695
|
X-Runtime:
|
1684
|
-
- '0.
|
1685
|
-
|
1686
|
-
-
|
696
|
+
- '0.021226'
|
697
|
+
X-Request-Id:
|
698
|
+
- 89ddeb87-b9db-4d75-9955-9b3d26546b37
|
699
|
+
Date:
|
700
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
701
|
+
X-Powered-By:
|
702
|
+
- Phusion Passenger 6.0.4
|
703
|
+
Server:
|
704
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
705
|
+
Content-Encoding:
|
706
|
+
- gzip
|
1687
707
|
body:
|
1688
708
|
encoding: UTF-8
|
1689
|
-
string: '{"_id":"
|
709
|
+
string: '{"_id":"5dd177c4a95330aa17f8f8f1","created_at":"2019-11-17T16:39:32Z","updated_at":"2019-11-17T16:39:32Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
1690
710
|
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
1691
711
|
world"}'
|
1692
712
|
http_version:
|
1693
|
-
recorded_at:
|
713
|
+
recorded_at: Sun, 17 Nov 2019 16:39:32 GMT
|
1694
714
|
- request:
|
1695
715
|
method: delete
|
1696
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/lorem-ipsum.json?auth_token=
|
716
|
+
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/lorem-ipsum.json?auth_token=bzwAyFQzcchf_hgDQhz3
|
1697
717
|
body:
|
1698
718
|
encoding: UTF-8
|
1699
719
|
string: ''
|
1700
720
|
headers:
|
1701
721
|
User-Agent:
|
1702
|
-
-
|
722
|
+
- Faraday v0.15.4
|
1703
723
|
Accept:
|
1704
724
|
- application/json
|
1705
725
|
Accept-Encoding:
|
1706
726
|
- gzip,deflate
|
1707
727
|
Date:
|
1708
|
-
-
|
728
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
1709
729
|
X-Locomotive-Account-Email:
|
1710
730
|
- admin@locomotivecms.com
|
1711
731
|
X-Locomotive-Account-Token:
|
1712
|
-
-
|
732
|
+
- bzwAyFQzcchf_hgDQhz3
|
1713
733
|
response:
|
1714
734
|
status:
|
1715
735
|
code: 200
|
@@ -1717,23 +737,35 @@ http_interactions:
|
|
1717
737
|
headers:
|
1718
738
|
Content-Type:
|
1719
739
|
- application/json
|
1720
|
-
|
1721
|
-
-
|
740
|
+
Transfer-Encoding:
|
741
|
+
- chunked
|
742
|
+
Connection:
|
743
|
+
- keep-alive
|
744
|
+
Status:
|
745
|
+
- 200 OK
|
1722
746
|
Cache-Control:
|
1723
747
|
- max-age=0, private, must-revalidate
|
1724
|
-
|
1725
|
-
-
|
748
|
+
Etag:
|
749
|
+
- W/"cf739901bc25e172472fd537c8365ae1"
|
1726
750
|
X-Runtime:
|
1727
|
-
- '0.
|
1728
|
-
|
1729
|
-
-
|
751
|
+
- '0.020109'
|
752
|
+
X-Request-Id:
|
753
|
+
- 7eab195d-5e1a-4f86-98a2-153663ec846a
|
754
|
+
Date:
|
755
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
756
|
+
X-Powered-By:
|
757
|
+
- Phusion Passenger 6.0.4
|
758
|
+
Server:
|
759
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
760
|
+
Content-Encoding:
|
761
|
+
- gzip
|
1730
762
|
body:
|
1731
763
|
encoding: UTF-8
|
1732
|
-
string: '{"_id":"
|
764
|
+
string: '{"_id":"5dd177c4a95330aa17f8f8f4","created_at":"2019-11-17T16:39:32Z","updated_at":"2019-11-17T16:39:32Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
1733
765
|
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
1734
766
|
ipsum"}'
|
1735
767
|
http_version:
|
1736
|
-
recorded_at:
|
768
|
+
recorded_at: Sun, 17 Nov 2019 16:39:32 GMT
|
1737
769
|
- request:
|
1738
770
|
method: post
|
1739
771
|
uri: http://localhost:3000/locomotive/api/v3/tokens.json
|
@@ -1742,13 +774,13 @@ http_interactions:
|
|
1742
774
|
string: email=admin%40locomotivecms.com&password=locomotive
|
1743
775
|
headers:
|
1744
776
|
User-Agent:
|
1745
|
-
-
|
777
|
+
- Faraday v0.15.4
|
1746
778
|
Accept:
|
1747
779
|
- application/json
|
1748
780
|
Accept-Encoding:
|
1749
781
|
- gzip,deflate
|
1750
782
|
Date:
|
1751
|
-
-
|
783
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
1752
784
|
Content-Type:
|
1753
785
|
- application/x-www-form-urlencoded
|
1754
786
|
response:
|
@@ -1758,40 +790,50 @@ http_interactions:
|
|
1758
790
|
headers:
|
1759
791
|
Content-Type:
|
1760
792
|
- application/json
|
1761
|
-
|
1762
|
-
-
|
793
|
+
Content-Length:
|
794
|
+
- '32'
|
795
|
+
Connection:
|
796
|
+
- keep-alive
|
797
|
+
Status:
|
798
|
+
- 201 Created
|
1763
799
|
Cache-Control:
|
1764
800
|
- max-age=0, private, must-revalidate
|
1765
|
-
|
1766
|
-
-
|
801
|
+
Etag:
|
802
|
+
- W/"410e3d6fde24f39257a7cc619b61baa7"
|
1767
803
|
X-Runtime:
|
1768
|
-
- '0.
|
1769
|
-
|
1770
|
-
-
|
804
|
+
- '0.003799'
|
805
|
+
X-Request-Id:
|
806
|
+
- 9c03b0c8-6974-4bbc-bbb0-d3c916ea1feb
|
807
|
+
Date:
|
808
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
809
|
+
X-Powered-By:
|
810
|
+
- Phusion Passenger 6.0.4
|
811
|
+
Server:
|
812
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
1771
813
|
body:
|
1772
814
|
encoding: UTF-8
|
1773
|
-
string: '{"token":"
|
815
|
+
string: '{"token":"bzwAyFQzcchf_hgDQhz3"}'
|
1774
816
|
http_version:
|
1775
|
-
recorded_at:
|
817
|
+
recorded_at: Sun, 17 Nov 2019 16:39:32 GMT
|
1776
818
|
- request:
|
1777
819
|
method: post
|
1778
820
|
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json
|
1779
821
|
body:
|
1780
822
|
encoding: UTF-8
|
1781
|
-
string: auth_token=
|
823
|
+
string: auth_token=bzwAyFQzcchf_hgDQhz3&content_entry%5Btitle%5D=Hello+world
|
1782
824
|
headers:
|
1783
825
|
User-Agent:
|
1784
|
-
-
|
826
|
+
- Faraday v0.15.4
|
1785
827
|
Accept:
|
1786
828
|
- application/json
|
1787
829
|
Accept-Encoding:
|
1788
830
|
- gzip,deflate
|
1789
831
|
Date:
|
1790
|
-
-
|
832
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
1791
833
|
X-Locomotive-Account-Email:
|
1792
834
|
- admin@locomotivecms.com
|
1793
835
|
X-Locomotive-Account-Token:
|
1794
|
-
-
|
836
|
+
- bzwAyFQzcchf_hgDQhz3
|
1795
837
|
Content-Type:
|
1796
838
|
- application/x-www-form-urlencoded
|
1797
839
|
response:
|
@@ -1801,42 +843,52 @@ http_interactions:
|
|
1801
843
|
headers:
|
1802
844
|
Content-Type:
|
1803
845
|
- application/json
|
1804
|
-
|
1805
|
-
-
|
846
|
+
Content-Length:
|
847
|
+
- '296'
|
848
|
+
Connection:
|
849
|
+
- keep-alive
|
850
|
+
Status:
|
851
|
+
- 201 Created
|
1806
852
|
Cache-Control:
|
1807
853
|
- max-age=0, private, must-revalidate
|
1808
|
-
|
1809
|
-
-
|
854
|
+
Etag:
|
855
|
+
- W/"1c3cac1ff18abebb325bc1d10b29f2bd"
|
1810
856
|
X-Runtime:
|
1811
|
-
- '0.
|
1812
|
-
|
1813
|
-
-
|
857
|
+
- '0.030622'
|
858
|
+
X-Request-Id:
|
859
|
+
- 6bf300e9-b4a4-4133-bc15-47b25eaa5acc
|
860
|
+
Date:
|
861
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
862
|
+
X-Powered-By:
|
863
|
+
- Phusion Passenger 6.0.4
|
864
|
+
Server:
|
865
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
1814
866
|
body:
|
1815
867
|
encoding: UTF-8
|
1816
|
-
string: '{"_id":"
|
868
|
+
string: '{"_id":"5dd177c4a95330aa17f8f8f7","created_at":"2019-11-17T16:39:32Z","updated_at":"2019-11-17T16:39:32Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
1817
869
|
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
1818
870
|
world"}'
|
1819
871
|
http_version:
|
1820
|
-
recorded_at:
|
872
|
+
recorded_at: Sun, 17 Nov 2019 16:39:32 GMT
|
1821
873
|
- request:
|
1822
874
|
method: post
|
1823
875
|
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json
|
1824
876
|
body:
|
1825
877
|
encoding: UTF-8
|
1826
|
-
string: auth_token=
|
878
|
+
string: auth_token=bzwAyFQzcchf_hgDQhz3&content_entry%5Btitle%5D=Lorem+ipsum
|
1827
879
|
headers:
|
1828
880
|
User-Agent:
|
1829
|
-
-
|
881
|
+
- Faraday v0.15.4
|
1830
882
|
Accept:
|
1831
883
|
- application/json
|
1832
884
|
Accept-Encoding:
|
1833
885
|
- gzip,deflate
|
1834
886
|
Date:
|
1835
|
-
-
|
887
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
1836
888
|
X-Locomotive-Account-Email:
|
1837
889
|
- admin@locomotivecms.com
|
1838
890
|
X-Locomotive-Account-Token:
|
1839
|
-
-
|
891
|
+
- bzwAyFQzcchf_hgDQhz3
|
1840
892
|
Content-Type:
|
1841
893
|
- application/x-www-form-urlencoded
|
1842
894
|
response:
|
@@ -1846,91 +898,113 @@ http_interactions:
|
|
1846
898
|
headers:
|
1847
899
|
Content-Type:
|
1848
900
|
- application/json
|
1849
|
-
|
1850
|
-
-
|
901
|
+
Content-Length:
|
902
|
+
- '296'
|
903
|
+
Connection:
|
904
|
+
- keep-alive
|
905
|
+
Status:
|
906
|
+
- 201 Created
|
1851
907
|
Cache-Control:
|
1852
908
|
- max-age=0, private, must-revalidate
|
1853
|
-
|
1854
|
-
-
|
909
|
+
Etag:
|
910
|
+
- W/"eea500d76d256598e477b0bc091cdc58"
|
1855
911
|
X-Runtime:
|
1856
|
-
- '0.
|
1857
|
-
|
1858
|
-
-
|
912
|
+
- '0.025871'
|
913
|
+
X-Request-Id:
|
914
|
+
- b116a321-9b07-4e1e-9c1d-82b37669dffb
|
915
|
+
Date:
|
916
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
917
|
+
X-Powered-By:
|
918
|
+
- Phusion Passenger 6.0.4
|
919
|
+
Server:
|
920
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
1859
921
|
body:
|
1860
922
|
encoding: UTF-8
|
1861
|
-
string: '{"_id":"
|
923
|
+
string: '{"_id":"5dd177c4a95330aa17f8f8fa","created_at":"2019-11-17T16:39:32Z","updated_at":"2019-11-17T16:39:32Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
1862
924
|
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
1863
925
|
ipsum"}'
|
1864
926
|
http_version:
|
1865
|
-
recorded_at:
|
927
|
+
recorded_at: Sun, 17 Nov 2019 16:39:32 GMT
|
1866
928
|
- request:
|
1867
929
|
method: get
|
1868
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json?auth_token=
|
930
|
+
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json?auth_token=bzwAyFQzcchf_hgDQhz3&page=2&per_page=1&where=%7B%7D
|
1869
931
|
body:
|
1870
932
|
encoding: UTF-8
|
1871
933
|
string: ''
|
1872
934
|
headers:
|
1873
935
|
User-Agent:
|
1874
|
-
-
|
936
|
+
- Faraday v0.15.4
|
1875
937
|
Accept:
|
1876
938
|
- application/json
|
1877
939
|
Accept-Encoding:
|
1878
940
|
- gzip,deflate
|
1879
941
|
Date:
|
1880
|
-
-
|
942
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
1881
943
|
X-Locomotive-Account-Email:
|
1882
944
|
- admin@locomotivecms.com
|
1883
945
|
X-Locomotive-Account-Token:
|
1884
|
-
-
|
946
|
+
- bzwAyFQzcchf_hgDQhz3
|
1885
947
|
response:
|
1886
948
|
status:
|
1887
949
|
code: 200
|
1888
950
|
message: OK
|
1889
951
|
headers:
|
952
|
+
Content-Type:
|
953
|
+
- application/json
|
954
|
+
Transfer-Encoding:
|
955
|
+
- chunked
|
956
|
+
Connection:
|
957
|
+
- keep-alive
|
958
|
+
Status:
|
959
|
+
- 200 OK
|
1890
960
|
X-Total-Pages:
|
1891
961
|
- '2'
|
1892
|
-
X-Per-Page:
|
1893
|
-
- '1'
|
1894
962
|
X-Total-Entries:
|
1895
963
|
- '2'
|
1896
|
-
|
1897
|
-
-
|
1898
|
-
Etag:
|
1899
|
-
- W/"557b63a7a252f9fc643a24e4bebd8ce8"
|
964
|
+
X-Per-Page:
|
965
|
+
- '1'
|
1900
966
|
Cache-Control:
|
1901
967
|
- max-age=0, private, must-revalidate
|
1902
|
-
|
1903
|
-
-
|
968
|
+
Etag:
|
969
|
+
- W/"5d26473e89bd6526921d13744cd9c791"
|
1904
970
|
X-Runtime:
|
1905
|
-
- '0.
|
1906
|
-
|
1907
|
-
-
|
971
|
+
- '0.015563'
|
972
|
+
X-Request-Id:
|
973
|
+
- e77a5394-1dd7-45b8-afb0-7a9c058e36e5
|
974
|
+
Date:
|
975
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
976
|
+
X-Powered-By:
|
977
|
+
- Phusion Passenger 6.0.4
|
978
|
+
Server:
|
979
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
980
|
+
Content-Encoding:
|
981
|
+
- gzip
|
1908
982
|
body:
|
1909
983
|
encoding: UTF-8
|
1910
|
-
string: '[{"_id":"
|
984
|
+
string: '[{"_id":"5dd177c4a95330aa17f8f8fa","created_at":"2019-11-17T16:39:32Z","updated_at":"2019-11-17T16:39:32Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
1911
985
|
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
1912
986
|
ipsum"}]'
|
1913
987
|
http_version:
|
1914
|
-
recorded_at:
|
988
|
+
recorded_at: Sun, 17 Nov 2019 16:39:32 GMT
|
1915
989
|
- request:
|
1916
990
|
method: delete
|
1917
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/hello-world.json?auth_token=
|
991
|
+
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/hello-world.json?auth_token=bzwAyFQzcchf_hgDQhz3
|
1918
992
|
body:
|
1919
993
|
encoding: UTF-8
|
1920
994
|
string: ''
|
1921
995
|
headers:
|
1922
996
|
User-Agent:
|
1923
|
-
-
|
997
|
+
- Faraday v0.15.4
|
1924
998
|
Accept:
|
1925
999
|
- application/json
|
1926
1000
|
Accept-Encoding:
|
1927
1001
|
- gzip,deflate
|
1928
1002
|
Date:
|
1929
|
-
-
|
1003
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
1930
1004
|
X-Locomotive-Account-Email:
|
1931
1005
|
- admin@locomotivecms.com
|
1932
1006
|
X-Locomotive-Account-Token:
|
1933
|
-
-
|
1007
|
+
- bzwAyFQzcchf_hgDQhz3
|
1934
1008
|
response:
|
1935
1009
|
status:
|
1936
1010
|
code: 200
|
@@ -1938,42 +1012,54 @@ http_interactions:
|
|
1938
1012
|
headers:
|
1939
1013
|
Content-Type:
|
1940
1014
|
- application/json
|
1941
|
-
|
1942
|
-
-
|
1015
|
+
Transfer-Encoding:
|
1016
|
+
- chunked
|
1017
|
+
Connection:
|
1018
|
+
- keep-alive
|
1019
|
+
Status:
|
1020
|
+
- 200 OK
|
1943
1021
|
Cache-Control:
|
1944
1022
|
- max-age=0, private, must-revalidate
|
1945
|
-
|
1946
|
-
-
|
1023
|
+
Etag:
|
1024
|
+
- W/"1c3cac1ff18abebb325bc1d10b29f2bd"
|
1947
1025
|
X-Runtime:
|
1948
|
-
- '0.
|
1949
|
-
|
1950
|
-
-
|
1026
|
+
- '0.080669'
|
1027
|
+
X-Request-Id:
|
1028
|
+
- 19eb32bd-1930-4ff5-bd30-22c56f0b59b1
|
1029
|
+
Date:
|
1030
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
1031
|
+
X-Powered-By:
|
1032
|
+
- Phusion Passenger 6.0.4
|
1033
|
+
Server:
|
1034
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
1035
|
+
Content-Encoding:
|
1036
|
+
- gzip
|
1951
1037
|
body:
|
1952
1038
|
encoding: UTF-8
|
1953
|
-
string: '{"_id":"
|
1039
|
+
string: '{"_id":"5dd177c4a95330aa17f8f8f7","created_at":"2019-11-17T16:39:32Z","updated_at":"2019-11-17T16:39:32Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
1954
1040
|
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
1955
1041
|
world"}'
|
1956
1042
|
http_version:
|
1957
|
-
recorded_at:
|
1043
|
+
recorded_at: Sun, 17 Nov 2019 16:39:32 GMT
|
1958
1044
|
- request:
|
1959
1045
|
method: delete
|
1960
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/lorem-ipsum.json?auth_token=
|
1046
|
+
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/lorem-ipsum.json?auth_token=bzwAyFQzcchf_hgDQhz3
|
1961
1047
|
body:
|
1962
1048
|
encoding: UTF-8
|
1963
1049
|
string: ''
|
1964
1050
|
headers:
|
1965
1051
|
User-Agent:
|
1966
|
-
-
|
1052
|
+
- Faraday v0.15.4
|
1967
1053
|
Accept:
|
1968
1054
|
- application/json
|
1969
1055
|
Accept-Encoding:
|
1970
1056
|
- gzip,deflate
|
1971
1057
|
Date:
|
1972
|
-
-
|
1058
|
+
- Sun, 17 Nov 2019 16:39:32 GMT
|
1973
1059
|
X-Locomotive-Account-Email:
|
1974
1060
|
- admin@locomotivecms.com
|
1975
1061
|
X-Locomotive-Account-Token:
|
1976
|
-
-
|
1062
|
+
- bzwAyFQzcchf_hgDQhz3
|
1977
1063
|
response:
|
1978
1064
|
status:
|
1979
1065
|
code: 200
|
@@ -1981,23 +1067,35 @@ http_interactions:
|
|
1981
1067
|
headers:
|
1982
1068
|
Content-Type:
|
1983
1069
|
- application/json
|
1984
|
-
|
1985
|
-
-
|
1070
|
+
Transfer-Encoding:
|
1071
|
+
- chunked
|
1072
|
+
Connection:
|
1073
|
+
- keep-alive
|
1074
|
+
Status:
|
1075
|
+
- 200 OK
|
1986
1076
|
Cache-Control:
|
1987
1077
|
- max-age=0, private, must-revalidate
|
1988
|
-
|
1989
|
-
-
|
1078
|
+
Etag:
|
1079
|
+
- W/"eea500d76d256598e477b0bc091cdc58"
|
1990
1080
|
X-Runtime:
|
1991
|
-
- '0.
|
1992
|
-
|
1993
|
-
-
|
1081
|
+
- '0.047346'
|
1082
|
+
X-Request-Id:
|
1083
|
+
- 71000528-4773-4592-a1e1-4e2586f6de20
|
1084
|
+
Date:
|
1085
|
+
- Sun, 17 Nov 2019 16:39:33 GMT
|
1086
|
+
X-Powered-By:
|
1087
|
+
- Phusion Passenger 6.0.4
|
1088
|
+
Server:
|
1089
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
1090
|
+
Content-Encoding:
|
1091
|
+
- gzip
|
1994
1092
|
body:
|
1995
1093
|
encoding: UTF-8
|
1996
|
-
string: '{"_id":"
|
1094
|
+
string: '{"_id":"5dd177c4a95330aa17f8f8fa","created_at":"2019-11-17T16:39:32Z","updated_at":"2019-11-17T16:39:32Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
1997
1095
|
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
1998
1096
|
ipsum"}'
|
1999
1097
|
http_version:
|
2000
|
-
recorded_at:
|
1098
|
+
recorded_at: Sun, 17 Nov 2019 16:39:33 GMT
|
2001
1099
|
- request:
|
2002
1100
|
method: post
|
2003
1101
|
uri: http://localhost:3000/locomotive/api/v3/tokens.json
|
@@ -2006,13 +1104,13 @@ http_interactions:
|
|
2006
1104
|
string: email=admin%40locomotivecms.com&password=locomotive
|
2007
1105
|
headers:
|
2008
1106
|
User-Agent:
|
2009
|
-
-
|
1107
|
+
- Faraday v0.15.4
|
2010
1108
|
Accept:
|
2011
1109
|
- application/json
|
2012
1110
|
Accept-Encoding:
|
2013
1111
|
- gzip,deflate
|
2014
1112
|
Date:
|
2015
|
-
-
|
1113
|
+
- Sun, 17 Nov 2019 16:39:33 GMT
|
2016
1114
|
Content-Type:
|
2017
1115
|
- application/x-www-form-urlencoded
|
2018
1116
|
response:
|
@@ -2022,40 +1120,50 @@ http_interactions:
|
|
2022
1120
|
headers:
|
2023
1121
|
Content-Type:
|
2024
1122
|
- application/json
|
2025
|
-
|
2026
|
-
-
|
1123
|
+
Content-Length:
|
1124
|
+
- '32'
|
1125
|
+
Connection:
|
1126
|
+
- keep-alive
|
1127
|
+
Status:
|
1128
|
+
- 201 Created
|
2027
1129
|
Cache-Control:
|
2028
1130
|
- max-age=0, private, must-revalidate
|
2029
|
-
|
2030
|
-
-
|
1131
|
+
Etag:
|
1132
|
+
- W/"410e3d6fde24f39257a7cc619b61baa7"
|
2031
1133
|
X-Runtime:
|
2032
|
-
- '0.
|
2033
|
-
|
2034
|
-
-
|
1134
|
+
- '0.004716'
|
1135
|
+
X-Request-Id:
|
1136
|
+
- c5053bc6-04bf-4b0e-bd2b-37cc9e2aea4c
|
1137
|
+
Date:
|
1138
|
+
- Sun, 17 Nov 2019 16:39:33 GMT
|
1139
|
+
X-Powered-By:
|
1140
|
+
- Phusion Passenger 6.0.4
|
1141
|
+
Server:
|
1142
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
2035
1143
|
body:
|
2036
1144
|
encoding: UTF-8
|
2037
|
-
string: '{"token":"
|
1145
|
+
string: '{"token":"bzwAyFQzcchf_hgDQhz3"}'
|
2038
1146
|
http_version:
|
2039
|
-
recorded_at:
|
1147
|
+
recorded_at: Sun, 17 Nov 2019 16:39:33 GMT
|
2040
1148
|
- request:
|
2041
1149
|
method: post
|
2042
1150
|
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json
|
2043
1151
|
body:
|
2044
1152
|
encoding: UTF-8
|
2045
|
-
string: auth_token=
|
1153
|
+
string: auth_token=bzwAyFQzcchf_hgDQhz3&content_entry%5Btitle%5D=Hello+world
|
2046
1154
|
headers:
|
2047
1155
|
User-Agent:
|
2048
|
-
-
|
1156
|
+
- Faraday v0.15.4
|
2049
1157
|
Accept:
|
2050
1158
|
- application/json
|
2051
1159
|
Accept-Encoding:
|
2052
1160
|
- gzip,deflate
|
2053
1161
|
Date:
|
2054
|
-
-
|
1162
|
+
- Sun, 17 Nov 2019 16:39:33 GMT
|
2055
1163
|
X-Locomotive-Account-Email:
|
2056
1164
|
- admin@locomotivecms.com
|
2057
1165
|
X-Locomotive-Account-Token:
|
2058
|
-
-
|
1166
|
+
- bzwAyFQzcchf_hgDQhz3
|
2059
1167
|
Content-Type:
|
2060
1168
|
- application/x-www-form-urlencoded
|
2061
1169
|
response:
|
@@ -2065,42 +1173,52 @@ http_interactions:
|
|
2065
1173
|
headers:
|
2066
1174
|
Content-Type:
|
2067
1175
|
- application/json
|
2068
|
-
|
2069
|
-
-
|
1176
|
+
Content-Length:
|
1177
|
+
- '296'
|
1178
|
+
Connection:
|
1179
|
+
- keep-alive
|
1180
|
+
Status:
|
1181
|
+
- 201 Created
|
2070
1182
|
Cache-Control:
|
2071
1183
|
- max-age=0, private, must-revalidate
|
2072
|
-
|
2073
|
-
-
|
1184
|
+
Etag:
|
1185
|
+
- W/"a76f6088dbae026ee482258bc1cb6fc3"
|
2074
1186
|
X-Runtime:
|
2075
|
-
- '0.
|
2076
|
-
|
2077
|
-
-
|
1187
|
+
- '0.071954'
|
1188
|
+
X-Request-Id:
|
1189
|
+
- 4487faac-61e2-4f85-a53b-dff750da8688
|
1190
|
+
Date:
|
1191
|
+
- Sun, 17 Nov 2019 16:39:33 GMT
|
1192
|
+
X-Powered-By:
|
1193
|
+
- Phusion Passenger 6.0.4
|
1194
|
+
Server:
|
1195
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
2078
1196
|
body:
|
2079
1197
|
encoding: UTF-8
|
2080
|
-
string: '{"_id":"
|
1198
|
+
string: '{"_id":"5dd177c5a95330aa17f8f8fd","created_at":"2019-11-17T16:39:33Z","updated_at":"2019-11-17T16:39:33Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
2081
1199
|
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
2082
1200
|
world"}'
|
2083
1201
|
http_version:
|
2084
|
-
recorded_at:
|
1202
|
+
recorded_at: Sun, 17 Nov 2019 16:39:33 GMT
|
2085
1203
|
- request:
|
2086
1204
|
method: post
|
2087
1205
|
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json
|
2088
1206
|
body:
|
2089
1207
|
encoding: UTF-8
|
2090
|
-
string: auth_token=
|
1208
|
+
string: auth_token=bzwAyFQzcchf_hgDQhz3&content_entry%5Btitle%5D=Lorem+ipsum
|
2091
1209
|
headers:
|
2092
1210
|
User-Agent:
|
2093
|
-
-
|
1211
|
+
- Faraday v0.15.4
|
2094
1212
|
Accept:
|
2095
1213
|
- application/json
|
2096
1214
|
Accept-Encoding:
|
2097
1215
|
- gzip,deflate
|
2098
1216
|
Date:
|
2099
|
-
-
|
1217
|
+
- Sun, 17 Nov 2019 16:39:33 GMT
|
2100
1218
|
X-Locomotive-Account-Email:
|
2101
1219
|
- admin@locomotivecms.com
|
2102
1220
|
X-Locomotive-Account-Token:
|
2103
|
-
-
|
1221
|
+
- bzwAyFQzcchf_hgDQhz3
|
2104
1222
|
Content-Type:
|
2105
1223
|
- application/x-www-form-urlencoded
|
2106
1224
|
response:
|
@@ -2110,91 +1228,113 @@ http_interactions:
|
|
2110
1228
|
headers:
|
2111
1229
|
Content-Type:
|
2112
1230
|
- application/json
|
2113
|
-
|
2114
|
-
-
|
1231
|
+
Content-Length:
|
1232
|
+
- '296'
|
1233
|
+
Connection:
|
1234
|
+
- keep-alive
|
1235
|
+
Status:
|
1236
|
+
- 201 Created
|
2115
1237
|
Cache-Control:
|
2116
1238
|
- max-age=0, private, must-revalidate
|
2117
|
-
|
2118
|
-
-
|
1239
|
+
Etag:
|
1240
|
+
- W/"d264c7fefda458c1b8bce21427323cd9"
|
2119
1241
|
X-Runtime:
|
2120
|
-
- '0.
|
2121
|
-
|
2122
|
-
-
|
1242
|
+
- '0.157726'
|
1243
|
+
X-Request-Id:
|
1244
|
+
- eb468802-11ba-4bef-8ae1-5c8db9e47e41
|
1245
|
+
Date:
|
1246
|
+
- Sun, 17 Nov 2019 16:39:33 GMT
|
1247
|
+
X-Powered-By:
|
1248
|
+
- Phusion Passenger 6.0.4
|
1249
|
+
Server:
|
1250
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
2123
1251
|
body:
|
2124
1252
|
encoding: UTF-8
|
2125
|
-
string: '{"_id":"
|
1253
|
+
string: '{"_id":"5dd177c5a95330aa17f8f900","created_at":"2019-11-17T16:39:33Z","updated_at":"2019-11-17T16:39:33Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
2126
1254
|
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
2127
1255
|
ipsum"}'
|
2128
1256
|
http_version:
|
2129
|
-
recorded_at:
|
1257
|
+
recorded_at: Sun, 17 Nov 2019 16:39:33 GMT
|
2130
1258
|
- request:
|
2131
1259
|
method: get
|
2132
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json?auth_token=
|
1260
|
+
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json?auth_token=bzwAyFQzcchf_hgDQhz3&where=%7B%22_visible%22:true,%22title%22:%22Hello%20world%22%7D
|
2133
1261
|
body:
|
2134
1262
|
encoding: UTF-8
|
2135
1263
|
string: ''
|
2136
1264
|
headers:
|
2137
1265
|
User-Agent:
|
2138
|
-
-
|
1266
|
+
- Faraday v0.15.4
|
2139
1267
|
Accept:
|
2140
1268
|
- application/json
|
2141
1269
|
Accept-Encoding:
|
2142
1270
|
- gzip,deflate
|
2143
1271
|
Date:
|
2144
|
-
-
|
1272
|
+
- Sun, 17 Nov 2019 16:39:33 GMT
|
2145
1273
|
X-Locomotive-Account-Email:
|
2146
1274
|
- admin@locomotivecms.com
|
2147
1275
|
X-Locomotive-Account-Token:
|
2148
|
-
-
|
1276
|
+
- bzwAyFQzcchf_hgDQhz3
|
2149
1277
|
response:
|
2150
1278
|
status:
|
2151
1279
|
code: 200
|
2152
1280
|
message: OK
|
2153
1281
|
headers:
|
1282
|
+
Content-Type:
|
1283
|
+
- application/json
|
1284
|
+
Transfer-Encoding:
|
1285
|
+
- chunked
|
1286
|
+
Connection:
|
1287
|
+
- keep-alive
|
1288
|
+
Status:
|
1289
|
+
- 200 OK
|
2154
1290
|
X-Total-Pages:
|
2155
1291
|
- '1'
|
2156
|
-
X-Per-Page:
|
2157
|
-
- '10'
|
2158
1292
|
X-Total-Entries:
|
2159
1293
|
- '1'
|
2160
|
-
|
2161
|
-
-
|
2162
|
-
Etag:
|
2163
|
-
- W/"d82470eab36484cb6119aa1eea46d04c"
|
1294
|
+
X-Per-Page:
|
1295
|
+
- '10'
|
2164
1296
|
Cache-Control:
|
2165
1297
|
- max-age=0, private, must-revalidate
|
2166
|
-
|
2167
|
-
-
|
1298
|
+
Etag:
|
1299
|
+
- W/"d8411fb91b112edf38ec74923a73b80b"
|
2168
1300
|
X-Runtime:
|
2169
|
-
- '0.
|
2170
|
-
|
2171
|
-
-
|
1301
|
+
- '0.053939'
|
1302
|
+
X-Request-Id:
|
1303
|
+
- efc0b1a9-3662-4a46-bbda-b7b9e30d7b4c
|
1304
|
+
Date:
|
1305
|
+
- Sun, 17 Nov 2019 16:39:33 GMT
|
1306
|
+
X-Powered-By:
|
1307
|
+
- Phusion Passenger 6.0.4
|
1308
|
+
Server:
|
1309
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
1310
|
+
Content-Encoding:
|
1311
|
+
- gzip
|
2172
1312
|
body:
|
2173
1313
|
encoding: UTF-8
|
2174
|
-
string: '[{"_id":"
|
1314
|
+
string: '[{"_id":"5dd177c5a95330aa17f8f8fd","created_at":"2019-11-17T16:39:33Z","updated_at":"2019-11-17T16:39:33Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
2175
1315
|
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
2176
1316
|
world"}]'
|
2177
1317
|
http_version:
|
2178
|
-
recorded_at:
|
1318
|
+
recorded_at: Sun, 17 Nov 2019 16:39:33 GMT
|
2179
1319
|
- request:
|
2180
1320
|
method: delete
|
2181
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/hello-world.json?auth_token=
|
1321
|
+
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/hello-world.json?auth_token=bzwAyFQzcchf_hgDQhz3
|
2182
1322
|
body:
|
2183
1323
|
encoding: UTF-8
|
2184
1324
|
string: ''
|
2185
1325
|
headers:
|
2186
1326
|
User-Agent:
|
2187
|
-
-
|
1327
|
+
- Faraday v0.15.4
|
2188
1328
|
Accept:
|
2189
1329
|
- application/json
|
2190
1330
|
Accept-Encoding:
|
2191
1331
|
- gzip,deflate
|
2192
1332
|
Date:
|
2193
|
-
-
|
1333
|
+
- Sun, 17 Nov 2019 16:39:33 GMT
|
2194
1334
|
X-Locomotive-Account-Email:
|
2195
1335
|
- admin@locomotivecms.com
|
2196
1336
|
X-Locomotive-Account-Token:
|
2197
|
-
-
|
1337
|
+
- bzwAyFQzcchf_hgDQhz3
|
2198
1338
|
response:
|
2199
1339
|
status:
|
2200
1340
|
code: 200
|
@@ -2202,42 +1342,54 @@ http_interactions:
|
|
2202
1342
|
headers:
|
2203
1343
|
Content-Type:
|
2204
1344
|
- application/json
|
2205
|
-
|
2206
|
-
-
|
1345
|
+
Transfer-Encoding:
|
1346
|
+
- chunked
|
1347
|
+
Connection:
|
1348
|
+
- keep-alive
|
1349
|
+
Status:
|
1350
|
+
- 200 OK
|
2207
1351
|
Cache-Control:
|
2208
1352
|
- max-age=0, private, must-revalidate
|
2209
|
-
|
2210
|
-
-
|
1353
|
+
Etag:
|
1354
|
+
- W/"a76f6088dbae026ee482258bc1cb6fc3"
|
2211
1355
|
X-Runtime:
|
2212
|
-
- '0.
|
2213
|
-
|
2214
|
-
-
|
1356
|
+
- '0.073612'
|
1357
|
+
X-Request-Id:
|
1358
|
+
- 6033144c-b4b5-40c9-acc2-8d7f29415002
|
1359
|
+
Date:
|
1360
|
+
- Sun, 17 Nov 2019 16:39:33 GMT
|
1361
|
+
X-Powered-By:
|
1362
|
+
- Phusion Passenger 6.0.4
|
1363
|
+
Server:
|
1364
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
1365
|
+
Content-Encoding:
|
1366
|
+
- gzip
|
2215
1367
|
body:
|
2216
1368
|
encoding: UTF-8
|
2217
|
-
string: '{"_id":"
|
1369
|
+
string: '{"_id":"5dd177c5a95330aa17f8f8fd","created_at":"2019-11-17T16:39:33Z","updated_at":"2019-11-17T16:39:33Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
2218
1370
|
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
2219
1371
|
world"}'
|
2220
1372
|
http_version:
|
2221
|
-
recorded_at:
|
1373
|
+
recorded_at: Sun, 17 Nov 2019 16:39:33 GMT
|
2222
1374
|
- request:
|
2223
1375
|
method: delete
|
2224
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/lorem-ipsum.json?auth_token=
|
1376
|
+
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/lorem-ipsum.json?auth_token=bzwAyFQzcchf_hgDQhz3
|
2225
1377
|
body:
|
2226
1378
|
encoding: UTF-8
|
2227
1379
|
string: ''
|
2228
1380
|
headers:
|
2229
1381
|
User-Agent:
|
2230
|
-
-
|
1382
|
+
- Faraday v0.15.4
|
2231
1383
|
Accept:
|
2232
1384
|
- application/json
|
2233
1385
|
Accept-Encoding:
|
2234
1386
|
- gzip,deflate
|
2235
1387
|
Date:
|
2236
|
-
-
|
1388
|
+
- Sun, 17 Nov 2019 16:39:33 GMT
|
2237
1389
|
X-Locomotive-Account-Email:
|
2238
1390
|
- admin@locomotivecms.com
|
2239
1391
|
X-Locomotive-Account-Token:
|
2240
|
-
-
|
1392
|
+
- bzwAyFQzcchf_hgDQhz3
|
2241
1393
|
response:
|
2242
1394
|
status:
|
2243
1395
|
code: 200
|
@@ -2245,23 +1397,35 @@ http_interactions:
|
|
2245
1397
|
headers:
|
2246
1398
|
Content-Type:
|
2247
1399
|
- application/json
|
2248
|
-
|
2249
|
-
-
|
1400
|
+
Transfer-Encoding:
|
1401
|
+
- chunked
|
1402
|
+
Connection:
|
1403
|
+
- keep-alive
|
1404
|
+
Status:
|
1405
|
+
- 200 OK
|
2250
1406
|
Cache-Control:
|
2251
1407
|
- max-age=0, private, must-revalidate
|
2252
|
-
|
2253
|
-
-
|
1408
|
+
Etag:
|
1409
|
+
- W/"d264c7fefda458c1b8bce21427323cd9"
|
2254
1410
|
X-Runtime:
|
2255
|
-
- '0.
|
2256
|
-
|
2257
|
-
-
|
1411
|
+
- '0.113964'
|
1412
|
+
X-Request-Id:
|
1413
|
+
- be91a889-e802-4655-8e0d-ecc401289bcf
|
1414
|
+
Date:
|
1415
|
+
- Sun, 17 Nov 2019 16:39:33 GMT
|
1416
|
+
X-Powered-By:
|
1417
|
+
- Phusion Passenger 6.0.4
|
1418
|
+
Server:
|
1419
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
1420
|
+
Content-Encoding:
|
1421
|
+
- gzip
|
2258
1422
|
body:
|
2259
1423
|
encoding: UTF-8
|
2260
|
-
string: '{"_id":"
|
1424
|
+
string: '{"_id":"5dd177c5a95330aa17f8f900","created_at":"2019-11-17T16:39:33Z","updated_at":"2019-11-17T16:39:33Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
2261
1425
|
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
2262
1426
|
ipsum"}'
|
2263
1427
|
http_version:
|
2264
|
-
recorded_at:
|
1428
|
+
recorded_at: Sun, 17 Nov 2019 16:39:33 GMT
|
2265
1429
|
- request:
|
2266
1430
|
method: post
|
2267
1431
|
uri: http://localhost:3000/locomotive/api/v3/tokens.json
|
@@ -2270,13 +1434,13 @@ http_interactions:
|
|
2270
1434
|
string: email=admin%40locomotivecms.com&password=locomotive
|
2271
1435
|
headers:
|
2272
1436
|
User-Agent:
|
2273
|
-
-
|
1437
|
+
- Faraday v0.15.4
|
2274
1438
|
Accept:
|
2275
1439
|
- application/json
|
2276
1440
|
Accept-Encoding:
|
2277
1441
|
- gzip,deflate
|
2278
1442
|
Date:
|
2279
|
-
-
|
1443
|
+
- Sun, 17 Nov 2019 16:39:33 GMT
|
2280
1444
|
Content-Type:
|
2281
1445
|
- application/x-www-form-urlencoded
|
2282
1446
|
response:
|
@@ -2286,40 +1450,50 @@ http_interactions:
|
|
2286
1450
|
headers:
|
2287
1451
|
Content-Type:
|
2288
1452
|
- application/json
|
2289
|
-
|
2290
|
-
-
|
1453
|
+
Content-Length:
|
1454
|
+
- '32'
|
1455
|
+
Connection:
|
1456
|
+
- keep-alive
|
1457
|
+
Status:
|
1458
|
+
- 201 Created
|
2291
1459
|
Cache-Control:
|
2292
1460
|
- max-age=0, private, must-revalidate
|
2293
|
-
|
2294
|
-
-
|
1461
|
+
Etag:
|
1462
|
+
- W/"410e3d6fde24f39257a7cc619b61baa7"
|
2295
1463
|
X-Runtime:
|
2296
|
-
- '0.
|
2297
|
-
|
2298
|
-
-
|
1464
|
+
- '0.036428'
|
1465
|
+
X-Request-Id:
|
1466
|
+
- 9925a0c0-8983-4c3d-9075-3f70cdc5f62f
|
1467
|
+
Date:
|
1468
|
+
- Sun, 17 Nov 2019 16:39:33 GMT
|
1469
|
+
X-Powered-By:
|
1470
|
+
- Phusion Passenger 6.0.4
|
1471
|
+
Server:
|
1472
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
2299
1473
|
body:
|
2300
1474
|
encoding: UTF-8
|
2301
|
-
string: '{"token":"
|
1475
|
+
string: '{"token":"bzwAyFQzcchf_hgDQhz3"}'
|
2302
1476
|
http_version:
|
2303
|
-
recorded_at:
|
1477
|
+
recorded_at: Sun, 17 Nov 2019 16:39:33 GMT
|
2304
1478
|
- request:
|
2305
1479
|
method: post
|
2306
1480
|
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json
|
2307
1481
|
body:
|
2308
1482
|
encoding: UTF-8
|
2309
|
-
string: auth_token=
|
1483
|
+
string: auth_token=bzwAyFQzcchf_hgDQhz3&content_entry%5Btitle%5D=Hello+world
|
2310
1484
|
headers:
|
2311
1485
|
User-Agent:
|
2312
|
-
-
|
1486
|
+
- Faraday v0.15.4
|
2313
1487
|
Accept:
|
2314
1488
|
- application/json
|
2315
1489
|
Accept-Encoding:
|
2316
1490
|
- gzip,deflate
|
2317
1491
|
Date:
|
2318
|
-
-
|
1492
|
+
- Sun, 17 Nov 2019 16:39:33 GMT
|
2319
1493
|
X-Locomotive-Account-Email:
|
2320
1494
|
- admin@locomotivecms.com
|
2321
1495
|
X-Locomotive-Account-Token:
|
2322
|
-
-
|
1496
|
+
- bzwAyFQzcchf_hgDQhz3
|
2323
1497
|
Content-Type:
|
2324
1498
|
- application/x-www-form-urlencoded
|
2325
1499
|
response:
|
@@ -2329,42 +1503,52 @@ http_interactions:
|
|
2329
1503
|
headers:
|
2330
1504
|
Content-Type:
|
2331
1505
|
- application/json
|
2332
|
-
|
2333
|
-
-
|
1506
|
+
Content-Length:
|
1507
|
+
- '296'
|
1508
|
+
Connection:
|
1509
|
+
- keep-alive
|
1510
|
+
Status:
|
1511
|
+
- 201 Created
|
2334
1512
|
Cache-Control:
|
2335
1513
|
- max-age=0, private, must-revalidate
|
2336
|
-
|
2337
|
-
-
|
1514
|
+
Etag:
|
1515
|
+
- W/"16c97da5b33b2fd7dfb7655a79da04b8"
|
2338
1516
|
X-Runtime:
|
2339
|
-
- '0.
|
2340
|
-
|
2341
|
-
-
|
1517
|
+
- '0.266202'
|
1518
|
+
X-Request-Id:
|
1519
|
+
- fa040adc-7f77-4f71-9feb-dd8ca520de88
|
1520
|
+
Date:
|
1521
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
1522
|
+
X-Powered-By:
|
1523
|
+
- Phusion Passenger 6.0.4
|
1524
|
+
Server:
|
1525
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
2342
1526
|
body:
|
2343
1527
|
encoding: UTF-8
|
2344
|
-
string: '{"_id":"
|
1528
|
+
string: '{"_id":"5dd177c5a95330aa17f8f903","created_at":"2019-11-17T16:39:33Z","updated_at":"2019-11-17T16:39:33Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
2345
1529
|
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
2346
1530
|
world"}'
|
2347
1531
|
http_version:
|
2348
|
-
recorded_at:
|
1532
|
+
recorded_at: Sun, 17 Nov 2019 16:39:34 GMT
|
2349
1533
|
- request:
|
2350
1534
|
method: post
|
2351
1535
|
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json
|
2352
1536
|
body:
|
2353
1537
|
encoding: UTF-8
|
2354
|
-
string: auth_token=
|
1538
|
+
string: auth_token=bzwAyFQzcchf_hgDQhz3&content_entry%5Btitle%5D=Lorem+ipsum
|
2355
1539
|
headers:
|
2356
1540
|
User-Agent:
|
2357
|
-
-
|
1541
|
+
- Faraday v0.15.4
|
2358
1542
|
Accept:
|
2359
1543
|
- application/json
|
2360
1544
|
Accept-Encoding:
|
2361
1545
|
- gzip,deflate
|
2362
1546
|
Date:
|
2363
|
-
-
|
1547
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
2364
1548
|
X-Locomotive-Account-Email:
|
2365
1549
|
- admin@locomotivecms.com
|
2366
1550
|
X-Locomotive-Account-Token:
|
2367
|
-
-
|
1551
|
+
- bzwAyFQzcchf_hgDQhz3
|
2368
1552
|
Content-Type:
|
2369
1553
|
- application/x-www-form-urlencoded
|
2370
1554
|
response:
|
@@ -2374,93 +1558,115 @@ http_interactions:
|
|
2374
1558
|
headers:
|
2375
1559
|
Content-Type:
|
2376
1560
|
- application/json
|
2377
|
-
|
2378
|
-
-
|
1561
|
+
Content-Length:
|
1562
|
+
- '296'
|
1563
|
+
Connection:
|
1564
|
+
- keep-alive
|
1565
|
+
Status:
|
1566
|
+
- 201 Created
|
2379
1567
|
Cache-Control:
|
2380
1568
|
- max-age=0, private, must-revalidate
|
2381
|
-
|
2382
|
-
-
|
1569
|
+
Etag:
|
1570
|
+
- W/"01cc3e0e9f8f443bfc186177fc188769"
|
2383
1571
|
X-Runtime:
|
2384
|
-
- '0.
|
2385
|
-
|
2386
|
-
-
|
1572
|
+
- '0.075259'
|
1573
|
+
X-Request-Id:
|
1574
|
+
- 5884d28d-14e7-454d-82d7-0e824aab82c6
|
1575
|
+
Date:
|
1576
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
1577
|
+
X-Powered-By:
|
1578
|
+
- Phusion Passenger 6.0.4
|
1579
|
+
Server:
|
1580
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
2387
1581
|
body:
|
2388
1582
|
encoding: UTF-8
|
2389
|
-
string: '{"_id":"
|
1583
|
+
string: '{"_id":"5dd177c6a95330aa17f8f906","created_at":"2019-11-17T16:39:34Z","updated_at":"2019-11-17T16:39:34Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
2390
1584
|
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
2391
1585
|
ipsum"}'
|
2392
1586
|
http_version:
|
2393
|
-
recorded_at:
|
1587
|
+
recorded_at: Sun, 17 Nov 2019 16:39:34 GMT
|
2394
1588
|
- request:
|
2395
1589
|
method: get
|
2396
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json?auth_token=
|
1590
|
+
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json?auth_token=bzwAyFQzcchf_hgDQhz3&page=1&where=%7B%7D
|
2397
1591
|
body:
|
2398
1592
|
encoding: UTF-8
|
2399
1593
|
string: ''
|
2400
1594
|
headers:
|
2401
1595
|
User-Agent:
|
2402
|
-
-
|
1596
|
+
- Faraday v0.15.4
|
2403
1597
|
Accept:
|
2404
1598
|
- application/json
|
2405
1599
|
Accept-Encoding:
|
2406
1600
|
- gzip,deflate
|
2407
1601
|
Date:
|
2408
|
-
-
|
1602
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
2409
1603
|
X-Locomotive-Account-Email:
|
2410
1604
|
- admin@locomotivecms.com
|
2411
1605
|
X-Locomotive-Account-Token:
|
2412
|
-
-
|
1606
|
+
- bzwAyFQzcchf_hgDQhz3
|
2413
1607
|
response:
|
2414
1608
|
status:
|
2415
1609
|
code: 200
|
2416
1610
|
message: OK
|
2417
1611
|
headers:
|
1612
|
+
Content-Type:
|
1613
|
+
- application/json
|
1614
|
+
Transfer-Encoding:
|
1615
|
+
- chunked
|
1616
|
+
Connection:
|
1617
|
+
- keep-alive
|
1618
|
+
Status:
|
1619
|
+
- 200 OK
|
2418
1620
|
X-Total-Pages:
|
2419
1621
|
- '1'
|
2420
|
-
X-Per-Page:
|
2421
|
-
- '10'
|
2422
1622
|
X-Total-Entries:
|
2423
1623
|
- '2'
|
2424
|
-
|
2425
|
-
-
|
2426
|
-
Etag:
|
2427
|
-
- W/"16909c6bc4c1173eb7f2659d438e366c"
|
1624
|
+
X-Per-Page:
|
1625
|
+
- '10'
|
2428
1626
|
Cache-Control:
|
2429
1627
|
- max-age=0, private, must-revalidate
|
2430
|
-
|
2431
|
-
-
|
1628
|
+
Etag:
|
1629
|
+
- W/"b0db8c792673dded19ae2fe3f200e7e5"
|
2432
1630
|
X-Runtime:
|
2433
|
-
- '0.
|
2434
|
-
|
2435
|
-
-
|
1631
|
+
- '0.062582'
|
1632
|
+
X-Request-Id:
|
1633
|
+
- 266ad2c2-bffd-43bd-a9c6-ea5ad316a4d3
|
1634
|
+
Date:
|
1635
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
1636
|
+
X-Powered-By:
|
1637
|
+
- Phusion Passenger 6.0.4
|
1638
|
+
Server:
|
1639
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
1640
|
+
Content-Encoding:
|
1641
|
+
- gzip
|
2436
1642
|
body:
|
2437
1643
|
encoding: UTF-8
|
2438
|
-
string: '[{"_id":"
|
1644
|
+
string: '[{"_id":"5dd177c5a95330aa17f8f903","created_at":"2019-11-17T16:39:33Z","updated_at":"2019-11-17T16:39:33Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
2439
1645
|
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
2440
|
-
world"},{"_id":"
|
1646
|
+
world"},{"_id":"5dd177c6a95330aa17f8f906","created_at":"2019-11-17T16:39:34Z","updated_at":"2019-11-17T16:39:34Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
2441
1647
|
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
2442
1648
|
ipsum"}]'
|
2443
1649
|
http_version:
|
2444
|
-
recorded_at:
|
1650
|
+
recorded_at: Sun, 17 Nov 2019 16:39:34 GMT
|
2445
1651
|
- request:
|
2446
1652
|
method: delete
|
2447
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/hello-world.json?auth_token=
|
1653
|
+
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/hello-world.json?auth_token=bzwAyFQzcchf_hgDQhz3
|
2448
1654
|
body:
|
2449
1655
|
encoding: UTF-8
|
2450
1656
|
string: ''
|
2451
1657
|
headers:
|
2452
1658
|
User-Agent:
|
2453
|
-
-
|
1659
|
+
- Faraday v0.15.4
|
2454
1660
|
Accept:
|
2455
1661
|
- application/json
|
2456
1662
|
Accept-Encoding:
|
2457
1663
|
- gzip,deflate
|
2458
1664
|
Date:
|
2459
|
-
-
|
1665
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
2460
1666
|
X-Locomotive-Account-Email:
|
2461
1667
|
- admin@locomotivecms.com
|
2462
1668
|
X-Locomotive-Account-Token:
|
2463
|
-
-
|
1669
|
+
- bzwAyFQzcchf_hgDQhz3
|
2464
1670
|
response:
|
2465
1671
|
status:
|
2466
1672
|
code: 200
|
@@ -2468,42 +1674,54 @@ http_interactions:
|
|
2468
1674
|
headers:
|
2469
1675
|
Content-Type:
|
2470
1676
|
- application/json
|
2471
|
-
|
2472
|
-
-
|
1677
|
+
Transfer-Encoding:
|
1678
|
+
- chunked
|
1679
|
+
Connection:
|
1680
|
+
- keep-alive
|
1681
|
+
Status:
|
1682
|
+
- 200 OK
|
2473
1683
|
Cache-Control:
|
2474
1684
|
- max-age=0, private, must-revalidate
|
2475
|
-
|
2476
|
-
-
|
1685
|
+
Etag:
|
1686
|
+
- W/"16c97da5b33b2fd7dfb7655a79da04b8"
|
2477
1687
|
X-Runtime:
|
2478
|
-
- '0.
|
2479
|
-
|
2480
|
-
-
|
1688
|
+
- '0.046672'
|
1689
|
+
X-Request-Id:
|
1690
|
+
- b87cc418-7f72-4e33-9ee0-563617f9f9c4
|
1691
|
+
Date:
|
1692
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
1693
|
+
X-Powered-By:
|
1694
|
+
- Phusion Passenger 6.0.4
|
1695
|
+
Server:
|
1696
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
1697
|
+
Content-Encoding:
|
1698
|
+
- gzip
|
2481
1699
|
body:
|
2482
1700
|
encoding: UTF-8
|
2483
|
-
string: '{"_id":"
|
1701
|
+
string: '{"_id":"5dd177c5a95330aa17f8f903","created_at":"2019-11-17T16:39:33Z","updated_at":"2019-11-17T16:39:33Z","_slug":"hello-world","content_type_slug":"articles","_label":"Hello
|
2484
1702
|
world","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Hello
|
2485
1703
|
world"}'
|
2486
1704
|
http_version:
|
2487
|
-
recorded_at:
|
1705
|
+
recorded_at: Sun, 17 Nov 2019 16:39:34 GMT
|
2488
1706
|
- request:
|
2489
1707
|
method: delete
|
2490
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/lorem-ipsum.json?auth_token=
|
1708
|
+
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/lorem-ipsum.json?auth_token=bzwAyFQzcchf_hgDQhz3
|
2491
1709
|
body:
|
2492
1710
|
encoding: UTF-8
|
2493
1711
|
string: ''
|
2494
1712
|
headers:
|
2495
1713
|
User-Agent:
|
2496
|
-
-
|
1714
|
+
- Faraday v0.15.4
|
2497
1715
|
Accept:
|
2498
1716
|
- application/json
|
2499
1717
|
Accept-Encoding:
|
2500
1718
|
- gzip,deflate
|
2501
1719
|
Date:
|
2502
|
-
-
|
1720
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
2503
1721
|
X-Locomotive-Account-Email:
|
2504
1722
|
- admin@locomotivecms.com
|
2505
1723
|
X-Locomotive-Account-Token:
|
2506
|
-
-
|
1724
|
+
- bzwAyFQzcchf_hgDQhz3
|
2507
1725
|
response:
|
2508
1726
|
status:
|
2509
1727
|
code: 200
|
@@ -2511,23 +1729,35 @@ http_interactions:
|
|
2511
1729
|
headers:
|
2512
1730
|
Content-Type:
|
2513
1731
|
- application/json
|
2514
|
-
|
2515
|
-
-
|
1732
|
+
Transfer-Encoding:
|
1733
|
+
- chunked
|
1734
|
+
Connection:
|
1735
|
+
- keep-alive
|
1736
|
+
Status:
|
1737
|
+
- 200 OK
|
2516
1738
|
Cache-Control:
|
2517
1739
|
- max-age=0, private, must-revalidate
|
2518
|
-
|
2519
|
-
-
|
1740
|
+
Etag:
|
1741
|
+
- W/"01cc3e0e9f8f443bfc186177fc188769"
|
2520
1742
|
X-Runtime:
|
2521
|
-
- '0.
|
2522
|
-
|
2523
|
-
-
|
1743
|
+
- '0.042685'
|
1744
|
+
X-Request-Id:
|
1745
|
+
- 428a14bb-fa74-4041-beff-99c4069048f2
|
1746
|
+
Date:
|
1747
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
1748
|
+
X-Powered-By:
|
1749
|
+
- Phusion Passenger 6.0.4
|
1750
|
+
Server:
|
1751
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
1752
|
+
Content-Encoding:
|
1753
|
+
- gzip
|
2524
1754
|
body:
|
2525
1755
|
encoding: UTF-8
|
2526
|
-
string: '{"_id":"
|
1756
|
+
string: '{"_id":"5dd177c6a95330aa17f8f906","created_at":"2019-11-17T16:39:34Z","updated_at":"2019-11-17T16:39:34Z","_slug":"lorem-ipsum","content_type_slug":"articles","_label":"Lorem
|
2527
1757
|
ipsum","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Lorem
|
2528
1758
|
ipsum"}'
|
2529
1759
|
http_version:
|
2530
|
-
recorded_at:
|
1760
|
+
recorded_at: Sun, 17 Nov 2019 16:39:34 GMT
|
2531
1761
|
- request:
|
2532
1762
|
method: post
|
2533
1763
|
uri: http://localhost:3000/locomotive/api/v3/tokens.json
|
@@ -2536,13 +1766,13 @@ http_interactions:
|
|
2536
1766
|
string: email=admin%40locomotivecms.com&password=locomotive
|
2537
1767
|
headers:
|
2538
1768
|
User-Agent:
|
2539
|
-
-
|
1769
|
+
- Faraday v0.15.4
|
2540
1770
|
Accept:
|
2541
1771
|
- application/json
|
2542
1772
|
Accept-Encoding:
|
2543
1773
|
- gzip,deflate
|
2544
1774
|
Date:
|
2545
|
-
-
|
1775
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
2546
1776
|
Content-Type:
|
2547
1777
|
- application/x-www-form-urlencoded
|
2548
1778
|
response:
|
@@ -2552,40 +1782,50 @@ http_interactions:
|
|
2552
1782
|
headers:
|
2553
1783
|
Content-Type:
|
2554
1784
|
- application/json
|
2555
|
-
|
2556
|
-
-
|
1785
|
+
Content-Length:
|
1786
|
+
- '32'
|
1787
|
+
Connection:
|
1788
|
+
- keep-alive
|
1789
|
+
Status:
|
1790
|
+
- 201 Created
|
2557
1791
|
Cache-Control:
|
2558
1792
|
- max-age=0, private, must-revalidate
|
2559
|
-
|
2560
|
-
-
|
1793
|
+
Etag:
|
1794
|
+
- W/"410e3d6fde24f39257a7cc619b61baa7"
|
2561
1795
|
X-Runtime:
|
2562
|
-
- '0.
|
2563
|
-
|
2564
|
-
-
|
1796
|
+
- '0.004860'
|
1797
|
+
X-Request-Id:
|
1798
|
+
- ef67b20e-05ab-4462-a0e6-6ac7dc50bf3f
|
1799
|
+
Date:
|
1800
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
1801
|
+
X-Powered-By:
|
1802
|
+
- Phusion Passenger 6.0.4
|
1803
|
+
Server:
|
1804
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
2565
1805
|
body:
|
2566
1806
|
encoding: UTF-8
|
2567
|
-
string: '{"token":"
|
1807
|
+
string: '{"token":"bzwAyFQzcchf_hgDQhz3"}'
|
2568
1808
|
http_version:
|
2569
|
-
recorded_at:
|
1809
|
+
recorded_at: Sun, 17 Nov 2019 16:39:34 GMT
|
2570
1810
|
- request:
|
2571
1811
|
method: post
|
2572
1812
|
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json
|
2573
1813
|
body:
|
2574
1814
|
encoding: UTF-8
|
2575
|
-
string: auth_token=
|
1815
|
+
string: auth_token=bzwAyFQzcchf_hgDQhz3&content_entry%5Btitle%5D=Random+title
|
2576
1816
|
headers:
|
2577
1817
|
User-Agent:
|
2578
|
-
-
|
1818
|
+
- Faraday v0.15.4
|
2579
1819
|
Accept:
|
2580
1820
|
- application/json
|
2581
1821
|
Accept-Encoding:
|
2582
1822
|
- gzip,deflate
|
2583
1823
|
Date:
|
2584
|
-
-
|
1824
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
2585
1825
|
X-Locomotive-Account-Email:
|
2586
1826
|
- admin@locomotivecms.com
|
2587
1827
|
X-Locomotive-Account-Token:
|
2588
|
-
-
|
1828
|
+
- bzwAyFQzcchf_hgDQhz3
|
2589
1829
|
Content-Type:
|
2590
1830
|
- application/x-www-form-urlencoded
|
2591
1831
|
response:
|
@@ -2595,42 +1835,52 @@ http_interactions:
|
|
2595
1835
|
headers:
|
2596
1836
|
Content-Type:
|
2597
1837
|
- application/json
|
2598
|
-
|
2599
|
-
-
|
1838
|
+
Content-Length:
|
1839
|
+
- '299'
|
1840
|
+
Connection:
|
1841
|
+
- keep-alive
|
1842
|
+
Status:
|
1843
|
+
- 201 Created
|
2600
1844
|
Cache-Control:
|
2601
1845
|
- max-age=0, private, must-revalidate
|
2602
|
-
|
2603
|
-
-
|
1846
|
+
Etag:
|
1847
|
+
- W/"5781ac9eea2ef833748ad9813460a26f"
|
2604
1848
|
X-Runtime:
|
2605
|
-
- '0.
|
2606
|
-
|
2607
|
-
-
|
1849
|
+
- '0.065200'
|
1850
|
+
X-Request-Id:
|
1851
|
+
- b05529d1-e224-47d5-966d-359d899d6bab
|
1852
|
+
Date:
|
1853
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
1854
|
+
X-Powered-By:
|
1855
|
+
- Phusion Passenger 6.0.4
|
1856
|
+
Server:
|
1857
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
2608
1858
|
body:
|
2609
1859
|
encoding: UTF-8
|
2610
|
-
string: '{"_id":"
|
1860
|
+
string: '{"_id":"5dd177c6a95330aa17f8f909","created_at":"2019-11-17T16:39:34Z","updated_at":"2019-11-17T16:39:34Z","_slug":"random-title","content_type_slug":"articles","_label":"Random
|
2611
1861
|
title","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Random
|
2612
1862
|
title"}'
|
2613
1863
|
http_version:
|
2614
|
-
recorded_at:
|
1864
|
+
recorded_at: Sun, 17 Nov 2019 16:39:34 GMT
|
2615
1865
|
- request:
|
2616
1866
|
method: put
|
2617
1867
|
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/random-title.json
|
2618
1868
|
body:
|
2619
1869
|
encoding: UTF-8
|
2620
|
-
string: auth_token=
|
1870
|
+
string: auth_token=bzwAyFQzcchf_hgDQhz3&content_entry%5Btitle%5D=Random+title%21
|
2621
1871
|
headers:
|
2622
1872
|
User-Agent:
|
2623
|
-
-
|
1873
|
+
- Faraday v0.15.4
|
2624
1874
|
Accept:
|
2625
1875
|
- application/json
|
2626
1876
|
Accept-Encoding:
|
2627
1877
|
- gzip,deflate
|
2628
1878
|
Date:
|
2629
|
-
-
|
1879
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
2630
1880
|
X-Locomotive-Account-Email:
|
2631
1881
|
- admin@locomotivecms.com
|
2632
1882
|
X-Locomotive-Account-Token:
|
2633
|
-
-
|
1883
|
+
- bzwAyFQzcchf_hgDQhz3
|
2634
1884
|
X-Locomotive-Locale:
|
2635
1885
|
- ''
|
2636
1886
|
Content-Type:
|
@@ -2642,23 +1892,35 @@ http_interactions:
|
|
2642
1892
|
headers:
|
2643
1893
|
Content-Type:
|
2644
1894
|
- application/json
|
2645
|
-
|
2646
|
-
-
|
1895
|
+
Transfer-Encoding:
|
1896
|
+
- chunked
|
1897
|
+
Connection:
|
1898
|
+
- keep-alive
|
1899
|
+
Status:
|
1900
|
+
- 200 OK
|
2647
1901
|
Cache-Control:
|
2648
1902
|
- max-age=0, private, must-revalidate
|
2649
|
-
|
2650
|
-
-
|
1903
|
+
Etag:
|
1904
|
+
- W/"caa4cf4edef030baf90169c0255ed7e0"
|
2651
1905
|
X-Runtime:
|
2652
|
-
- '0.
|
2653
|
-
|
2654
|
-
-
|
1906
|
+
- '0.103074'
|
1907
|
+
X-Request-Id:
|
1908
|
+
- def6d6ac-9515-49a4-bba8-7683807a2511
|
1909
|
+
Date:
|
1910
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
1911
|
+
X-Powered-By:
|
1912
|
+
- Phusion Passenger 6.0.4
|
1913
|
+
Server:
|
1914
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
1915
|
+
Content-Encoding:
|
1916
|
+
- gzip
|
2655
1917
|
body:
|
2656
1918
|
encoding: UTF-8
|
2657
|
-
string: '{"_id":"
|
1919
|
+
string: '{"_id":"5dd177c6a95330aa17f8f909","created_at":"2019-11-17T16:39:34Z","updated_at":"2019-11-17T16:39:34Z","_slug":"random-title","content_type_slug":"articles","_label":"Random
|
2658
1920
|
title!","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Random
|
2659
1921
|
title!"}'
|
2660
1922
|
http_version:
|
2661
|
-
recorded_at:
|
1923
|
+
recorded_at: Sun, 17 Nov 2019 16:39:34 GMT
|
2662
1924
|
- request:
|
2663
1925
|
method: post
|
2664
1926
|
uri: http://localhost:3000/locomotive/api/v3/tokens.json
|
@@ -2667,13 +1929,13 @@ http_interactions:
|
|
2667
1929
|
string: email=admin%40locomotivecms.com&password=locomotive
|
2668
1930
|
headers:
|
2669
1931
|
User-Agent:
|
2670
|
-
-
|
1932
|
+
- Faraday v0.15.4
|
2671
1933
|
Accept:
|
2672
1934
|
- application/json
|
2673
1935
|
Accept-Encoding:
|
2674
1936
|
- gzip,deflate
|
2675
1937
|
Date:
|
2676
|
-
-
|
1938
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
2677
1939
|
Content-Type:
|
2678
1940
|
- application/x-www-form-urlencoded
|
2679
1941
|
response:
|
@@ -2683,40 +1945,50 @@ http_interactions:
|
|
2683
1945
|
headers:
|
2684
1946
|
Content-Type:
|
2685
1947
|
- application/json
|
2686
|
-
|
2687
|
-
-
|
1948
|
+
Content-Length:
|
1949
|
+
- '32'
|
1950
|
+
Connection:
|
1951
|
+
- keep-alive
|
1952
|
+
Status:
|
1953
|
+
- 201 Created
|
2688
1954
|
Cache-Control:
|
2689
1955
|
- max-age=0, private, must-revalidate
|
2690
|
-
|
2691
|
-
-
|
1956
|
+
Etag:
|
1957
|
+
- W/"410e3d6fde24f39257a7cc619b61baa7"
|
2692
1958
|
X-Runtime:
|
2693
|
-
- '0.
|
2694
|
-
|
2695
|
-
-
|
1959
|
+
- '0.005003'
|
1960
|
+
X-Request-Id:
|
1961
|
+
- 43e354b1-7653-4221-9394-d1ef5af19eaa
|
1962
|
+
Date:
|
1963
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
1964
|
+
X-Powered-By:
|
1965
|
+
- Phusion Passenger 6.0.4
|
1966
|
+
Server:
|
1967
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
2696
1968
|
body:
|
2697
1969
|
encoding: UTF-8
|
2698
|
-
string: '{"token":"
|
1970
|
+
string: '{"token":"bzwAyFQzcchf_hgDQhz3"}'
|
2699
1971
|
http_version:
|
2700
|
-
recorded_at:
|
1972
|
+
recorded_at: Sun, 17 Nov 2019 16:39:34 GMT
|
2701
1973
|
- request:
|
2702
1974
|
method: post
|
2703
1975
|
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries.json
|
2704
1976
|
body:
|
2705
1977
|
encoding: UTF-8
|
2706
|
-
string: auth_token=
|
1978
|
+
string: auth_token=bzwAyFQzcchf_hgDQhz3&content_entry%5Btitle%5D=Random+title
|
2707
1979
|
headers:
|
2708
1980
|
User-Agent:
|
2709
|
-
-
|
1981
|
+
- Faraday v0.15.4
|
2710
1982
|
Accept:
|
2711
1983
|
- application/json
|
2712
1984
|
Accept-Encoding:
|
2713
1985
|
- gzip,deflate
|
2714
1986
|
Date:
|
2715
|
-
-
|
1987
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
2716
1988
|
X-Locomotive-Account-Email:
|
2717
1989
|
- admin@locomotivecms.com
|
2718
1990
|
X-Locomotive-Account-Token:
|
2719
|
-
-
|
1991
|
+
- bzwAyFQzcchf_hgDQhz3
|
2720
1992
|
Content-Type:
|
2721
1993
|
- application/x-www-form-urlencoded
|
2722
1994
|
response:
|
@@ -2726,42 +1998,52 @@ http_interactions:
|
|
2726
1998
|
headers:
|
2727
1999
|
Content-Type:
|
2728
2000
|
- application/json
|
2729
|
-
|
2730
|
-
-
|
2001
|
+
Content-Length:
|
2002
|
+
- '301'
|
2003
|
+
Connection:
|
2004
|
+
- keep-alive
|
2005
|
+
Status:
|
2006
|
+
- 201 Created
|
2731
2007
|
Cache-Control:
|
2732
2008
|
- max-age=0, private, must-revalidate
|
2733
|
-
|
2734
|
-
-
|
2009
|
+
Etag:
|
2010
|
+
- W/"cc1095532968e51f044a7456551552d9"
|
2735
2011
|
X-Runtime:
|
2736
|
-
- '0.
|
2737
|
-
|
2738
|
-
-
|
2012
|
+
- '0.044698'
|
2013
|
+
X-Request-Id:
|
2014
|
+
- 36d1a2e8-d972-484b-bf96-ab35a4f02b92
|
2015
|
+
Date:
|
2016
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
2017
|
+
X-Powered-By:
|
2018
|
+
- Phusion Passenger 6.0.4
|
2019
|
+
Server:
|
2020
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
2739
2021
|
body:
|
2740
2022
|
encoding: UTF-8
|
2741
|
-
string: '{"_id":"
|
2023
|
+
string: '{"_id":"5dd177c6a95330aa17f8f90e","created_at":"2019-11-17T16:39:34Z","updated_at":"2019-11-17T16:39:34Z","_slug":"random-title-1","content_type_slug":"articles","_label":"Random
|
2742
2024
|
title","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Random
|
2743
2025
|
title"}'
|
2744
2026
|
http_version:
|
2745
|
-
recorded_at:
|
2027
|
+
recorded_at: Sun, 17 Nov 2019 16:39:34 GMT
|
2746
2028
|
- request:
|
2747
2029
|
method: put
|
2748
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/
|
2030
|
+
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/articles/entries/5dd177c6a95330aa17f8f90e.json
|
2749
2031
|
body:
|
2750
2032
|
encoding: UTF-8
|
2751
|
-
string: auth_token=
|
2033
|
+
string: auth_token=bzwAyFQzcchf_hgDQhz3&content_entry%5Btitle%5D=Titre+au+hasard
|
2752
2034
|
headers:
|
2753
2035
|
User-Agent:
|
2754
|
-
-
|
2036
|
+
- Faraday v0.15.4
|
2755
2037
|
Accept:
|
2756
2038
|
- application/json
|
2757
2039
|
Accept-Encoding:
|
2758
2040
|
- gzip,deflate
|
2759
2041
|
Date:
|
2760
|
-
-
|
2042
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
2761
2043
|
X-Locomotive-Account-Email:
|
2762
2044
|
- admin@locomotivecms.com
|
2763
2045
|
X-Locomotive-Account-Token:
|
2764
|
-
-
|
2046
|
+
- bzwAyFQzcchf_hgDQhz3
|
2765
2047
|
X-Locomotive-Locale:
|
2766
2048
|
- fr
|
2767
2049
|
Content-Type:
|
@@ -2773,23 +2055,35 @@ http_interactions:
|
|
2773
2055
|
headers:
|
2774
2056
|
Content-Type:
|
2775
2057
|
- application/json
|
2776
|
-
|
2777
|
-
-
|
2058
|
+
Transfer-Encoding:
|
2059
|
+
- chunked
|
2060
|
+
Connection:
|
2061
|
+
- keep-alive
|
2062
|
+
Status:
|
2063
|
+
- 200 OK
|
2778
2064
|
Cache-Control:
|
2779
2065
|
- max-age=0, private, must-revalidate
|
2780
|
-
|
2781
|
-
-
|
2066
|
+
Etag:
|
2067
|
+
- W/"db7315f9b18d270c35e6e3ac63173912"
|
2782
2068
|
X-Runtime:
|
2783
|
-
- '0.
|
2784
|
-
|
2785
|
-
-
|
2069
|
+
- '0.031054'
|
2070
|
+
X-Request-Id:
|
2071
|
+
- f9c8fd02-c4ac-4c08-b830-e7558d959747
|
2072
|
+
Date:
|
2073
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
2074
|
+
X-Powered-By:
|
2075
|
+
- Phusion Passenger 6.0.4
|
2076
|
+
Server:
|
2077
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
2078
|
+
Content-Encoding:
|
2079
|
+
- gzip
|
2786
2080
|
body:
|
2787
2081
|
encoding: UTF-8
|
2788
|
-
string: '{"_id":"
|
2082
|
+
string: '{"_id":"5dd177c6a95330aa17f8f90e","created_at":"2019-11-17T16:39:34Z","updated_at":"2019-11-17T16:39:34Z","_slug":"titre-au-hasard","content_type_slug":"articles","_label":"Titre
|
2789
2083
|
au hasard","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Titre
|
2790
2084
|
au hasard"}'
|
2791
2085
|
http_version:
|
2792
|
-
recorded_at:
|
2086
|
+
recorded_at: Sun, 17 Nov 2019 16:39:34 GMT
|
2793
2087
|
- request:
|
2794
2088
|
method: post
|
2795
2089
|
uri: http://localhost:3000/locomotive/api/v3/tokens.json
|
@@ -2798,13 +2092,13 @@ http_interactions:
|
|
2798
2092
|
string: email=admin%40locomotivecms.com&password=locomotive
|
2799
2093
|
headers:
|
2800
2094
|
User-Agent:
|
2801
|
-
-
|
2095
|
+
- Faraday v0.15.4
|
2802
2096
|
Accept:
|
2803
2097
|
- application/json
|
2804
2098
|
Accept-Encoding:
|
2805
2099
|
- gzip,deflate
|
2806
2100
|
Date:
|
2807
|
-
-
|
2101
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
2808
2102
|
Content-Type:
|
2809
2103
|
- application/x-www-form-urlencoded
|
2810
2104
|
response:
|
@@ -2814,40 +2108,50 @@ http_interactions:
|
|
2814
2108
|
headers:
|
2815
2109
|
Content-Type:
|
2816
2110
|
- application/json
|
2817
|
-
|
2818
|
-
-
|
2111
|
+
Content-Length:
|
2112
|
+
- '32'
|
2113
|
+
Connection:
|
2114
|
+
- keep-alive
|
2115
|
+
Status:
|
2116
|
+
- 201 Created
|
2819
2117
|
Cache-Control:
|
2820
2118
|
- max-age=0, private, must-revalidate
|
2821
|
-
|
2822
|
-
-
|
2119
|
+
Etag:
|
2120
|
+
- W/"410e3d6fde24f39257a7cc619b61baa7"
|
2823
2121
|
X-Runtime:
|
2824
|
-
- '0.
|
2825
|
-
|
2826
|
-
-
|
2122
|
+
- '0.007069'
|
2123
|
+
X-Request-Id:
|
2124
|
+
- c8924ba8-402f-4514-863c-5c9922fe76a1
|
2125
|
+
Date:
|
2126
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
2127
|
+
X-Powered-By:
|
2128
|
+
- Phusion Passenger 6.0.4
|
2129
|
+
Server:
|
2130
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
2827
2131
|
body:
|
2828
2132
|
encoding: UTF-8
|
2829
|
-
string: '{"token":"
|
2133
|
+
string: '{"token":"bzwAyFQzcchf_hgDQhz3"}'
|
2830
2134
|
http_version:
|
2831
|
-
recorded_at:
|
2135
|
+
recorded_at: Sun, 17 Nov 2019 16:39:34 GMT
|
2832
2136
|
- request:
|
2833
2137
|
method: delete
|
2834
|
-
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/
|
2138
|
+
uri: http://localhost:3000/locomotive/sample/api/v3/content_types/5dd177c4a95330aa17f8f8e8.json?auth_token=bzwAyFQzcchf_hgDQhz3
|
2835
2139
|
body:
|
2836
2140
|
encoding: UTF-8
|
2837
2141
|
string: ''
|
2838
2142
|
headers:
|
2839
2143
|
User-Agent:
|
2840
|
-
-
|
2144
|
+
- Faraday v0.15.4
|
2841
2145
|
Accept:
|
2842
2146
|
- application/json
|
2843
2147
|
Accept-Encoding:
|
2844
2148
|
- gzip,deflate
|
2845
2149
|
Date:
|
2846
|
-
-
|
2150
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
2847
2151
|
X-Locomotive-Account-Email:
|
2848
2152
|
- admin@locomotivecms.com
|
2849
2153
|
X-Locomotive-Account-Token:
|
2850
|
-
-
|
2154
|
+
- bzwAyFQzcchf_hgDQhz3
|
2851
2155
|
response:
|
2852
2156
|
status:
|
2853
2157
|
code: 200
|
@@ -2855,19 +2159,31 @@ http_interactions:
|
|
2855
2159
|
headers:
|
2856
2160
|
Content-Type:
|
2857
2161
|
- application/json
|
2858
|
-
|
2859
|
-
-
|
2162
|
+
Transfer-Encoding:
|
2163
|
+
- chunked
|
2164
|
+
Connection:
|
2165
|
+
- keep-alive
|
2166
|
+
Status:
|
2167
|
+
- 200 OK
|
2860
2168
|
Cache-Control:
|
2861
2169
|
- max-age=0, private, must-revalidate
|
2862
|
-
|
2863
|
-
-
|
2170
|
+
Etag:
|
2171
|
+
- W/"2494e9a41a98ebde68d03c9afe488298"
|
2864
2172
|
X-Runtime:
|
2865
|
-
- '0.
|
2866
|
-
|
2867
|
-
-
|
2173
|
+
- '0.036548'
|
2174
|
+
X-Request-Id:
|
2175
|
+
- 8ff7cff3-527f-435c-be83-922e42732c62
|
2176
|
+
Date:
|
2177
|
+
- Sun, 17 Nov 2019 16:39:34 GMT
|
2178
|
+
X-Powered-By:
|
2179
|
+
- Phusion Passenger 6.0.4
|
2180
|
+
Server:
|
2181
|
+
- nginx/1.17.3 + Phusion Passenger 6.0.4
|
2182
|
+
Content-Encoding:
|
2183
|
+
- gzip
|
2868
2184
|
body:
|
2869
2185
|
encoding: UTF-8
|
2870
|
-
string: '{"_id":"
|
2186
|
+
string: '{"_id":"5dd177c4a95330aa17f8f8e8","created_at":"2019-11-17T16:39:32Z","updated_at":"2019-11-17T16:39:34Z","name":"Article","slug":"articles","description":null,"label_field_name":"title","order_direction":"asc","public_submission_enabled":false,"public_submission_accounts":[],"public_submission_title_template":null,"recaptcha_required":false,"entry_template":null,"display_settings":null,"filter_fields":null,"fields":[{"_id":"5dd177c4a95330aa17f8f8e9","created_at":null,"updated_at":null,"name":"title","type":"string","label":"Title","hint":null,"required":true,"localized":true,"unique":false,"default":null,"position":0,"group":null}],"order_by":"created_at","group_by":null,"public_submission_account_emails":[]}'
|
2871
2187
|
http_version:
|
2872
|
-
recorded_at:
|
2873
|
-
recorded_with: VCR
|
2188
|
+
recorded_at: Sun, 17 Nov 2019 16:39:34 GMT
|
2189
|
+
recorded_with: VCR 4.0.0
|