contentful_bootstrap 2.0.2 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +3 -0
  3. data/CHANGELOG.md +6 -0
  4. data/Gemfile +1 -1
  5. data/examples/templates/catalogue.json +87 -62
  6. data/lib/contentful/bootstrap/commands/create_space.rb +1 -1
  7. data/lib/contentful/bootstrap/generator.rb +9 -9
  8. data/lib/contentful/bootstrap/templates/base.rb +42 -24
  9. data/lib/contentful/bootstrap/templates/blog.rb +2 -0
  10. data/lib/contentful/bootstrap/templates/json_template.rb +24 -11
  11. data/lib/contentful/bootstrap/templates/links/base.rb +5 -0
  12. data/lib/contentful/bootstrap/token.rb +3 -3
  13. data/lib/contentful/bootstrap/version.rb +5 -1
  14. data/spec/contentful/bootstrap/commands/create_space_spec.rb +56 -4
  15. data/spec/contentful/bootstrap/commands/generate_token_spec.rb +14 -0
  16. data/spec/contentful/bootstrap/templates/json_template_spec.rb +39 -1
  17. data/spec/contentful/bootstrap/templates/links/asset_spec.rb +14 -0
  18. data/spec/contentful/bootstrap/templates/links/base_spec.rb +15 -1
  19. data/spec/contentful/bootstrap/templates/links/entry_spec.rb +14 -0
  20. data/spec/fixtures/json_fixtures/high.json +6 -0
  21. data/spec/fixtures/json_fixtures/invalid.json +5 -0
  22. data/spec/fixtures/json_fixtures/issue_22.json +20 -15
  23. data/spec/fixtures/json_fixtures/links.json +18 -0
  24. data/spec/fixtures/json_fixtures/low.json +6 -0
  25. data/spec/fixtures/json_fixtures/no_ids.json +25 -0
  26. data/spec/fixtures/json_fixtures/ok_version.json +6 -0
  27. data/spec/fixtures/json_fixtures/simple.json +8 -3
  28. data/spec/fixtures/json_fixtures/wl1z0pal05vy.json +209 -172
  29. data/spec/fixtures/vcr_fixtures/create_space.yml +202 -0
  30. data/spec/fixtures/vcr_fixtures/create_space_with_blog_template.yml +4337 -0
  31. data/spec/fixtures/vcr_fixtures/create_space_with_catalogue_template.yml +9987 -0
  32. data/spec/fixtures/vcr_fixtures/create_space_with_gallery_template.yml +5609 -0
  33. data/spec/fixtures/vcr_fixtures/generate_json.yml +177 -177
  34. data/spec/fixtures/vcr_fixtures/generate_token.yml +394 -0
  35. data/spec/fixtures/vcr_fixtures/issue_22.yml +914 -307
  36. data/spec/fixtures/vcr_fixtures/no_ids.yml +1314 -0
  37. metadata +27 -3
