contentful-management 0.0.1.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (188) hide show
  1. data/.gitignore +24 -0
  2. data/.reek +3 -0
  3. data/.rspec +3 -0
  4. data/.rubocop.yml +16 -0
  5. data/.travis.yml +9 -0
  6. data/CHANGELOG.md +2 -0
  7. data/Gemfile +13 -0
  8. data/LICENSE.txt +22 -0
  9. data/README.md +408 -0
  10. data/Rakefile +37 -0
  11. data/bin/cma-console +8 -0
  12. data/contentful-management.gemspec +33 -0
  13. data/examples/blog.rb +82 -0
  14. data/examples/content_types.rb +45 -0
  15. data/examples/create_space.rb +35 -0
  16. data/lib/contentful/management.rb +12 -0
  17. data/lib/contentful/management/array.rb +35 -0
  18. data/lib/contentful/management/asset.rb +163 -0
  19. data/lib/contentful/management/client.rb +160 -0
  20. data/lib/contentful/management/content_type.rb +180 -0
  21. data/lib/contentful/management/dynamic_entry.rb +71 -0
  22. data/lib/contentful/management/entry.rb +213 -0
  23. data/lib/contentful/management/error.rb +62 -0
  24. data/lib/contentful/management/field.rb +34 -0
  25. data/lib/contentful/management/file.rb +15 -0
  26. data/lib/contentful/management/http_client.rb +22 -0
  27. data/lib/contentful/management/link.rb +23 -0
  28. data/lib/contentful/management/locale.rb +48 -0
  29. data/lib/contentful/management/location.rb +15 -0
  30. data/lib/contentful/management/request.rb +82 -0
  31. data/lib/contentful/management/resource.rb +166 -0
  32. data/lib/contentful/management/resource/array_like.rb +37 -0
  33. data/lib/contentful/management/resource/fields.rb +69 -0
  34. data/lib/contentful/management/resource/refresher.rb +21 -0
  35. data/lib/contentful/management/resource/system_properties.rb +56 -0
  36. data/lib/contentful/management/resource_builder.rb +269 -0
  37. data/lib/contentful/management/response.rb +72 -0
  38. data/lib/contentful/management/space.rb +159 -0
  39. data/lib/contentful/management/support.rb +24 -0
  40. data/lib/contentful/management/version.rb +6 -0
  41. data/spec/fixtures/vcr_cassettes/array_page_1.yml +1337 -0
  42. data/spec/fixtures/vcr_cassettes/asset/all.yml +611 -0
  43. data/spec/fixtures/vcr_cassettes/asset/archive.yml +228 -0
  44. data/spec/fixtures/vcr_cassettes/asset/archive_published.yml +177 -0
  45. data/spec/fixtures/vcr_cassettes/asset/archived_false.yml +228 -0
  46. data/spec/fixtures/vcr_cassettes/asset/archived_true.yml +228 -0
  47. data/spec/fixtures/vcr_cassettes/asset/create.yml +150 -0
  48. data/spec/fixtures/vcr_cassettes/asset/create_with_already_used_id.yml +56 -0
  49. data/spec/fixtures/vcr_cassettes/asset/create_with_custom_id.yml +150 -0
  50. data/spec/fixtures/vcr_cassettes/asset/destroy.yml +159 -0
  51. data/spec/fixtures/vcr_cassettes/asset/destroy_published.yml +175 -0
  52. data/spec/fixtures/vcr_cassettes/asset/find.yml +108 -0
  53. data/spec/fixtures/vcr_cassettes/asset/find_not_found.yml +64 -0
  54. data/spec/fixtures/vcr_cassettes/asset/image_url.yml +133 -0
  55. data/spec/fixtures/vcr_cassettes/asset/locale.yml +110 -0
  56. data/spec/fixtures/vcr_cassettes/asset/publish.yml +228 -0
  57. data/spec/fixtures/vcr_cassettes/asset/publish_already_published.yml +176 -0
  58. data/spec/fixtures/vcr_cassettes/asset/published_false.yml +228 -0
  59. data/spec/fixtures/vcr_cassettes/asset/published_true.yml +226 -0
  60. data/spec/fixtures/vcr_cassettes/asset/save_update.yml +242 -0
  61. data/spec/fixtures/vcr_cassettes/asset/set_locale.yml +110 -0
  62. data/spec/fixtures/vcr_cassettes/asset/unarchive.yml +228 -0
  63. data/spec/fixtures/vcr_cassettes/asset/unarchive_already_unarchive.yml +168 -0
  64. data/spec/fixtures/vcr_cassettes/asset/unarchive_already_unarchived.yml +168 -0
  65. data/spec/fixtures/vcr_cassettes/asset/unpublish.yml +228 -0
  66. data/spec/fixtures/vcr_cassettes/asset/unpublish_already_unpublished.yml +168 -0
  67. data/spec/fixtures/vcr_cassettes/asset/update_file.yml +207 -0
  68. data/spec/fixtures/vcr_cassettes/asset/update_to_specified_locale.yml +224 -0
  69. data/spec/fixtures/vcr_cassettes/asset/update_with_default_locale_without_file.yml +214 -0
  70. data/spec/fixtures/vcr_cassettes/content_type/activate.yml +246 -0
  71. data/spec/fixtures/vcr_cassettes/content_type/activate_with_invalid_version.yml +186 -0
  72. data/spec/fixtures/vcr_cassettes/content_type/activated_false.yml +246 -0
  73. data/spec/fixtures/vcr_cassettes/content_type/activated_true.yml +257 -0
  74. data/spec/fixtures/vcr_cassettes/content_type/all.yml +190 -0
  75. data/spec/fixtures/vcr_cassettes/content_type/create.yml +87 -0
  76. data/spec/fixtures/vcr_cassettes/content_type/create_content_type_with_id.yml +87 -0
  77. data/spec/fixtures/vcr_cassettes/content_type/create_with_Array_field.yml +94 -0
  78. data/spec/fixtures/vcr_cassettes/content_type/create_with_Boolean_field.yml +94 -0
  79. data/spec/fixtures/vcr_cassettes/content_type/create_with_Date_field.yml +94 -0
  80. data/spec/fixtures/vcr_cassettes/content_type/create_with_Integer_field.yml +94 -0
  81. data/spec/fixtures/vcr_cassettes/content_type/create_with_Link_field.yml +95 -0
  82. data/spec/fixtures/vcr_cassettes/content_type/create_with_Location_field.yml +94 -0
  83. data/spec/fixtures/vcr_cassettes/content_type/create_with_Number_field.yml +94 -0
  84. data/spec/fixtures/vcr_cassettes/content_type/create_with_Object_field.yml +94 -0
  85. data/spec/fixtures/vcr_cassettes/content_type/create_with_Symbol_field.yml +94 -0
  86. data/spec/fixtures/vcr_cassettes/content_type/create_with_Text_field.yml +94 -0
  87. data/spec/fixtures/vcr_cassettes/content_type/deactivate.yml +246 -0
  88. data/spec/fixtures/vcr_cassettes/content_type/deactivate_already_deactivated.yml +176 -0
  89. data/spec/fixtures/vcr_cassettes/content_type/deactivate_with_entries.yml +236 -0
  90. data/spec/fixtures/vcr_cassettes/content_type/deactivate_with_version_change.yml +248 -0
  91. data/spec/fixtures/vcr_cassettes/content_type/destroy.yml +148 -0
  92. data/spec/fixtures/vcr_cassettes/content_type/destroy_activated.yml +164 -0
  93. data/spec/fixtures/vcr_cassettes/content_type/entry/create.yml +1344 -0
  94. data/spec/fixtures/vcr_cassettes/content_type/entry/create_with_camel_case_id_to_multiple_locales.yml +235 -0
  95. data/spec/fixtures/vcr_cassettes/content_type/entry/create_with_entries.yml +398 -0
  96. data/spec/fixtures/vcr_cassettes/content_type/entry/create_with_entries_for_multiple_locales.yml +3157 -0
  97. data/spec/fixtures/vcr_cassettes/content_type/entry/create_with_multiple_locales.yml +230 -0
  98. data/spec/fixtures/vcr_cassettes/content_type/fields/add.yml +345 -0
  99. data/spec/fixtures/vcr_cassettes/content_type/fields/create.yml +353 -0
  100. data/spec/fixtures/vcr_cassettes/content_type/fields/create_array_with_params.yml +228 -0
  101. data/spec/fixtures/vcr_cassettes/content_type/fields/create_with_params.yml +221 -0
  102. data/spec/fixtures/vcr_cassettes/content_type/fields/destroy.yml +349 -0
  103. data/spec/fixtures/vcr_cassettes/content_type/fields/update_field.yml +358 -0
  104. data/spec/fixtures/vcr_cassettes/content_type/find.yml +180 -0
  105. data/spec/fixtures/vcr_cassettes/content_type/find_not_found.yml +64 -0
  106. data/spec/fixtures/vcr_cassettes/content_type/save_new.yml +876 -0
  107. data/spec/fixtures/vcr_cassettes/content_type/save_updated.yml +345 -0
  108. data/spec/fixtures/vcr_cassettes/content_type/save_with_added_field.yml +217 -0
  109. data/spec/fixtures/vcr_cassettes/content_type/update.yml +175 -0
  110. data/spec/fixtures/vcr_cassettes/content_type/update_change_field_name.yml +222 -0
  111. data/spec/fixtures/vcr_cassettes/content_type/update_remove_field.yml +231 -0
  112. data/spec/fixtures/vcr_cassettes/content_type/update_with_fields.yml +222 -0
  113. data/spec/fixtures/vcr_cassettes/content_type/update_with_one_new_field.yml +251 -0
  114. data/spec/fixtures/vcr_cassettes/entry/all.yml +139 -0
  115. data/spec/fixtures/vcr_cassettes/entry/archive.yml +222 -0
  116. data/spec/fixtures/vcr_cassettes/entry/archive_published.yml +187 -0
  117. data/spec/fixtures/vcr_cassettes/entry/archived_false.yml +178 -0
  118. data/spec/fixtures/vcr_cassettes/entry/archived_true.yml +248 -0
  119. data/spec/fixtures/vcr_cassettes/entry/create.yml +245 -0
  120. data/spec/fixtures/vcr_cassettes/entry/create_test.yml +150 -0
  121. data/spec/fixtures/vcr_cassettes/entry/create_with_asset.yml +403 -0
  122. data/spec/fixtures/vcr_cassettes/entry/create_with_assets.yml +419 -0
  123. data/spec/fixtures/vcr_cassettes/entry/create_with_entries.yml +418 -0
  124. data/spec/fixtures/vcr_cassettes/entry/create_with_entry.yml +493 -0
  125. data/spec/fixtures/vcr_cassettes/entry/create_with_location.yml +259 -0
  126. data/spec/fixtures/vcr_cassettes/entry/create_with_symbols.yml +271 -0
  127. data/spec/fixtures/vcr_cassettes/entry/destory_published.yml +172 -0
  128. data/spec/fixtures/vcr_cassettes/entry/destroy.yml +156 -0
  129. data/spec/fixtures/vcr_cassettes/entry/find.yml +129 -0
  130. data/spec/fixtures/vcr_cassettes/entry/find_not_found.yml +64 -0
  131. data/spec/fixtures/vcr_cassettes/entry/publish.yml +248 -0
  132. data/spec/fixtures/vcr_cassettes/entry/publish_already_published.yml +186 -0
  133. data/spec/fixtures/vcr_cassettes/entry/published_false.yml +248 -0
  134. data/spec/fixtures/vcr_cassettes/entry/published_true.yml +257 -0
  135. data/spec/fixtures/vcr_cassettes/entry/save_update.yml +211 -0
  136. data/spec/fixtures/vcr_cassettes/entry/unarchive.yml +248 -0
  137. data/spec/fixtures/vcr_cassettes/entry/unarchive_already_unarchived.yml +178 -0
  138. data/spec/fixtures/vcr_cassettes/entry/unpublish.yml +248 -0
  139. data/spec/fixtures/vcr_cassettes/entry/unpublish_already_unpublished.yml +178 -0
  140. data/spec/fixtures/vcr_cassettes/entry/update.yml +626 -0
  141. data/spec/fixtures/vcr_cassettes/entry/update_unlocalized_field.yml +308 -0
  142. data/spec/fixtures/vcr_cassettes/entry/update_with_custom_locale.yml +332 -0
  143. data/spec/fixtures/vcr_cassettes/get_request.yml +37 -0
  144. data/spec/fixtures/vcr_cassettes/locale/all_for_space.yml +321 -0
  145. data/spec/fixtures/vcr_cassettes/locale/create_for_space.yml +95 -0
  146. data/spec/fixtures/vcr_cassettes/locale/find.yml +95 -0
  147. data/spec/fixtures/vcr_cassettes/locale/find_for_space_not_found.yml +67 -0
  148. data/spec/fixtures/vcr_cassettes/space/all.yml +1201 -0
  149. data/spec/fixtures/vcr_cassettes/space/asset/all.yml +475 -0
  150. data/spec/fixtures/vcr_cassettes/space/asset/assets.yml +826 -0
  151. data/spec/fixtures/vcr_cassettes/space/asset/create.yml +508 -0
  152. data/spec/fixtures/vcr_cassettes/space/asset/create_with_multiple_locales.yml +1062 -0
  153. data/spec/fixtures/vcr_cassettes/space/asset/find.yml +634 -0
  154. data/spec/fixtures/vcr_cassettes/space/content_type/all.yml +470 -0
  155. data/spec/fixtures/vcr_cassettes/space/content_type/content_types.yml +341 -0
  156. data/spec/fixtures/vcr_cassettes/space/content_type/create.yml +425 -0
  157. data/spec/fixtures/vcr_cassettes/space/content_type/find.yml +493 -0
  158. data/spec/fixtures/vcr_cassettes/space/create.yml +85 -0
  159. data/spec/fixtures/vcr_cassettes/space/create_when_limit_has_been_reached.yml +67 -0
  160. data/spec/fixtures/vcr_cassettes/space/create_with_unknown_organization.yml +65 -0
  161. data/spec/fixtures/vcr_cassettes/space/create_without_organization.yml +83 -0
  162. data/spec/fixtures/vcr_cassettes/space/destory.yml +196 -0
  163. data/spec/fixtures/vcr_cassettes/space/entry/all.yml +634 -0
  164. data/spec/fixtures/vcr_cassettes/space/entry/entries.yml +498 -0
  165. data/spec/fixtures/vcr_cassettes/space/entry/find.yml +624 -0
  166. data/spec/fixtures/vcr_cassettes/space/find.yml +270 -0
  167. data/spec/fixtures/vcr_cassettes/space/find_not_found.yml +67 -0
  168. data/spec/fixtures/vcr_cassettes/space/locale/all.yml +690 -0
  169. data/spec/fixtures/vcr_cassettes/space/locale/create.yml +572 -0
  170. data/spec/fixtures/vcr_cassettes/space/locale/create_with_the_same_code.yml +585 -0
  171. data/spec/fixtures/vcr_cassettes/space/locale/find.yml +572 -0
  172. data/spec/fixtures/vcr_cassettes/space/locale/find_not_found.yml +580 -0
  173. data/spec/fixtures/vcr_cassettes/space/locale/locales.yml +480 -0
  174. data/spec/fixtures/vcr_cassettes/space/locale/update.yml +700 -0
  175. data/spec/fixtures/vcr_cassettes/space/save_new_space.yml +67 -0
  176. data/spec/fixtures/vcr_cassettes/space/save_update_space.yml +352 -0
  177. data/spec/fixtures/vcr_cassettes/space/update.yml +350 -0
  178. data/spec/fixtures/vcr_cassettes/space/update_with_the_same_data.yml +350 -0
  179. data/spec/lib/contentful/management/array_spec.rb +59 -0
  180. data/spec/lib/contentful/management/asset_spec.rb +321 -0
  181. data/spec/lib/contentful/management/client_spec.rb +80 -0
  182. data/spec/lib/contentful/management/content_type_spec.rb +455 -0
  183. data/spec/lib/contentful/management/entry_spec.rb +308 -0
  184. data/spec/lib/contentful/management/locale_spec.rb +53 -0
  185. data/spec/lib/contentful/management/space_spec.rb +317 -0
  186. data/spec/spec_helper.rb +10 -0
  187. data/spec/support/vcr.rb +17 -0
  188. metadata +554 -0
@@ -0,0 +1,3157 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - RubyContenfulManagementGem/0.0.1
12
+ Authorization:
13
+ - Bearer <ACCESS_TOKEN>
14
+ Content-Type:
15
+ - application/vnd.contentful.management.v1+json
16
+ Content-Length:
17
+ - '0'
18
+ Host:
19
+ - api.contentful.com
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Server:
26
+ - nginx
27
+ Date:
28
+ - Mon, 04 Aug 2014 08:52:44 GMT
29
+ Content-Type:
30
+ - application/vnd.contentful.management.v1+json
31
+ Content-Length:
32
+ - '451'
33
+ Connection:
34
+ - keep-alive
35
+ Status:
36
+ - 200 OK
37
+ X-Contentful-Request-Id:
38
+ - 85f-1334804846
39
+ Etag:
40
+ - '"d4c68b318e3d8e9caef04be009d6c4b7"'
41
+ Accept-Ranges:
42
+ - bytes
43
+ Cache-Control:
44
+ - max-age=0
45
+ Access-Control-Allow-Origin:
46
+ - "*"
47
+ Access-Control-Allow-Headers:
48
+ - 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
49
+ Access-Control-Allow-Methods:
50
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
51
+ "^access-Control-Expose-Headers":
52
+ - Etag
53
+ Access-Control-Max-Age:
54
+ - '1728000'
55
+ body:
56
+ encoding: UTF-8
57
+ string: |
58
+ {
59
+ "sys":{
60
+ "type":"Space",
61
+ "id":"yr5m0jky5hsh",
62
+ "version":10,
63
+ "createdBy":{
64
+ "sys":{
65
+ "type":"Link",
66
+ "linkType":"User",
67
+ "id":"0fn5fOWn4WsKFyYla1gI5h"
68
+ }
69
+ },
70
+ "createdAt":"2014-07-30T07:46:19Z",
71
+ "updatedBy":{
72
+ "sys":{
73
+ "type":"Link",
74
+ "linkType":"User",
75
+ "id":"1E7acJL8I5XUXAMHQt9Grs"
76
+ }
77
+ },
78
+ "updatedAt":"2014-07-31T07:26:59Z"
79
+ },
80
+ "name":"BlogSpace"}
81
+ http_version:
82
+ recorded_at: Mon, 04 Aug 2014 08:52:44 GMT
83
+ - request:
84
+ method: get
85
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh/content_types
86
+ body:
87
+ encoding: US-ASCII
88
+ string: ''
89
+ headers:
90
+ User-Agent:
91
+ - RubyContenfulManagementGem/0.0.1
92
+ Authorization:
93
+ - Bearer <ACCESS_TOKEN>
94
+ Content-Type:
95
+ - application/vnd.contentful.management.v1+json
96
+ Content-Length:
97
+ - '0'
98
+ Host:
99
+ - api.contentful.com
100
+ response:
101
+ status:
102
+ code: 200
103
+ message: OK
104
+ headers:
105
+ Server:
106
+ - nginx
107
+ Date:
108
+ - Mon, 04 Aug 2014 08:52:45 GMT
109
+ Content-Type:
110
+ - application/vnd.contentful.management.v1+json
111
+ Content-Length:
112
+ - '9574'
113
+ Connection:
114
+ - keep-alive
115
+ X-Powered-By:
116
+ - Express
117
+ Cf-Space-Id:
118
+ - yr5m0jky5hsh
119
+ Etag:
120
+ - '"abf27b38322e393a027223ddb527fdf5"'
121
+ Access-Control-Allow-Origin:
122
+ - "*"
123
+ Access-Control-Allow-Headers:
124
+ - 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
125
+ Access-Control-Allow-Methods:
126
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
127
+ "^access-Control-Expose-Headers":
128
+ - Etag
129
+ Access-Control-Max-Age:
130
+ - '1728000'
131
+ body:
132
+ encoding: UTF-8
133
+ string: |
134
+ {
135
+ "sys": {
136
+ "type": "Array"
137
+ },
138
+ "total": 4,
139
+ "skip": 0,
140
+ "limit": 100,
141
+ "items": [
142
+ {
143
+ "name": "Author",
144
+ "description": "Author content",
145
+ "fields": [
146
+ {
147
+ "id": "name",
148
+ "name": "name",
149
+ "type": "Text",
150
+ "localized": true,
151
+ "uiid": "3jp09h4ba4g"
152
+ },
153
+ {
154
+ "id": "age",
155
+ "name": "age",
156
+ "type": "Integer",
157
+ "localized": true,
158
+ "uiid": "43my1e8ybr4"
159
+ },
160
+ {
161
+ "id": "city",
162
+ "name": "city",
163
+ "type": "Location",
164
+ "uiid": "45uoowshekg"
165
+ },
166
+ {
167
+ "id": "assets",
168
+ "name": "assets",
169
+ "type": "Array",
170
+ "items": {
171
+ "type": "Link",
172
+ "linkType": "Asset"
173
+ },
174
+ "localized": true,
175
+ "uiid": "4p8d3di8b28"
176
+ },
177
+ {
178
+ "id": "entries",
179
+ "name": "entries",
180
+ "type": "Array",
181
+ "items": {
182
+ "type": "Link",
183
+ "linkType": "Entry"
184
+ },
185
+ "uiid": "4t2r2mpmwow"
186
+ },
187
+ {
188
+ "id": "entry",
189
+ "name": "entry",
190
+ "type": "Link",
191
+ "linkType": "Entry",
192
+ "uiid": "2u2x6csxtkw"
193
+ },
194
+ {
195
+ "id": "asset",
196
+ "name": "asset",
197
+ "type": "Link",
198
+ "linkType": "Asset",
199
+ "uiid": "3pktxccvjeo"
200
+ },
201
+ {
202
+ "id": "bool",
203
+ "name": "bool",
204
+ "type": "Boolean",
205
+ "localized": true,
206
+ "uiid": "4p882yc9728"
207
+ },
208
+ {
209
+ "id": "symbols",
210
+ "name": "symbols",
211
+ "type": "Array",
212
+ "items": {
213
+ "type": "Symbol"
214
+ },
215
+ "uiid": "2mcqj4tdczk"
216
+ },
217
+ {
218
+ "id": "birthday",
219
+ "name": "birthday",
220
+ "type": "Date",
221
+ "uiid": "3h1dkdm8we8"
222
+ },
223
+ {
224
+ "id": "symbol",
225
+ "name": "Symbol",
226
+ "type": "Symbol",
227
+ "required": true,
228
+ "localized": true,
229
+ "uiid": "30rwyn42a68"
230
+ },
231
+ {
232
+ "id": "eye_color",
233
+ "name": "Eyes color",
234
+ "type": "Text",
235
+ "uiid": "46h9q3btwcg"
236
+ }
237
+ ],
238
+ "sys": {
239
+ "id": "5DSpuKrl04eMAGQoQckeIq",
240
+ "type": "ContentType",
241
+ "createdAt": "2014-07-30T12:35:01.110Z",
242
+ "createdBy": {
243
+ "sys": {
244
+ "type": "Link",
245
+ "linkType": "User",
246
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
247
+ }
248
+ },
249
+ "space": {
250
+ "sys": {
251
+ "type": "Link",
252
+ "linkType": "Space",
253
+ "id": "yr5m0jky5hsh"
254
+ }
255
+ },
256
+ "firstPublishedAt": "2014-07-30T12:37:42.035Z",
257
+ "publishedCounter": 9,
258
+ "publishedAt": "2014-07-31T10:21:36.870Z",
259
+ "publishedBy": {
260
+ "sys": {
261
+ "type": "Link",
262
+ "linkType": "User",
263
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
264
+ }
265
+ },
266
+ "publishedVersion": 206,
267
+ "version": 213,
268
+ "updatedAt": "2014-07-31T13:23:46.624Z",
269
+ "updatedBy": {
270
+ "sys": {
271
+ "type": "Link",
272
+ "linkType": "User",
273
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
274
+ }
275
+ }
276
+ }
277
+ },
278
+ {
279
+ "fields": [
280
+ {
281
+ "name": "post_title",
282
+ "id": "post_title",
283
+ "type": "Text",
284
+ "uiid": "3y811ua4gsg",
285
+ "localized": true
286
+ },
287
+ {
288
+ "name": "post_body",
289
+ "id": "post_body",
290
+ "type": "Text",
291
+ "uiid": "2wcy8gvpn28",
292
+ "localized": true
293
+ },
294
+ {
295
+ "name": "post_code",
296
+ "id": "post_code",
297
+ "type": "Symbol",
298
+ "uiid": "42ip6svqlts",
299
+ "localized": true
300
+ },
301
+ {
302
+ "name": "post_created",
303
+ "id": "post_created",
304
+ "type": "Date",
305
+ "uiid": "3qb1v37yebk"
306
+ }
307
+ ],
308
+ "name": "Post",
309
+ "sys": {
310
+ "id": "4EnwylPOikyMGUIy8uQgQY",
311
+ "type": "ContentType",
312
+ "createdAt": "2014-07-31T08:46:36.678Z",
313
+ "createdBy": {
314
+ "sys": {
315
+ "type": "Link",
316
+ "linkType": "User",
317
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
318
+ }
319
+ },
320
+ "space": {
321
+ "sys": {
322
+ "type": "Link",
323
+ "linkType": "Space",
324
+ "id": "yr5m0jky5hsh"
325
+ }
326
+ },
327
+ "firstPublishedAt": "2014-07-31T08:51:14.655Z",
328
+ "publishedCounter": 6,
329
+ "publishedAt": "2014-08-01T09:23:05.507Z",
330
+ "publishedBy": {
331
+ "sys": {
332
+ "type": "Link",
333
+ "linkType": "User",
334
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
335
+ }
336
+ },
337
+ "publishedVersion": 214,
338
+ "version": 215,
339
+ "updatedAt": "2014-08-01T09:23:05.513Z",
340
+ "updatedBy": {
341
+ "sys": {
342
+ "type": "Link",
343
+ "linkType": "User",
344
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
345
+ }
346
+ }
347
+ },
348
+ "description": "Content with Post fields",
349
+ "displayField": "postTitl"
350
+ },
351
+ {
352
+ "fields": [
353
+ {
354
+ "name": "car_mark",
355
+ "id": "carMark",
356
+ "type": "Text",
357
+ "uiid": "2tak96o94ow",
358
+ "localized": true
359
+ },
360
+ {
361
+ "name": "car_city_plate",
362
+ "id": "carCityPlate",
363
+ "type": "Symbol",
364
+ "uiid": "4gqwj4k6k8w",
365
+ "localized": true
366
+ },
367
+ {
368
+ "name": "car_capacity",
369
+ "id": "carCapacity",
370
+ "type": "Number",
371
+ "uiid": "2ms8n1w14ao",
372
+ "localized": true
373
+ },
374
+ {
375
+ "name": "car_photo",
376
+ "id": "carPhoto",
377
+ "type": "Link",
378
+ "uiid": "33wtzyo9e68",
379
+ "linkType": "Asset",
380
+ "localized": true
381
+ }
382
+ ],
383
+ "name": "Car",
384
+ "sys": {
385
+ "id": "4esHTHIVgc0uWkiwGwOsa6",
386
+ "type": "ContentType",
387
+ "createdAt": "2014-08-01T10:30:19.224Z",
388
+ "createdBy": {
389
+ "sys": {
390
+ "type": "Link",
391
+ "linkType": "User",
392
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
393
+ }
394
+ },
395
+ "space": {
396
+ "sys": {
397
+ "type": "Link",
398
+ "linkType": "Space",
399
+ "id": "yr5m0jky5hsh"
400
+ }
401
+ },
402
+ "firstPublishedAt": "2014-08-01T10:32:26.083Z",
403
+ "publishedCounter": 2,
404
+ "publishedAt": "2014-08-01T11:14:19.463Z",
405
+ "publishedBy": {
406
+ "sys": {
407
+ "type": "Link",
408
+ "linkType": "User",
409
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
410
+ }
411
+ },
412
+ "publishedVersion": 85,
413
+ "version": 86,
414
+ "updatedAt": "2014-08-01T11:14:19.470Z",
415
+ "updatedBy": {
416
+ "sys": {
417
+ "type": "Link",
418
+ "linkType": "User",
419
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
420
+ }
421
+ }
422
+ },
423
+ "description": "Car content type",
424
+ "displayField": "carMark"
425
+ },
426
+ {
427
+ "name": "Blog",
428
+ "description": "Blog's content type",
429
+ "fields": [
430
+ {
431
+ "id": "blog_name",
432
+ "name": "blog_name",
433
+ "type": "Text",
434
+ "uiid": "4j6nspw3bb4",
435
+ "localized": true
436
+ },
437
+ {
438
+ "id": "blog_entries",
439
+ "name": "blog_entries",
440
+ "type": "Array",
441
+ "items": {
442
+ "type": "Link",
443
+ "linkType": "Entry"
444
+ },
445
+ "localized": true,
446
+ "uiid": "4fb61794mio"
447
+ },
448
+ {
449
+ "name": "entries",
450
+ "id": "entries",
451
+ "type": "Array",
452
+ "uiid": "4usq6g722gw",
453
+ "items": {
454
+ "type": "Link",
455
+ "linkType": "Entry"
456
+ },
457
+ "localized": true
458
+ },
459
+ {
460
+ "name": "assets",
461
+ "id": "assets",
462
+ "type": "Array",
463
+ "uiid": "4gdlrxqamtc",
464
+ "items": {
465
+ "type": "Link",
466
+ "linkType": "Asset"
467
+ },
468
+ "localized": true
469
+ },
470
+ {
471
+ "name": "entry",
472
+ "id": "entry",
473
+ "type": "Link",
474
+ "uiid": "2x4umbxk4cg",
475
+ "linkType": "Entry",
476
+ "localized": true
477
+ },
478
+ {
479
+ "name": "blog_entry",
480
+ "id": "blog_entry",
481
+ "type": "Link",
482
+ "uiid": "3vc40nae0hs",
483
+ "linkType": "Entry",
484
+ "localized": true
485
+ }
486
+ ],
487
+ "sys": {
488
+ "id": "6xzrdCr33OMAeIYUgs6UKi",
489
+ "type": "ContentType",
490
+ "createdAt": "2014-07-31T10:33:50.934Z",
491
+ "createdBy": {
492
+ "sys": {
493
+ "type": "Link",
494
+ "linkType": "User",
495
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
496
+ }
497
+ },
498
+ "space": {
499
+ "sys": {
500
+ "type": "Link",
501
+ "linkType": "Space",
502
+ "id": "yr5m0jky5hsh"
503
+ }
504
+ },
505
+ "firstPublishedAt": "2014-07-31T10:34:14.463Z",
506
+ "publishedCounter": 7,
507
+ "publishedAt": "2014-08-04T08:19:16.831Z",
508
+ "publishedBy": {
509
+ "sys": {
510
+ "type": "Link",
511
+ "linkType": "User",
512
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
513
+ }
514
+ },
515
+ "publishedVersion": 108,
516
+ "version": 109,
517
+ "updatedAt": "2014-08-04T08:19:16.841Z",
518
+ "updatedBy": {
519
+ "sys": {
520
+ "type": "Link",
521
+ "linkType": "User",
522
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
523
+ }
524
+ }
525
+ }
526
+ }
527
+ ]
528
+ }
529
+ http_version:
530
+ recorded_at: Mon, 04 Aug 2014 08:52:45 GMT
531
+ - request:
532
+ method: get
533
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh/content_types
534
+ body:
535
+ encoding: US-ASCII
536
+ string: ''
537
+ headers:
538
+ User-Agent:
539
+ - RubyContenfulManagementGem/0.0.1
540
+ Authorization:
541
+ - Bearer <ACCESS_TOKEN>
542
+ Content-Type:
543
+ - application/vnd.contentful.management.v1+json
544
+ Content-Length:
545
+ - '0'
546
+ Host:
547
+ - api.contentful.com
548
+ response:
549
+ status:
550
+ code: 200
551
+ message: OK
552
+ headers:
553
+ Server:
554
+ - nginx
555
+ Date:
556
+ - Mon, 04 Aug 2014 08:52:46 GMT
557
+ Content-Type:
558
+ - application/vnd.contentful.management.v1+json
559
+ Content-Length:
560
+ - '9574'
561
+ Connection:
562
+ - keep-alive
563
+ X-Powered-By:
564
+ - Express
565
+ Cf-Space-Id:
566
+ - yr5m0jky5hsh
567
+ Etag:
568
+ - '"abf27b38322e393a027223ddb527fdf5"'
569
+ Access-Control-Allow-Origin:
570
+ - "*"
571
+ Access-Control-Allow-Headers:
572
+ - 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
573
+ Access-Control-Allow-Methods:
574
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
575
+ "^access-Control-Expose-Headers":
576
+ - Etag
577
+ Access-Control-Max-Age:
578
+ - '1728000'
579
+ body:
580
+ encoding: UTF-8
581
+ string: |
582
+ {
583
+ "sys": {
584
+ "type": "Array"
585
+ },
586
+ "total": 4,
587
+ "skip": 0,
588
+ "limit": 100,
589
+ "items": [
590
+ {
591
+ "name": "Author",
592
+ "description": "Author content",
593
+ "fields": [
594
+ {
595
+ "id": "name",
596
+ "name": "name",
597
+ "type": "Text",
598
+ "localized": true,
599
+ "uiid": "3jp09h4ba4g"
600
+ },
601
+ {
602
+ "id": "age",
603
+ "name": "age",
604
+ "type": "Integer",
605
+ "localized": true,
606
+ "uiid": "43my1e8ybr4"
607
+ },
608
+ {
609
+ "id": "city",
610
+ "name": "city",
611
+ "type": "Location",
612
+ "uiid": "45uoowshekg"
613
+ },
614
+ {
615
+ "id": "assets",
616
+ "name": "assets",
617
+ "type": "Array",
618
+ "items": {
619
+ "type": "Link",
620
+ "linkType": "Asset"
621
+ },
622
+ "localized": true,
623
+ "uiid": "4p8d3di8b28"
624
+ },
625
+ {
626
+ "id": "entries",
627
+ "name": "entries",
628
+ "type": "Array",
629
+ "items": {
630
+ "type": "Link",
631
+ "linkType": "Entry"
632
+ },
633
+ "uiid": "4t2r2mpmwow"
634
+ },
635
+ {
636
+ "id": "entry",
637
+ "name": "entry",
638
+ "type": "Link",
639
+ "linkType": "Entry",
640
+ "uiid": "2u2x6csxtkw"
641
+ },
642
+ {
643
+ "id": "asset",
644
+ "name": "asset",
645
+ "type": "Link",
646
+ "linkType": "Asset",
647
+ "uiid": "3pktxccvjeo"
648
+ },
649
+ {
650
+ "id": "bool",
651
+ "name": "bool",
652
+ "type": "Boolean",
653
+ "localized": true,
654
+ "uiid": "4p882yc9728"
655
+ },
656
+ {
657
+ "id": "symbols",
658
+ "name": "symbols",
659
+ "type": "Array",
660
+ "items": {
661
+ "type": "Symbol"
662
+ },
663
+ "uiid": "2mcqj4tdczk"
664
+ },
665
+ {
666
+ "id": "birthday",
667
+ "name": "birthday",
668
+ "type": "Date",
669
+ "uiid": "3h1dkdm8we8"
670
+ },
671
+ {
672
+ "id": "symbol",
673
+ "name": "Symbol",
674
+ "type": "Symbol",
675
+ "required": true,
676
+ "localized": true,
677
+ "uiid": "30rwyn42a68"
678
+ },
679
+ {
680
+ "id": "eye_color",
681
+ "name": "Eyes color",
682
+ "type": "Text",
683
+ "uiid": "46h9q3btwcg"
684
+ }
685
+ ],
686
+ "sys": {
687
+ "id": "5DSpuKrl04eMAGQoQckeIq",
688
+ "type": "ContentType",
689
+ "createdAt": "2014-07-30T12:35:01.110Z",
690
+ "createdBy": {
691
+ "sys": {
692
+ "type": "Link",
693
+ "linkType": "User",
694
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
695
+ }
696
+ },
697
+ "space": {
698
+ "sys": {
699
+ "type": "Link",
700
+ "linkType": "Space",
701
+ "id": "yr5m0jky5hsh"
702
+ }
703
+ },
704
+ "firstPublishedAt": "2014-07-30T12:37:42.035Z",
705
+ "publishedCounter": 9,
706
+ "publishedAt": "2014-07-31T10:21:36.870Z",
707
+ "publishedBy": {
708
+ "sys": {
709
+ "type": "Link",
710
+ "linkType": "User",
711
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
712
+ }
713
+ },
714
+ "publishedVersion": 206,
715
+ "version": 213,
716
+ "updatedAt": "2014-07-31T13:23:46.624Z",
717
+ "updatedBy": {
718
+ "sys": {
719
+ "type": "Link",
720
+ "linkType": "User",
721
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
722
+ }
723
+ }
724
+ }
725
+ },
726
+ {
727
+ "fields": [
728
+ {
729
+ "name": "post_title",
730
+ "id": "post_title",
731
+ "type": "Text",
732
+ "uiid": "3y811ua4gsg",
733
+ "localized": true
734
+ },
735
+ {
736
+ "name": "post_body",
737
+ "id": "post_body",
738
+ "type": "Text",
739
+ "uiid": "2wcy8gvpn28",
740
+ "localized": true
741
+ },
742
+ {
743
+ "name": "post_code",
744
+ "id": "post_code",
745
+ "type": "Symbol",
746
+ "uiid": "42ip6svqlts",
747
+ "localized": true
748
+ },
749
+ {
750
+ "name": "post_created",
751
+ "id": "post_created",
752
+ "type": "Date",
753
+ "uiid": "3qb1v37yebk"
754
+ }
755
+ ],
756
+ "name": "Post",
757
+ "sys": {
758
+ "id": "4EnwylPOikyMGUIy8uQgQY",
759
+ "type": "ContentType",
760
+ "createdAt": "2014-07-31T08:46:36.678Z",
761
+ "createdBy": {
762
+ "sys": {
763
+ "type": "Link",
764
+ "linkType": "User",
765
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
766
+ }
767
+ },
768
+ "space": {
769
+ "sys": {
770
+ "type": "Link",
771
+ "linkType": "Space",
772
+ "id": "yr5m0jky5hsh"
773
+ }
774
+ },
775
+ "firstPublishedAt": "2014-07-31T08:51:14.655Z",
776
+ "publishedCounter": 6,
777
+ "publishedAt": "2014-08-01T09:23:05.507Z",
778
+ "publishedBy": {
779
+ "sys": {
780
+ "type": "Link",
781
+ "linkType": "User",
782
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
783
+ }
784
+ },
785
+ "publishedVersion": 214,
786
+ "version": 215,
787
+ "updatedAt": "2014-08-01T09:23:05.513Z",
788
+ "updatedBy": {
789
+ "sys": {
790
+ "type": "Link",
791
+ "linkType": "User",
792
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
793
+ }
794
+ }
795
+ },
796
+ "description": "Content with Post fields",
797
+ "displayField": "postTitl"
798
+ },
799
+ {
800
+ "fields": [
801
+ {
802
+ "name": "car_mark",
803
+ "id": "carMark",
804
+ "type": "Text",
805
+ "uiid": "2tak96o94ow",
806
+ "localized": true
807
+ },
808
+ {
809
+ "name": "car_city_plate",
810
+ "id": "carCityPlate",
811
+ "type": "Symbol",
812
+ "uiid": "4gqwj4k6k8w",
813
+ "localized": true
814
+ },
815
+ {
816
+ "name": "car_capacity",
817
+ "id": "carCapacity",
818
+ "type": "Number",
819
+ "uiid": "2ms8n1w14ao",
820
+ "localized": true
821
+ },
822
+ {
823
+ "name": "car_photo",
824
+ "id": "carPhoto",
825
+ "type": "Link",
826
+ "uiid": "33wtzyo9e68",
827
+ "linkType": "Asset",
828
+ "localized": true
829
+ }
830
+ ],
831
+ "name": "Car",
832
+ "sys": {
833
+ "id": "4esHTHIVgc0uWkiwGwOsa6",
834
+ "type": "ContentType",
835
+ "createdAt": "2014-08-01T10:30:19.224Z",
836
+ "createdBy": {
837
+ "sys": {
838
+ "type": "Link",
839
+ "linkType": "User",
840
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
841
+ }
842
+ },
843
+ "space": {
844
+ "sys": {
845
+ "type": "Link",
846
+ "linkType": "Space",
847
+ "id": "yr5m0jky5hsh"
848
+ }
849
+ },
850
+ "firstPublishedAt": "2014-08-01T10:32:26.083Z",
851
+ "publishedCounter": 2,
852
+ "publishedAt": "2014-08-01T11:14:19.463Z",
853
+ "publishedBy": {
854
+ "sys": {
855
+ "type": "Link",
856
+ "linkType": "User",
857
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
858
+ }
859
+ },
860
+ "publishedVersion": 85,
861
+ "version": 86,
862
+ "updatedAt": "2014-08-01T11:14:19.470Z",
863
+ "updatedBy": {
864
+ "sys": {
865
+ "type": "Link",
866
+ "linkType": "User",
867
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
868
+ }
869
+ }
870
+ },
871
+ "description": "Car content type",
872
+ "displayField": "carMark"
873
+ },
874
+ {
875
+ "name": "Blog",
876
+ "description": "Blog's content type",
877
+ "fields": [
878
+ {
879
+ "id": "blog_name",
880
+ "name": "blog_name",
881
+ "type": "Text",
882
+ "uiid": "4j6nspw3bb4",
883
+ "localized": true
884
+ },
885
+ {
886
+ "id": "blog_entries",
887
+ "name": "blog_entries",
888
+ "type": "Array",
889
+ "items": {
890
+ "type": "Link",
891
+ "linkType": "Entry"
892
+ },
893
+ "localized": true,
894
+ "uiid": "4fb61794mio"
895
+ },
896
+ {
897
+ "name": "entries",
898
+ "id": "entries",
899
+ "type": "Array",
900
+ "uiid": "4usq6g722gw",
901
+ "items": {
902
+ "type": "Link",
903
+ "linkType": "Entry"
904
+ },
905
+ "localized": true
906
+ },
907
+ {
908
+ "name": "assets",
909
+ "id": "assets",
910
+ "type": "Array",
911
+ "uiid": "4gdlrxqamtc",
912
+ "items": {
913
+ "type": "Link",
914
+ "linkType": "Asset"
915
+ },
916
+ "localized": true
917
+ },
918
+ {
919
+ "name": "entry",
920
+ "id": "entry",
921
+ "type": "Link",
922
+ "uiid": "2x4umbxk4cg",
923
+ "linkType": "Entry",
924
+ "localized": true
925
+ },
926
+ {
927
+ "name": "blog_entry",
928
+ "id": "blog_entry",
929
+ "type": "Link",
930
+ "uiid": "3vc40nae0hs",
931
+ "linkType": "Entry",
932
+ "localized": true
933
+ }
934
+ ],
935
+ "sys": {
936
+ "id": "6xzrdCr33OMAeIYUgs6UKi",
937
+ "type": "ContentType",
938
+ "createdAt": "2014-07-31T10:33:50.934Z",
939
+ "createdBy": {
940
+ "sys": {
941
+ "type": "Link",
942
+ "linkType": "User",
943
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
944
+ }
945
+ },
946
+ "space": {
947
+ "sys": {
948
+ "type": "Link",
949
+ "linkType": "Space",
950
+ "id": "yr5m0jky5hsh"
951
+ }
952
+ },
953
+ "firstPublishedAt": "2014-07-31T10:34:14.463Z",
954
+ "publishedCounter": 7,
955
+ "publishedAt": "2014-08-04T08:19:16.831Z",
956
+ "publishedBy": {
957
+ "sys": {
958
+ "type": "Link",
959
+ "linkType": "User",
960
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
961
+ }
962
+ },
963
+ "publishedVersion": 108,
964
+ "version": 109,
965
+ "updatedAt": "2014-08-04T08:19:16.841Z",
966
+ "updatedBy": {
967
+ "sys": {
968
+ "type": "Link",
969
+ "linkType": "User",
970
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
971
+ }
972
+ }
973
+ }
974
+ }
975
+ ]
976
+ }
977
+ http_version:
978
+ recorded_at: Mon, 04 Aug 2014 08:52:46 GMT
979
+ - request:
980
+ method: get
981
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh/entries
982
+ body:
983
+ encoding: US-ASCII
984
+ string: ''
985
+ headers:
986
+ User-Agent:
987
+ - RubyContenfulManagementGem/0.0.1
988
+ Authorization:
989
+ - Bearer <ACCESS_TOKEN>
990
+ Content-Type:
991
+ - application/vnd.contentful.management.v1+json
992
+ Content-Length:
993
+ - '0'
994
+ Host:
995
+ - api.contentful.com
996
+ response:
997
+ status:
998
+ code: 200
999
+ message: OK
1000
+ headers:
1001
+ Server:
1002
+ - nginx
1003
+ Date:
1004
+ - Mon, 04 Aug 2014 08:52:47 GMT
1005
+ Content-Type:
1006
+ - application/vnd.contentful.management.v1+json
1007
+ Content-Length:
1008
+ - '12920'
1009
+ Connection:
1010
+ - keep-alive
1011
+ X-Powered-By:
1012
+ - Express
1013
+ Cf-Space-Id:
1014
+ - yr5m0jky5hsh
1015
+ Etag:
1016
+ - '"3beec92f8c230a88658aeb8952090d7c"'
1017
+ Access-Control-Allow-Origin:
1018
+ - "*"
1019
+ Access-Control-Allow-Headers:
1020
+ - 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
1021
+ Access-Control-Allow-Methods:
1022
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
1023
+ "^access-Control-Expose-Headers":
1024
+ - Etag
1025
+ Access-Control-Max-Age:
1026
+ - '1728000'
1027
+ body:
1028
+ encoding: UTF-8
1029
+ string: |
1030
+ {
1031
+ "sys": {
1032
+ "type": "Array"
1033
+ },
1034
+ "total": 8,
1035
+ "skip": 0,
1036
+ "limit": 100,
1037
+ "items": [
1038
+ {
1039
+ "sys": {
1040
+ "id": "4Rouux8SoUCKwkyCq2I0E0",
1041
+ "type": "Entry",
1042
+ "createdAt": "2014-07-30T12:37:49.078Z",
1043
+ "createdBy": {
1044
+ "sys": {
1045
+ "type": "Link",
1046
+ "linkType": "User",
1047
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1048
+ }
1049
+ },
1050
+ "space": {
1051
+ "sys": {
1052
+ "type": "Link",
1053
+ "linkType": "Space",
1054
+ "id": "yr5m0jky5hsh"
1055
+ }
1056
+ },
1057
+ "contentType": {
1058
+ "sys": {
1059
+ "type": "Link",
1060
+ "linkType": "ContentType",
1061
+ "id": "5DSpuKrl04eMAGQoQckeIq"
1062
+ }
1063
+ },
1064
+ "firstPublishedAt": "2014-07-30T12:39:05.868Z",
1065
+ "publishedCounter": 6,
1066
+ "archivedAt": "2014-07-30T12:58:09.099Z",
1067
+ "archivedBy": {
1068
+ "sys": {
1069
+ "type": "Link",
1070
+ "linkType": "User",
1071
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1072
+ }
1073
+ },
1074
+ "archivedVersion": 41,
1075
+ "version": 42,
1076
+ "updatedAt": "2014-07-30T12:58:09.101Z",
1077
+ "updatedBy": {
1078
+ "sys": {
1079
+ "type": "Link",
1080
+ "linkType": "User",
1081
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1082
+ }
1083
+ }
1084
+ },
1085
+ "fields": {
1086
+ "name": {
1087
+ "en-US": "Tom Handy"
1088
+ },
1089
+ "age": {
1090
+ "en-US": 39
1091
+ },
1092
+ "city": {
1093
+ "en-US": {
1094
+ "lat": 52.1464575,
1095
+ "lon": 21.05050319999998
1096
+ }
1097
+ },
1098
+ "assets": {
1099
+ "en-US": [
1100
+ {
1101
+ "sys": {
1102
+ "type": "Link",
1103
+ "linkType": "Asset",
1104
+ "id": "4k8mYw2MzS6kYG0eGq0Yi0"
1105
+ }
1106
+ }
1107
+ ]
1108
+ }
1109
+ }
1110
+ },
1111
+ {
1112
+ "fields": {
1113
+ "name": {
1114
+ "en-US": "Tom Handy",
1115
+ "pl": "testName"
1116
+ },
1117
+ "age": {
1118
+ "en-US": 20,
1119
+ "pl": null
1120
+ },
1121
+ "bool": {
1122
+ "en-US": false,
1123
+ "pl": null
1124
+ },
1125
+ "birthday": {
1126
+ "en-US": "2000-07-12T11:11:00+02:00",
1127
+ "pl": null
1128
+ },
1129
+ "city": {
1130
+ "en-US": {
1131
+ "lat": 22.44,
1132
+ "lon": 33.33
1133
+ },
1134
+ "pl": null
1135
+ },
1136
+ "asset": {
1137
+ "en-US": {
1138
+ "sys": {
1139
+ "type": "Link",
1140
+ "linkType": "Asset",
1141
+ "id": "codequest_id_test_custom_id"
1142
+ }
1143
+ },
1144
+ "pl": null
1145
+ },
1146
+ "assets": {
1147
+ "en-US": [
1148
+ {
1149
+ "sys": {
1150
+ "type": "Link",
1151
+ "linkType": "Asset",
1152
+ "id": "codequest_id_test_custom_id"
1153
+ }
1154
+ },
1155
+ {
1156
+ "sys": {
1157
+ "type": "Link",
1158
+ "linkType": "Asset",
1159
+ "id": "codequest_id_test_custom_id"
1160
+ }
1161
+ },
1162
+ {
1163
+ "sys": {
1164
+ "type": "Link",
1165
+ "linkType": "Asset",
1166
+ "id": "codequest_id_test_custom_id"
1167
+ }
1168
+ }
1169
+ ],
1170
+ "pl": null
1171
+ },
1172
+ "entry": {
1173
+ "en-US": {
1174
+ "sys": {
1175
+ "type": "Link",
1176
+ "linkType": "Entry",
1177
+ "id": "1d1QDYzeiyWmgqQYysae8u"
1178
+ }
1179
+ },
1180
+ "pl": null
1181
+ },
1182
+ "entries": {
1183
+ "en-US": [
1184
+ {
1185
+ "sys": {
1186
+ "type": "Link",
1187
+ "linkType": "Entry",
1188
+ "id": "1d1QDYzeiyWmgqQYysae8u"
1189
+ }
1190
+ },
1191
+ {
1192
+ "sys": {
1193
+ "type": "Link",
1194
+ "linkType": "Entry",
1195
+ "id": "1d1QDYzeiyWmgqQYysae8u"
1196
+ }
1197
+ },
1198
+ {
1199
+ "sys": {
1200
+ "type": "Link",
1201
+ "linkType": "Entry",
1202
+ "id": "1d1QDYzeiyWmgqQYysae8u"
1203
+ }
1204
+ }
1205
+ ],
1206
+ "pl": null
1207
+ },
1208
+ "symbols": {
1209
+ "en-US": [
1210
+ "PL",
1211
+ "USD",
1212
+ "XX"
1213
+ ],
1214
+ "pl": null
1215
+ }
1216
+ },
1217
+ "sys": {
1218
+ "id": "4o6ghKSmSko4i828YCYaEo",
1219
+ "type": "Entry",
1220
+ "createdAt": "2014-07-30T13:44:39.414Z",
1221
+ "createdBy": {
1222
+ "sys": {
1223
+ "type": "Link",
1224
+ "linkType": "User",
1225
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1226
+ }
1227
+ },
1228
+ "space": {
1229
+ "sys": {
1230
+ "type": "Link",
1231
+ "linkType": "Space",
1232
+ "id": "yr5m0jky5hsh"
1233
+ }
1234
+ },
1235
+ "contentType": {
1236
+ "sys": {
1237
+ "type": "Link",
1238
+ "linkType": "ContentType",
1239
+ "id": "5DSpuKrl04eMAGQoQckeIq"
1240
+ }
1241
+ },
1242
+ "firstPublishedAt": "2014-07-30T13:44:42.304Z",
1243
+ "publishedCounter": 2,
1244
+ "publishedAt": "2014-07-30T13:53:55.981Z",
1245
+ "publishedBy": {
1246
+ "sys": {
1247
+ "type": "Link",
1248
+ "linkType": "User",
1249
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1250
+ }
1251
+ },
1252
+ "publishedVersion": 3,
1253
+ "version": 6,
1254
+ "updatedAt": "2014-07-30T14:11:08.611Z",
1255
+ "updatedBy": {
1256
+ "sys": {
1257
+ "type": "Link",
1258
+ "linkType": "User",
1259
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1260
+ }
1261
+ }
1262
+ }
1263
+ },
1264
+ {
1265
+ "fields": {
1266
+ "name": {
1267
+ "en-US": "Tom Handy"
1268
+ },
1269
+ "age": {
1270
+ "en-US": 30
1271
+ },
1272
+ "city": {
1273
+ "en-US": {
1274
+ "lat": 22.44,
1275
+ "lon": 33.33
1276
+ }
1277
+ }
1278
+ },
1279
+ "sys": {
1280
+ "id": "1d1QDYzeiyWmgqQYysae8u",
1281
+ "type": "Entry",
1282
+ "createdAt": "2014-07-30T13:07:10.630Z",
1283
+ "createdBy": {
1284
+ "sys": {
1285
+ "type": "Link",
1286
+ "linkType": "User",
1287
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1288
+ }
1289
+ },
1290
+ "space": {
1291
+ "sys": {
1292
+ "type": "Link",
1293
+ "linkType": "Space",
1294
+ "id": "yr5m0jky5hsh"
1295
+ }
1296
+ },
1297
+ "contentType": {
1298
+ "sys": {
1299
+ "type": "Link",
1300
+ "linkType": "ContentType",
1301
+ "id": "5DSpuKrl04eMAGQoQckeIq"
1302
+ }
1303
+ },
1304
+ "firstPublishedAt": "2014-07-30T13:34:58.934Z",
1305
+ "publishedCounter": 1,
1306
+ "publishedAt": "2014-07-30T13:34:58.934Z",
1307
+ "publishedBy": {
1308
+ "sys": {
1309
+ "type": "Link",
1310
+ "linkType": "User",
1311
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1312
+ }
1313
+ },
1314
+ "publishedVersion": 1,
1315
+ "version": 2,
1316
+ "updatedAt": "2014-07-30T13:34:58.938Z",
1317
+ "updatedBy": {
1318
+ "sys": {
1319
+ "type": "Link",
1320
+ "linkType": "User",
1321
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1322
+ }
1323
+ }
1324
+ }
1325
+ },
1326
+ {
1327
+ "fields": {
1328
+ "name": {
1329
+ "en-US": "OneAsset"
1330
+ },
1331
+ "asset": {
1332
+ "en-US": {
1333
+ "sys": {
1334
+ "type": "Link",
1335
+ "linkType": "Asset",
1336
+ "id": "codequest_id_test_custom"
1337
+ }
1338
+ }
1339
+ }
1340
+ },
1341
+ "sys": {
1342
+ "id": "32fJQBBr0I0oa4m4wyIA4E",
1343
+ "type": "Entry",
1344
+ "createdAt": "2014-07-31T14:31:24.707Z",
1345
+ "createdBy": {
1346
+ "sys": {
1347
+ "type": "Link",
1348
+ "linkType": "User",
1349
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1350
+ }
1351
+ },
1352
+ "space": {
1353
+ "sys": {
1354
+ "type": "Link",
1355
+ "linkType": "Space",
1356
+ "id": "yr5m0jky5hsh"
1357
+ }
1358
+ },
1359
+ "contentType": {
1360
+ "sys": {
1361
+ "type": "Link",
1362
+ "linkType": "ContentType",
1363
+ "id": "5DSpuKrl04eMAGQoQckeIq"
1364
+ }
1365
+ },
1366
+ "version": 1,
1367
+ "updatedAt": "2014-07-31T14:31:24.711Z",
1368
+ "updatedBy": {
1369
+ "sys": {
1370
+ "type": "Link",
1371
+ "linkType": "User",
1372
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1373
+ }
1374
+ }
1375
+ }
1376
+ },
1377
+ {
1378
+ "fields": {
1379
+ "name": {
1380
+ "en-US": "OneAsset"
1381
+ },
1382
+ "asset": {
1383
+ "en-US": {
1384
+ "sys": {
1385
+ "type": "Link",
1386
+ "linkType": "Asset",
1387
+ "id": "codequest_id_test_custom"
1388
+ }
1389
+ }
1390
+ }
1391
+ },
1392
+ "sys": {
1393
+ "id": "3ByibvkoV2UGk6M6CyOam4",
1394
+ "type": "Entry",
1395
+ "createdAt": "2014-07-31T14:34:34.325Z",
1396
+ "createdBy": {
1397
+ "sys": {
1398
+ "type": "Link",
1399
+ "linkType": "User",
1400
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1401
+ }
1402
+ },
1403
+ "space": {
1404
+ "sys": {
1405
+ "type": "Link",
1406
+ "linkType": "Space",
1407
+ "id": "yr5m0jky5hsh"
1408
+ }
1409
+ },
1410
+ "contentType": {
1411
+ "sys": {
1412
+ "type": "Link",
1413
+ "linkType": "ContentType",
1414
+ "id": "5DSpuKrl04eMAGQoQckeIq"
1415
+ }
1416
+ },
1417
+ "version": 1,
1418
+ "updatedAt": "2014-07-31T14:34:34.328Z",
1419
+ "updatedBy": {
1420
+ "sys": {
1421
+ "type": "Link",
1422
+ "linkType": "User",
1423
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1424
+ }
1425
+ }
1426
+ }
1427
+ },
1428
+ {
1429
+ "sys": {
1430
+ "id": "4Kx7CC6QWQWeoCAcSYqQ8g",
1431
+ "type": "Entry",
1432
+ "createdAt": "2014-08-01T12:22:55.911Z",
1433
+ "createdBy": {
1434
+ "sys": {
1435
+ "type": "Link",
1436
+ "linkType": "User",
1437
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1438
+ }
1439
+ },
1440
+ "space": {
1441
+ "sys": {
1442
+ "type": "Link",
1443
+ "linkType": "Space",
1444
+ "id": "yr5m0jky5hsh"
1445
+ }
1446
+ },
1447
+ "contentType": {
1448
+ "sys": {
1449
+ "type": "Link",
1450
+ "linkType": "ContentType",
1451
+ "id": "5DSpuKrl04eMAGQoQckeIq"
1452
+ }
1453
+ },
1454
+ "firstPublishedAt": "2014-08-01T12:22:58.135Z",
1455
+ "publishedCounter": 1,
1456
+ "publishedAt": "2014-08-01T12:22:58.135Z",
1457
+ "publishedBy": {
1458
+ "sys": {
1459
+ "type": "Link",
1460
+ "linkType": "User",
1461
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1462
+ }
1463
+ },
1464
+ "publishedVersion": 1,
1465
+ "version": 2,
1466
+ "updatedAt": "2014-08-01T12:22:58.139Z",
1467
+ "updatedBy": {
1468
+ "sys": {
1469
+ "type": "Link",
1470
+ "linkType": "User",
1471
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1472
+ }
1473
+ }
1474
+ }
1475
+ },
1476
+ {
1477
+ "sys": {
1478
+ "id": "5HA1dcXVy8q4amq8III4Wq",
1479
+ "type": "Entry",
1480
+ "createdAt": "2014-08-04T07:18:12.072Z",
1481
+ "createdBy": {
1482
+ "sys": {
1483
+ "type": "Link",
1484
+ "linkType": "User",
1485
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1486
+ }
1487
+ },
1488
+ "space": {
1489
+ "sys": {
1490
+ "type": "Link",
1491
+ "linkType": "Space",
1492
+ "id": "yr5m0jky5hsh"
1493
+ }
1494
+ },
1495
+ "contentType": {
1496
+ "sys": {
1497
+ "type": "Link",
1498
+ "linkType": "ContentType",
1499
+ "id": "6xzrdCr33OMAeIYUgs6UKi"
1500
+ }
1501
+ },
1502
+ "version": 1,
1503
+ "updatedAt": "2014-08-04T07:18:12.076Z",
1504
+ "updatedBy": {
1505
+ "sys": {
1506
+ "type": "Link",
1507
+ "linkType": "User",
1508
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1509
+ }
1510
+ }
1511
+ }
1512
+ },
1513
+ {
1514
+ "fields": {
1515
+ "carMark": {
1516
+ "en-US": "Merc",
1517
+ "pl": "Mercedes"
1518
+ },
1519
+ "carCityPlate": {
1520
+ "en-US": "en",
1521
+ "pl": "bia"
1522
+ },
1523
+ "carCapacity": {
1524
+ "en-US": 2.5,
1525
+ "pl": 2.5
1526
+ }
1527
+ },
1528
+ "sys": {
1529
+ "id": "664EPJ6zHqAeMO6O0mGggU",
1530
+ "type": "Entry",
1531
+ "createdAt": "2014-08-01T11:25:33.437Z",
1532
+ "createdBy": {
1533
+ "sys": {
1534
+ "type": "Link",
1535
+ "linkType": "User",
1536
+ "id": "0fn5fOWn4WsKFyYla1gI5h"
1537
+ }
1538
+ },
1539
+ "space": {
1540
+ "sys": {
1541
+ "type": "Link",
1542
+ "linkType": "Space",
1543
+ "id": "yr5m0jky5hsh"
1544
+ }
1545
+ },
1546
+ "contentType": {
1547
+ "sys": {
1548
+ "type": "Link",
1549
+ "linkType": "ContentType",
1550
+ "id": "4esHTHIVgc0uWkiwGwOsa6"
1551
+ }
1552
+ },
1553
+ "firstPublishedAt": "2014-08-04T08:45:29.889Z",
1554
+ "publishedCounter": 1,
1555
+ "publishedAt": "2014-08-04T08:45:29.889Z",
1556
+ "publishedBy": {
1557
+ "sys": {
1558
+ "type": "Link",
1559
+ "linkType": "User",
1560
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1561
+ }
1562
+ },
1563
+ "publishedVersion": 2,
1564
+ "version": 3,
1565
+ "updatedAt": "2014-08-04T08:45:29.894Z",
1566
+ "updatedBy": {
1567
+ "sys": {
1568
+ "type": "Link",
1569
+ "linkType": "User",
1570
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1571
+ }
1572
+ }
1573
+ }
1574
+ }
1575
+ ]
1576
+ }
1577
+ http_version:
1578
+ recorded_at: Mon, 04 Aug 2014 08:52:47 GMT
1579
+ - request:
1580
+ method: get
1581
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh/entries/664EPJ6zHqAeMO6O0mGggU
1582
+ body:
1583
+ encoding: US-ASCII
1584
+ string: ''
1585
+ headers:
1586
+ User-Agent:
1587
+ - RubyContenfulManagementGem/0.0.1
1588
+ Authorization:
1589
+ - Bearer <ACCESS_TOKEN>
1590
+ Content-Type:
1591
+ - application/vnd.contentful.management.v1+json
1592
+ Content-Length:
1593
+ - '0'
1594
+ Host:
1595
+ - api.contentful.com
1596
+ response:
1597
+ status:
1598
+ code: 200
1599
+ message: OK
1600
+ headers:
1601
+ Server:
1602
+ - nginx
1603
+ Date:
1604
+ - Mon, 04 Aug 2014 08:52:48 GMT
1605
+ Content-Type:
1606
+ - application/vnd.contentful.management.v1+json
1607
+ Content-Length:
1608
+ - '1254'
1609
+ Connection:
1610
+ - keep-alive
1611
+ X-Powered-By:
1612
+ - Express
1613
+ Cf-Space-Id:
1614
+ - yr5m0jky5hsh
1615
+ Etag:
1616
+ - '"da2d1983e2de8c3e908bc94a34dd6d79"'
1617
+ Access-Control-Allow-Origin:
1618
+ - "*"
1619
+ Access-Control-Allow-Headers:
1620
+ - 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
1621
+ Access-Control-Allow-Methods:
1622
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
1623
+ "^access-Control-Expose-Headers":
1624
+ - Etag
1625
+ Access-Control-Max-Age:
1626
+ - '1728000'
1627
+ body:
1628
+ encoding: UTF-8
1629
+ string: |
1630
+ {
1631
+ "fields": {
1632
+ "carMark": {
1633
+ "en-US": "Merc",
1634
+ "pl": "Mercedes"
1635
+ },
1636
+ "carCityPlate": {
1637
+ "en-US": "en",
1638
+ "pl": "bia"
1639
+ },
1640
+ "carCapacity": {
1641
+ "en-US": 2.5,
1642
+ "pl": 2.5
1643
+ }
1644
+ },
1645
+ "sys": {
1646
+ "id": "664EPJ6zHqAeMO6O0mGggU",
1647
+ "type": "Entry",
1648
+ "createdAt": "2014-08-01T11:25:33.437Z",
1649
+ "createdBy": {
1650
+ "sys": {
1651
+ "type": "Link",
1652
+ "linkType": "User",
1653
+ "id": "0fn5fOWn4WsKFyYla1gI5h"
1654
+ }
1655
+ },
1656
+ "space": {
1657
+ "sys": {
1658
+ "type": "Link",
1659
+ "linkType": "Space",
1660
+ "id": "yr5m0jky5hsh"
1661
+ }
1662
+ },
1663
+ "contentType": {
1664
+ "sys": {
1665
+ "type": "Link",
1666
+ "linkType": "ContentType",
1667
+ "id": "4esHTHIVgc0uWkiwGwOsa6"
1668
+ }
1669
+ },
1670
+ "firstPublishedAt": "2014-08-04T08:45:29.889Z",
1671
+ "publishedCounter": 1,
1672
+ "publishedAt": "2014-08-04T08:45:29.889Z",
1673
+ "publishedBy": {
1674
+ "sys": {
1675
+ "type": "Link",
1676
+ "linkType": "User",
1677
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1678
+ }
1679
+ },
1680
+ "publishedVersion": 2,
1681
+ "version": 3,
1682
+ "updatedAt": "2014-08-04T08:45:29.894Z",
1683
+ "updatedBy": {
1684
+ "sys": {
1685
+ "type": "Link",
1686
+ "linkType": "User",
1687
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1688
+ }
1689
+ }
1690
+ }
1691
+ }
1692
+ http_version:
1693
+ recorded_at: Mon, 04 Aug 2014 08:52:48 GMT
1694
+ - request:
1695
+ method: get
1696
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh/entries
1697
+ body:
1698
+ encoding: US-ASCII
1699
+ string: ''
1700
+ headers:
1701
+ User-Agent:
1702
+ - RubyContenfulManagementGem/0.0.1
1703
+ Authorization:
1704
+ - Bearer <ACCESS_TOKEN>
1705
+ Content-Type:
1706
+ - application/vnd.contentful.management.v1+json
1707
+ Content-Length:
1708
+ - '0'
1709
+ Host:
1710
+ - api.contentful.com
1711
+ response:
1712
+ status:
1713
+ code: 200
1714
+ message: OK
1715
+ headers:
1716
+ Server:
1717
+ - nginx
1718
+ Date:
1719
+ - Mon, 04 Aug 2014 08:52:49 GMT
1720
+ Content-Type:
1721
+ - application/vnd.contentful.management.v1+json
1722
+ Content-Length:
1723
+ - '12920'
1724
+ Connection:
1725
+ - keep-alive
1726
+ X-Powered-By:
1727
+ - Express
1728
+ Cf-Space-Id:
1729
+ - yr5m0jky5hsh
1730
+ Etag:
1731
+ - '"3beec92f8c230a88658aeb8952090d7c"'
1732
+ Access-Control-Allow-Origin:
1733
+ - "*"
1734
+ Access-Control-Allow-Headers:
1735
+ - 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
1736
+ Access-Control-Allow-Methods:
1737
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
1738
+ "^access-Control-Expose-Headers":
1739
+ - Etag
1740
+ Access-Control-Max-Age:
1741
+ - '1728000'
1742
+ body:
1743
+ encoding: UTF-8
1744
+ string: |
1745
+ {
1746
+ "sys": {
1747
+ "type": "Array"
1748
+ },
1749
+ "total": 8,
1750
+ "skip": 0,
1751
+ "limit": 100,
1752
+ "items": [
1753
+ {
1754
+ "sys": {
1755
+ "id": "4Rouux8SoUCKwkyCq2I0E0",
1756
+ "type": "Entry",
1757
+ "createdAt": "2014-07-30T12:37:49.078Z",
1758
+ "createdBy": {
1759
+ "sys": {
1760
+ "type": "Link",
1761
+ "linkType": "User",
1762
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1763
+ }
1764
+ },
1765
+ "space": {
1766
+ "sys": {
1767
+ "type": "Link",
1768
+ "linkType": "Space",
1769
+ "id": "yr5m0jky5hsh"
1770
+ }
1771
+ },
1772
+ "contentType": {
1773
+ "sys": {
1774
+ "type": "Link",
1775
+ "linkType": "ContentType",
1776
+ "id": "5DSpuKrl04eMAGQoQckeIq"
1777
+ }
1778
+ },
1779
+ "firstPublishedAt": "2014-07-30T12:39:05.868Z",
1780
+ "publishedCounter": 6,
1781
+ "archivedAt": "2014-07-30T12:58:09.099Z",
1782
+ "archivedBy": {
1783
+ "sys": {
1784
+ "type": "Link",
1785
+ "linkType": "User",
1786
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1787
+ }
1788
+ },
1789
+ "archivedVersion": 41,
1790
+ "version": 42,
1791
+ "updatedAt": "2014-07-30T12:58:09.101Z",
1792
+ "updatedBy": {
1793
+ "sys": {
1794
+ "type": "Link",
1795
+ "linkType": "User",
1796
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1797
+ }
1798
+ }
1799
+ },
1800
+ "fields": {
1801
+ "name": {
1802
+ "en-US": "Tom Handy"
1803
+ },
1804
+ "age": {
1805
+ "en-US": 39
1806
+ },
1807
+ "city": {
1808
+ "en-US": {
1809
+ "lat": 52.1464575,
1810
+ "lon": 21.05050319999998
1811
+ }
1812
+ },
1813
+ "assets": {
1814
+ "en-US": [
1815
+ {
1816
+ "sys": {
1817
+ "type": "Link",
1818
+ "linkType": "Asset",
1819
+ "id": "4k8mYw2MzS6kYG0eGq0Yi0"
1820
+ }
1821
+ }
1822
+ ]
1823
+ }
1824
+ }
1825
+ },
1826
+ {
1827
+ "fields": {
1828
+ "name": {
1829
+ "en-US": "Tom Handy",
1830
+ "pl": "testName"
1831
+ },
1832
+ "age": {
1833
+ "en-US": 20,
1834
+ "pl": null
1835
+ },
1836
+ "bool": {
1837
+ "en-US": false,
1838
+ "pl": null
1839
+ },
1840
+ "birthday": {
1841
+ "en-US": "2000-07-12T11:11:00+02:00",
1842
+ "pl": null
1843
+ },
1844
+ "city": {
1845
+ "en-US": {
1846
+ "lat": 22.44,
1847
+ "lon": 33.33
1848
+ },
1849
+ "pl": null
1850
+ },
1851
+ "asset": {
1852
+ "en-US": {
1853
+ "sys": {
1854
+ "type": "Link",
1855
+ "linkType": "Asset",
1856
+ "id": "codequest_id_test_custom_id"
1857
+ }
1858
+ },
1859
+ "pl": null
1860
+ },
1861
+ "assets": {
1862
+ "en-US": [
1863
+ {
1864
+ "sys": {
1865
+ "type": "Link",
1866
+ "linkType": "Asset",
1867
+ "id": "codequest_id_test_custom_id"
1868
+ }
1869
+ },
1870
+ {
1871
+ "sys": {
1872
+ "type": "Link",
1873
+ "linkType": "Asset",
1874
+ "id": "codequest_id_test_custom_id"
1875
+ }
1876
+ },
1877
+ {
1878
+ "sys": {
1879
+ "type": "Link",
1880
+ "linkType": "Asset",
1881
+ "id": "codequest_id_test_custom_id"
1882
+ }
1883
+ }
1884
+ ],
1885
+ "pl": null
1886
+ },
1887
+ "entry": {
1888
+ "en-US": {
1889
+ "sys": {
1890
+ "type": "Link",
1891
+ "linkType": "Entry",
1892
+ "id": "1d1QDYzeiyWmgqQYysae8u"
1893
+ }
1894
+ },
1895
+ "pl": null
1896
+ },
1897
+ "entries": {
1898
+ "en-US": [
1899
+ {
1900
+ "sys": {
1901
+ "type": "Link",
1902
+ "linkType": "Entry",
1903
+ "id": "1d1QDYzeiyWmgqQYysae8u"
1904
+ }
1905
+ },
1906
+ {
1907
+ "sys": {
1908
+ "type": "Link",
1909
+ "linkType": "Entry",
1910
+ "id": "1d1QDYzeiyWmgqQYysae8u"
1911
+ }
1912
+ },
1913
+ {
1914
+ "sys": {
1915
+ "type": "Link",
1916
+ "linkType": "Entry",
1917
+ "id": "1d1QDYzeiyWmgqQYysae8u"
1918
+ }
1919
+ }
1920
+ ],
1921
+ "pl": null
1922
+ },
1923
+ "symbols": {
1924
+ "en-US": [
1925
+ "PL",
1926
+ "USD",
1927
+ "XX"
1928
+ ],
1929
+ "pl": null
1930
+ }
1931
+ },
1932
+ "sys": {
1933
+ "id": "4o6ghKSmSko4i828YCYaEo",
1934
+ "type": "Entry",
1935
+ "createdAt": "2014-07-30T13:44:39.414Z",
1936
+ "createdBy": {
1937
+ "sys": {
1938
+ "type": "Link",
1939
+ "linkType": "User",
1940
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1941
+ }
1942
+ },
1943
+ "space": {
1944
+ "sys": {
1945
+ "type": "Link",
1946
+ "linkType": "Space",
1947
+ "id": "yr5m0jky5hsh"
1948
+ }
1949
+ },
1950
+ "contentType": {
1951
+ "sys": {
1952
+ "type": "Link",
1953
+ "linkType": "ContentType",
1954
+ "id": "5DSpuKrl04eMAGQoQckeIq"
1955
+ }
1956
+ },
1957
+ "firstPublishedAt": "2014-07-30T13:44:42.304Z",
1958
+ "publishedCounter": 2,
1959
+ "publishedAt": "2014-07-30T13:53:55.981Z",
1960
+ "publishedBy": {
1961
+ "sys": {
1962
+ "type": "Link",
1963
+ "linkType": "User",
1964
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1965
+ }
1966
+ },
1967
+ "publishedVersion": 3,
1968
+ "version": 6,
1969
+ "updatedAt": "2014-07-30T14:11:08.611Z",
1970
+ "updatedBy": {
1971
+ "sys": {
1972
+ "type": "Link",
1973
+ "linkType": "User",
1974
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
1975
+ }
1976
+ }
1977
+ }
1978
+ },
1979
+ {
1980
+ "fields": {
1981
+ "name": {
1982
+ "en-US": "Tom Handy"
1983
+ },
1984
+ "age": {
1985
+ "en-US": 30
1986
+ },
1987
+ "city": {
1988
+ "en-US": {
1989
+ "lat": 22.44,
1990
+ "lon": 33.33
1991
+ }
1992
+ }
1993
+ },
1994
+ "sys": {
1995
+ "id": "1d1QDYzeiyWmgqQYysae8u",
1996
+ "type": "Entry",
1997
+ "createdAt": "2014-07-30T13:07:10.630Z",
1998
+ "createdBy": {
1999
+ "sys": {
2000
+ "type": "Link",
2001
+ "linkType": "User",
2002
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2003
+ }
2004
+ },
2005
+ "space": {
2006
+ "sys": {
2007
+ "type": "Link",
2008
+ "linkType": "Space",
2009
+ "id": "yr5m0jky5hsh"
2010
+ }
2011
+ },
2012
+ "contentType": {
2013
+ "sys": {
2014
+ "type": "Link",
2015
+ "linkType": "ContentType",
2016
+ "id": "5DSpuKrl04eMAGQoQckeIq"
2017
+ }
2018
+ },
2019
+ "firstPublishedAt": "2014-07-30T13:34:58.934Z",
2020
+ "publishedCounter": 1,
2021
+ "publishedAt": "2014-07-30T13:34:58.934Z",
2022
+ "publishedBy": {
2023
+ "sys": {
2024
+ "type": "Link",
2025
+ "linkType": "User",
2026
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2027
+ }
2028
+ },
2029
+ "publishedVersion": 1,
2030
+ "version": 2,
2031
+ "updatedAt": "2014-07-30T13:34:58.938Z",
2032
+ "updatedBy": {
2033
+ "sys": {
2034
+ "type": "Link",
2035
+ "linkType": "User",
2036
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2037
+ }
2038
+ }
2039
+ }
2040
+ },
2041
+ {
2042
+ "fields": {
2043
+ "name": {
2044
+ "en-US": "OneAsset"
2045
+ },
2046
+ "asset": {
2047
+ "en-US": {
2048
+ "sys": {
2049
+ "type": "Link",
2050
+ "linkType": "Asset",
2051
+ "id": "codequest_id_test_custom"
2052
+ }
2053
+ }
2054
+ }
2055
+ },
2056
+ "sys": {
2057
+ "id": "32fJQBBr0I0oa4m4wyIA4E",
2058
+ "type": "Entry",
2059
+ "createdAt": "2014-07-31T14:31:24.707Z",
2060
+ "createdBy": {
2061
+ "sys": {
2062
+ "type": "Link",
2063
+ "linkType": "User",
2064
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2065
+ }
2066
+ },
2067
+ "space": {
2068
+ "sys": {
2069
+ "type": "Link",
2070
+ "linkType": "Space",
2071
+ "id": "yr5m0jky5hsh"
2072
+ }
2073
+ },
2074
+ "contentType": {
2075
+ "sys": {
2076
+ "type": "Link",
2077
+ "linkType": "ContentType",
2078
+ "id": "5DSpuKrl04eMAGQoQckeIq"
2079
+ }
2080
+ },
2081
+ "version": 1,
2082
+ "updatedAt": "2014-07-31T14:31:24.711Z",
2083
+ "updatedBy": {
2084
+ "sys": {
2085
+ "type": "Link",
2086
+ "linkType": "User",
2087
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2088
+ }
2089
+ }
2090
+ }
2091
+ },
2092
+ {
2093
+ "fields": {
2094
+ "name": {
2095
+ "en-US": "OneAsset"
2096
+ },
2097
+ "asset": {
2098
+ "en-US": {
2099
+ "sys": {
2100
+ "type": "Link",
2101
+ "linkType": "Asset",
2102
+ "id": "codequest_id_test_custom"
2103
+ }
2104
+ }
2105
+ }
2106
+ },
2107
+ "sys": {
2108
+ "id": "3ByibvkoV2UGk6M6CyOam4",
2109
+ "type": "Entry",
2110
+ "createdAt": "2014-07-31T14:34:34.325Z",
2111
+ "createdBy": {
2112
+ "sys": {
2113
+ "type": "Link",
2114
+ "linkType": "User",
2115
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2116
+ }
2117
+ },
2118
+ "space": {
2119
+ "sys": {
2120
+ "type": "Link",
2121
+ "linkType": "Space",
2122
+ "id": "yr5m0jky5hsh"
2123
+ }
2124
+ },
2125
+ "contentType": {
2126
+ "sys": {
2127
+ "type": "Link",
2128
+ "linkType": "ContentType",
2129
+ "id": "5DSpuKrl04eMAGQoQckeIq"
2130
+ }
2131
+ },
2132
+ "version": 1,
2133
+ "updatedAt": "2014-07-31T14:34:34.328Z",
2134
+ "updatedBy": {
2135
+ "sys": {
2136
+ "type": "Link",
2137
+ "linkType": "User",
2138
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2139
+ }
2140
+ }
2141
+ }
2142
+ },
2143
+ {
2144
+ "sys": {
2145
+ "id": "4Kx7CC6QWQWeoCAcSYqQ8g",
2146
+ "type": "Entry",
2147
+ "createdAt": "2014-08-01T12:22:55.911Z",
2148
+ "createdBy": {
2149
+ "sys": {
2150
+ "type": "Link",
2151
+ "linkType": "User",
2152
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2153
+ }
2154
+ },
2155
+ "space": {
2156
+ "sys": {
2157
+ "type": "Link",
2158
+ "linkType": "Space",
2159
+ "id": "yr5m0jky5hsh"
2160
+ }
2161
+ },
2162
+ "contentType": {
2163
+ "sys": {
2164
+ "type": "Link",
2165
+ "linkType": "ContentType",
2166
+ "id": "5DSpuKrl04eMAGQoQckeIq"
2167
+ }
2168
+ },
2169
+ "firstPublishedAt": "2014-08-01T12:22:58.135Z",
2170
+ "publishedCounter": 1,
2171
+ "publishedAt": "2014-08-01T12:22:58.135Z",
2172
+ "publishedBy": {
2173
+ "sys": {
2174
+ "type": "Link",
2175
+ "linkType": "User",
2176
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2177
+ }
2178
+ },
2179
+ "publishedVersion": 1,
2180
+ "version": 2,
2181
+ "updatedAt": "2014-08-01T12:22:58.139Z",
2182
+ "updatedBy": {
2183
+ "sys": {
2184
+ "type": "Link",
2185
+ "linkType": "User",
2186
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2187
+ }
2188
+ }
2189
+ }
2190
+ },
2191
+ {
2192
+ "sys": {
2193
+ "id": "5HA1dcXVy8q4amq8III4Wq",
2194
+ "type": "Entry",
2195
+ "createdAt": "2014-08-04T07:18:12.072Z",
2196
+ "createdBy": {
2197
+ "sys": {
2198
+ "type": "Link",
2199
+ "linkType": "User",
2200
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2201
+ }
2202
+ },
2203
+ "space": {
2204
+ "sys": {
2205
+ "type": "Link",
2206
+ "linkType": "Space",
2207
+ "id": "yr5m0jky5hsh"
2208
+ }
2209
+ },
2210
+ "contentType": {
2211
+ "sys": {
2212
+ "type": "Link",
2213
+ "linkType": "ContentType",
2214
+ "id": "6xzrdCr33OMAeIYUgs6UKi"
2215
+ }
2216
+ },
2217
+ "version": 1,
2218
+ "updatedAt": "2014-08-04T07:18:12.076Z",
2219
+ "updatedBy": {
2220
+ "sys": {
2221
+ "type": "Link",
2222
+ "linkType": "User",
2223
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2224
+ }
2225
+ }
2226
+ }
2227
+ },
2228
+ {
2229
+ "fields": {
2230
+ "carMark": {
2231
+ "en-US": "Merc",
2232
+ "pl": "Mercedes"
2233
+ },
2234
+ "carCityPlate": {
2235
+ "en-US": "en",
2236
+ "pl": "bia"
2237
+ },
2238
+ "carCapacity": {
2239
+ "en-US": 2.5,
2240
+ "pl": 2.5
2241
+ }
2242
+ },
2243
+ "sys": {
2244
+ "id": "664EPJ6zHqAeMO6O0mGggU",
2245
+ "type": "Entry",
2246
+ "createdAt": "2014-08-01T11:25:33.437Z",
2247
+ "createdBy": {
2248
+ "sys": {
2249
+ "type": "Link",
2250
+ "linkType": "User",
2251
+ "id": "0fn5fOWn4WsKFyYla1gI5h"
2252
+ }
2253
+ },
2254
+ "space": {
2255
+ "sys": {
2256
+ "type": "Link",
2257
+ "linkType": "Space",
2258
+ "id": "yr5m0jky5hsh"
2259
+ }
2260
+ },
2261
+ "contentType": {
2262
+ "sys": {
2263
+ "type": "Link",
2264
+ "linkType": "ContentType",
2265
+ "id": "4esHTHIVgc0uWkiwGwOsa6"
2266
+ }
2267
+ },
2268
+ "firstPublishedAt": "2014-08-04T08:45:29.889Z",
2269
+ "publishedCounter": 1,
2270
+ "publishedAt": "2014-08-04T08:45:29.889Z",
2271
+ "publishedBy": {
2272
+ "sys": {
2273
+ "type": "Link",
2274
+ "linkType": "User",
2275
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2276
+ }
2277
+ },
2278
+ "publishedVersion": 2,
2279
+ "version": 3,
2280
+ "updatedAt": "2014-08-04T08:45:29.894Z",
2281
+ "updatedBy": {
2282
+ "sys": {
2283
+ "type": "Link",
2284
+ "linkType": "User",
2285
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2286
+ }
2287
+ }
2288
+ }
2289
+ }
2290
+ ]
2291
+ }
2292
+ http_version:
2293
+ recorded_at: Mon, 04 Aug 2014 08:52:49 GMT
2294
+ - request:
2295
+ method: get
2296
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh/entries/664EPJ6zHqAeMO6O0mGggU
2297
+ body:
2298
+ encoding: US-ASCII
2299
+ string: ''
2300
+ headers:
2301
+ User-Agent:
2302
+ - RubyContenfulManagementGem/0.0.1
2303
+ Authorization:
2304
+ - Bearer <ACCESS_TOKEN>
2305
+ Content-Type:
2306
+ - application/vnd.contentful.management.v1+json
2307
+ Content-Length:
2308
+ - '0'
2309
+ Host:
2310
+ - api.contentful.com
2311
+ response:
2312
+ status:
2313
+ code: 200
2314
+ message: OK
2315
+ headers:
2316
+ Server:
2317
+ - nginx
2318
+ Date:
2319
+ - Mon, 04 Aug 2014 08:52:50 GMT
2320
+ Content-Type:
2321
+ - application/vnd.contentful.management.v1+json
2322
+ Content-Length:
2323
+ - '1254'
2324
+ Connection:
2325
+ - keep-alive
2326
+ X-Powered-By:
2327
+ - Express
2328
+ Cf-Space-Id:
2329
+ - yr5m0jky5hsh
2330
+ Etag:
2331
+ - '"da2d1983e2de8c3e908bc94a34dd6d79"'
2332
+ Access-Control-Allow-Origin:
2333
+ - "*"
2334
+ Access-Control-Allow-Headers:
2335
+ - 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
2336
+ Access-Control-Allow-Methods:
2337
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
2338
+ "^access-Control-Expose-Headers":
2339
+ - Etag
2340
+ Access-Control-Max-Age:
2341
+ - '1728000'
2342
+ body:
2343
+ encoding: UTF-8
2344
+ string: |
2345
+ {
2346
+ "fields": {
2347
+ "carMark": {
2348
+ "en-US": "Merc",
2349
+ "pl": "Mercedes"
2350
+ },
2351
+ "carCityPlate": {
2352
+ "en-US": "en",
2353
+ "pl": "bia"
2354
+ },
2355
+ "carCapacity": {
2356
+ "en-US": 2.5,
2357
+ "pl": 2.5
2358
+ }
2359
+ },
2360
+ "sys": {
2361
+ "id": "664EPJ6zHqAeMO6O0mGggU",
2362
+ "type": "Entry",
2363
+ "createdAt": "2014-08-01T11:25:33.437Z",
2364
+ "createdBy": {
2365
+ "sys": {
2366
+ "type": "Link",
2367
+ "linkType": "User",
2368
+ "id": "0fn5fOWn4WsKFyYla1gI5h"
2369
+ }
2370
+ },
2371
+ "space": {
2372
+ "sys": {
2373
+ "type": "Link",
2374
+ "linkType": "Space",
2375
+ "id": "yr5m0jky5hsh"
2376
+ }
2377
+ },
2378
+ "contentType": {
2379
+ "sys": {
2380
+ "type": "Link",
2381
+ "linkType": "ContentType",
2382
+ "id": "4esHTHIVgc0uWkiwGwOsa6"
2383
+ }
2384
+ },
2385
+ "firstPublishedAt": "2014-08-04T08:45:29.889Z",
2386
+ "publishedCounter": 1,
2387
+ "publishedAt": "2014-08-04T08:45:29.889Z",
2388
+ "publishedBy": {
2389
+ "sys": {
2390
+ "type": "Link",
2391
+ "linkType": "User",
2392
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2393
+ }
2394
+ },
2395
+ "publishedVersion": 2,
2396
+ "version": 3,
2397
+ "updatedAt": "2014-08-04T08:45:29.894Z",
2398
+ "updatedBy": {
2399
+ "sys": {
2400
+ "type": "Link",
2401
+ "linkType": "User",
2402
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2403
+ }
2404
+ }
2405
+ }
2406
+ }
2407
+ http_version:
2408
+ recorded_at: Mon, 04 Aug 2014 08:52:50 GMT
2409
+ - request:
2410
+ method: get
2411
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh/content_types
2412
+ body:
2413
+ encoding: US-ASCII
2414
+ string: ''
2415
+ headers:
2416
+ User-Agent:
2417
+ - RubyContenfulManagementGem/0.0.1
2418
+ Authorization:
2419
+ - Bearer <ACCESS_TOKEN>
2420
+ Content-Type:
2421
+ - application/vnd.contentful.management.v1+json
2422
+ Content-Length:
2423
+ - '0'
2424
+ Host:
2425
+ - api.contentful.com
2426
+ response:
2427
+ status:
2428
+ code: 200
2429
+ message: OK
2430
+ headers:
2431
+ Server:
2432
+ - nginx
2433
+ Date:
2434
+ - Mon, 04 Aug 2014 08:52:51 GMT
2435
+ Content-Type:
2436
+ - application/vnd.contentful.management.v1+json
2437
+ Content-Length:
2438
+ - '9574'
2439
+ Connection:
2440
+ - keep-alive
2441
+ X-Powered-By:
2442
+ - Express
2443
+ Cf-Space-Id:
2444
+ - yr5m0jky5hsh
2445
+ Etag:
2446
+ - '"abf27b38322e393a027223ddb527fdf5"'
2447
+ Access-Control-Allow-Origin:
2448
+ - "*"
2449
+ Access-Control-Allow-Headers:
2450
+ - 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
2451
+ Access-Control-Allow-Methods:
2452
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
2453
+ "^access-Control-Expose-Headers":
2454
+ - Etag
2455
+ Access-Control-Max-Age:
2456
+ - '1728000'
2457
+ body:
2458
+ encoding: UTF-8
2459
+ string: |
2460
+ {
2461
+ "sys": {
2462
+ "type": "Array"
2463
+ },
2464
+ "total": 4,
2465
+ "skip": 0,
2466
+ "limit": 100,
2467
+ "items": [
2468
+ {
2469
+ "name": "Author",
2470
+ "description": "Author content",
2471
+ "fields": [
2472
+ {
2473
+ "id": "name",
2474
+ "name": "name",
2475
+ "type": "Text",
2476
+ "localized": true,
2477
+ "uiid": "3jp09h4ba4g"
2478
+ },
2479
+ {
2480
+ "id": "age",
2481
+ "name": "age",
2482
+ "type": "Integer",
2483
+ "localized": true,
2484
+ "uiid": "43my1e8ybr4"
2485
+ },
2486
+ {
2487
+ "id": "city",
2488
+ "name": "city",
2489
+ "type": "Location",
2490
+ "uiid": "45uoowshekg"
2491
+ },
2492
+ {
2493
+ "id": "assets",
2494
+ "name": "assets",
2495
+ "type": "Array",
2496
+ "items": {
2497
+ "type": "Link",
2498
+ "linkType": "Asset"
2499
+ },
2500
+ "localized": true,
2501
+ "uiid": "4p8d3di8b28"
2502
+ },
2503
+ {
2504
+ "id": "entries",
2505
+ "name": "entries",
2506
+ "type": "Array",
2507
+ "items": {
2508
+ "type": "Link",
2509
+ "linkType": "Entry"
2510
+ },
2511
+ "uiid": "4t2r2mpmwow"
2512
+ },
2513
+ {
2514
+ "id": "entry",
2515
+ "name": "entry",
2516
+ "type": "Link",
2517
+ "linkType": "Entry",
2518
+ "uiid": "2u2x6csxtkw"
2519
+ },
2520
+ {
2521
+ "id": "asset",
2522
+ "name": "asset",
2523
+ "type": "Link",
2524
+ "linkType": "Asset",
2525
+ "uiid": "3pktxccvjeo"
2526
+ },
2527
+ {
2528
+ "id": "bool",
2529
+ "name": "bool",
2530
+ "type": "Boolean",
2531
+ "localized": true,
2532
+ "uiid": "4p882yc9728"
2533
+ },
2534
+ {
2535
+ "id": "symbols",
2536
+ "name": "symbols",
2537
+ "type": "Array",
2538
+ "items": {
2539
+ "type": "Symbol"
2540
+ },
2541
+ "uiid": "2mcqj4tdczk"
2542
+ },
2543
+ {
2544
+ "id": "birthday",
2545
+ "name": "birthday",
2546
+ "type": "Date",
2547
+ "uiid": "3h1dkdm8we8"
2548
+ },
2549
+ {
2550
+ "id": "symbol",
2551
+ "name": "Symbol",
2552
+ "type": "Symbol",
2553
+ "required": true,
2554
+ "localized": true,
2555
+ "uiid": "30rwyn42a68"
2556
+ },
2557
+ {
2558
+ "id": "eye_color",
2559
+ "name": "Eyes color",
2560
+ "type": "Text",
2561
+ "uiid": "46h9q3btwcg"
2562
+ }
2563
+ ],
2564
+ "sys": {
2565
+ "id": "5DSpuKrl04eMAGQoQckeIq",
2566
+ "type": "ContentType",
2567
+ "createdAt": "2014-07-30T12:35:01.110Z",
2568
+ "createdBy": {
2569
+ "sys": {
2570
+ "type": "Link",
2571
+ "linkType": "User",
2572
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2573
+ }
2574
+ },
2575
+ "space": {
2576
+ "sys": {
2577
+ "type": "Link",
2578
+ "linkType": "Space",
2579
+ "id": "yr5m0jky5hsh"
2580
+ }
2581
+ },
2582
+ "firstPublishedAt": "2014-07-30T12:37:42.035Z",
2583
+ "publishedCounter": 9,
2584
+ "publishedAt": "2014-07-31T10:21:36.870Z",
2585
+ "publishedBy": {
2586
+ "sys": {
2587
+ "type": "Link",
2588
+ "linkType": "User",
2589
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2590
+ }
2591
+ },
2592
+ "publishedVersion": 206,
2593
+ "version": 213,
2594
+ "updatedAt": "2014-07-31T13:23:46.624Z",
2595
+ "updatedBy": {
2596
+ "sys": {
2597
+ "type": "Link",
2598
+ "linkType": "User",
2599
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2600
+ }
2601
+ }
2602
+ }
2603
+ },
2604
+ {
2605
+ "fields": [
2606
+ {
2607
+ "name": "post_title",
2608
+ "id": "post_title",
2609
+ "type": "Text",
2610
+ "uiid": "3y811ua4gsg",
2611
+ "localized": true
2612
+ },
2613
+ {
2614
+ "name": "post_body",
2615
+ "id": "post_body",
2616
+ "type": "Text",
2617
+ "uiid": "2wcy8gvpn28",
2618
+ "localized": true
2619
+ },
2620
+ {
2621
+ "name": "post_code",
2622
+ "id": "post_code",
2623
+ "type": "Symbol",
2624
+ "uiid": "42ip6svqlts",
2625
+ "localized": true
2626
+ },
2627
+ {
2628
+ "name": "post_created",
2629
+ "id": "post_created",
2630
+ "type": "Date",
2631
+ "uiid": "3qb1v37yebk"
2632
+ }
2633
+ ],
2634
+ "name": "Post",
2635
+ "sys": {
2636
+ "id": "4EnwylPOikyMGUIy8uQgQY",
2637
+ "type": "ContentType",
2638
+ "createdAt": "2014-07-31T08:46:36.678Z",
2639
+ "createdBy": {
2640
+ "sys": {
2641
+ "type": "Link",
2642
+ "linkType": "User",
2643
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2644
+ }
2645
+ },
2646
+ "space": {
2647
+ "sys": {
2648
+ "type": "Link",
2649
+ "linkType": "Space",
2650
+ "id": "yr5m0jky5hsh"
2651
+ }
2652
+ },
2653
+ "firstPublishedAt": "2014-07-31T08:51:14.655Z",
2654
+ "publishedCounter": 6,
2655
+ "publishedAt": "2014-08-01T09:23:05.507Z",
2656
+ "publishedBy": {
2657
+ "sys": {
2658
+ "type": "Link",
2659
+ "linkType": "User",
2660
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2661
+ }
2662
+ },
2663
+ "publishedVersion": 214,
2664
+ "version": 215,
2665
+ "updatedAt": "2014-08-01T09:23:05.513Z",
2666
+ "updatedBy": {
2667
+ "sys": {
2668
+ "type": "Link",
2669
+ "linkType": "User",
2670
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2671
+ }
2672
+ }
2673
+ },
2674
+ "description": "Content with Post fields",
2675
+ "displayField": "postTitl"
2676
+ },
2677
+ {
2678
+ "fields": [
2679
+ {
2680
+ "name": "car_mark",
2681
+ "id": "carMark",
2682
+ "type": "Text",
2683
+ "uiid": "2tak96o94ow",
2684
+ "localized": true
2685
+ },
2686
+ {
2687
+ "name": "car_city_plate",
2688
+ "id": "carCityPlate",
2689
+ "type": "Symbol",
2690
+ "uiid": "4gqwj4k6k8w",
2691
+ "localized": true
2692
+ },
2693
+ {
2694
+ "name": "car_capacity",
2695
+ "id": "carCapacity",
2696
+ "type": "Number",
2697
+ "uiid": "2ms8n1w14ao",
2698
+ "localized": true
2699
+ },
2700
+ {
2701
+ "name": "car_photo",
2702
+ "id": "carPhoto",
2703
+ "type": "Link",
2704
+ "uiid": "33wtzyo9e68",
2705
+ "linkType": "Asset",
2706
+ "localized": true
2707
+ }
2708
+ ],
2709
+ "name": "Car",
2710
+ "sys": {
2711
+ "id": "4esHTHIVgc0uWkiwGwOsa6",
2712
+ "type": "ContentType",
2713
+ "createdAt": "2014-08-01T10:30:19.224Z",
2714
+ "createdBy": {
2715
+ "sys": {
2716
+ "type": "Link",
2717
+ "linkType": "User",
2718
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2719
+ }
2720
+ },
2721
+ "space": {
2722
+ "sys": {
2723
+ "type": "Link",
2724
+ "linkType": "Space",
2725
+ "id": "yr5m0jky5hsh"
2726
+ }
2727
+ },
2728
+ "firstPublishedAt": "2014-08-01T10:32:26.083Z",
2729
+ "publishedCounter": 2,
2730
+ "publishedAt": "2014-08-01T11:14:19.463Z",
2731
+ "publishedBy": {
2732
+ "sys": {
2733
+ "type": "Link",
2734
+ "linkType": "User",
2735
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2736
+ }
2737
+ },
2738
+ "publishedVersion": 85,
2739
+ "version": 86,
2740
+ "updatedAt": "2014-08-01T11:14:19.470Z",
2741
+ "updatedBy": {
2742
+ "sys": {
2743
+ "type": "Link",
2744
+ "linkType": "User",
2745
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2746
+ }
2747
+ }
2748
+ },
2749
+ "description": "Car content type",
2750
+ "displayField": "carMark"
2751
+ },
2752
+ {
2753
+ "name": "Blog",
2754
+ "description": "Blog's content type",
2755
+ "fields": [
2756
+ {
2757
+ "id": "blog_name",
2758
+ "name": "blog_name",
2759
+ "type": "Text",
2760
+ "uiid": "4j6nspw3bb4",
2761
+ "localized": true
2762
+ },
2763
+ {
2764
+ "id": "blog_entries",
2765
+ "name": "blog_entries",
2766
+ "type": "Array",
2767
+ "items": {
2768
+ "type": "Link",
2769
+ "linkType": "Entry"
2770
+ },
2771
+ "localized": true,
2772
+ "uiid": "4fb61794mio"
2773
+ },
2774
+ {
2775
+ "name": "entries",
2776
+ "id": "entries",
2777
+ "type": "Array",
2778
+ "uiid": "4usq6g722gw",
2779
+ "items": {
2780
+ "type": "Link",
2781
+ "linkType": "Entry"
2782
+ },
2783
+ "localized": true
2784
+ },
2785
+ {
2786
+ "name": "assets",
2787
+ "id": "assets",
2788
+ "type": "Array",
2789
+ "uiid": "4gdlrxqamtc",
2790
+ "items": {
2791
+ "type": "Link",
2792
+ "linkType": "Asset"
2793
+ },
2794
+ "localized": true
2795
+ },
2796
+ {
2797
+ "name": "entry",
2798
+ "id": "entry",
2799
+ "type": "Link",
2800
+ "uiid": "2x4umbxk4cg",
2801
+ "linkType": "Entry",
2802
+ "localized": true
2803
+ },
2804
+ {
2805
+ "name": "blog_entry",
2806
+ "id": "blog_entry",
2807
+ "type": "Link",
2808
+ "uiid": "3vc40nae0hs",
2809
+ "linkType": "Entry",
2810
+ "localized": true
2811
+ }
2812
+ ],
2813
+ "sys": {
2814
+ "id": "6xzrdCr33OMAeIYUgs6UKi",
2815
+ "type": "ContentType",
2816
+ "createdAt": "2014-07-31T10:33:50.934Z",
2817
+ "createdBy": {
2818
+ "sys": {
2819
+ "type": "Link",
2820
+ "linkType": "User",
2821
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2822
+ }
2823
+ },
2824
+ "space": {
2825
+ "sys": {
2826
+ "type": "Link",
2827
+ "linkType": "Space",
2828
+ "id": "yr5m0jky5hsh"
2829
+ }
2830
+ },
2831
+ "firstPublishedAt": "2014-07-31T10:34:14.463Z",
2832
+ "publishedCounter": 7,
2833
+ "publishedAt": "2014-08-04T08:19:16.831Z",
2834
+ "publishedBy": {
2835
+ "sys": {
2836
+ "type": "Link",
2837
+ "linkType": "User",
2838
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2839
+ }
2840
+ },
2841
+ "publishedVersion": 108,
2842
+ "version": 109,
2843
+ "updatedAt": "2014-08-04T08:19:16.841Z",
2844
+ "updatedBy": {
2845
+ "sys": {
2846
+ "type": "Link",
2847
+ "linkType": "User",
2848
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2849
+ }
2850
+ }
2851
+ }
2852
+ }
2853
+ ]
2854
+ }
2855
+ http_version:
2856
+ recorded_at: Mon, 04 Aug 2014 08:52:51 GMT
2857
+ - request:
2858
+ method: get
2859
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh/content_types/6xzrdCr33OMAeIYUgs6UKi
2860
+ body:
2861
+ encoding: US-ASCII
2862
+ string: ''
2863
+ headers:
2864
+ User-Agent:
2865
+ - RubyContenfulManagementGem/0.0.1
2866
+ Authorization:
2867
+ - Bearer <ACCESS_TOKEN>
2868
+ Content-Type:
2869
+ - application/vnd.contentful.management.v1+json
2870
+ Content-Length:
2871
+ - '0'
2872
+ Host:
2873
+ - api.contentful.com
2874
+ response:
2875
+ status:
2876
+ code: 200
2877
+ message: OK
2878
+ headers:
2879
+ Server:
2880
+ - nginx
2881
+ Date:
2882
+ - Mon, 04 Aug 2014 08:52:52 GMT
2883
+ Content-Type:
2884
+ - application/vnd.contentful.management.v1+json
2885
+ Content-Length:
2886
+ - '2092'
2887
+ Connection:
2888
+ - keep-alive
2889
+ X-Powered-By:
2890
+ - Express
2891
+ Cf-Space-Id:
2892
+ - yr5m0jky5hsh
2893
+ Etag:
2894
+ - '"05935d37de9957009936048567cb6e9a"'
2895
+ Access-Control-Allow-Origin:
2896
+ - "*"
2897
+ Access-Control-Allow-Headers:
2898
+ - 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
2899
+ Access-Control-Allow-Methods:
2900
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
2901
+ "^access-Control-Expose-Headers":
2902
+ - Etag
2903
+ Access-Control-Max-Age:
2904
+ - '1728000'
2905
+ body:
2906
+ encoding: UTF-8
2907
+ string: |
2908
+ {
2909
+ "name": "Blog",
2910
+ "description": "Blog's content type",
2911
+ "fields": [
2912
+ {
2913
+ "id": "blog_name",
2914
+ "name": "blog_name",
2915
+ "type": "Text",
2916
+ "uiid": "4j6nspw3bb4",
2917
+ "localized": true
2918
+ },
2919
+ {
2920
+ "id": "blog_entries",
2921
+ "name": "blog_entries",
2922
+ "type": "Array",
2923
+ "items": {
2924
+ "type": "Link",
2925
+ "linkType": "Entry"
2926
+ },
2927
+ "localized": true,
2928
+ "uiid": "4fb61794mio"
2929
+ },
2930
+ {
2931
+ "name": "entries",
2932
+ "id": "entries",
2933
+ "type": "Array",
2934
+ "uiid": "4usq6g722gw",
2935
+ "items": {
2936
+ "type": "Link",
2937
+ "linkType": "Entry"
2938
+ },
2939
+ "localized": true
2940
+ },
2941
+ {
2942
+ "name": "assets",
2943
+ "id": "assets",
2944
+ "type": "Array",
2945
+ "uiid": "4gdlrxqamtc",
2946
+ "items": {
2947
+ "type": "Link",
2948
+ "linkType": "Asset"
2949
+ },
2950
+ "localized": true
2951
+ },
2952
+ {
2953
+ "name": "entry",
2954
+ "id": "entry",
2955
+ "type": "Link",
2956
+ "uiid": "2x4umbxk4cg",
2957
+ "linkType": "Entry",
2958
+ "localized": true
2959
+ },
2960
+ {
2961
+ "name": "blog_entry",
2962
+ "id": "blog_entry",
2963
+ "type": "Link",
2964
+ "uiid": "3vc40nae0hs",
2965
+ "linkType": "Entry",
2966
+ "localized": true
2967
+ }
2968
+ ],
2969
+ "sys": {
2970
+ "id": "6xzrdCr33OMAeIYUgs6UKi",
2971
+ "type": "ContentType",
2972
+ "createdAt": "2014-07-31T10:33:50.934Z",
2973
+ "createdBy": {
2974
+ "sys": {
2975
+ "type": "Link",
2976
+ "linkType": "User",
2977
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2978
+ }
2979
+ },
2980
+ "space": {
2981
+ "sys": {
2982
+ "type": "Link",
2983
+ "linkType": "Space",
2984
+ "id": "yr5m0jky5hsh"
2985
+ }
2986
+ },
2987
+ "firstPublishedAt": "2014-07-31T10:34:14.463Z",
2988
+ "publishedCounter": 7,
2989
+ "publishedAt": "2014-08-04T08:19:16.831Z",
2990
+ "publishedBy": {
2991
+ "sys": {
2992
+ "type": "Link",
2993
+ "linkType": "User",
2994
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
2995
+ }
2996
+ },
2997
+ "publishedVersion": 108,
2998
+ "version": 109,
2999
+ "updatedAt": "2014-08-04T08:19:16.841Z",
3000
+ "updatedBy": {
3001
+ "sys": {
3002
+ "type": "Link",
3003
+ "linkType": "User",
3004
+ "id": "1E7acJL8I5XUXAMHQt9Grs"
3005
+ }
3006
+ }
3007
+ }
3008
+ }
3009
+ http_version:
3010
+ recorded_at: Mon, 04 Aug 2014 08:52:52 GMT
3011
+ - request:
3012
+ method: post
3013
+ uri: https://api.contentful.com/spaces/yr5m0jky5hsh/entries/
3014
+ body:
3015
+ encoding: UTF-8
3016
+ string: '{"fields":{"blog_name":{"en-US":"Contentful en","pl":"Contentful pl"},"blog_entries":{"en-US":[{"sys":{"type":"Link","linkType":"Entry","id":"664EPJ6zHqAeMO6O0mGggU"}},{"sys":{"type":"Link","linkType":"Entry","id":"664EPJ6zHqAeMO6O0mGggU"}}],"pl":[{"sys":{"type":"Link","linkType":"Entry","id":"664EPJ6zHqAeMO6O0mGggU"}},{"sys":{"type":"Link","linkType":"Entry","id":"664EPJ6zHqAeMO6O0mGggU"}}]},"blog_entry":{"en-US":{"sys":{"type":"Link","linkType":"Entry","id":"664EPJ6zHqAeMO6O0mGggU"}},"pl":{"sys":{"type":"Link","linkType":"Entry","id":"664EPJ6zHqAeMO6O0mGggU"}}}}}'
3017
+ headers:
3018
+ User-Agent:
3019
+ - RubyContenfulManagementGem/0.0.1
3020
+ Authorization:
3021
+ - Bearer <ACCESS_TOKEN>
3022
+ Content-Type:
3023
+ - application/vnd.contentful.management.v1+json
3024
+ X-Contentful-Content-Type:
3025
+ - 6xzrdCr33OMAeIYUgs6UKi
3026
+ Host:
3027
+ - api.contentful.com
3028
+ response:
3029
+ status:
3030
+ code: 201
3031
+ message: Created
3032
+ headers:
3033
+ Server:
3034
+ - nginx
3035
+ Date:
3036
+ - Mon, 04 Aug 2014 08:53:31 GMT
3037
+ Content-Type:
3038
+ - application/vnd.contentful.management.v1+json
3039
+ Content-Length:
3040
+ - '1867'
3041
+ Connection:
3042
+ - keep-alive
3043
+ X-Powered-By:
3044
+ - Express
3045
+ Cf-Space-Id:
3046
+ - yr5m0jky5hsh
3047
+ Etag:
3048
+ - '"ff8369053da40f01da7ba311b940fcaf"'
3049
+ Access-Control-Allow-Origin:
3050
+ - "*"
3051
+ Access-Control-Allow-Headers:
3052
+ - 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
3053
+ Access-Control-Allow-Methods:
3054
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
3055
+ "^access-Control-Expose-Headers":
3056
+ - Etag
3057
+ Access-Control-Max-Age:
3058
+ - '1728000'
3059
+ body:
3060
+ encoding: UTF-8
3061
+ string: |
3062
+ {
3063
+ "fields": {
3064
+ "blog_name": {
3065
+ "en-US": "Contentful en",
3066
+ "pl": "Contentful pl"
3067
+ },
3068
+ "blog_entries": {
3069
+ "en-US": [
3070
+ {
3071
+ "sys": {
3072
+ "type": "Link",
3073
+ "linkType": "Entry",
3074
+ "id": "664EPJ6zHqAeMO6O0mGggU"
3075
+ }
3076
+ },
3077
+ {
3078
+ "sys": {
3079
+ "type": "Link",
3080
+ "linkType": "Entry",
3081
+ "id": "664EPJ6zHqAeMO6O0mGggU"
3082
+ }
3083
+ }
3084
+ ],
3085
+ "pl": [
3086
+ {
3087
+ "sys": {
3088
+ "type": "Link",
3089
+ "linkType": "Entry",
3090
+ "id": "664EPJ6zHqAeMO6O0mGggU"
3091
+ }
3092
+ },
3093
+ {
3094
+ "sys": {
3095
+ "type": "Link",
3096
+ "linkType": "Entry",
3097
+ "id": "664EPJ6zHqAeMO6O0mGggU"
3098
+ }
3099
+ }
3100
+ ]
3101
+ },
3102
+ "blog_entry": {
3103
+ "en-US": {
3104
+ "sys": {
3105
+ "type": "Link",
3106
+ "linkType": "Entry",
3107
+ "id": "664EPJ6zHqAeMO6O0mGggU"
3108
+ }
3109
+ },
3110
+ "pl": {
3111
+ "sys": {
3112
+ "type": "Link",
3113
+ "linkType": "Entry",
3114
+ "id": "664EPJ6zHqAeMO6O0mGggU"
3115
+ }
3116
+ }
3117
+ }
3118
+ },
3119
+ "sys": {
3120
+ "id": "2D8vWSztyMimySgWock8sM",
3121
+ "type": "Entry",
3122
+ "version": 1,
3123
+ "createdAt": "2014-08-04T08:53:31.334Z",
3124
+ "createdBy": {
3125
+ "sys": {
3126
+ "type": "Link",
3127
+ "linkType": "User",
3128
+ "id": "0fn5fOWn4WsKFyYla1gI5h"
3129
+ }
3130
+ },
3131
+ "space": {
3132
+ "sys": {
3133
+ "type": "Link",
3134
+ "linkType": "Space",
3135
+ "id": "yr5m0jky5hsh"
3136
+ }
3137
+ },
3138
+ "contentType": {
3139
+ "sys": {
3140
+ "type": "Link",
3141
+ "linkType": "ContentType",
3142
+ "id": "6xzrdCr33OMAeIYUgs6UKi"
3143
+ }
3144
+ },
3145
+ "updatedAt": "2014-08-04T08:53:31.334Z",
3146
+ "updatedBy": {
3147
+ "sys": {
3148
+ "type": "Link",
3149
+ "linkType": "User",
3150
+ "id": "0fn5fOWn4WsKFyYla1gI5h"
3151
+ }
3152
+ }
3153
+ }
3154
+ }
3155
+ http_version:
3156
+ recorded_at: Mon, 04 Aug 2014 08:53:31 GMT
3157
+ recorded_with: VCR 2.9.2