@@ -0,0 +1,202 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.contentful.com/spaces
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"name":"blog","defaultLocale":"en-US"}'
9
+ headers:
10
+ User-Agent:
11
+ - RubyContentfulManagementGem/0.7.2
12
+ Authorization:
13
+ - Bearer foobar
14
+ Content-Type:
15
+ - application/vnd.contentful.management.v1+json
16
+ Connection:
17
+ - close
18
+ Host:
19
+ - api.contentful.com
20
+ response:
21
+ status:
22
+ code: 201
23
+ message: Created
24
+ headers:
25
+ Accept-Ranges:
26
+ - bytes
27
+ Access-Control-Allow-Headers:
28
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
29
+ Access-Control-Allow-Methods:
30
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
31
+ Access-Control-Allow-Origin:
32
+ - "*"
33
+ Access-Control-Expose-Headers:
34
+ - Etag
35
+ Access-Control-Max-Age:
36
+ - '1728000'
37
+ Cache-Control:
38
+ - max-age=0
39
+ Content-Type:
40
+ - application/vnd.contentful.management.v1+json
41
+ Date:
42
+ - Wed, 18 Nov 2015 15:18:44 GMT
43
+ Etag:
44
+ - '"5ff2a2eea2a7ca0d643293849f3a7295"'
45
+ Location:
46
+ - https://api.contentful.com/spaces/imf7gr7jg4ed
47
+ Server:
48
+ - nginx
49
+ Status:
50
+ - 201 Created
51
+ Strict-Transport-Security:
52
+ - max-age=15768000
53
+ X-Content-Type-Options:
54
+ - nosniff
55
+ X-Contentful-Request-Id:
56
+ - 0b5-124655605
57
+ Content-Length:
58
+ - '447'
59
+ Connection:
60
+ - Close
61
+ body:
62
+ encoding: UTF-8
63
+ string: |+
64
+ {
65
+ "sys":{
66
+ "type":"Space",
67
+ "id":"imf7gr7jg4ed",
68
+ "version":1,
69
+ "createdBy":{
70
+ "sys":{
71
+ "type":"Link",
72
+ "linkType":"User",
73
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
74
+ }
75
+ },
76
+ "createdAt":"2015-11-18T15:18:43Z",
77
+ "updatedBy":{
78
+ "sys":{
79
+ "type":"Link",
80
+ "linkType":"User",
81
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
82
+ }
83
+ },
84
+ "updatedAt":"2015-11-18T15:18:43Z"
85
+ },
86
+ "name":"blog"
87
+ }
88
+
89
+ http_version:
90
+ recorded_at: Wed, 18 Nov 2015 15:18:44 GMT
91
+ - request:
92
+ method: post
93
+ uri: https://api.contentful.com/spaces/imf7gr7jg4ed/api_keys
94
+ body:
95
+ encoding: UTF-8
96
+ string: '{"name":"Bootstrap Token","description":"Created with ''contentful_bootstrap.rb
97
+ v2.0.2''"}'
98
+ headers:
99
+ User-Agent:
100
+ - RubyContentfulManagementGem/0.7.2
101
+ Authorization:
102
+ - Bearer foobar
103
+ Content-Type:
104
+ - application/vnd.contentful.management.v1+json
105
+ Connection:
106
+ - close
107
+ Host:
108
+ - api.contentful.com
109
+ response:
110
+ status:
111
+ code: 201
112
+ message: Created
113
+ headers:
114
+ Accept-Ranges:
115
+ - bytes
116
+ Access-Control-Allow-Headers:
117
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
118
+ Access-Control-Allow-Methods:
119
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
120
+ Access-Control-Allow-Origin:
121
+ - "*"
122
+ Access-Control-Expose-Headers:
123
+ - Etag
124
+ Access-Control-Max-Age:
125
+ - '1728000'
126
+ Cache-Control:
127
+ - max-age=0
128
+ Content-Type:
129
+ - application/vnd.contentful.management.v1+json
130
+ Date:
131
+ - Wed, 18 Nov 2015 15:18:45 GMT
132
+ Etag:
133
+ - '"f8404c82e215f0cc39614ed00adc75b5"'
134
+ Location:
135
+ - https://api.contentful.com/spaces/imf7gr7jg4ed/api_keys/4y83USq9HGzofldbLvDrW0
136
+ Server:
137
+ - nginx
138
+ Status:
139
+ - 201 Created
140
+ Strict-Transport-Security:
141
+ - max-age=15768000
142
+ X-Content-Type-Options:
143
+ - nosniff
144
+ X-Contentful-Request-Id:
145
+ - 0b5-124655625
146
+ Content-Length:
147
+ - '954'
148
+ Connection:
149
+ - Close
150
+ body:
151
+ encoding: UTF-8
152
+ string: |+
153
+ {
154
+ "sys":{
155
+ "type":"ApiKey",
156
+ "id":"4y83USq9HGzofldbLvDrW0",
157
+ "version":0,
158
+ "space":{
159
+ "sys":{
160
+ "type":"Link",
161
+ "linkType":"Space",
162
+ "id":"imf7gr7jg4ed"
163
+ }
164
+ },
165
+ "createdBy":{
166
+ "sys":{
167
+ "type":"Link",
168
+ "linkType":"User",
169
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
170
+ }
171
+ },
172
+ "createdAt":"2015-11-18T15:18:45Z",
173
+ "updatedBy":{
174
+ "sys":{
175
+ "type":"Link",
176
+ "linkType":"User",
177
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
178
+ }
179
+ },
180
+ "updatedAt":"2015-11-18T15:18:45Z"
181
+ },
182
+ "name":"Bootstrap Token",
183
+ "description":"Created with 'contentful_bootstrap.rb v2.0.2'",
184
+ "accessToken":"362afdb99e627ed0e70d71747cc905e1be3a2a85c798e57513ed6a2c0c2721f4",
185
+ "policies":[
186
+ {
187
+ "effect":"allow",
188
+ "actions":"all"
189
+ }
190
+ ],
191
+ "preview_api_key":{
192
+ "sys":{
193
+ "type":"Link",
194
+ "linkType":"PreviewApiKey",
195
+ "id":"4y9pGFQBeSYI2AQQqJ84Ok"
196
+ }
197
+ }
198
+ }
199
+
200
+ http_version:
201
+ recorded_at: Wed, 18 Nov 2015 15:18:45 GMT
202
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,4337 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.contentful.com/spaces
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"name":"blog_space","defaultLocale":"en-US"}'
9
+ headers:
10
+ User-Agent:
11
+ - RubyContentfulManagementGem/0.7.3
12
+ Authorization:
13
+ - Bearer foobar
14
+ Content-Type:
15
+ - application/vnd.contentful.management.v1+json
16
+ X-Contentful-Organization:
17
+ - 1PLOOEmTI2S1NYald2TemO
18
+ Connection:
19
+ - close
20
+ Host:
21
+ - api.contentful.com
22
+ response:
23
+ status:
24
+ code: 201
25
+ message: Created
26
+ headers:
27
+ Accept-Ranges:
28
+ - bytes
29
+ Access-Control-Allow-Headers:
30
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
31
+ Access-Control-Allow-Methods:
32
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
33
+ Access-Control-Allow-Origin:
34
+ - '*'
35
+ Access-Control-Expose-Headers:
36
+ - Etag
37
+ Access-Control-Max-Age:
38
+ - '1728000'
39
+ Cache-Control:
40
+ - max-age=0
41
+ Content-Type:
42
+ - application/vnd.contentful.management.v1+json
43
+ Date:
44
+ - Fri, 27 Nov 2015 09:17:18 GMT
45
+ Etag:
46
+ - '"72393227d0b0f99d0adcbe1230a4abea"'
47
+ Location:
48
+ - https://api.contentful.com/spaces/xrfaz3bfkml6
49
+ Server:
50
+ - nginx
51
+ Status:
52
+ - 201 Created
53
+ Strict-Transport-Security:
54
+ - max-age=15768000
55
+ X-Content-Type-Options:
56
+ - nosniff
57
+ X-Contentful-Request-Id:
58
+ - 9e1-621575638
59
+ Content-Length:
60
+ - '453'
61
+ Connection:
62
+ - Close
63
+ body:
64
+ encoding: UTF-8
65
+ string: |+
66
+ {
67
+ "sys":{
68
+ "type":"Space",
69
+ "id":"xrfaz3bfkml6",
70
+ "version":1,
71
+ "createdBy":{
72
+ "sys":{
73
+ "type":"Link",
74
+ "linkType":"User",
75
+ "id":"4FLrUHftHW3v2BLi9fzfjU"
76
+ }
77
+ },
78
+ "createdAt":"2015-11-27T09:17:16Z",
79
+ "updatedBy":{
80
+ "sys":{
81
+ "type":"Link",
82
+ "linkType":"User",
83
+ "id":"4FLrUHftHW3v2BLi9fzfjU"
84
+ }
85
+ },
86
+ "updatedAt":"2015-11-27T09:17:16Z"
87
+ },
88
+ "name":"blog_space"
89
+ }
90
+
91
+ http_version:
92
+ recorded_at: Fri, 27 Nov 2015 09:17:20 GMT
93
+ - request:
94
+ method: put
95
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/content_types/author
96
+ body:
97
+ encoding: UTF-8
98
+ string: '{"displayField":"name","name":"Author","description":null,"fields":[{"id":"name","name":"Author
99
+ Name","type":"Symbol"}]}'
100
+ headers:
101
+ User-Agent:
102
+ - RubyContentfulManagementGem/0.7.3
103
+ Authorization:
104
+ - Bearer foobar
105
+ Content-Type:
106
+ - application/vnd.contentful.management.v1+json
107
+ Connection:
108
+ - close
109
+ Host:
110
+ - api.contentful.com
111
+ response:
112
+ status:
113
+ code: 201
114
+ message: Created
115
+ headers:
116
+ Access-Control-Allow-Headers:
117
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
118
+ Access-Control-Allow-Methods:
119
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
120
+ Access-Control-Allow-Origin:
121
+ - '*'
122
+ Access-Control-Expose-Headers:
123
+ - Etag
124
+ Access-Control-Max-Age:
125
+ - '1728000'
126
+ Cf-Space-Id:
127
+ - xrfaz3bfkml6
128
+ Content-Type:
129
+ - application/vnd.contentful.management.v1+json
130
+ Date:
131
+ - Fri, 27 Nov 2015 09:17:22 GMT
132
+ Etag:
133
+ - '"b978cb9f09a17641076cc5feb03af951"'
134
+ Server:
135
+ - nginx
136
+ Strict-Transport-Security:
137
+ - max-age=15768000
138
+ X-Content-Type-Options:
139
+ - nosniff
140
+ X-Contentful-Request-Id:
141
+ - content-api:6ggis53r7Uk4eU2CckIaC4
142
+ X-Powered-By:
143
+ - Express
144
+ Content-Length:
145
+ - '803'
146
+ Connection:
147
+ - Close
148
+ body:
149
+ encoding: UTF-8
150
+ string: |
151
+ {
152
+ "displayField": "name",
153
+ "name": "Author",
154
+ "description": null,
155
+ "fields": [
156
+ {
157
+ "id": "name",
158
+ "name": "Author Name",
159
+ "type": "Symbol",
160
+ "localized": false,
161
+ "validations": []
162
+ }
163
+ ],
164
+ "sys": {
165
+ "id": "author",
166
+ "type": "ContentType",
167
+ "version": 1,
168
+ "createdAt": "2015-11-27T09:17:22.748Z",
169
+ "createdBy": {
170
+ "sys": {
171
+ "type": "Link",
172
+ "linkType": "User",
173
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
174
+ }
175
+ },
176
+ "space": {
177
+ "sys": {
178
+ "type": "Link",
179
+ "linkType": "Space",
180
+ "id": "xrfaz3bfkml6"
181
+ }
182
+ },
183
+ "updatedAt": "2015-11-27T09:17:22.748Z",
184
+ "updatedBy": {
185
+ "sys": {
186
+ "type": "Link",
187
+ "linkType": "User",
188
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
189
+ }
190
+ }
191
+ }
192
+ }
193
+ http_version:
194
+ recorded_at: Fri, 27 Nov 2015 09:17:24 GMT
195
+ - request:
196
+ method: put
197
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/content_types/author/published
198
+ body:
199
+ encoding: US-ASCII
200
+ string: ''
201
+ headers:
202
+ User-Agent:
203
+ - RubyContentfulManagementGem/0.7.3
204
+ Authorization:
205
+ - Bearer foobar
206
+ Content-Type:
207
+ - application/vnd.contentful.management.v1+json
208
+ X-Contentful-Version:
209
+ - '1'
210
+ Content-Length:
211
+ - '0'
212
+ Connection:
213
+ - close
214
+ Host:
215
+ - api.contentful.com
216
+ response:
217
+ status:
218
+ code: 200
219
+ message: OK
220
+ headers:
221
+ Access-Control-Allow-Headers:
222
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
223
+ Access-Control-Allow-Methods:
224
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
225
+ Access-Control-Allow-Origin:
226
+ - '*'
227
+ Access-Control-Expose-Headers:
228
+ - Etag
229
+ Access-Control-Max-Age:
230
+ - '1728000'
231
+ Cf-Space-Id:
232
+ - xrfaz3bfkml6
233
+ Content-Type:
234
+ - application/vnd.contentful.management.v1+json
235
+ Date:
236
+ - Fri, 27 Nov 2015 09:17:27 GMT
237
+ Etag:
238
+ - '"85590642c6c40e8773542f546634208c"'
239
+ Server:
240
+ - nginx
241
+ Strict-Transport-Security:
242
+ - max-age=15768000
243
+ X-Content-Type-Options:
244
+ - nosniff
245
+ X-Contentful-Request-Id:
246
+ - content-api:1TeFCdSYFSGyIKeOcIYKG2
247
+ X-Powered-By:
248
+ - Express
249
+ Content-Length:
250
+ - '1098'
251
+ Connection:
252
+ - Close
253
+ body:
254
+ encoding: UTF-8
255
+ string: |
256
+ {
257
+ "displayField": "name",
258
+ "name": "Author",
259
+ "description": null,
260
+ "fields": [
261
+ {
262
+ "id": "name",
263
+ "name": "Author Name",
264
+ "type": "Symbol",
265
+ "localized": false,
266
+ "validations": []
267
+ }
268
+ ],
269
+ "sys": {
270
+ "id": "author",
271
+ "type": "ContentType",
272
+ "createdAt": "2015-11-27T09:17:22.748Z",
273
+ "createdBy": {
274
+ "sys": {
275
+ "type": "Link",
276
+ "linkType": "User",
277
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
278
+ }
279
+ },
280
+ "space": {
281
+ "sys": {
282
+ "type": "Link",
283
+ "linkType": "Space",
284
+ "id": "xrfaz3bfkml6"
285
+ }
286
+ },
287
+ "version": 2,
288
+ "updatedAt": "2015-11-27T09:17:26.724Z",
289
+ "updatedBy": {
290
+ "sys": {
291
+ "type": "Link",
292
+ "linkType": "User",
293
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
294
+ }
295
+ },
296
+ "firstPublishedAt": "2015-11-27T09:17:26.724Z",
297
+ "publishedCounter": 1,
298
+ "publishedAt": "2015-11-27T09:17:26.724Z",
299
+ "publishedBy": {
300
+ "sys": {
301
+ "type": "Link",
302
+ "linkType": "User",
303
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
304
+ }
305
+ },
306
+ "publishedVersion": 1
307
+ }
308
+ }
309
+ http_version:
310
+ recorded_at: Fri, 27 Nov 2015 09:17:28 GMT
311
+ - request:
312
+ method: put
313
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/content_types/post
314
+ body:
315
+ encoding: UTF-8
316
+ string: '{"displayField":"title","name":"Post","description":null,"fields":[{"id":"title","name":"Post
317
+ Title","type":"Symbol"},{"id":"content","name":"Content","type":"Text"},{"id":"author","name":"Author","type":"Link","linkType":"Entry"}]}'
318
+ headers:
319
+ User-Agent:
320
+ - RubyContentfulManagementGem/0.7.3
321
+ Authorization:
322
+ - Bearer foobar
323
+ Content-Type:
324
+ - application/vnd.contentful.management.v1+json
325
+ Connection:
326
+ - close
327
+ Host:
328
+ - api.contentful.com
329
+ response:
330
+ status:
331
+ code: 201
332
+ message: Created
333
+ headers:
334
+ Access-Control-Allow-Headers:
335
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
336
+ Access-Control-Allow-Methods:
337
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
338
+ Access-Control-Allow-Origin:
339
+ - '*'
340
+ Access-Control-Expose-Headers:
341
+ - Etag
342
+ Access-Control-Max-Age:
343
+ - '1728000'
344
+ Cf-Space-Id:
345
+ - xrfaz3bfkml6
346
+ Content-Type:
347
+ - application/vnd.contentful.management.v1+json
348
+ Date:
349
+ - Fri, 27 Nov 2015 09:17:28 GMT
350
+ Etag:
351
+ - '"59bd44b600fabcf92cb69245b804869b"'
352
+ Server:
353
+ - nginx
354
+ Strict-Transport-Security:
355
+ - max-age=15768000
356
+ X-Content-Type-Options:
357
+ - nosniff
358
+ X-Contentful-Request-Id:
359
+ - content-api:2BsKsWT3UkMm28UeW2O8CG
360
+ X-Powered-By:
361
+ - Express
362
+ Content-Length:
363
+ - '1091'
364
+ Connection:
365
+ - Close
366
+ body:
367
+ encoding: UTF-8
368
+ string: |
369
+ {
370
+ "displayField": "title",
371
+ "name": "Post",
372
+ "description": null,
373
+ "fields": [
374
+ {
375
+ "id": "title",
376
+ "name": "Post Title",
377
+ "type": "Symbol",
378
+ "localized": false,
379
+ "validations": []
380
+ },
381
+ {
382
+ "id": "content",
383
+ "name": "Content",
384
+ "type": "Text",
385
+ "localized": false,
386
+ "validations": []
387
+ },
388
+ {
389
+ "id": "author",
390
+ "name": "Author",
391
+ "type": "Link",
392
+ "linkType": "Entry",
393
+ "localized": false,
394
+ "validations": []
395
+ }
396
+ ],
397
+ "sys": {
398
+ "id": "post",
399
+ "type": "ContentType",
400
+ "version": 1,
401
+ "createdAt": "2015-11-27T09:17:28.093Z",
402
+ "createdBy": {
403
+ "sys": {
404
+ "type": "Link",
405
+ "linkType": "User",
406
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
407
+ }
408
+ },
409
+ "space": {
410
+ "sys": {
411
+ "type": "Link",
412
+ "linkType": "Space",
413
+ "id": "xrfaz3bfkml6"
414
+ }
415
+ },
416
+ "updatedAt": "2015-11-27T09:17:28.093Z",
417
+ "updatedBy": {
418
+ "sys": {
419
+ "type": "Link",
420
+ "linkType": "User",
421
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
422
+ }
423
+ }
424
+ }
425
+ }
426
+ http_version:
427
+ recorded_at: Fri, 27 Nov 2015 09:17:29 GMT
428
+ - request:
429
+ method: put
430
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/content_types/post/published
431
+ body:
432
+ encoding: US-ASCII
433
+ string: ''
434
+ headers:
435
+ User-Agent:
436
+ - RubyContentfulManagementGem/0.7.3
437
+ Authorization:
438
+ - Bearer foobar
439
+ Content-Type:
440
+ - application/vnd.contentful.management.v1+json
441
+ X-Contentful-Version:
442
+ - '1'
443
+ Content-Length:
444
+ - '0'
445
+ Connection:
446
+ - close
447
+ Host:
448
+ - api.contentful.com
449
+ response:
450
+ status:
451
+ code: 200
452
+ message: OK
453
+ headers:
454
+ Access-Control-Allow-Headers:
455
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
456
+ Access-Control-Allow-Methods:
457
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
458
+ Access-Control-Allow-Origin:
459
+ - '*'
460
+ Access-Control-Expose-Headers:
461
+ - Etag
462
+ Access-Control-Max-Age:
463
+ - '1728000'
464
+ Cf-Space-Id:
465
+ - xrfaz3bfkml6
466
+ Content-Type:
467
+ - application/vnd.contentful.management.v1+json
468
+ Date:
469
+ - Fri, 27 Nov 2015 09:17:32 GMT
470
+ Etag:
471
+ - '"3778cb214dda7bd58741eb6656dd3f18"'
472
+ Server:
473
+ - nginx
474
+ Strict-Transport-Security:
475
+ - max-age=15768000
476
+ X-Content-Type-Options:
477
+ - nosniff
478
+ X-Contentful-Request-Id:
479
+ - content-api:5TyMY7de1iwKeOUawwoG6q
480
+ X-Powered-By:
481
+ - Express
482
+ Content-Length:
483
+ - '1386'
484
+ Connection:
485
+ - Close
486
+ body:
487
+ encoding: UTF-8
488
+ string: |
489
+ {
490
+ "displayField": "title",
491
+ "name": "Post",
492
+ "description": null,
493
+ "fields": [
494
+ {
495
+ "id": "title",
496
+ "name": "Post Title",
497
+ "type": "Symbol",
498
+ "localized": false,
499
+ "validations": []
500
+ },
501
+ {
502
+ "id": "content",
503
+ "name": "Content",
504
+ "type": "Text",
505
+ "localized": false,
506
+ "validations": []
507
+ },
508
+ {
509
+ "id": "author",
510
+ "name": "Author",
511
+ "type": "Link",
512
+ "linkType": "Entry",
513
+ "localized": false,
514
+ "validations": []
515
+ }
516
+ ],
517
+ "sys": {
518
+ "id": "post",
519
+ "type": "ContentType",
520
+ "createdAt": "2015-11-27T09:17:28.093Z",
521
+ "createdBy": {
522
+ "sys": {
523
+ "type": "Link",
524
+ "linkType": "User",
525
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
526
+ }
527
+ },
528
+ "space": {
529
+ "sys": {
530
+ "type": "Link",
531
+ "linkType": "Space",
532
+ "id": "xrfaz3bfkml6"
533
+ }
534
+ },
535
+ "version": 2,
536
+ "updatedAt": "2015-11-27T09:17:31.703Z",
537
+ "updatedBy": {
538
+ "sys": {
539
+ "type": "Link",
540
+ "linkType": "User",
541
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
542
+ }
543
+ },
544
+ "firstPublishedAt": "2015-11-27T09:17:31.703Z",
545
+ "publishedCounter": 1,
546
+ "publishedAt": "2015-11-27T09:17:31.703Z",
547
+ "publishedBy": {
548
+ "sys": {
549
+ "type": "Link",
550
+ "linkType": "User",
551
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
552
+ }
553
+ },
554
+ "publishedVersion": 1
555
+ }
556
+ }
557
+ http_version:
558
+ recorded_at: Fri, 27 Nov 2015 09:17:33 GMT
559
+ - request:
560
+ method: get
561
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/content_types/author
562
+ body:
563
+ encoding: US-ASCII
564
+ string: ''
565
+ headers:
566
+ User-Agent:
567
+ - RubyContentfulManagementGem/0.7.3
568
+ Authorization:
569
+ - Bearer foobar
570
+ Content-Type:
571
+ - application/vnd.contentful.management.v1+json
572
+ Content-Length:
573
+ - '0'
574
+ Connection:
575
+ - close
576
+ Host:
577
+ - api.contentful.com
578
+ response:
579
+ status:
580
+ code: 200
581
+ message: OK
582
+ headers:
583
+ Access-Control-Allow-Headers:
584
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
585
+ Access-Control-Allow-Methods:
586
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
587
+ Access-Control-Allow-Origin:
588
+ - '*'
589
+ Access-Control-Expose-Headers:
590
+ - Etag
591
+ Access-Control-Max-Age:
592
+ - '1728000'
593
+ Cf-Space-Id:
594
+ - xrfaz3bfkml6
595
+ Content-Type:
596
+ - application/vnd.contentful.management.v1+json
597
+ Date:
598
+ - Fri, 27 Nov 2015 09:17:32 GMT
599
+ Etag:
600
+ - '"6cbdef6a200045f02876aec0e45505b3"'
601
+ Server:
602
+ - nginx
603
+ Strict-Transport-Security:
604
+ - max-age=15768000
605
+ X-Content-Type-Options:
606
+ - nosniff
607
+ X-Contentful-Request-Id:
608
+ - content-api:3HJL254NIAWCSQmyw4QY4G
609
+ X-Powered-By:
610
+ - Express
611
+ Content-Length:
612
+ - '1098'
613
+ Connection:
614
+ - Close
615
+ body:
616
+ encoding: UTF-8
617
+ string: |
618
+ {
619
+ "displayField": "name",
620
+ "name": "Author",
621
+ "description": null,
622
+ "fields": [
623
+ {
624
+ "id": "name",
625
+ "name": "Author Name",
626
+ "type": "Symbol",
627
+ "localized": false,
628
+ "validations": []
629
+ }
630
+ ],
631
+ "sys": {
632
+ "id": "author",
633
+ "type": "ContentType",
634
+ "createdAt": "2015-11-27T09:17:22.748Z",
635
+ "createdBy": {
636
+ "sys": {
637
+ "type": "Link",
638
+ "linkType": "User",
639
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
640
+ }
641
+ },
642
+ "space": {
643
+ "sys": {
644
+ "type": "Link",
645
+ "linkType": "Space",
646
+ "id": "xrfaz3bfkml6"
647
+ }
648
+ },
649
+ "firstPublishedAt": "2015-11-27T09:17:26.724Z",
650
+ "publishedCounter": 1,
651
+ "publishedAt": "2015-11-27T09:17:26.724Z",
652
+ "publishedBy": {
653
+ "sys": {
654
+ "type": "Link",
655
+ "linkType": "User",
656
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
657
+ }
658
+ },
659
+ "publishedVersion": 1,
660
+ "version": 2,
661
+ "updatedAt": "2015-11-27T09:17:26.771Z",
662
+ "updatedBy": {
663
+ "sys": {
664
+ "type": "Link",
665
+ "linkType": "User",
666
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
667
+ }
668
+ }
669
+ }
670
+ }
671
+ http_version:
672
+ recorded_at: Fri, 27 Nov 2015 09:17:34 GMT
673
+ - request:
674
+ method: put
675
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/dan_brown
676
+ body:
677
+ encoding: UTF-8
678
+ string: '{"fields":{}}'
679
+ headers:
680
+ User-Agent:
681
+ - RubyContentfulManagementGem/0.7.3
682
+ Authorization:
683
+ - Bearer foobar
684
+ Content-Type:
685
+ - application/vnd.contentful.management.v1+json
686
+ X-Contentful-Content-Type:
687
+ - author
688
+ Connection:
689
+ - close
690
+ Host:
691
+ - api.contentful.com
692
+ response:
693
+ status:
694
+ code: 201
695
+ message: Created
696
+ headers:
697
+ Access-Control-Allow-Headers:
698
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
699
+ Access-Control-Allow-Methods:
700
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
701
+ Access-Control-Allow-Origin:
702
+ - '*'
703
+ Access-Control-Expose-Headers:
704
+ - Etag
705
+ Access-Control-Max-Age:
706
+ - '1728000'
707
+ Cf-Space-Id:
708
+ - xrfaz3bfkml6
709
+ Content-Type:
710
+ - application/vnd.contentful.management.v1+json
711
+ Date:
712
+ - Fri, 27 Nov 2015 09:17:33 GMT
713
+ Etag:
714
+ - '"13065344e1279ea6362b517598b00cd1"'
715
+ Server:
716
+ - nginx
717
+ Strict-Transport-Security:
718
+ - max-age=15768000
719
+ X-Content-Type-Options:
720
+ - nosniff
721
+ X-Contentful-Request-Id:
722
+ - content-api:7G2QcoRx96gUACqWgaYUEO
723
+ X-Powered-By:
724
+ - Express
725
+ Content-Length:
726
+ - '726'
727
+ Connection:
728
+ - Close
729
+ body:
730
+ encoding: UTF-8
731
+ string: |
732
+ {
733
+ "fields": {},
734
+ "sys": {
735
+ "id": "dan_brown",
736
+ "type": "Entry",
737
+ "version": 1,
738
+ "createdAt": "2015-11-27T09:17:33.725Z",
739
+ "createdBy": {
740
+ "sys": {
741
+ "type": "Link",
742
+ "linkType": "User",
743
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
744
+ }
745
+ },
746
+ "space": {
747
+ "sys": {
748
+ "type": "Link",
749
+ "linkType": "Space",
750
+ "id": "xrfaz3bfkml6"
751
+ }
752
+ },
753
+ "contentType": {
754
+ "sys": {
755
+ "type": "Link",
756
+ "linkType": "ContentType",
757
+ "id": "author"
758
+ }
759
+ },
760
+ "updatedAt": "2015-11-27T09:17:33.725Z",
761
+ "updatedBy": {
762
+ "sys": {
763
+ "type": "Link",
764
+ "linkType": "User",
765
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
766
+ }
767
+ }
768
+ }
769
+ }
770
+ http_version:
771
+ recorded_at: Fri, 27 Nov 2015 09:17:35 GMT
772
+ - request:
773
+ method: put
774
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/dan_brown
775
+ body:
776
+ encoding: UTF-8
777
+ string: '{"fields":{}}'
778
+ headers:
779
+ User-Agent:
780
+ - RubyContentfulManagementGem/0.7.3
781
+ Authorization:
782
+ - Bearer foobar
783
+ Content-Type:
784
+ - application/vnd.contentful.management.v1+json
785
+ X-Contentful-Version:
786
+ - '1'
787
+ Connection:
788
+ - close
789
+ Host:
790
+ - api.contentful.com
791
+ response:
792
+ status:
793
+ code: 200
794
+ message: OK
795
+ headers:
796
+ Access-Control-Allow-Headers:
797
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
798
+ Access-Control-Allow-Methods:
799
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
800
+ Access-Control-Allow-Origin:
801
+ - '*'
802
+ Access-Control-Expose-Headers:
803
+ - Etag
804
+ Access-Control-Max-Age:
805
+ - '1728000'
806
+ Cf-Space-Id:
807
+ - xrfaz3bfkml6
808
+ Content-Type:
809
+ - application/vnd.contentful.management.v1+json
810
+ Date:
811
+ - Fri, 27 Nov 2015 09:17:34 GMT
812
+ Etag:
813
+ - '"91e0ffac2f126028745413d5c9b629da"'
814
+ Server:
815
+ - nginx
816
+ Strict-Transport-Security:
817
+ - max-age=15768000
818
+ X-Content-Type-Options:
819
+ - nosniff
820
+ X-Contentful-Request-Id:
821
+ - content-api:H34alNwH4GSweWUuUmw0S
822
+ X-Powered-By:
823
+ - Express
824
+ Content-Length:
825
+ - '726'
826
+ Connection:
827
+ - Close
828
+ body:
829
+ encoding: UTF-8
830
+ string: |
831
+ {
832
+ "fields": {},
833
+ "sys": {
834
+ "id": "dan_brown",
835
+ "type": "Entry",
836
+ "createdAt": "2015-11-27T09:17:33.725Z",
837
+ "createdBy": {
838
+ "sys": {
839
+ "type": "Link",
840
+ "linkType": "User",
841
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
842
+ }
843
+ },
844
+ "space": {
845
+ "sys": {
846
+ "type": "Link",
847
+ "linkType": "Space",
848
+ "id": "xrfaz3bfkml6"
849
+ }
850
+ },
851
+ "contentType": {
852
+ "sys": {
853
+ "type": "Link",
854
+ "linkType": "ContentType",
855
+ "id": "author"
856
+ }
857
+ },
858
+ "version": 2,
859
+ "updatedAt": "2015-11-27T09:17:34.728Z",
860
+ "updatedBy": {
861
+ "sys": {
862
+ "type": "Link",
863
+ "linkType": "User",
864
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
865
+ }
866
+ }
867
+ }
868
+ }
869
+ http_version:
870
+ recorded_at: Fri, 27 Nov 2015 09:17:36 GMT
871
+ - request:
872
+ method: put
873
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/pablo_neruda
874
+ body:
875
+ encoding: UTF-8
876
+ string: '{"fields":{}}'
877
+ headers:
878
+ User-Agent:
879
+ - RubyContentfulManagementGem/0.7.3
880
+ Authorization:
881
+ - Bearer foobar
882
+ Content-Type:
883
+ - application/vnd.contentful.management.v1+json
884
+ X-Contentful-Content-Type:
885
+ - author
886
+ Connection:
887
+ - close
888
+ Host:
889
+ - api.contentful.com
890
+ response:
891
+ status:
892
+ code: 201
893
+ message: Created
894
+ headers:
895
+ Access-Control-Allow-Headers:
896
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
897
+ Access-Control-Allow-Methods:
898
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
899
+ Access-Control-Allow-Origin:
900
+ - '*'
901
+ Access-Control-Expose-Headers:
902
+ - Etag
903
+ Access-Control-Max-Age:
904
+ - '1728000'
905
+ Cf-Space-Id:
906
+ - xrfaz3bfkml6
907
+ Content-Type:
908
+ - application/vnd.contentful.management.v1+json
909
+ Date:
910
+ - Fri, 27 Nov 2015 09:17:35 GMT
911
+ Etag:
912
+ - '"75915efde81e868f6576076b93809d7e"'
913
+ Server:
914
+ - nginx
915
+ Strict-Transport-Security:
916
+ - max-age=15768000
917
+ X-Content-Type-Options:
918
+ - nosniff
919
+ X-Contentful-Request-Id:
920
+ - content-api:3HbqSgwcy4qM6wciq6sO8K
921
+ X-Powered-By:
922
+ - Express
923
+ Content-Length:
924
+ - '729'
925
+ Connection:
926
+ - Close
927
+ body:
928
+ encoding: UTF-8
929
+ string: |
930
+ {
931
+ "fields": {},
932
+ "sys": {
933
+ "id": "pablo_neruda",
934
+ "type": "Entry",
935
+ "version": 1,
936
+ "createdAt": "2015-11-27T09:17:35.617Z",
937
+ "createdBy": {
938
+ "sys": {
939
+ "type": "Link",
940
+ "linkType": "User",
941
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
942
+ }
943
+ },
944
+ "space": {
945
+ "sys": {
946
+ "type": "Link",
947
+ "linkType": "Space",
948
+ "id": "xrfaz3bfkml6"
949
+ }
950
+ },
951
+ "contentType": {
952
+ "sys": {
953
+ "type": "Link",
954
+ "linkType": "ContentType",
955
+ "id": "author"
956
+ }
957
+ },
958
+ "updatedAt": "2015-11-27T09:17:35.617Z",
959
+ "updatedBy": {
960
+ "sys": {
961
+ "type": "Link",
962
+ "linkType": "User",
963
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
964
+ }
965
+ }
966
+ }
967
+ }
968
+ http_version:
969
+ recorded_at: Fri, 27 Nov 2015 09:17:37 GMT
970
+ - request:
971
+ method: put
972
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/pablo_neruda
973
+ body:
974
+ encoding: UTF-8
975
+ string: '{"fields":{}}'
976
+ headers:
977
+ User-Agent:
978
+ - RubyContentfulManagementGem/0.7.3
979
+ Authorization:
980
+ - Bearer foobar
981
+ Content-Type:
982
+ - application/vnd.contentful.management.v1+json
983
+ X-Contentful-Version:
984
+ - '1'
985
+ Connection:
986
+ - close
987
+ Host:
988
+ - api.contentful.com
989
+ response:
990
+ status:
991
+ code: 200
992
+ message: OK
993
+ headers:
994
+ Access-Control-Allow-Headers:
995
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
996
+ Access-Control-Allow-Methods:
997
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
998
+ Access-Control-Allow-Origin:
999
+ - '*'
1000
+ Access-Control-Expose-Headers:
1001
+ - Etag
1002
+ Access-Control-Max-Age:
1003
+ - '1728000'
1004
+ Cf-Space-Id:
1005
+ - xrfaz3bfkml6
1006
+ Content-Type:
1007
+ - application/vnd.contentful.management.v1+json
1008
+ Date:
1009
+ - Fri, 27 Nov 2015 09:17:36 GMT
1010
+ Etag:
1011
+ - '"4e508fabfdf21b0f9c7c97d1d6d3426a"'
1012
+ Server:
1013
+ - nginx
1014
+ Strict-Transport-Security:
1015
+ - max-age=15768000
1016
+ X-Content-Type-Options:
1017
+ - nosniff
1018
+ X-Contentful-Request-Id:
1019
+ - content-api:2N5bNoeotOcyeQUueugYMc
1020
+ X-Powered-By:
1021
+ - Express
1022
+ Content-Length:
1023
+ - '729'
1024
+ Connection:
1025
+ - Close
1026
+ body:
1027
+ encoding: UTF-8
1028
+ string: |
1029
+ {
1030
+ "fields": {},
1031
+ "sys": {
1032
+ "id": "pablo_neruda",
1033
+ "type": "Entry",
1034
+ "createdAt": "2015-11-27T09:17:35.617Z",
1035
+ "createdBy": {
1036
+ "sys": {
1037
+ "type": "Link",
1038
+ "linkType": "User",
1039
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
1040
+ }
1041
+ },
1042
+ "space": {
1043
+ "sys": {
1044
+ "type": "Link",
1045
+ "linkType": "Space",
1046
+ "id": "xrfaz3bfkml6"
1047
+ }
1048
+ },
1049
+ "contentType": {
1050
+ "sys": {
1051
+ "type": "Link",
1052
+ "linkType": "ContentType",
1053
+ "id": "author"
1054
+ }
1055
+ },
1056
+ "version": 2,
1057
+ "updatedAt": "2015-11-27T09:17:36.596Z",
1058
+ "updatedBy": {
1059
+ "sys": {
1060
+ "type": "Link",
1061
+ "linkType": "User",
1062
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
1063
+ }
1064
+ }
1065
+ }
1066
+ }
1067
+ http_version:
1068
+ recorded_at: Fri, 27 Nov 2015 09:17:38 GMT
1069
+ - request:
1070
+ method: get
1071
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/content_types/post
1072
+ body:
1073
+ encoding: US-ASCII
1074
+ string: ''
1075
+ headers:
1076
+ User-Agent:
1077
+ - RubyContentfulManagementGem/0.7.3
1078
+ Authorization:
1079
+ - Bearer foobar
1080
+ Content-Type:
1081
+ - application/vnd.contentful.management.v1+json
1082
+ Content-Length:
1083
+ - '0'
1084
+ Connection:
1085
+ - close
1086
+ Host:
1087
+ - api.contentful.com
1088
+ response:
1089
+ status:
1090
+ code: 200
1091
+ message: OK
1092
+ headers:
1093
+ Access-Control-Allow-Headers:
1094
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
1095
+ Access-Control-Allow-Methods:
1096
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
1097
+ Access-Control-Allow-Origin:
1098
+ - '*'
1099
+ Access-Control-Expose-Headers:
1100
+ - Etag
1101
+ Access-Control-Max-Age:
1102
+ - '1728000'
1103
+ Cf-Space-Id:
1104
+ - xrfaz3bfkml6
1105
+ Content-Type:
1106
+ - application/vnd.contentful.management.v1+json
1107
+ Date:
1108
+ - Fri, 27 Nov 2015 09:17:37 GMT
1109
+ Etag:
1110
+ - '"15b6a7b0c82711ad95e0ea591a45d81a"'
1111
+ Server:
1112
+ - nginx
1113
+ Strict-Transport-Security:
1114
+ - max-age=15768000
1115
+ X-Content-Type-Options:
1116
+ - nosniff
1117
+ X-Contentful-Request-Id:
1118
+ - content-api:1qXtYIjz3KQSE664oaiyO0
1119
+ X-Powered-By:
1120
+ - Express
1121
+ Content-Length:
1122
+ - '1386'
1123
+ Connection:
1124
+ - Close
1125
+ body:
1126
+ encoding: UTF-8
1127
+ string: |
1128
+ {
1129
+ "displayField": "title",
1130
+ "name": "Post",
1131
+ "description": null,
1132
+ "fields": [
1133
+ {
1134
+ "id": "title",
1135
+ "name": "Post Title",
1136
+ "type": "Symbol",
1137
+ "localized": false,
1138
+ "validations": []
1139
+ },
1140
+ {
1141
+ "id": "content",
1142
+ "name": "Content",
1143
+ "type": "Text",
1144
+ "localized": false,
1145
+ "validations": []
1146
+ },
1147
+ {
1148
+ "id": "author",
1149
+ "name": "Author",
1150
+ "type": "Link",
1151
+ "linkType": "Entry",
1152
+ "localized": false,
1153
+ "validations": []
1154
+ }
1155
+ ],
1156
+ "sys": {
1157
+ "id": "post",
1158
+ "type": "ContentType",
1159
+ "createdAt": "2015-11-27T09:17:28.093Z",
1160
+ "createdBy": {
1161
+ "sys": {
1162
+ "type": "Link",
1163
+ "linkType": "User",
1164
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
1165
+ }
1166
+ },
1167
+ "space": {
1168
+ "sys": {
1169
+ "type": "Link",
1170
+ "linkType": "Space",
1171
+ "id": "xrfaz3bfkml6"
1172
+ }
1173
+ },
1174
+ "firstPublishedAt": "2015-11-27T09:17:31.703Z",
1175
+ "publishedCounter": 1,
1176
+ "publishedAt": "2015-11-27T09:17:31.703Z",
1177
+ "publishedBy": {
1178
+ "sys": {
1179
+ "type": "Link",
1180
+ "linkType": "User",
1181
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
1182
+ }
1183
+ },
1184
+ "publishedVersion": 1,
1185
+ "version": 2,
1186
+ "updatedAt": "2015-11-27T09:17:31.753Z",
1187
+ "updatedBy": {
1188
+ "sys": {
1189
+ "type": "Link",
1190
+ "linkType": "User",
1191
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
1192
+ }
1193
+ }
1194
+ }
1195
+ }
1196
+ http_version:
1197
+ recorded_at: Fri, 27 Nov 2015 09:17:38 GMT
1198
+ - request:
1199
+ method: put
1200
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/inferno
1201
+ body:
1202
+ encoding: UTF-8
1203
+ string: '{"fields":{}}'
1204
+ headers:
1205
+ User-Agent:
1206
+ - RubyContentfulManagementGem/0.7.3
1207
+ Authorization:
1208
+ - Bearer foobar
1209
+ Content-Type:
1210
+ - application/vnd.contentful.management.v1+json
1211
+ X-Contentful-Content-Type:
1212
+ - post
1213
+ Connection:
1214
+ - close
1215
+ Host:
1216
+ - api.contentful.com
1217
+ response:
1218
+ status:
1219
+ code: 201
1220
+ message: Created
1221
+ headers:
1222
+ Access-Control-Allow-Headers:
1223
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
1224
+ Access-Control-Allow-Methods:
1225
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
1226
+ Access-Control-Allow-Origin:
1227
+ - '*'
1228
+ Access-Control-Expose-Headers:
1229
+ - Etag
1230
+ Access-Control-Max-Age:
1231
+ - '1728000'
1232
+ Cf-Space-Id:
1233
+ - xrfaz3bfkml6
1234
+ Content-Type:
1235
+ - application/vnd.contentful.management.v1+json
1236
+ Date:
1237
+ - Fri, 27 Nov 2015 09:17:38 GMT
1238
+ Etag:
1239
+ - '"b09c0b0a49e0ea4e3fa4433582868fe8"'
1240
+ Server:
1241
+ - nginx
1242
+ Strict-Transport-Security:
1243
+ - max-age=15768000
1244
+ X-Content-Type-Options:
1245
+ - nosniff
1246
+ X-Contentful-Request-Id:
1247
+ - content-api:5cYfR819UACwiMMOKiy2sK
1248
+ X-Powered-By:
1249
+ - Express
1250
+ Content-Length:
1251
+ - '722'
1252
+ Connection:
1253
+ - Close
1254
+ body:
1255
+ encoding: UTF-8
1256
+ string: |
1257
+ {
1258
+ "fields": {},
1259
+ "sys": {
1260
+ "id": "inferno",
1261
+ "type": "Entry",
1262
+ "version": 1,
1263
+ "createdAt": "2015-11-27T09:17:38.125Z",
1264
+ "createdBy": {
1265
+ "sys": {
1266
+ "type": "Link",
1267
+ "linkType": "User",
1268
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
1269
+ }
1270
+ },
1271
+ "space": {
1272
+ "sys": {
1273
+ "type": "Link",
1274
+ "linkType": "Space",
1275
+ "id": "xrfaz3bfkml6"
1276
+ }
1277
+ },
1278
+ "contentType": {
1279
+ "sys": {
1280
+ "type": "Link",
1281
+ "linkType": "ContentType",
1282
+ "id": "post"
1283
+ }
1284
+ },
1285
+ "updatedAt": "2015-11-27T09:17:38.125Z",
1286
+ "updatedBy": {
1287
+ "sys": {
1288
+ "type": "Link",
1289
+ "linkType": "User",
1290
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
1291
+ }
1292
+ }
1293
+ }
1294
+ }
1295
+ http_version:
1296
+ recorded_at: Fri, 27 Nov 2015 09:17:39 GMT
1297
+ - request:
1298
+ method: put
1299
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/inferno
1300
+ body:
1301
+ encoding: UTF-8
1302
+ string: '{"fields":{}}'
1303
+ headers:
1304
+ User-Agent:
1305
+ - RubyContentfulManagementGem/0.7.3
1306
+ Authorization:
1307
+ - Bearer foobar
1308
+ Content-Type:
1309
+ - application/vnd.contentful.management.v1+json
1310
+ X-Contentful-Version:
1311
+ - '1'
1312
+ Connection:
1313
+ - close
1314
+ Host:
1315
+ - api.contentful.com
1316
+ response:
1317
+ status:
1318
+ code: 200
1319
+ message: OK
1320
+ headers:
1321
+ Access-Control-Allow-Headers:
1322
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
1323
+ Access-Control-Allow-Methods:
1324
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
1325
+ Access-Control-Allow-Origin:
1326
+ - '*'
1327
+ Access-Control-Expose-Headers:
1328
+ - Etag
1329
+ Access-Control-Max-Age:
1330
+ - '1728000'
1331
+ Cf-Space-Id:
1332
+ - xrfaz3bfkml6
1333
+ Content-Type:
1334
+ - application/vnd.contentful.management.v1+json
1335
+ Date:
1336
+ - Fri, 27 Nov 2015 09:17:39 GMT
1337
+ Etag:
1338
+ - '"6c68b6746316d432284eadb78650ba34"'
1339
+ Server:
1340
+ - nginx
1341
+ Strict-Transport-Security:
1342
+ - max-age=15768000
1343
+ X-Content-Type-Options:
1344
+ - nosniff
1345
+ X-Contentful-Request-Id:
1346
+ - content-api:3GCYd5gBcAswKaai48csW4
1347
+ X-Powered-By:
1348
+ - Express
1349
+ Content-Length:
1350
+ - '722'
1351
+ Connection:
1352
+ - Close
1353
+ body:
1354
+ encoding: UTF-8
1355
+ string: |
1356
+ {
1357
+ "fields": {},
1358
+ "sys": {
1359
+ "id": "inferno",
1360
+ "type": "Entry",
1361
+ "createdAt": "2015-11-27T09:17:38.125Z",
1362
+ "createdBy": {
1363
+ "sys": {
1364
+ "type": "Link",
1365
+ "linkType": "User",
1366
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
1367
+ }
1368
+ },
1369
+ "space": {
1370
+ "sys": {
1371
+ "type": "Link",
1372
+ "linkType": "Space",
1373
+ "id": "xrfaz3bfkml6"
1374
+ }
1375
+ },
1376
+ "contentType": {
1377
+ "sys": {
1378
+ "type": "Link",
1379
+ "linkType": "ContentType",
1380
+ "id": "post"
1381
+ }
1382
+ },
1383
+ "version": 2,
1384
+ "updatedAt": "2015-11-27T09:17:39.124Z",
1385
+ "updatedBy": {
1386
+ "sys": {
1387
+ "type": "Link",
1388
+ "linkType": "User",
1389
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
1390
+ }
1391
+ }
1392
+ }
1393
+ }
1394
+ http_version:
1395
+ recorded_at: Fri, 27 Nov 2015 09:17:40 GMT
1396
+ - request:
1397
+ method: put
1398
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/alturas
1399
+ body:
1400
+ encoding: UTF-8
1401
+ string: '{"fields":{}}'
1402
+ headers:
1403
+ User-Agent:
1404
+ - RubyContentfulManagementGem/0.7.3
1405
+ Authorization:
1406
+ - Bearer foobar
1407
+ Content-Type:
1408
+ - application/vnd.contentful.management.v1+json
1409
+ X-Contentful-Content-Type:
1410
+ - post
1411
+ Connection:
1412
+ - close
1413
+ Host:
1414
+ - api.contentful.com
1415
+ response:
1416
+ status:
1417
+ code: 201
1418
+ message: Created
1419
+ headers:
1420
+ Access-Control-Allow-Headers:
1421
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
1422
+ Access-Control-Allow-Methods:
1423
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
1424
+ Access-Control-Allow-Origin:
1425
+ - '*'
1426
+ Access-Control-Expose-Headers:
1427
+ - Etag
1428
+ Access-Control-Max-Age:
1429
+ - '1728000'
1430
+ Cf-Space-Id:
1431
+ - xrfaz3bfkml6
1432
+ Content-Type:
1433
+ - application/vnd.contentful.management.v1+json
1434
+ Date:
1435
+ - Fri, 27 Nov 2015 09:17:40 GMT
1436
+ Etag:
1437
+ - '"338672c9b31e46f332d5bc8498a50f45"'
1438
+ Server:
1439
+ - nginx
1440
+ Strict-Transport-Security:
1441
+ - max-age=15768000
1442
+ X-Content-Type-Options:
1443
+ - nosniff
1444
+ X-Contentful-Request-Id:
1445
+ - content-api:ozrD86GR7EcyauqG82A6I
1446
+ X-Powered-By:
1447
+ - Express
1448
+ Content-Length:
1449
+ - '722'
1450
+ Connection:
1451
+ - Close
1452
+ body:
1453
+ encoding: UTF-8
1454
+ string: |
1455
+ {
1456
+ "fields": {},
1457
+ "sys": {
1458
+ "id": "alturas",
1459
+ "type": "Entry",
1460
+ "version": 1,
1461
+ "createdAt": "2015-11-27T09:17:40.029Z",
1462
+ "createdBy": {
1463
+ "sys": {
1464
+ "type": "Link",
1465
+ "linkType": "User",
1466
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
1467
+ }
1468
+ },
1469
+ "space": {
1470
+ "sys": {
1471
+ "type": "Link",
1472
+ "linkType": "Space",
1473
+ "id": "xrfaz3bfkml6"
1474
+ }
1475
+ },
1476
+ "contentType": {
1477
+ "sys": {
1478
+ "type": "Link",
1479
+ "linkType": "ContentType",
1480
+ "id": "post"
1481
+ }
1482
+ },
1483
+ "updatedAt": "2015-11-27T09:17:40.029Z",
1484
+ "updatedBy": {
1485
+ "sys": {
1486
+ "type": "Link",
1487
+ "linkType": "User",
1488
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
1489
+ }
1490
+ }
1491
+ }
1492
+ }
1493
+ http_version:
1494
+ recorded_at: Fri, 27 Nov 2015 09:17:41 GMT
1495
+ - request:
1496
+ method: put
1497
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/alturas
1498
+ body:
1499
+ encoding: UTF-8
1500
+ string: '{"fields":{}}'
1501
+ headers:
1502
+ User-Agent:
1503
+ - RubyContentfulManagementGem/0.7.3
1504
+ Authorization:
1505
+ - Bearer foobar
1506
+ Content-Type:
1507
+ - application/vnd.contentful.management.v1+json
1508
+ X-Contentful-Version:
1509
+ - '1'
1510
+ Connection:
1511
+ - close
1512
+ Host:
1513
+ - api.contentful.com
1514
+ response:
1515
+ status:
1516
+ code: 200
1517
+ message: OK
1518
+ headers:
1519
+ Access-Control-Allow-Headers:
1520
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
1521
+ Access-Control-Allow-Methods:
1522
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
1523
+ Access-Control-Allow-Origin:
1524
+ - '*'
1525
+ Access-Control-Expose-Headers:
1526
+ - Etag
1527
+ Access-Control-Max-Age:
1528
+ - '1728000'
1529
+ Cf-Space-Id:
1530
+ - xrfaz3bfkml6
1531
+ Content-Type:
1532
+ - application/vnd.contentful.management.v1+json
1533
+ Date:
1534
+ - Fri, 27 Nov 2015 09:17:41 GMT
1535
+ Etag:
1536
+ - '"4af135b4f67c1211e9b036fd52d4061e"'
1537
+ Server:
1538
+ - nginx
1539
+ Strict-Transport-Security:
1540
+ - max-age=15768000
1541
+ X-Content-Type-Options:
1542
+ - nosniff
1543
+ X-Contentful-Request-Id:
1544
+ - content-api:1cNfhM5scma4KmiSoKw48W
1545
+ X-Powered-By:
1546
+ - Express
1547
+ Content-Length:
1548
+ - '722'
1549
+ Connection:
1550
+ - Close
1551
+ body:
1552
+ encoding: UTF-8
1553
+ string: |
1554
+ {
1555
+ "fields": {},
1556
+ "sys": {
1557
+ "id": "alturas",
1558
+ "type": "Entry",
1559
+ "createdAt": "2015-11-27T09:17:40.029Z",
1560
+ "createdBy": {
1561
+ "sys": {
1562
+ "type": "Link",
1563
+ "linkType": "User",
1564
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
1565
+ }
1566
+ },
1567
+ "space": {
1568
+ "sys": {
1569
+ "type": "Link",
1570
+ "linkType": "Space",
1571
+ "id": "xrfaz3bfkml6"
1572
+ }
1573
+ },
1574
+ "contentType": {
1575
+ "sys": {
1576
+ "type": "Link",
1577
+ "linkType": "ContentType",
1578
+ "id": "post"
1579
+ }
1580
+ },
1581
+ "version": 2,
1582
+ "updatedAt": "2015-11-27T09:17:41.073Z",
1583
+ "updatedBy": {
1584
+ "sys": {
1585
+ "type": "Link",
1586
+ "linkType": "User",
1587
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
1588
+ }
1589
+ }
1590
+ }
1591
+ }
1592
+ http_version:
1593
+ recorded_at: Fri, 27 Nov 2015 09:17:42 GMT
1594
+ - request:
1595
+ method: get
1596
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/dan_brown
1597
+ body:
1598
+ encoding: US-ASCII
1599
+ string: ''
1600
+ headers:
1601
+ User-Agent:
1602
+ - RubyContentfulManagementGem/0.7.3
1603
+ Authorization:
1604
+ - Bearer foobar
1605
+ Content-Type:
1606
+ - application/vnd.contentful.management.v1+json
1607
+ Content-Length:
1608
+ - '0'
1609
+ Connection:
1610
+ - close
1611
+ Host:
1612
+ - api.contentful.com
1613
+ response:
1614
+ status:
1615
+ code: 200
1616
+ message: OK
1617
+ headers:
1618
+ Access-Control-Allow-Headers:
1619
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
1620
+ Access-Control-Allow-Methods:
1621
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
1622
+ Access-Control-Allow-Origin:
1623
+ - '*'
1624
+ Access-Control-Expose-Headers:
1625
+ - Etag
1626
+ Access-Control-Max-Age:
1627
+ - '1728000'
1628
+ Cf-Space-Id:
1629
+ - xrfaz3bfkml6
1630
+ Content-Type:
1631
+ - application/vnd.contentful.management.v1+json
1632
+ Date:
1633
+ - Fri, 27 Nov 2015 09:17:41 GMT
1634
+ Etag:
1635
+ - '"99a012d200fe1d3a45300eee8899076d"'
1636
+ Server:
1637
+ - nginx
1638
+ Strict-Transport-Security:
1639
+ - max-age=15768000
1640
+ X-Content-Type-Options:
1641
+ - nosniff
1642
+ X-Contentful-Request-Id:
1643
+ - content-api:gAgIwLlFkWc0yuAAOKeMO
1644
+ X-Powered-By:
1645
+ - Express
1646
+ Content-Length:
1647
+ - '726'
1648
+ Connection:
1649
+ - Close
1650
+ body:
1651
+ encoding: UTF-8
1652
+ string: |
1653
+ {
1654
+ "fields": {},
1655
+ "sys": {
1656
+ "id": "dan_brown",
1657
+ "type": "Entry",
1658
+ "createdAt": "2015-11-27T09:17:33.725Z",
1659
+ "createdBy": {
1660
+ "sys": {
1661
+ "type": "Link",
1662
+ "linkType": "User",
1663
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
1664
+ }
1665
+ },
1666
+ "space": {
1667
+ "sys": {
1668
+ "type": "Link",
1669
+ "linkType": "Space",
1670
+ "id": "xrfaz3bfkml6"
1671
+ }
1672
+ },
1673
+ "contentType": {
1674
+ "sys": {
1675
+ "type": "Link",
1676
+ "linkType": "ContentType",
1677
+ "id": "author"
1678
+ }
1679
+ },
1680
+ "version": 2,
1681
+ "updatedAt": "2015-11-27T09:17:34.774Z",
1682
+ "updatedBy": {
1683
+ "sys": {
1684
+ "type": "Link",
1685
+ "linkType": "User",
1686
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
1687
+ }
1688
+ }
1689
+ }
1690
+ }
1691
+ http_version:
1692
+ recorded_at: Fri, 27 Nov 2015 09:17:43 GMT
1693
+ - request:
1694
+ method: put
1695
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/dan_brown
1696
+ body:
1697
+ encoding: UTF-8
1698
+ string: '{"fields":{"name":{"en-US":"Dan Brown"}}}'
1699
+ headers:
1700
+ User-Agent:
1701
+ - RubyContentfulManagementGem/0.7.3
1702
+ Authorization:
1703
+ - Bearer foobar
1704
+ Content-Type:
1705
+ - application/vnd.contentful.management.v1+json
1706
+ X-Contentful-Version:
1707
+ - '2'
1708
+ Connection:
1709
+ - close
1710
+ Host:
1711
+ - api.contentful.com
1712
+ response:
1713
+ status:
1714
+ code: 200
1715
+ message: OK
1716
+ headers:
1717
+ Access-Control-Allow-Headers:
1718
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
1719
+ Access-Control-Allow-Methods:
1720
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
1721
+ Access-Control-Allow-Origin:
1722
+ - '*'
1723
+ Access-Control-Expose-Headers:
1724
+ - Etag
1725
+ Access-Control-Max-Age:
1726
+ - '1728000'
1727
+ Cf-Space-Id:
1728
+ - xrfaz3bfkml6
1729
+ Content-Type:
1730
+ - application/vnd.contentful.management.v1+json
1731
+ Date:
1732
+ - Fri, 27 Nov 2015 09:17:42 GMT
1733
+ Etag:
1734
+ - '"a4078d7618cfc3c1c5629e03b25c7566"'
1735
+ Server:
1736
+ - nginx
1737
+ Strict-Transport-Security:
1738
+ - max-age=15768000
1739
+ X-Content-Type-Options:
1740
+ - nosniff
1741
+ X-Contentful-Request-Id:
1742
+ - content-api:41SjueXkoMQMaKKUIo0sCC
1743
+ X-Powered-By:
1744
+ - Express
1745
+ Content-Length:
1746
+ - '776'
1747
+ Connection:
1748
+ - Close
1749
+ body:
1750
+ encoding: UTF-8
1751
+ string: |
1752
+ {
1753
+ "fields": {
1754
+ "name": {
1755
+ "en-US": "Dan Brown"
1756
+ }
1757
+ },
1758
+ "sys": {
1759
+ "id": "dan_brown",
1760
+ "type": "Entry",
1761
+ "createdAt": "2015-11-27T09:17:33.725Z",
1762
+ "createdBy": {
1763
+ "sys": {
1764
+ "type": "Link",
1765
+ "linkType": "User",
1766
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
1767
+ }
1768
+ },
1769
+ "space": {
1770
+ "sys": {
1771
+ "type": "Link",
1772
+ "linkType": "Space",
1773
+ "id": "xrfaz3bfkml6"
1774
+ }
1775
+ },
1776
+ "contentType": {
1777
+ "sys": {
1778
+ "type": "Link",
1779
+ "linkType": "ContentType",
1780
+ "id": "author"
1781
+ }
1782
+ },
1783
+ "version": 3,
1784
+ "updatedAt": "2015-11-27T09:17:42.593Z",
1785
+ "updatedBy": {
1786
+ "sys": {
1787
+ "type": "Link",
1788
+ "linkType": "User",
1789
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
1790
+ }
1791
+ }
1792
+ }
1793
+ }
1794
+ http_version:
1795
+ recorded_at: Fri, 27 Nov 2015 09:17:44 GMT
1796
+ - request:
1797
+ method: put
1798
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/dan_brown
1799
+ body:
1800
+ encoding: UTF-8
1801
+ string: '{"fields":{"name":{"en-US":"Dan Brown"}}}'
1802
+ headers:
1803
+ User-Agent:
1804
+ - RubyContentfulManagementGem/0.7.3
1805
+ Authorization:
1806
+ - Bearer foobar
1807
+ Content-Type:
1808
+ - application/vnd.contentful.management.v1+json
1809
+ X-Contentful-Version:
1810
+ - '3'
1811
+ Connection:
1812
+ - close
1813
+ Host:
1814
+ - api.contentful.com
1815
+ response:
1816
+ status:
1817
+ code: 200
1818
+ message: OK
1819
+ headers:
1820
+ Access-Control-Allow-Headers:
1821
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
1822
+ Access-Control-Allow-Methods:
1823
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
1824
+ Access-Control-Allow-Origin:
1825
+ - '*'
1826
+ Access-Control-Expose-Headers:
1827
+ - Etag
1828
+ Access-Control-Max-Age:
1829
+ - '1728000'
1830
+ Cf-Space-Id:
1831
+ - xrfaz3bfkml6
1832
+ Content-Type:
1833
+ - application/vnd.contentful.management.v1+json
1834
+ Date:
1835
+ - Fri, 27 Nov 2015 09:17:43 GMT
1836
+ Etag:
1837
+ - '"69f43abf82bc3eff25d632724f4e341e"'
1838
+ Server:
1839
+ - nginx
1840
+ Strict-Transport-Security:
1841
+ - max-age=15768000
1842
+ X-Content-Type-Options:
1843
+ - nosniff
1844
+ X-Contentful-Request-Id:
1845
+ - content-api:6Cnm13qfSMWW8gIMOaaGYo
1846
+ X-Powered-By:
1847
+ - Express
1848
+ Content-Length:
1849
+ - '776'
1850
+ Connection:
1851
+ - Close
1852
+ body:
1853
+ encoding: UTF-8
1854
+ string: |
1855
+ {
1856
+ "fields": {
1857
+ "name": {
1858
+ "en-US": "Dan Brown"
1859
+ }
1860
+ },
1861
+ "sys": {
1862
+ "id": "dan_brown",
1863
+ "type": "Entry",
1864
+ "createdAt": "2015-11-27T09:17:33.725Z",
1865
+ "createdBy": {
1866
+ "sys": {
1867
+ "type": "Link",
1868
+ "linkType": "User",
1869
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
1870
+ }
1871
+ },
1872
+ "space": {
1873
+ "sys": {
1874
+ "type": "Link",
1875
+ "linkType": "Space",
1876
+ "id": "xrfaz3bfkml6"
1877
+ }
1878
+ },
1879
+ "contentType": {
1880
+ "sys": {
1881
+ "type": "Link",
1882
+ "linkType": "ContentType",
1883
+ "id": "author"
1884
+ }
1885
+ },
1886
+ "version": 4,
1887
+ "updatedAt": "2015-11-27T09:17:43.593Z",
1888
+ "updatedBy": {
1889
+ "sys": {
1890
+ "type": "Link",
1891
+ "linkType": "User",
1892
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
1893
+ }
1894
+ }
1895
+ }
1896
+ }
1897
+ http_version:
1898
+ recorded_at: Fri, 27 Nov 2015 09:17:45 GMT
1899
+ - request:
1900
+ method: get
1901
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/dan_brown
1902
+ body:
1903
+ encoding: US-ASCII
1904
+ string: ''
1905
+ headers:
1906
+ User-Agent:
1907
+ - RubyContentfulManagementGem/0.7.3
1908
+ Authorization:
1909
+ - Bearer foobar
1910
+ Content-Type:
1911
+ - application/vnd.contentful.management.v1+json
1912
+ Content-Length:
1913
+ - '0'
1914
+ Connection:
1915
+ - close
1916
+ Host:
1917
+ - api.contentful.com
1918
+ response:
1919
+ status:
1920
+ code: 200
1921
+ message: OK
1922
+ headers:
1923
+ Access-Control-Allow-Headers:
1924
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
1925
+ Access-Control-Allow-Methods:
1926
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
1927
+ Access-Control-Allow-Origin:
1928
+ - '*'
1929
+ Access-Control-Expose-Headers:
1930
+ - Etag
1931
+ Access-Control-Max-Age:
1932
+ - '1728000'
1933
+ Cf-Space-Id:
1934
+ - xrfaz3bfkml6
1935
+ Content-Type:
1936
+ - application/vnd.contentful.management.v1+json
1937
+ Date:
1938
+ - Fri, 27 Nov 2015 09:17:44 GMT
1939
+ Etag:
1940
+ - '"eb75c0f45b7dfe21fff92907c00aaf26"'
1941
+ Server:
1942
+ - nginx
1943
+ Strict-Transport-Security:
1944
+ - max-age=15768000
1945
+ X-Content-Type-Options:
1946
+ - nosniff
1947
+ X-Contentful-Request-Id:
1948
+ - content-api:6yg9qQjPMI4uM4i0S0Mg08
1949
+ X-Powered-By:
1950
+ - Express
1951
+ Content-Length:
1952
+ - '776'
1953
+ Connection:
1954
+ - Close
1955
+ body:
1956
+ encoding: UTF-8
1957
+ string: |
1958
+ {
1959
+ "fields": {
1960
+ "name": {
1961
+ "en-US": "Dan Brown"
1962
+ }
1963
+ },
1964
+ "sys": {
1965
+ "id": "dan_brown",
1966
+ "type": "Entry",
1967
+ "createdAt": "2015-11-27T09:17:33.725Z",
1968
+ "createdBy": {
1969
+ "sys": {
1970
+ "type": "Link",
1971
+ "linkType": "User",
1972
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
1973
+ }
1974
+ },
1975
+ "space": {
1976
+ "sys": {
1977
+ "type": "Link",
1978
+ "linkType": "Space",
1979
+ "id": "xrfaz3bfkml6"
1980
+ }
1981
+ },
1982
+ "contentType": {
1983
+ "sys": {
1984
+ "type": "Link",
1985
+ "linkType": "ContentType",
1986
+ "id": "author"
1987
+ }
1988
+ },
1989
+ "version": 4,
1990
+ "updatedAt": "2015-11-27T09:17:43.638Z",
1991
+ "updatedBy": {
1992
+ "sys": {
1993
+ "type": "Link",
1994
+ "linkType": "User",
1995
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
1996
+ }
1997
+ }
1998
+ }
1999
+ }
2000
+ http_version:
2001
+ recorded_at: Fri, 27 Nov 2015 09:17:45 GMT
2002
+ - request:
2003
+ method: get
2004
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/pablo_neruda
2005
+ body:
2006
+ encoding: US-ASCII
2007
+ string: ''
2008
+ headers:
2009
+ User-Agent:
2010
+ - RubyContentfulManagementGem/0.7.3
2011
+ Authorization:
2012
+ - Bearer foobar
2013
+ Content-Type:
2014
+ - application/vnd.contentful.management.v1+json
2015
+ Content-Length:
2016
+ - '0'
2017
+ Connection:
2018
+ - close
2019
+ Host:
2020
+ - api.contentful.com
2021
+ response:
2022
+ status:
2023
+ code: 200
2024
+ message: OK
2025
+ headers:
2026
+ Access-Control-Allow-Headers:
2027
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
2028
+ Access-Control-Allow-Methods:
2029
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
2030
+ Access-Control-Allow-Origin:
2031
+ - '*'
2032
+ Access-Control-Expose-Headers:
2033
+ - Etag
2034
+ Access-Control-Max-Age:
2035
+ - '1728000'
2036
+ Cf-Space-Id:
2037
+ - xrfaz3bfkml6
2038
+ Content-Type:
2039
+ - application/vnd.contentful.management.v1+json
2040
+ Date:
2041
+ - Fri, 27 Nov 2015 09:17:44 GMT
2042
+ Etag:
2043
+ - '"499e42514a4b1873021c1cbc7e400123"'
2044
+ Server:
2045
+ - nginx
2046
+ Strict-Transport-Security:
2047
+ - max-age=15768000
2048
+ X-Content-Type-Options:
2049
+ - nosniff
2050
+ X-Contentful-Request-Id:
2051
+ - content-api:2X6nN4cHi8occAsawqSCqw
2052
+ X-Powered-By:
2053
+ - Express
2054
+ Content-Length:
2055
+ - '729'
2056
+ Connection:
2057
+ - Close
2058
+ body:
2059
+ encoding: UTF-8
2060
+ string: |
2061
+ {
2062
+ "fields": {},
2063
+ "sys": {
2064
+ "id": "pablo_neruda",
2065
+ "type": "Entry",
2066
+ "createdAt": "2015-11-27T09:17:35.617Z",
2067
+ "createdBy": {
2068
+ "sys": {
2069
+ "type": "Link",
2070
+ "linkType": "User",
2071
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
2072
+ }
2073
+ },
2074
+ "space": {
2075
+ "sys": {
2076
+ "type": "Link",
2077
+ "linkType": "Space",
2078
+ "id": "xrfaz3bfkml6"
2079
+ }
2080
+ },
2081
+ "contentType": {
2082
+ "sys": {
2083
+ "type": "Link",
2084
+ "linkType": "ContentType",
2085
+ "id": "author"
2086
+ }
2087
+ },
2088
+ "version": 2,
2089
+ "updatedAt": "2015-11-27T09:17:36.642Z",
2090
+ "updatedBy": {
2091
+ "sys": {
2092
+ "type": "Link",
2093
+ "linkType": "User",
2094
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
2095
+ }
2096
+ }
2097
+ }
2098
+ }
2099
+ http_version:
2100
+ recorded_at: Fri, 27 Nov 2015 09:17:46 GMT
2101
+ - request:
2102
+ method: put
2103
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/pablo_neruda
2104
+ body:
2105
+ encoding: UTF-8
2106
+ string: '{"fields":{"name":{"en-US":"Pablo Neruda"}}}'
2107
+ headers:
2108
+ User-Agent:
2109
+ - RubyContentfulManagementGem/0.7.3
2110
+ Authorization:
2111
+ - Bearer foobar
2112
+ Content-Type:
2113
+ - application/vnd.contentful.management.v1+json
2114
+ X-Contentful-Version:
2115
+ - '2'
2116
+ Connection:
2117
+ - close
2118
+ Host:
2119
+ - api.contentful.com
2120
+ response:
2121
+ status:
2122
+ code: 200
2123
+ message: OK
2124
+ headers:
2125
+ Access-Control-Allow-Headers:
2126
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
2127
+ Access-Control-Allow-Methods:
2128
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
2129
+ Access-Control-Allow-Origin:
2130
+ - '*'
2131
+ Access-Control-Expose-Headers:
2132
+ - Etag
2133
+ Access-Control-Max-Age:
2134
+ - '1728000'
2135
+ Cf-Space-Id:
2136
+ - xrfaz3bfkml6
2137
+ Content-Type:
2138
+ - application/vnd.contentful.management.v1+json
2139
+ Date:
2140
+ - Fri, 27 Nov 2015 09:17:45 GMT
2141
+ Etag:
2142
+ - '"58faa7ecd04f535aa9cb33c1ac1a5096"'
2143
+ Server:
2144
+ - nginx
2145
+ Strict-Transport-Security:
2146
+ - max-age=15768000
2147
+ X-Content-Type-Options:
2148
+ - nosniff
2149
+ X-Contentful-Request-Id:
2150
+ - content-api:1RzFhJmfo8AECm8Eyg2eQA
2151
+ X-Powered-By:
2152
+ - Express
2153
+ Content-Length:
2154
+ - '782'
2155
+ Connection:
2156
+ - Close
2157
+ body:
2158
+ encoding: UTF-8
2159
+ string: |
2160
+ {
2161
+ "fields": {
2162
+ "name": {
2163
+ "en-US": "Pablo Neruda"
2164
+ }
2165
+ },
2166
+ "sys": {
2167
+ "id": "pablo_neruda",
2168
+ "type": "Entry",
2169
+ "createdAt": "2015-11-27T09:17:35.617Z",
2170
+ "createdBy": {
2171
+ "sys": {
2172
+ "type": "Link",
2173
+ "linkType": "User",
2174
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
2175
+ }
2176
+ },
2177
+ "space": {
2178
+ "sys": {
2179
+ "type": "Link",
2180
+ "linkType": "Space",
2181
+ "id": "xrfaz3bfkml6"
2182
+ }
2183
+ },
2184
+ "contentType": {
2185
+ "sys": {
2186
+ "type": "Link",
2187
+ "linkType": "ContentType",
2188
+ "id": "author"
2189
+ }
2190
+ },
2191
+ "version": 3,
2192
+ "updatedAt": "2015-11-27T09:17:45.648Z",
2193
+ "updatedBy": {
2194
+ "sys": {
2195
+ "type": "Link",
2196
+ "linkType": "User",
2197
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
2198
+ }
2199
+ }
2200
+ }
2201
+ }
2202
+ http_version:
2203
+ recorded_at: Fri, 27 Nov 2015 09:17:47 GMT
2204
+ - request:
2205
+ method: put
2206
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/pablo_neruda
2207
+ body:
2208
+ encoding: UTF-8
2209
+ string: '{"fields":{"name":{"en-US":"Pablo Neruda"}}}'
2210
+ headers:
2211
+ User-Agent:
2212
+ - RubyContentfulManagementGem/0.7.3
2213
+ Authorization:
2214
+ - Bearer foobar
2215
+ Content-Type:
2216
+ - application/vnd.contentful.management.v1+json
2217
+ X-Contentful-Version:
2218
+ - '3'
2219
+ Connection:
2220
+ - close
2221
+ Host:
2222
+ - api.contentful.com
2223
+ response:
2224
+ status:
2225
+ code: 200
2226
+ message: OK
2227
+ headers:
2228
+ Access-Control-Allow-Headers:
2229
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
2230
+ Access-Control-Allow-Methods:
2231
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
2232
+ Access-Control-Allow-Origin:
2233
+ - '*'
2234
+ Access-Control-Expose-Headers:
2235
+ - Etag
2236
+ Access-Control-Max-Age:
2237
+ - '1728000'
2238
+ Cf-Space-Id:
2239
+ - xrfaz3bfkml6
2240
+ Content-Type:
2241
+ - application/vnd.contentful.management.v1+json
2242
+ Date:
2243
+ - Fri, 27 Nov 2015 09:17:46 GMT
2244
+ Etag:
2245
+ - '"10ae5bdadcab4e9d3f47d49de79f1f91"'
2246
+ Server:
2247
+ - nginx
2248
+ Strict-Transport-Security:
2249
+ - max-age=15768000
2250
+ X-Content-Type-Options:
2251
+ - nosniff
2252
+ X-Contentful-Request-Id:
2253
+ - content-api:euDGoHDFBKkQYKIKOk0Wg
2254
+ X-Powered-By:
2255
+ - Express
2256
+ Content-Length:
2257
+ - '782'
2258
+ Connection:
2259
+ - Close
2260
+ body:
2261
+ encoding: UTF-8
2262
+ string: |
2263
+ {
2264
+ "fields": {
2265
+ "name": {
2266
+ "en-US": "Pablo Neruda"
2267
+ }
2268
+ },
2269
+ "sys": {
2270
+ "id": "pablo_neruda",
2271
+ "type": "Entry",
2272
+ "createdAt": "2015-11-27T09:17:35.617Z",
2273
+ "createdBy": {
2274
+ "sys": {
2275
+ "type": "Link",
2276
+ "linkType": "User",
2277
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
2278
+ }
2279
+ },
2280
+ "space": {
2281
+ "sys": {
2282
+ "type": "Link",
2283
+ "linkType": "Space",
2284
+ "id": "xrfaz3bfkml6"
2285
+ }
2286
+ },
2287
+ "contentType": {
2288
+ "sys": {
2289
+ "type": "Link",
2290
+ "linkType": "ContentType",
2291
+ "id": "author"
2292
+ }
2293
+ },
2294
+ "version": 4,
2295
+ "updatedAt": "2015-11-27T09:17:46.567Z",
2296
+ "updatedBy": {
2297
+ "sys": {
2298
+ "type": "Link",
2299
+ "linkType": "User",
2300
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
2301
+ }
2302
+ }
2303
+ }
2304
+ }
2305
+ http_version:
2306
+ recorded_at: Fri, 27 Nov 2015 09:17:48 GMT
2307
+ - request:
2308
+ method: get
2309
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/pablo_neruda
2310
+ body:
2311
+ encoding: US-ASCII
2312
+ string: ''
2313
+ headers:
2314
+ User-Agent:
2315
+ - RubyContentfulManagementGem/0.7.3
2316
+ Authorization:
2317
+ - Bearer foobar
2318
+ Content-Type:
2319
+ - application/vnd.contentful.management.v1+json
2320
+ Content-Length:
2321
+ - '0'
2322
+ Connection:
2323
+ - close
2324
+ Host:
2325
+ - api.contentful.com
2326
+ response:
2327
+ status:
2328
+ code: 200
2329
+ message: OK
2330
+ headers:
2331
+ Access-Control-Allow-Headers:
2332
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
2333
+ Access-Control-Allow-Methods:
2334
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
2335
+ Access-Control-Allow-Origin:
2336
+ - '*'
2337
+ Access-Control-Expose-Headers:
2338
+ - Etag
2339
+ Access-Control-Max-Age:
2340
+ - '1728000'
2341
+ Cf-Space-Id:
2342
+ - xrfaz3bfkml6
2343
+ Content-Type:
2344
+ - application/vnd.contentful.management.v1+json
2345
+ Date:
2346
+ - Fri, 27 Nov 2015 09:17:47 GMT
2347
+ Etag:
2348
+ - '"ff69fb3acf55ee6be578bd6a3ed946c2"'
2349
+ Server:
2350
+ - nginx
2351
+ Strict-Transport-Security:
2352
+ - max-age=15768000
2353
+ X-Content-Type-Options:
2354
+ - nosniff
2355
+ X-Contentful-Request-Id:
2356
+ - content-api:2SKt9JQ2ukqQ2As0GKY22m
2357
+ X-Powered-By:
2358
+ - Express
2359
+ Content-Length:
2360
+ - '782'
2361
+ Connection:
2362
+ - Close
2363
+ body:
2364
+ encoding: UTF-8
2365
+ string: |
2366
+ {
2367
+ "fields": {
2368
+ "name": {
2369
+ "en-US": "Pablo Neruda"
2370
+ }
2371
+ },
2372
+ "sys": {
2373
+ "id": "pablo_neruda",
2374
+ "type": "Entry",
2375
+ "createdAt": "2015-11-27T09:17:35.617Z",
2376
+ "createdBy": {
2377
+ "sys": {
2378
+ "type": "Link",
2379
+ "linkType": "User",
2380
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
2381
+ }
2382
+ },
2383
+ "space": {
2384
+ "sys": {
2385
+ "type": "Link",
2386
+ "linkType": "Space",
2387
+ "id": "xrfaz3bfkml6"
2388
+ }
2389
+ },
2390
+ "contentType": {
2391
+ "sys": {
2392
+ "type": "Link",
2393
+ "linkType": "ContentType",
2394
+ "id": "author"
2395
+ }
2396
+ },
2397
+ "version": 4,
2398
+ "updatedAt": "2015-11-27T09:17:46.613Z",
2399
+ "updatedBy": {
2400
+ "sys": {
2401
+ "type": "Link",
2402
+ "linkType": "User",
2403
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
2404
+ }
2405
+ }
2406
+ }
2407
+ }
2408
+ http_version:
2409
+ recorded_at: Fri, 27 Nov 2015 09:17:48 GMT
2410
+ - request:
2411
+ method: get
2412
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/inferno
2413
+ body:
2414
+ encoding: US-ASCII
2415
+ string: ''
2416
+ headers:
2417
+ User-Agent:
2418
+ - RubyContentfulManagementGem/0.7.3
2419
+ Authorization:
2420
+ - Bearer foobar
2421
+ Content-Type:
2422
+ - application/vnd.contentful.management.v1+json
2423
+ Content-Length:
2424
+ - '0'
2425
+ Connection:
2426
+ - close
2427
+ Host:
2428
+ - api.contentful.com
2429
+ response:
2430
+ status:
2431
+ code: 200
2432
+ message: OK
2433
+ headers:
2434
+ Access-Control-Allow-Headers:
2435
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
2436
+ Access-Control-Allow-Methods:
2437
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
2438
+ Access-Control-Allow-Origin:
2439
+ - '*'
2440
+ Access-Control-Expose-Headers:
2441
+ - Etag
2442
+ Access-Control-Max-Age:
2443
+ - '1728000'
2444
+ Cf-Space-Id:
2445
+ - xrfaz3bfkml6
2446
+ Content-Type:
2447
+ - application/vnd.contentful.management.v1+json
2448
+ Date:
2449
+ - Fri, 27 Nov 2015 09:17:47 GMT
2450
+ Etag:
2451
+ - '"482dc456c42987d12be9e91f56129fa4"'
2452
+ Server:
2453
+ - nginx
2454
+ Strict-Transport-Security:
2455
+ - max-age=15768000
2456
+ X-Content-Type-Options:
2457
+ - nosniff
2458
+ X-Contentful-Request-Id:
2459
+ - content-api:4MlaCjsMJ2Oc2ECII04s4Y
2460
+ X-Powered-By:
2461
+ - Express
2462
+ Content-Length:
2463
+ - '722'
2464
+ Connection:
2465
+ - Close
2466
+ body:
2467
+ encoding: UTF-8
2468
+ string: |
2469
+ {
2470
+ "fields": {},
2471
+ "sys": {
2472
+ "id": "inferno",
2473
+ "type": "Entry",
2474
+ "createdAt": "2015-11-27T09:17:38.125Z",
2475
+ "createdBy": {
2476
+ "sys": {
2477
+ "type": "Link",
2478
+ "linkType": "User",
2479
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
2480
+ }
2481
+ },
2482
+ "space": {
2483
+ "sys": {
2484
+ "type": "Link",
2485
+ "linkType": "Space",
2486
+ "id": "xrfaz3bfkml6"
2487
+ }
2488
+ },
2489
+ "contentType": {
2490
+ "sys": {
2491
+ "type": "Link",
2492
+ "linkType": "ContentType",
2493
+ "id": "post"
2494
+ }
2495
+ },
2496
+ "version": 2,
2497
+ "updatedAt": "2015-11-27T09:17:39.170Z",
2498
+ "updatedBy": {
2499
+ "sys": {
2500
+ "type": "Link",
2501
+ "linkType": "User",
2502
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
2503
+ }
2504
+ }
2505
+ }
2506
+ }
2507
+ http_version:
2508
+ recorded_at: Fri, 27 Nov 2015 09:17:49 GMT
2509
+ - request:
2510
+ method: put
2511
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/inferno
2512
+ body:
2513
+ encoding: UTF-8
2514
+ string: '{"fields":{"title":{"en-US":"Inferno"},"content":{"en-US":"Inferno
2515
+ is the last book in Dan Brown''s collection..."},"author":{"en-US":{"sys":{"type":"Link","linkType":"Entry","id":"dan_brown"}}}}}'
2516
+ headers:
2517
+ User-Agent:
2518
+ - RubyContentfulManagementGem/0.7.3
2519
+ Authorization:
2520
+ - Bearer foobar
2521
+ Content-Type:
2522
+ - application/vnd.contentful.management.v1+json
2523
+ X-Contentful-Version:
2524
+ - '2'
2525
+ Connection:
2526
+ - close
2527
+ Host:
2528
+ - api.contentful.com
2529
+ response:
2530
+ status:
2531
+ code: 200
2532
+ message: OK
2533
+ headers:
2534
+ Access-Control-Allow-Headers:
2535
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
2536
+ Access-Control-Allow-Methods:
2537
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
2538
+ Access-Control-Allow-Origin:
2539
+ - '*'
2540
+ Access-Control-Expose-Headers:
2541
+ - Etag
2542
+ Access-Control-Max-Age:
2543
+ - '1728000'
2544
+ Cf-Space-Id:
2545
+ - xrfaz3bfkml6
2546
+ Content-Type:
2547
+ - application/vnd.contentful.management.v1+json
2548
+ Date:
2549
+ - Fri, 27 Nov 2015 09:17:48 GMT
2550
+ Etag:
2551
+ - '"ec11d7491c913b43fc9a1263744f6baf"'
2552
+ Server:
2553
+ - nginx
2554
+ Strict-Transport-Security:
2555
+ - max-age=15768000
2556
+ X-Content-Type-Options:
2557
+ - nosniff
2558
+ X-Contentful-Request-Id:
2559
+ - content-api:6eGTsjBNzGG0iqUuMugeC6
2560
+ X-Powered-By:
2561
+ - Express
2562
+ Content-Length:
2563
+ - '1026'
2564
+ Connection:
2565
+ - Close
2566
+ body:
2567
+ encoding: UTF-8
2568
+ string: |
2569
+ {
2570
+ "fields": {
2571
+ "title": {
2572
+ "en-US": "Inferno"
2573
+ },
2574
+ "content": {
2575
+ "en-US": "Inferno is the last book in Dan Brown's collection..."
2576
+ },
2577
+ "author": {
2578
+ "en-US": {
2579
+ "sys": {
2580
+ "type": "Link",
2581
+ "linkType": "Entry",
2582
+ "id": "dan_brown"
2583
+ }
2584
+ }
2585
+ }
2586
+ },
2587
+ "sys": {
2588
+ "id": "inferno",
2589
+ "type": "Entry",
2590
+ "createdAt": "2015-11-27T09:17:38.125Z",
2591
+ "createdBy": {
2592
+ "sys": {
2593
+ "type": "Link",
2594
+ "linkType": "User",
2595
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
2596
+ }
2597
+ },
2598
+ "space": {
2599
+ "sys": {
2600
+ "type": "Link",
2601
+ "linkType": "Space",
2602
+ "id": "xrfaz3bfkml6"
2603
+ }
2604
+ },
2605
+ "contentType": {
2606
+ "sys": {
2607
+ "type": "Link",
2608
+ "linkType": "ContentType",
2609
+ "id": "post"
2610
+ }
2611
+ },
2612
+ "version": 3,
2613
+ "updatedAt": "2015-11-27T09:17:48.667Z",
2614
+ "updatedBy": {
2615
+ "sys": {
2616
+ "type": "Link",
2617
+ "linkType": "User",
2618
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
2619
+ }
2620
+ }
2621
+ }
2622
+ }
2623
+ http_version:
2624
+ recorded_at: Fri, 27 Nov 2015 09:17:50 GMT
2625
+ - request:
2626
+ method: put
2627
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/inferno
2628
+ body:
2629
+ encoding: UTF-8
2630
+ string: '{"fields":{"title":{"en-US":"Inferno"},"content":{"en-US":"Inferno
2631
+ is the last book in Dan Brown''s collection..."},"author":{"en-US":{"sys":{"type":"Link","linkType":"Entry","id":"dan_brown"}}}}}'
2632
+ headers:
2633
+ User-Agent:
2634
+ - RubyContentfulManagementGem/0.7.3
2635
+ Authorization:
2636
+ - Bearer foobar
2637
+ Content-Type:
2638
+ - application/vnd.contentful.management.v1+json
2639
+ X-Contentful-Version:
2640
+ - '3'
2641
+ Connection:
2642
+ - close
2643
+ Host:
2644
+ - api.contentful.com
2645
+ response:
2646
+ status:
2647
+ code: 200
2648
+ message: OK
2649
+ headers:
2650
+ Access-Control-Allow-Headers:
2651
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
2652
+ Access-Control-Allow-Methods:
2653
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
2654
+ Access-Control-Allow-Origin:
2655
+ - '*'
2656
+ Access-Control-Expose-Headers:
2657
+ - Etag
2658
+ Access-Control-Max-Age:
2659
+ - '1728000'
2660
+ Cf-Space-Id:
2661
+ - xrfaz3bfkml6
2662
+ Content-Type:
2663
+ - application/vnd.contentful.management.v1+json
2664
+ Date:
2665
+ - Fri, 27 Nov 2015 09:17:49 GMT
2666
+ Etag:
2667
+ - '"36d22c4b3413a4b880f28d30d2abea2f"'
2668
+ Server:
2669
+ - nginx
2670
+ Strict-Transport-Security:
2671
+ - max-age=15768000
2672
+ X-Content-Type-Options:
2673
+ - nosniff
2674
+ X-Contentful-Request-Id:
2675
+ - content-api:3qzjr3ziDSekg20i42AcoW
2676
+ X-Powered-By:
2677
+ - Express
2678
+ Content-Length:
2679
+ - '1026'
2680
+ Connection:
2681
+ - Close
2682
+ body:
2683
+ encoding: UTF-8
2684
+ string: |
2685
+ {
2686
+ "fields": {
2687
+ "title": {
2688
+ "en-US": "Inferno"
2689
+ },
2690
+ "content": {
2691
+ "en-US": "Inferno is the last book in Dan Brown's collection..."
2692
+ },
2693
+ "author": {
2694
+ "en-US": {
2695
+ "sys": {
2696
+ "type": "Link",
2697
+ "linkType": "Entry",
2698
+ "id": "dan_brown"
2699
+ }
2700
+ }
2701
+ }
2702
+ },
2703
+ "sys": {
2704
+ "id": "inferno",
2705
+ "type": "Entry",
2706
+ "createdAt": "2015-11-27T09:17:38.125Z",
2707
+ "createdBy": {
2708
+ "sys": {
2709
+ "type": "Link",
2710
+ "linkType": "User",
2711
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
2712
+ }
2713
+ },
2714
+ "space": {
2715
+ "sys": {
2716
+ "type": "Link",
2717
+ "linkType": "Space",
2718
+ "id": "xrfaz3bfkml6"
2719
+ }
2720
+ },
2721
+ "contentType": {
2722
+ "sys": {
2723
+ "type": "Link",
2724
+ "linkType": "ContentType",
2725
+ "id": "post"
2726
+ }
2727
+ },
2728
+ "version": 4,
2729
+ "updatedAt": "2015-11-27T09:17:49.597Z",
2730
+ "updatedBy": {
2731
+ "sys": {
2732
+ "type": "Link",
2733
+ "linkType": "User",
2734
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
2735
+ }
2736
+ }
2737
+ }
2738
+ }
2739
+ http_version:
2740
+ recorded_at: Fri, 27 Nov 2015 09:17:51 GMT
2741
+ - request:
2742
+ method: get
2743
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/inferno
2744
+ body:
2745
+ encoding: US-ASCII
2746
+ string: ''
2747
+ headers:
2748
+ User-Agent:
2749
+ - RubyContentfulManagementGem/0.7.3
2750
+ Authorization:
2751
+ - Bearer foobar
2752
+ Content-Type:
2753
+ - application/vnd.contentful.management.v1+json
2754
+ Content-Length:
2755
+ - '0'
2756
+ Connection:
2757
+ - close
2758
+ Host:
2759
+ - api.contentful.com
2760
+ response:
2761
+ status:
2762
+ code: 200
2763
+ message: OK
2764
+ headers:
2765
+ Access-Control-Allow-Headers:
2766
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
2767
+ Access-Control-Allow-Methods:
2768
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
2769
+ Access-Control-Allow-Origin:
2770
+ - '*'
2771
+ Access-Control-Expose-Headers:
2772
+ - Etag
2773
+ Access-Control-Max-Age:
2774
+ - '1728000'
2775
+ Cf-Space-Id:
2776
+ - xrfaz3bfkml6
2777
+ Content-Type:
2778
+ - application/vnd.contentful.management.v1+json
2779
+ Date:
2780
+ - Fri, 27 Nov 2015 09:17:50 GMT
2781
+ Etag:
2782
+ - '"8aebf0a29878a4fd3f7cd516877d3219"'
2783
+ Server:
2784
+ - nginx
2785
+ Strict-Transport-Security:
2786
+ - max-age=15768000
2787
+ X-Content-Type-Options:
2788
+ - nosniff
2789
+ X-Contentful-Request-Id:
2790
+ - content-api:61UYRlFLoc00S0oE60igAy
2791
+ X-Powered-By:
2792
+ - Express
2793
+ Content-Length:
2794
+ - '1026'
2795
+ Connection:
2796
+ - Close
2797
+ body:
2798
+ encoding: UTF-8
2799
+ string: |
2800
+ {
2801
+ "fields": {
2802
+ "title": {
2803
+ "en-US": "Inferno"
2804
+ },
2805
+ "content": {
2806
+ "en-US": "Inferno is the last book in Dan Brown's collection..."
2807
+ },
2808
+ "author": {
2809
+ "en-US": {
2810
+ "sys": {
2811
+ "type": "Link",
2812
+ "linkType": "Entry",
2813
+ "id": "dan_brown"
2814
+ }
2815
+ }
2816
+ }
2817
+ },
2818
+ "sys": {
2819
+ "id": "inferno",
2820
+ "type": "Entry",
2821
+ "createdAt": "2015-11-27T09:17:38.125Z",
2822
+ "createdBy": {
2823
+ "sys": {
2824
+ "type": "Link",
2825
+ "linkType": "User",
2826
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
2827
+ }
2828
+ },
2829
+ "space": {
2830
+ "sys": {
2831
+ "type": "Link",
2832
+ "linkType": "Space",
2833
+ "id": "xrfaz3bfkml6"
2834
+ }
2835
+ },
2836
+ "contentType": {
2837
+ "sys": {
2838
+ "type": "Link",
2839
+ "linkType": "ContentType",
2840
+ "id": "post"
2841
+ }
2842
+ },
2843
+ "version": 4,
2844
+ "updatedAt": "2015-11-27T09:17:49.647Z",
2845
+ "updatedBy": {
2846
+ "sys": {
2847
+ "type": "Link",
2848
+ "linkType": "User",
2849
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
2850
+ }
2851
+ }
2852
+ }
2853
+ }
2854
+ http_version:
2855
+ recorded_at: Fri, 27 Nov 2015 09:17:51 GMT
2856
+ - request:
2857
+ method: get
2858
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/alturas
2859
+ body:
2860
+ encoding: US-ASCII
2861
+ string: ''
2862
+ headers:
2863
+ User-Agent:
2864
+ - RubyContentfulManagementGem/0.7.3
2865
+ Authorization:
2866
+ - Bearer foobar
2867
+ Content-Type:
2868
+ - application/vnd.contentful.management.v1+json
2869
+ Content-Length:
2870
+ - '0'
2871
+ Connection:
2872
+ - close
2873
+ Host:
2874
+ - api.contentful.com
2875
+ response:
2876
+ status:
2877
+ code: 200
2878
+ message: OK
2879
+ headers:
2880
+ Access-Control-Allow-Headers:
2881
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
2882
+ Access-Control-Allow-Methods:
2883
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
2884
+ Access-Control-Allow-Origin:
2885
+ - '*'
2886
+ Access-Control-Expose-Headers:
2887
+ - Etag
2888
+ Access-Control-Max-Age:
2889
+ - '1728000'
2890
+ Cf-Space-Id:
2891
+ - xrfaz3bfkml6
2892
+ Content-Type:
2893
+ - application/vnd.contentful.management.v1+json
2894
+ Date:
2895
+ - Fri, 27 Nov 2015 09:17:50 GMT
2896
+ Etag:
2897
+ - '"85a98ca5480087765ee656ffa13874d1"'
2898
+ Server:
2899
+ - nginx
2900
+ Strict-Transport-Security:
2901
+ - max-age=15768000
2902
+ X-Content-Type-Options:
2903
+ - nosniff
2904
+ X-Contentful-Request-Id:
2905
+ - content-api:nbksdn3hGo4MgcgCYsAu6
2906
+ X-Powered-By:
2907
+ - Express
2908
+ Content-Length:
2909
+ - '722'
2910
+ Connection:
2911
+ - Close
2912
+ body:
2913
+ encoding: UTF-8
2914
+ string: |
2915
+ {
2916
+ "fields": {},
2917
+ "sys": {
2918
+ "id": "alturas",
2919
+ "type": "Entry",
2920
+ "createdAt": "2015-11-27T09:17:40.029Z",
2921
+ "createdBy": {
2922
+ "sys": {
2923
+ "type": "Link",
2924
+ "linkType": "User",
2925
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
2926
+ }
2927
+ },
2928
+ "space": {
2929
+ "sys": {
2930
+ "type": "Link",
2931
+ "linkType": "Space",
2932
+ "id": "xrfaz3bfkml6"
2933
+ }
2934
+ },
2935
+ "contentType": {
2936
+ "sys": {
2937
+ "type": "Link",
2938
+ "linkType": "ContentType",
2939
+ "id": "post"
2940
+ }
2941
+ },
2942
+ "version": 2,
2943
+ "updatedAt": "2015-11-27T09:17:41.119Z",
2944
+ "updatedBy": {
2945
+ "sys": {
2946
+ "type": "Link",
2947
+ "linkType": "User",
2948
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
2949
+ }
2950
+ }
2951
+ }
2952
+ }
2953
+ http_version:
2954
+ recorded_at: Fri, 27 Nov 2015 09:17:52 GMT
2955
+ - request:
2956
+ method: put
2957
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/alturas
2958
+ body:
2959
+ encoding: UTF-8
2960
+ string: '{"fields":{"title":{"en-US":"Alturas de Macchu Picchu"},"content":{"en-US":"Alturas
2961
+ de Macchu Picchu is one of Pablo Neruda''s most famous poetry books..."},"author":{"en-US":{"sys":{"type":"Link","linkType":"Entry","id":"pablo_neruda"}}}}}'
2962
+ headers:
2963
+ User-Agent:
2964
+ - RubyContentfulManagementGem/0.7.3
2965
+ Authorization:
2966
+ - Bearer foobar
2967
+ Content-Type:
2968
+ - application/vnd.contentful.management.v1+json
2969
+ X-Contentful-Version:
2970
+ - '2'
2971
+ Connection:
2972
+ - close
2973
+ Host:
2974
+ - api.contentful.com
2975
+ response:
2976
+ status:
2977
+ code: 200
2978
+ message: OK
2979
+ headers:
2980
+ Access-Control-Allow-Headers:
2981
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
2982
+ Access-Control-Allow-Methods:
2983
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
2984
+ Access-Control-Allow-Origin:
2985
+ - '*'
2986
+ Access-Control-Expose-Headers:
2987
+ - Etag
2988
+ Access-Control-Max-Age:
2989
+ - '1728000'
2990
+ Cf-Space-Id:
2991
+ - xrfaz3bfkml6
2992
+ Content-Type:
2993
+ - application/vnd.contentful.management.v1+json
2994
+ Date:
2995
+ - Fri, 27 Nov 2015 09:17:51 GMT
2996
+ Etag:
2997
+ - '"2455460d657a7235c8f44c2eef626bcd"'
2998
+ Server:
2999
+ - nginx
3000
+ Strict-Transport-Security:
3001
+ - max-age=15768000
3002
+ X-Content-Type-Options:
3003
+ - nosniff
3004
+ X-Contentful-Request-Id:
3005
+ - content-api:5652RgPMTSw4GqSuiWm6I6
3006
+ X-Powered-By:
3007
+ - Express
3008
+ Content-Length:
3009
+ - '1070'
3010
+ Connection:
3011
+ - Close
3012
+ body:
3013
+ encoding: UTF-8
3014
+ string: |
3015
+ {
3016
+ "fields": {
3017
+ "title": {
3018
+ "en-US": "Alturas de Macchu Picchu"
3019
+ },
3020
+ "content": {
3021
+ "en-US": "Alturas de Macchu Picchu is one of Pablo Neruda's most famous poetry books..."
3022
+ },
3023
+ "author": {
3024
+ "en-US": {
3025
+ "sys": {
3026
+ "type": "Link",
3027
+ "linkType": "Entry",
3028
+ "id": "pablo_neruda"
3029
+ }
3030
+ }
3031
+ }
3032
+ },
3033
+ "sys": {
3034
+ "id": "alturas",
3035
+ "type": "Entry",
3036
+ "createdAt": "2015-11-27T09:17:40.029Z",
3037
+ "createdBy": {
3038
+ "sys": {
3039
+ "type": "Link",
3040
+ "linkType": "User",
3041
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
3042
+ }
3043
+ },
3044
+ "space": {
3045
+ "sys": {
3046
+ "type": "Link",
3047
+ "linkType": "Space",
3048
+ "id": "xrfaz3bfkml6"
3049
+ }
3050
+ },
3051
+ "contentType": {
3052
+ "sys": {
3053
+ "type": "Link",
3054
+ "linkType": "ContentType",
3055
+ "id": "post"
3056
+ }
3057
+ },
3058
+ "version": 3,
3059
+ "updatedAt": "2015-11-27T09:17:51.693Z",
3060
+ "updatedBy": {
3061
+ "sys": {
3062
+ "type": "Link",
3063
+ "linkType": "User",
3064
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
3065
+ }
3066
+ }
3067
+ }
3068
+ }
3069
+ http_version:
3070
+ recorded_at: Fri, 27 Nov 2015 09:17:53 GMT
3071
+ - request:
3072
+ method: put
3073
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/alturas
3074
+ body:
3075
+ encoding: UTF-8
3076
+ string: '{"fields":{"title":{"en-US":"Alturas de Macchu Picchu"},"content":{"en-US":"Alturas
3077
+ de Macchu Picchu is one of Pablo Neruda''s most famous poetry books..."},"author":{"en-US":{"sys":{"type":"Link","linkType":"Entry","id":"pablo_neruda"}}}}}'
3078
+ headers:
3079
+ User-Agent:
3080
+ - RubyContentfulManagementGem/0.7.3
3081
+ Authorization:
3082
+ - Bearer foobar
3083
+ Content-Type:
3084
+ - application/vnd.contentful.management.v1+json
3085
+ X-Contentful-Version:
3086
+ - '3'
3087
+ Connection:
3088
+ - close
3089
+ Host:
3090
+ - api.contentful.com
3091
+ response:
3092
+ status:
3093
+ code: 200
3094
+ message: OK
3095
+ headers:
3096
+ Access-Control-Allow-Headers:
3097
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
3098
+ Access-Control-Allow-Methods:
3099
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
3100
+ Access-Control-Allow-Origin:
3101
+ - '*'
3102
+ Access-Control-Expose-Headers:
3103
+ - Etag
3104
+ Access-Control-Max-Age:
3105
+ - '1728000'
3106
+ Cf-Space-Id:
3107
+ - xrfaz3bfkml6
3108
+ Content-Type:
3109
+ - application/vnd.contentful.management.v1+json
3110
+ Date:
3111
+ - Fri, 27 Nov 2015 09:17:52 GMT
3112
+ Etag:
3113
+ - '"31d266d408fe2ee554880de6f776df77"'
3114
+ Server:
3115
+ - nginx
3116
+ Strict-Transport-Security:
3117
+ - max-age=15768000
3118
+ X-Content-Type-Options:
3119
+ - nosniff
3120
+ X-Contentful-Request-Id:
3121
+ - content-api:11FNCPvsJKSm0cYUY6qU86
3122
+ X-Powered-By:
3123
+ - Express
3124
+ Content-Length:
3125
+ - '1070'
3126
+ Connection:
3127
+ - Close
3128
+ body:
3129
+ encoding: UTF-8
3130
+ string: |
3131
+ {
3132
+ "fields": {
3133
+ "title": {
3134
+ "en-US": "Alturas de Macchu Picchu"
3135
+ },
3136
+ "content": {
3137
+ "en-US": "Alturas de Macchu Picchu is one of Pablo Neruda's most famous poetry books..."
3138
+ },
3139
+ "author": {
3140
+ "en-US": {
3141
+ "sys": {
3142
+ "type": "Link",
3143
+ "linkType": "Entry",
3144
+ "id": "pablo_neruda"
3145
+ }
3146
+ }
3147
+ }
3148
+ },
3149
+ "sys": {
3150
+ "id": "alturas",
3151
+ "type": "Entry",
3152
+ "createdAt": "2015-11-27T09:17:40.029Z",
3153
+ "createdBy": {
3154
+ "sys": {
3155
+ "type": "Link",
3156
+ "linkType": "User",
3157
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
3158
+ }
3159
+ },
3160
+ "space": {
3161
+ "sys": {
3162
+ "type": "Link",
3163
+ "linkType": "Space",
3164
+ "id": "xrfaz3bfkml6"
3165
+ }
3166
+ },
3167
+ "contentType": {
3168
+ "sys": {
3169
+ "type": "Link",
3170
+ "linkType": "ContentType",
3171
+ "id": "post"
3172
+ }
3173
+ },
3174
+ "version": 4,
3175
+ "updatedAt": "2015-11-27T09:17:52.644Z",
3176
+ "updatedBy": {
3177
+ "sys": {
3178
+ "type": "Link",
3179
+ "linkType": "User",
3180
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
3181
+ }
3182
+ }
3183
+ }
3184
+ }
3185
+ http_version:
3186
+ recorded_at: Fri, 27 Nov 2015 09:17:54 GMT
3187
+ - request:
3188
+ method: get
3189
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/alturas
3190
+ body:
3191
+ encoding: US-ASCII
3192
+ string: ''
3193
+ headers:
3194
+ User-Agent:
3195
+ - RubyContentfulManagementGem/0.7.3
3196
+ Authorization:
3197
+ - Bearer foobar
3198
+ Content-Type:
3199
+ - application/vnd.contentful.management.v1+json
3200
+ Content-Length:
3201
+ - '0'
3202
+ Connection:
3203
+ - close
3204
+ Host:
3205
+ - api.contentful.com
3206
+ response:
3207
+ status:
3208
+ code: 200
3209
+ message: OK
3210
+ headers:
3211
+ Access-Control-Allow-Headers:
3212
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
3213
+ Access-Control-Allow-Methods:
3214
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
3215
+ Access-Control-Allow-Origin:
3216
+ - '*'
3217
+ Access-Control-Expose-Headers:
3218
+ - Etag
3219
+ Access-Control-Max-Age:
3220
+ - '1728000'
3221
+ Cf-Space-Id:
3222
+ - xrfaz3bfkml6
3223
+ Content-Type:
3224
+ - application/vnd.contentful.management.v1+json
3225
+ Date:
3226
+ - Fri, 27 Nov 2015 09:17:53 GMT
3227
+ Etag:
3228
+ - '"e7b8579e3904109b61cb3bf9ccdb8337"'
3229
+ Server:
3230
+ - nginx
3231
+ Strict-Transport-Security:
3232
+ - max-age=15768000
3233
+ X-Content-Type-Options:
3234
+ - nosniff
3235
+ X-Contentful-Request-Id:
3236
+ - content-api:5SdLmCaZHygcYQw8cEyeGI
3237
+ X-Powered-By:
3238
+ - Express
3239
+ Content-Length:
3240
+ - '1070'
3241
+ Connection:
3242
+ - Close
3243
+ body:
3244
+ encoding: UTF-8
3245
+ string: |
3246
+ {
3247
+ "fields": {
3248
+ "title": {
3249
+ "en-US": "Alturas de Macchu Picchu"
3250
+ },
3251
+ "content": {
3252
+ "en-US": "Alturas de Macchu Picchu is one of Pablo Neruda's most famous poetry books..."
3253
+ },
3254
+ "author": {
3255
+ "en-US": {
3256
+ "sys": {
3257
+ "type": "Link",
3258
+ "linkType": "Entry",
3259
+ "id": "pablo_neruda"
3260
+ }
3261
+ }
3262
+ }
3263
+ },
3264
+ "sys": {
3265
+ "id": "alturas",
3266
+ "type": "Entry",
3267
+ "createdAt": "2015-11-27T09:17:40.029Z",
3268
+ "createdBy": {
3269
+ "sys": {
3270
+ "type": "Link",
3271
+ "linkType": "User",
3272
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
3273
+ }
3274
+ },
3275
+ "space": {
3276
+ "sys": {
3277
+ "type": "Link",
3278
+ "linkType": "Space",
3279
+ "id": "xrfaz3bfkml6"
3280
+ }
3281
+ },
3282
+ "contentType": {
3283
+ "sys": {
3284
+ "type": "Link",
3285
+ "linkType": "ContentType",
3286
+ "id": "post"
3287
+ }
3288
+ },
3289
+ "version": 4,
3290
+ "updatedAt": "2015-11-27T09:17:52.691Z",
3291
+ "updatedBy": {
3292
+ "sys": {
3293
+ "type": "Link",
3294
+ "linkType": "User",
3295
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
3296
+ }
3297
+ }
3298
+ }
3299
+ }
3300
+ http_version:
3301
+ recorded_at: Fri, 27 Nov 2015 09:17:54 GMT
3302
+ - request:
3303
+ method: get
3304
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/dan_brown
3305
+ body:
3306
+ encoding: US-ASCII
3307
+ string: ''
3308
+ headers:
3309
+ User-Agent:
3310
+ - RubyContentfulManagementGem/0.7.3
3311
+ Authorization:
3312
+ - Bearer foobar
3313
+ Content-Type:
3314
+ - application/vnd.contentful.management.v1+json
3315
+ Content-Length:
3316
+ - '0'
3317
+ Connection:
3318
+ - close
3319
+ Host:
3320
+ - api.contentful.com
3321
+ response:
3322
+ status:
3323
+ code: 200
3324
+ message: OK
3325
+ headers:
3326
+ Access-Control-Allow-Headers:
3327
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
3328
+ Access-Control-Allow-Methods:
3329
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
3330
+ Access-Control-Allow-Origin:
3331
+ - '*'
3332
+ Access-Control-Expose-Headers:
3333
+ - Etag
3334
+ Access-Control-Max-Age:
3335
+ - '1728000'
3336
+ Cf-Space-Id:
3337
+ - xrfaz3bfkml6
3338
+ Content-Type:
3339
+ - application/vnd.contentful.management.v1+json
3340
+ Date:
3341
+ - Fri, 27 Nov 2015 09:17:53 GMT
3342
+ Etag:
3343
+ - '"eb75c0f45b7dfe21fff92907c00aaf26"'
3344
+ Server:
3345
+ - nginx
3346
+ Strict-Transport-Security:
3347
+ - max-age=15768000
3348
+ X-Content-Type-Options:
3349
+ - nosniff
3350
+ X-Contentful-Request-Id:
3351
+ - content-api:5LkCdVdwYg2cS6aeMoy2ci
3352
+ X-Powered-By:
3353
+ - Express
3354
+ Content-Length:
3355
+ - '776'
3356
+ Connection:
3357
+ - Close
3358
+ body:
3359
+ encoding: UTF-8
3360
+ string: |
3361
+ {
3362
+ "fields": {
3363
+ "name": {
3364
+ "en-US": "Dan Brown"
3365
+ }
3366
+ },
3367
+ "sys": {
3368
+ "id": "dan_brown",
3369
+ "type": "Entry",
3370
+ "createdAt": "2015-11-27T09:17:33.725Z",
3371
+ "createdBy": {
3372
+ "sys": {
3373
+ "type": "Link",
3374
+ "linkType": "User",
3375
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
3376
+ }
3377
+ },
3378
+ "space": {
3379
+ "sys": {
3380
+ "type": "Link",
3381
+ "linkType": "Space",
3382
+ "id": "xrfaz3bfkml6"
3383
+ }
3384
+ },
3385
+ "contentType": {
3386
+ "sys": {
3387
+ "type": "Link",
3388
+ "linkType": "ContentType",
3389
+ "id": "author"
3390
+ }
3391
+ },
3392
+ "version": 4,
3393
+ "updatedAt": "2015-11-27T09:17:43.638Z",
3394
+ "updatedBy": {
3395
+ "sys": {
3396
+ "type": "Link",
3397
+ "linkType": "User",
3398
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
3399
+ }
3400
+ }
3401
+ }
3402
+ }
3403
+ http_version:
3404
+ recorded_at: Fri, 27 Nov 2015 09:17:55 GMT
3405
+ - request:
3406
+ method: put
3407
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/dan_brown/published
3408
+ body:
3409
+ encoding: US-ASCII
3410
+ string: ''
3411
+ headers:
3412
+ User-Agent:
3413
+ - RubyContentfulManagementGem/0.7.3
3414
+ Authorization:
3415
+ - Bearer foobar
3416
+ Content-Type:
3417
+ - application/vnd.contentful.management.v1+json
3418
+ X-Contentful-Version:
3419
+ - '4'
3420
+ Content-Length:
3421
+ - '0'
3422
+ Connection:
3423
+ - close
3424
+ Host:
3425
+ - api.contentful.com
3426
+ response:
3427
+ status:
3428
+ code: 200
3429
+ message: OK
3430
+ headers:
3431
+ Access-Control-Allow-Headers:
3432
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
3433
+ Access-Control-Allow-Methods:
3434
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
3435
+ Access-Control-Allow-Origin:
3436
+ - '*'
3437
+ Access-Control-Expose-Headers:
3438
+ - Etag
3439
+ Access-Control-Max-Age:
3440
+ - '1728000'
3441
+ Cf-Space-Id:
3442
+ - xrfaz3bfkml6
3443
+ Content-Type:
3444
+ - application/vnd.contentful.management.v1+json
3445
+ Date:
3446
+ - Fri, 27 Nov 2015 09:17:54 GMT
3447
+ Etag:
3448
+ - '"60cad31981575c4e5746a07368e42bef"'
3449
+ Server:
3450
+ - nginx
3451
+ Strict-Transport-Security:
3452
+ - max-age=15768000
3453
+ X-Content-Type-Options:
3454
+ - nosniff
3455
+ X-Contentful-Request-Id:
3456
+ - content-api:713YRC3ZPqoC0OqeyySSWA
3457
+ X-Powered-By:
3458
+ - Express
3459
+ Content-Length:
3460
+ - '1071'
3461
+ Connection:
3462
+ - Close
3463
+ body:
3464
+ encoding: UTF-8
3465
+ string: |
3466
+ {
3467
+ "fields": {
3468
+ "name": {
3469
+ "en-US": "Dan Brown"
3470
+ }
3471
+ },
3472
+ "sys": {
3473
+ "id": "dan_brown",
3474
+ "type": "Entry",
3475
+ "createdAt": "2015-11-27T09:17:33.725Z",
3476
+ "createdBy": {
3477
+ "sys": {
3478
+ "type": "Link",
3479
+ "linkType": "User",
3480
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
3481
+ }
3482
+ },
3483
+ "space": {
3484
+ "sys": {
3485
+ "type": "Link",
3486
+ "linkType": "Space",
3487
+ "id": "xrfaz3bfkml6"
3488
+ }
3489
+ },
3490
+ "contentType": {
3491
+ "sys": {
3492
+ "type": "Link",
3493
+ "linkType": "ContentType",
3494
+ "id": "author"
3495
+ }
3496
+ },
3497
+ "version": 5,
3498
+ "updatedAt": "2015-11-27T09:17:54.556Z",
3499
+ "updatedBy": {
3500
+ "sys": {
3501
+ "type": "Link",
3502
+ "linkType": "User",
3503
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
3504
+ }
3505
+ },
3506
+ "firstPublishedAt": "2015-11-27T09:17:54.556Z",
3507
+ "publishedCounter": 1,
3508
+ "publishedAt": "2015-11-27T09:17:54.556Z",
3509
+ "publishedBy": {
3510
+ "sys": {
3511
+ "type": "Link",
3512
+ "linkType": "User",
3513
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
3514
+ }
3515
+ },
3516
+ "publishedVersion": 4
3517
+ }
3518
+ }
3519
+ http_version:
3520
+ recorded_at: Fri, 27 Nov 2015 09:17:56 GMT
3521
+ - request:
3522
+ method: get
3523
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/pablo_neruda
3524
+ body:
3525
+ encoding: US-ASCII
3526
+ string: ''
3527
+ headers:
3528
+ User-Agent:
3529
+ - RubyContentfulManagementGem/0.7.3
3530
+ Authorization:
3531
+ - Bearer foobar
3532
+ Content-Type:
3533
+ - application/vnd.contentful.management.v1+json
3534
+ Content-Length:
3535
+ - '0'
3536
+ Connection:
3537
+ - close
3538
+ Host:
3539
+ - api.contentful.com
3540
+ response:
3541
+ status:
3542
+ code: 200
3543
+ message: OK
3544
+ headers:
3545
+ Access-Control-Allow-Headers:
3546
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
3547
+ Access-Control-Allow-Methods:
3548
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
3549
+ Access-Control-Allow-Origin:
3550
+ - '*'
3551
+ Access-Control-Expose-Headers:
3552
+ - Etag
3553
+ Access-Control-Max-Age:
3554
+ - '1728000'
3555
+ Cf-Space-Id:
3556
+ - xrfaz3bfkml6
3557
+ Content-Type:
3558
+ - application/vnd.contentful.management.v1+json
3559
+ Date:
3560
+ - Fri, 27 Nov 2015 09:17:55 GMT
3561
+ Etag:
3562
+ - '"ff69fb3acf55ee6be578bd6a3ed946c2"'
3563
+ Server:
3564
+ - nginx
3565
+ Strict-Transport-Security:
3566
+ - max-age=15768000
3567
+ X-Content-Type-Options:
3568
+ - nosniff
3569
+ X-Contentful-Request-Id:
3570
+ - content-api:3MXv7phoDuQeoAok0mG4SU
3571
+ X-Powered-By:
3572
+ - Express
3573
+ Content-Length:
3574
+ - '782'
3575
+ Connection:
3576
+ - Close
3577
+ body:
3578
+ encoding: UTF-8
3579
+ string: |
3580
+ {
3581
+ "fields": {
3582
+ "name": {
3583
+ "en-US": "Pablo Neruda"
3584
+ }
3585
+ },
3586
+ "sys": {
3587
+ "id": "pablo_neruda",
3588
+ "type": "Entry",
3589
+ "createdAt": "2015-11-27T09:17:35.617Z",
3590
+ "createdBy": {
3591
+ "sys": {
3592
+ "type": "Link",
3593
+ "linkType": "User",
3594
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
3595
+ }
3596
+ },
3597
+ "space": {
3598
+ "sys": {
3599
+ "type": "Link",
3600
+ "linkType": "Space",
3601
+ "id": "xrfaz3bfkml6"
3602
+ }
3603
+ },
3604
+ "contentType": {
3605
+ "sys": {
3606
+ "type": "Link",
3607
+ "linkType": "ContentType",
3608
+ "id": "author"
3609
+ }
3610
+ },
3611
+ "version": 4,
3612
+ "updatedAt": "2015-11-27T09:17:46.613Z",
3613
+ "updatedBy": {
3614
+ "sys": {
3615
+ "type": "Link",
3616
+ "linkType": "User",
3617
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
3618
+ }
3619
+ }
3620
+ }
3621
+ }
3622
+ http_version:
3623
+ recorded_at: Fri, 27 Nov 2015 09:17:56 GMT
3624
+ - request:
3625
+ method: put
3626
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/pablo_neruda/published
3627
+ body:
3628
+ encoding: US-ASCII
3629
+ string: ''
3630
+ headers:
3631
+ User-Agent:
3632
+ - RubyContentfulManagementGem/0.7.3
3633
+ Authorization:
3634
+ - Bearer foobar
3635
+ Content-Type:
3636
+ - application/vnd.contentful.management.v1+json
3637
+ X-Contentful-Version:
3638
+ - '4'
3639
+ Content-Length:
3640
+ - '0'
3641
+ Connection:
3642
+ - close
3643
+ Host:
3644
+ - api.contentful.com
3645
+ response:
3646
+ status:
3647
+ code: 200
3648
+ message: OK
3649
+ headers:
3650
+ Access-Control-Allow-Headers:
3651
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
3652
+ Access-Control-Allow-Methods:
3653
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
3654
+ Access-Control-Allow-Origin:
3655
+ - '*'
3656
+ Access-Control-Expose-Headers:
3657
+ - Etag
3658
+ Access-Control-Max-Age:
3659
+ - '1728000'
3660
+ Cf-Space-Id:
3661
+ - xrfaz3bfkml6
3662
+ Content-Type:
3663
+ - application/vnd.contentful.management.v1+json
3664
+ Date:
3665
+ - Fri, 27 Nov 2015 09:17:56 GMT
3666
+ Etag:
3667
+ - '"6552197be180a6d46725d06a9ec36af3"'
3668
+ Server:
3669
+ - nginx
3670
+ Strict-Transport-Security:
3671
+ - max-age=15768000
3672
+ X-Content-Type-Options:
3673
+ - nosniff
3674
+ X-Contentful-Request-Id:
3675
+ - content-api:2BpWQurwzWW0KeoU222OWE
3676
+ X-Powered-By:
3677
+ - Express
3678
+ Content-Length:
3679
+ - '1077'
3680
+ Connection:
3681
+ - Close
3682
+ body:
3683
+ encoding: UTF-8
3684
+ string: |
3685
+ {
3686
+ "fields": {
3687
+ "name": {
3688
+ "en-US": "Pablo Neruda"
3689
+ }
3690
+ },
3691
+ "sys": {
3692
+ "id": "pablo_neruda",
3693
+ "type": "Entry",
3694
+ "createdAt": "2015-11-27T09:17:35.617Z",
3695
+ "createdBy": {
3696
+ "sys": {
3697
+ "type": "Link",
3698
+ "linkType": "User",
3699
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
3700
+ }
3701
+ },
3702
+ "space": {
3703
+ "sys": {
3704
+ "type": "Link",
3705
+ "linkType": "Space",
3706
+ "id": "xrfaz3bfkml6"
3707
+ }
3708
+ },
3709
+ "contentType": {
3710
+ "sys": {
3711
+ "type": "Link",
3712
+ "linkType": "ContentType",
3713
+ "id": "author"
3714
+ }
3715
+ },
3716
+ "version": 5,
3717
+ "updatedAt": "2015-11-27T09:17:56.044Z",
3718
+ "updatedBy": {
3719
+ "sys": {
3720
+ "type": "Link",
3721
+ "linkType": "User",
3722
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
3723
+ }
3724
+ },
3725
+ "firstPublishedAt": "2015-11-27T09:17:56.044Z",
3726
+ "publishedCounter": 1,
3727
+ "publishedAt": "2015-11-27T09:17:56.044Z",
3728
+ "publishedBy": {
3729
+ "sys": {
3730
+ "type": "Link",
3731
+ "linkType": "User",
3732
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
3733
+ }
3734
+ },
3735
+ "publishedVersion": 4
3736
+ }
3737
+ }
3738
+ http_version:
3739
+ recorded_at: Fri, 27 Nov 2015 09:17:57 GMT
3740
+ - request:
3741
+ method: get
3742
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/inferno
3743
+ body:
3744
+ encoding: US-ASCII
3745
+ string: ''
3746
+ headers:
3747
+ User-Agent:
3748
+ - RubyContentfulManagementGem/0.7.3
3749
+ Authorization:
3750
+ - Bearer foobar
3751
+ Content-Type:
3752
+ - application/vnd.contentful.management.v1+json
3753
+ Content-Length:
3754
+ - '0'
3755
+ Connection:
3756
+ - close
3757
+ Host:
3758
+ - api.contentful.com
3759
+ response:
3760
+ status:
3761
+ code: 200
3762
+ message: OK
3763
+ headers:
3764
+ Access-Control-Allow-Headers:
3765
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
3766
+ Access-Control-Allow-Methods:
3767
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
3768
+ Access-Control-Allow-Origin:
3769
+ - '*'
3770
+ Access-Control-Expose-Headers:
3771
+ - Etag
3772
+ Access-Control-Max-Age:
3773
+ - '1728000'
3774
+ Cf-Space-Id:
3775
+ - xrfaz3bfkml6
3776
+ Content-Type:
3777
+ - application/vnd.contentful.management.v1+json
3778
+ Date:
3779
+ - Fri, 27 Nov 2015 09:17:56 GMT
3780
+ Etag:
3781
+ - '"8aebf0a29878a4fd3f7cd516877d3219"'
3782
+ Server:
3783
+ - nginx
3784
+ Strict-Transport-Security:
3785
+ - max-age=15768000
3786
+ X-Content-Type-Options:
3787
+ - nosniff
3788
+ X-Contentful-Request-Id:
3789
+ - content-api:3XGsjUd4zCmYMGwKU2KUsk
3790
+ X-Powered-By:
3791
+ - Express
3792
+ Content-Length:
3793
+ - '1026'
3794
+ Connection:
3795
+ - Close
3796
+ body:
3797
+ encoding: UTF-8
3798
+ string: |
3799
+ {
3800
+ "fields": {
3801
+ "title": {
3802
+ "en-US": "Inferno"
3803
+ },
3804
+ "content": {
3805
+ "en-US": "Inferno is the last book in Dan Brown's collection..."
3806
+ },
3807
+ "author": {
3808
+ "en-US": {
3809
+ "sys": {
3810
+ "type": "Link",
3811
+ "linkType": "Entry",
3812
+ "id": "dan_brown"
3813
+ }
3814
+ }
3815
+ }
3816
+ },
3817
+ "sys": {
3818
+ "id": "inferno",
3819
+ "type": "Entry",
3820
+ "createdAt": "2015-11-27T09:17:38.125Z",
3821
+ "createdBy": {
3822
+ "sys": {
3823
+ "type": "Link",
3824
+ "linkType": "User",
3825
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
3826
+ }
3827
+ },
3828
+ "space": {
3829
+ "sys": {
3830
+ "type": "Link",
3831
+ "linkType": "Space",
3832
+ "id": "xrfaz3bfkml6"
3833
+ }
3834
+ },
3835
+ "contentType": {
3836
+ "sys": {
3837
+ "type": "Link",
3838
+ "linkType": "ContentType",
3839
+ "id": "post"
3840
+ }
3841
+ },
3842
+ "version": 4,
3843
+ "updatedAt": "2015-11-27T09:17:49.647Z",
3844
+ "updatedBy": {
3845
+ "sys": {
3846
+ "type": "Link",
3847
+ "linkType": "User",
3848
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
3849
+ }
3850
+ }
3851
+ }
3852
+ }
3853
+ http_version:
3854
+ recorded_at: Fri, 27 Nov 2015 09:17:58 GMT
3855
+ - request:
3856
+ method: put
3857
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/inferno/published
3858
+ body:
3859
+ encoding: US-ASCII
3860
+ string: ''
3861
+ headers:
3862
+ User-Agent:
3863
+ - RubyContentfulManagementGem/0.7.3
3864
+ Authorization:
3865
+ - Bearer foobar
3866
+ Content-Type:
3867
+ - application/vnd.contentful.management.v1+json
3868
+ X-Contentful-Version:
3869
+ - '4'
3870
+ Content-Length:
3871
+ - '0'
3872
+ Connection:
3873
+ - close
3874
+ Host:
3875
+ - api.contentful.com
3876
+ response:
3877
+ status:
3878
+ code: 200
3879
+ message: OK
3880
+ headers:
3881
+ Access-Control-Allow-Headers:
3882
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
3883
+ Access-Control-Allow-Methods:
3884
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
3885
+ Access-Control-Allow-Origin:
3886
+ - '*'
3887
+ Access-Control-Expose-Headers:
3888
+ - Etag
3889
+ Access-Control-Max-Age:
3890
+ - '1728000'
3891
+ Cf-Space-Id:
3892
+ - xrfaz3bfkml6
3893
+ Content-Type:
3894
+ - application/vnd.contentful.management.v1+json
3895
+ Date:
3896
+ - Fri, 27 Nov 2015 09:17:57 GMT
3897
+ Etag:
3898
+ - '"7ce5091c77fb53d25178b9cb54aa34f1"'
3899
+ Server:
3900
+ - nginx
3901
+ Strict-Transport-Security:
3902
+ - max-age=15768000
3903
+ X-Content-Type-Options:
3904
+ - nosniff
3905
+ X-Contentful-Request-Id:
3906
+ - content-api:548Y3n1SIUWkUiIUImUE0C
3907
+ X-Powered-By:
3908
+ - Express
3909
+ Content-Length:
3910
+ - '1321'
3911
+ Connection:
3912
+ - Close
3913
+ body:
3914
+ encoding: UTF-8
3915
+ string: |
3916
+ {
3917
+ "fields": {
3918
+ "title": {
3919
+ "en-US": "Inferno"
3920
+ },
3921
+ "content": {
3922
+ "en-US": "Inferno is the last book in Dan Brown's collection..."
3923
+ },
3924
+ "author": {
3925
+ "en-US": {
3926
+ "sys": {
3927
+ "type": "Link",
3928
+ "linkType": "Entry",
3929
+ "id": "dan_brown"
3930
+ }
3931
+ }
3932
+ }
3933
+ },
3934
+ "sys": {
3935
+ "id": "inferno",
3936
+ "type": "Entry",
3937
+ "createdAt": "2015-11-27T09:17:38.125Z",
3938
+ "createdBy": {
3939
+ "sys": {
3940
+ "type": "Link",
3941
+ "linkType": "User",
3942
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
3943
+ }
3944
+ },
3945
+ "space": {
3946
+ "sys": {
3947
+ "type": "Link",
3948
+ "linkType": "Space",
3949
+ "id": "xrfaz3bfkml6"
3950
+ }
3951
+ },
3952
+ "contentType": {
3953
+ "sys": {
3954
+ "type": "Link",
3955
+ "linkType": "ContentType",
3956
+ "id": "post"
3957
+ }
3958
+ },
3959
+ "version": 5,
3960
+ "updatedAt": "2015-11-27T09:17:57.526Z",
3961
+ "updatedBy": {
3962
+ "sys": {
3963
+ "type": "Link",
3964
+ "linkType": "User",
3965
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
3966
+ }
3967
+ },
3968
+ "firstPublishedAt": "2015-11-27T09:17:57.526Z",
3969
+ "publishedCounter": 1,
3970
+ "publishedAt": "2015-11-27T09:17:57.526Z",
3971
+ "publishedBy": {
3972
+ "sys": {
3973
+ "type": "Link",
3974
+ "linkType": "User",
3975
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
3976
+ }
3977
+ },
3978
+ "publishedVersion": 4
3979
+ }
3980
+ }
3981
+ http_version:
3982
+ recorded_at: Fri, 27 Nov 2015 09:17:59 GMT
3983
+ - request:
3984
+ method: get
3985
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/alturas
3986
+ body:
3987
+ encoding: US-ASCII
3988
+ string: ''
3989
+ headers:
3990
+ User-Agent:
3991
+ - RubyContentfulManagementGem/0.7.3
3992
+ Authorization:
3993
+ - Bearer foobar
3994
+ Content-Type:
3995
+ - application/vnd.contentful.management.v1+json
3996
+ Content-Length:
3997
+ - '0'
3998
+ Connection:
3999
+ - close
4000
+ Host:
4001
+ - api.contentful.com
4002
+ response:
4003
+ status:
4004
+ code: 200
4005
+ message: OK
4006
+ headers:
4007
+ Access-Control-Allow-Headers:
4008
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
4009
+ Access-Control-Allow-Methods:
4010
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
4011
+ Access-Control-Allow-Origin:
4012
+ - '*'
4013
+ Access-Control-Expose-Headers:
4014
+ - Etag
4015
+ Access-Control-Max-Age:
4016
+ - '1728000'
4017
+ Cf-Space-Id:
4018
+ - xrfaz3bfkml6
4019
+ Content-Type:
4020
+ - application/vnd.contentful.management.v1+json
4021
+ Date:
4022
+ - Fri, 27 Nov 2015 09:17:58 GMT
4023
+ Etag:
4024
+ - '"e7b8579e3904109b61cb3bf9ccdb8337"'
4025
+ Server:
4026
+ - nginx
4027
+ Strict-Transport-Security:
4028
+ - max-age=15768000
4029
+ X-Content-Type-Options:
4030
+ - nosniff
4031
+ X-Contentful-Request-Id:
4032
+ - content-api:2BRLvjrJzCoMkskyiECWQq
4033
+ X-Powered-By:
4034
+ - Express
4035
+ Content-Length:
4036
+ - '1070'
4037
+ Connection:
4038
+ - Close
4039
+ body:
4040
+ encoding: UTF-8
4041
+ string: |
4042
+ {
4043
+ "fields": {
4044
+ "title": {
4045
+ "en-US": "Alturas de Macchu Picchu"
4046
+ },
4047
+ "content": {
4048
+ "en-US": "Alturas de Macchu Picchu is one of Pablo Neruda's most famous poetry books..."
4049
+ },
4050
+ "author": {
4051
+ "en-US": {
4052
+ "sys": {
4053
+ "type": "Link",
4054
+ "linkType": "Entry",
4055
+ "id": "pablo_neruda"
4056
+ }
4057
+ }
4058
+ }
4059
+ },
4060
+ "sys": {
4061
+ "id": "alturas",
4062
+ "type": "Entry",
4063
+ "createdAt": "2015-11-27T09:17:40.029Z",
4064
+ "createdBy": {
4065
+ "sys": {
4066
+ "type": "Link",
4067
+ "linkType": "User",
4068
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
4069
+ }
4070
+ },
4071
+ "space": {
4072
+ "sys": {
4073
+ "type": "Link",
4074
+ "linkType": "Space",
4075
+ "id": "xrfaz3bfkml6"
4076
+ }
4077
+ },
4078
+ "contentType": {
4079
+ "sys": {
4080
+ "type": "Link",
4081
+ "linkType": "ContentType",
4082
+ "id": "post"
4083
+ }
4084
+ },
4085
+ "version": 4,
4086
+ "updatedAt": "2015-11-27T09:17:52.691Z",
4087
+ "updatedBy": {
4088
+ "sys": {
4089
+ "type": "Link",
4090
+ "linkType": "User",
4091
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
4092
+ }
4093
+ }
4094
+ }
4095
+ }
4096
+ http_version:
4097
+ recorded_at: Fri, 27 Nov 2015 09:17:59 GMT
4098
+ - request:
4099
+ method: put
4100
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/entries/alturas/published
4101
+ body:
4102
+ encoding: US-ASCII
4103
+ string: ''
4104
+ headers:
4105
+ User-Agent:
4106
+ - RubyContentfulManagementGem/0.7.3
4107
+ Authorization:
4108
+ - Bearer foobar
4109
+ Content-Type:
4110
+ - application/vnd.contentful.management.v1+json
4111
+ X-Contentful-Version:
4112
+ - '4'
4113
+ Content-Length:
4114
+ - '0'
4115
+ Connection:
4116
+ - close
4117
+ Host:
4118
+ - api.contentful.com
4119
+ response:
4120
+ status:
4121
+ code: 200
4122
+ message: OK
4123
+ headers:
4124
+ Access-Control-Allow-Headers:
4125
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
4126
+ Access-Control-Allow-Methods:
4127
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
4128
+ Access-Control-Allow-Origin:
4129
+ - '*'
4130
+ Access-Control-Expose-Headers:
4131
+ - Etag
4132
+ Access-Control-Max-Age:
4133
+ - '1728000'
4134
+ Cf-Space-Id:
4135
+ - xrfaz3bfkml6
4136
+ Content-Type:
4137
+ - application/vnd.contentful.management.v1+json
4138
+ Date:
4139
+ - Fri, 27 Nov 2015 09:17:59 GMT
4140
+ Etag:
4141
+ - '"346413e8237fc122dd209b76d7662389"'
4142
+ Server:
4143
+ - nginx
4144
+ Strict-Transport-Security:
4145
+ - max-age=15768000
4146
+ X-Content-Type-Options:
4147
+ - nosniff
4148
+ X-Contentful-Request-Id:
4149
+ - content-api:4B2KY6f2O4wGiIAQiyEgAG
4150
+ X-Powered-By:
4151
+ - Express
4152
+ Content-Length:
4153
+ - '1365'
4154
+ Connection:
4155
+ - Close
4156
+ body:
4157
+ encoding: UTF-8
4158
+ string: |
4159
+ {
4160
+ "fields": {
4161
+ "title": {
4162
+ "en-US": "Alturas de Macchu Picchu"
4163
+ },
4164
+ "content": {
4165
+ "en-US": "Alturas de Macchu Picchu is one of Pablo Neruda's most famous poetry books..."
4166
+ },
4167
+ "author": {
4168
+ "en-US": {
4169
+ "sys": {
4170
+ "type": "Link",
4171
+ "linkType": "Entry",
4172
+ "id": "pablo_neruda"
4173
+ }
4174
+ }
4175
+ }
4176
+ },
4177
+ "sys": {
4178
+ "id": "alturas",
4179
+ "type": "Entry",
4180
+ "createdAt": "2015-11-27T09:17:40.029Z",
4181
+ "createdBy": {
4182
+ "sys": {
4183
+ "type": "Link",
4184
+ "linkType": "User",
4185
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
4186
+ }
4187
+ },
4188
+ "space": {
4189
+ "sys": {
4190
+ "type": "Link",
4191
+ "linkType": "Space",
4192
+ "id": "xrfaz3bfkml6"
4193
+ }
4194
+ },
4195
+ "contentType": {
4196
+ "sys": {
4197
+ "type": "Link",
4198
+ "linkType": "ContentType",
4199
+ "id": "post"
4200
+ }
4201
+ },
4202
+ "version": 5,
4203
+ "updatedAt": "2015-11-27T09:17:58.942Z",
4204
+ "updatedBy": {
4205
+ "sys": {
4206
+ "type": "Link",
4207
+ "linkType": "User",
4208
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
4209
+ }
4210
+ },
4211
+ "firstPublishedAt": "2015-11-27T09:17:58.942Z",
4212
+ "publishedCounter": 1,
4213
+ "publishedAt": "2015-11-27T09:17:58.942Z",
4214
+ "publishedBy": {
4215
+ "sys": {
4216
+ "type": "Link",
4217
+ "linkType": "User",
4218
+ "id": "4FLrUHftHW3v2BLi9fzfjU"
4219
+ }
4220
+ },
4221
+ "publishedVersion": 4
4222
+ }
4223
+ }
4224
+ http_version:
4225
+ recorded_at: Fri, 27 Nov 2015 09:18:00 GMT
4226
+ - request:
4227
+ method: post
4228
+ uri: https://api.contentful.com/spaces/xrfaz3bfkml6/api_keys
4229
+ body:
4230
+ encoding: UTF-8
4231
+ string: '{"name":"Bootstrap Token","description":"Created with ''contentful_bootstrap.rb
4232
+ v2.0.2''"}'
4233
+ headers:
4234
+ User-Agent:
4235
+ - RubyContentfulManagementGem/0.7.3
4236
+ Authorization:
4237
+ - Bearer foobar
4238
+ Content-Type:
4239
+ - application/vnd.contentful.management.v1+json
4240
+ Connection:
4241
+ - close
4242
+ Host:
4243
+ - api.contentful.com
4244
+ response:
4245
+ status:
4246
+ code: 201
4247
+ message: Created
4248
+ headers:
4249
+ Accept-Ranges:
4250
+ - bytes
4251
+ Access-Control-Allow-Headers:
4252
+ - Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization,X-Contentful-Skip-Transformation
4253
+ Access-Control-Allow-Methods:
4254
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
4255
+ Access-Control-Allow-Origin:
4256
+ - '*'
4257
+ Access-Control-Expose-Headers:
4258
+ - Etag
4259
+ Access-Control-Max-Age:
4260
+ - '1728000'
4261
+ Cache-Control:
4262
+ - max-age=0
4263
+ Content-Type:
4264
+ - application/vnd.contentful.management.v1+json
4265
+ Date:
4266
+ - Fri, 27 Nov 2015 09:17:59 GMT
4267
+ Etag:
4268
+ - '"25db0723a382f38c7bf841c26ea0a5c1"'
4269
+ Location:
4270
+ - https://api.contentful.com/spaces/xrfaz3bfkml6/api_keys/5h5R69Bct4MXw60JvV1EFr
4271
+ Server:
4272
+ - nginx
4273
+ Status:
4274
+ - 201 Created
4275
+ Strict-Transport-Security:
4276
+ - max-age=15768000
4277
+ X-Content-Type-Options:
4278
+ - nosniff
4279
+ X-Contentful-Request-Id:
4280
+ - 9e1-621575938
4281
+ Content-Length:
4282
+ - '954'
4283
+ Connection:
4284
+ - Close
4285
+ body:
4286
+ encoding: UTF-8
4287
+ string: |+
4288
+ {
4289
+ "sys":{
4290
+ "type":"ApiKey",
4291
+ "id":"5h5R69Bct4MXw60JvV1EFr",
4292
+ "version":0,
4293
+ "space":{
4294
+ "sys":{
4295
+ "type":"Link",
4296
+ "linkType":"Space",
4297
+ "id":"xrfaz3bfkml6"
4298
+ }
4299
+ },
4300
+ "createdBy":{
4301
+ "sys":{
4302
+ "type":"Link",
4303
+ "linkType":"User",
4304
+ "id":"4FLrUHftHW3v2BLi9fzfjU"
4305
+ }
4306
+ },
4307
+ "createdAt":"2015-11-27T09:17:59Z",
4308
+ "updatedBy":{
4309
+ "sys":{
4310
+ "type":"Link",
4311
+ "linkType":"User",
4312
+ "id":"4FLrUHftHW3v2BLi9fzfjU"
4313
+ }
4314
+ },
4315
+ "updatedAt":"2015-11-27T09:17:59Z"
4316
+ },
4317
+ "name":"Bootstrap Token",
4318
+ "description":"Created with 'contentful_bootstrap.rb v2.0.2'",
4319
+ "accessToken":"134ef5abc54077f89a60f813d01bbd0e4d8c16f5286809380a0ca72431429b0b",
4320
+ "policies":[
4321
+ {
4322
+ "effect":"allow",
4323
+ "actions":"all"
4324
+ }
4325
+ ],
4326
+ "preview_api_key":{
4327
+ "sys":{
4328
+ "type":"Link",
4329
+ "linkType":"PreviewApiKey",
4330
+ "id":"5h6QIethJjQ3GuAiYHnTQB"
4331
+ }
4332
+ }
4333
+ }
4334
+
4335
+ http_version:
4336
+ recorded_at: Fri, 27 Nov 2015 09:18:01 GMT
4337
+ recorded_with: VCR 3.0.0