-
Notifications
You must be signed in to change notification settings - Fork 92
/
Lumen Microservice.postman_collection.json
2009 lines (2009 loc) · 125 KB
/
Lumen Microservice.postman_collection.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"info": {
"_postman_id": "ae6876c4-ea30-4b85-a7d9-08ed4ffd68e3",
"name": "Lumen Microservice",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Getting all authors data using GET ",
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "http://localhost:8066/authors",
"protocol": "http",
"host": [
"localhost"
],
"port": "8066",
"path": [
"authors"
]
}
},
"response": [
{
"name": "http://localhost:8066/authors",
"originalRequest": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "http://localhost:8066/authors",
"protocol": "http",
"host": [
"localhost"
],
"port": "8066",
"path": [
"authors"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Host",
"value": "localhost:8066"
},
{
"key": "Date",
"value": "Wed, 02 Jan 2019 00:04:46 +0000"
},
{
"key": "Date",
"value": "Wed, 02 Jan 2019 00:04:46 GMT"
},
{
"key": "Connection",
"value": "close"
},
{
"key": "X-Powered-By",
"value": "PHP/7.1.16"
},
{
"key": "Cache-Control",
"value": "no-cache, private"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"data\": [\n {\n \"id\": 1,\n \"name\": \"Angel Toy\",\n \"gender\": \"male\",\n \"country\": \"Guinea\",\n \"created_at\": \"2019-01-01 21:14:02\",\n \"updated_at\": \"2019-01-01 21:14:02\"\n },\n {\n \"id\": 2,\n \"name\": \"Prof. Arielle Roberts DVM\",\n \"gender\": \"female\",\n \"country\": \"Indonesia\",\n \"created_at\": \"2019-01-01 21:14:03\",\n \"updated_at\": \"2019-01-01 21:14:03\"\n },\n {\n \"id\": 3,\n \"name\": \"Johnson Bergnaum\",\n \"gender\": \"male\",\n \"country\": \"Czech Republic\",\n \"created_at\": \"2019-01-01 21:14:03\",\n \"updated_at\": \"2019-01-01 21:14:03\"\n },\n {\n \"id\": 4,\n \"name\": \"Devonte Ondricka V\",\n \"gender\": \"male\",\n \"country\": \"Niue\",\n \"created_at\": \"2019-01-01 21:14:03\",\n \"updated_at\": \"2019-01-01 21:14:03\"\n },\n {\n \"id\": 5,\n \"name\": \"Judah Mante\",\n \"gender\": \"male\",\n \"country\": \"Timor-Leste\",\n \"created_at\": \"2019-01-01 21:14:03\",\n \"updated_at\": \"2019-01-01 21:14:03\"\n },\n {\n \"id\": 6,\n \"name\": \"Emmie O'Conner\",\n \"gender\": \"female\",\n \"country\": \"India\",\n \"created_at\": \"2019-01-01 21:14:03\",\n \"updated_at\": \"2019-01-01 21:14:03\"\n },\n {\n \"id\": 7,\n \"name\": \"Rocio Hansen\",\n \"gender\": \"male\",\n \"country\": \"Cocos (Keeling) Islands\",\n \"created_at\": \"2019-01-01 21:14:03\",\n \"updated_at\": \"2019-01-01 21:14:03\"\n },\n {\n \"id\": 8,\n \"name\": \"Tressa Mohr\",\n \"gender\": \"female\",\n \"country\": \"Senegal\",\n \"created_at\": \"2019-01-01 21:14:03\",\n \"updated_at\": \"2019-01-01 21:14:03\"\n },\n {\n \"id\": 9,\n \"name\": \"Dr. Golden Block\",\n \"gender\": \"male\",\n \"country\": \"Uruguay\",\n \"created_at\": \"2019-01-01 21:14:04\",\n \"updated_at\": \"2019-01-01 21:14:04\"\n },\n {\n \"id\": 10,\n \"name\": \"Lucile Legros\",\n \"gender\": \"female\",\n \"country\": \"Paraguay\",\n \"created_at\": \"2019-01-01 21:14:04\",\n \"updated_at\": \"2019-01-01 21:14:04\"\n },\n {\n \"id\": 11,\n \"name\": \"Ms. Judy Crist\",\n \"gender\": \"female\",\n \"country\": \"Christmas Island\",\n \"created_at\": \"2019-01-01 21:14:04\",\n \"updated_at\": \"2019-01-01 21:14:04\"\n },\n {\n \"id\": 12,\n \"name\": \"Griffin Hintz\",\n \"gender\": \"male\",\n \"country\": \"Papua New Guinea\",\n \"created_at\": \"2019-01-01 21:14:05\",\n \"updated_at\": \"2019-01-01 21:14:05\"\n },\n {\n \"id\": 13,\n \"name\": \"Alysha Hintz\",\n \"gender\": \"female\",\n \"country\": \"Wallis and Futuna\",\n \"created_at\": \"2019-01-01 21:14:05\",\n \"updated_at\": \"2019-01-01 21:14:05\"\n },\n {\n \"id\": 14,\n \"name\": \"Greyson O'Hara\",\n \"gender\": \"male\",\n \"country\": \"Norway\",\n \"created_at\": \"2019-01-01 21:14:05\",\n \"updated_at\": \"2019-01-01 21:14:05\"\n },\n {\n \"id\": 15,\n \"name\": \"Zackary Bradtke\",\n \"gender\": \"male\",\n \"country\": \"Peru\",\n \"created_at\": \"2019-01-01 21:14:05\",\n \"updated_at\": \"2019-01-01 21:14:05\"\n },\n {\n \"id\": 16,\n \"name\": \"Dr. Theron Ledner III\",\n \"gender\": \"male\",\n \"country\": \"Dominica\",\n \"created_at\": \"2019-01-01 21:14:05\",\n \"updated_at\": \"2019-01-01 21:14:05\"\n },\n {\n \"id\": 17,\n \"name\": \"Trever Bins\",\n \"gender\": \"male\",\n \"country\": \"Switzerland\",\n \"created_at\": \"2019-01-01 21:14:05\",\n \"updated_at\": \"2019-01-01 21:14:05\"\n },\n {\n \"id\": 18,\n \"name\": \"Mr. Kennedi Gerhold MD\",\n \"gender\": \"male\",\n \"country\": \"Hong Kong\",\n \"created_at\": \"2019-01-01 21:14:05\",\n \"updated_at\": \"2019-01-01 21:14:05\"\n },\n {\n \"id\": 19,\n \"name\": \"Adell Schuster\",\n \"gender\": \"female\",\n \"country\": \"Djibouti\",\n \"created_at\": \"2019-01-01 21:14:05\",\n \"updated_at\": \"2019-01-01 21:14:05\"\n },\n {\n \"id\": 20,\n \"name\": \"Theodora Beer\",\n \"gender\": \"female\",\n \"country\": \"Japan\",\n \"created_at\": \"2019-01-01 21:14:06\",\n \"updated_at\": \"2019-01-01 21:14:06\"\n },\n {\n \"id\": 21,\n \"name\": \"Chloe Osinski I\",\n \"gender\": \"female\",\n \"country\": \"Western Sahara\",\n \"created_at\": \"2019-01-01 21:14:06\",\n \"updated_at\": \"2019-01-01 21:14:06\"\n },\n {\n \"id\": 22,\n \"name\": \"Josh Rice\",\n \"gender\": \"male\",\n \"country\": \"Malawi\",\n \"created_at\": \"2019-01-01 21:14:06\",\n \"updated_at\": \"2019-01-01 21:14:06\"\n },\n {\n \"id\": 23,\n \"name\": \"Prof. Natalia Hermann\",\n \"gender\": \"female\",\n \"country\": \"Jordan\",\n \"created_at\": \"2019-01-01 21:14:06\",\n \"updated_at\": \"2019-01-01 21:14:06\"\n },\n {\n \"id\": 24,\n \"name\": \"Piper Hintz\",\n \"gender\": \"female\",\n \"country\": \"Trinidad and Tobago\",\n \"created_at\": \"2019-01-01 21:14:06\",\n \"updated_at\": \"2019-01-01 21:14:06\"\n },\n {\n \"id\": 25,\n \"name\": \"Jalon Nitzsche Sr.\",\n \"gender\": \"male\",\n \"country\": \"Norfolk Island\",\n \"created_at\": \"2019-01-01 21:14:06\",\n \"updated_at\": \"2019-01-01 21:14:06\"\n },\n {\n \"id\": 26,\n \"name\": \"Robert Schamberger\",\n \"gender\": \"male\",\n \"country\": \"Antigua and Barbuda\",\n \"created_at\": \"2019-01-01 21:14:07\",\n \"updated_at\": \"2019-01-01 21:14:07\"\n },\n {\n \"id\": 27,\n \"name\": \"Prof. Maud Champlin\",\n \"gender\": \"female\",\n \"country\": \"Serbia\",\n \"created_at\": \"2019-01-01 21:14:07\",\n \"updated_at\": \"2019-01-01 21:14:07\"\n },\n {\n \"id\": 28,\n \"name\": \"Prof. Sienna Daugherty Sr.\",\n \"gender\": \"female\",\n \"country\": \"Mexico\",\n \"created_at\": \"2019-01-01 21:14:07\",\n \"updated_at\": \"2019-01-01 21:14:07\"\n },\n {\n \"id\": 29,\n \"name\": \"Mr. Eli Nienow Jr.\",\n \"gender\": \"male\",\n \"country\": \"Guinea\",\n \"created_at\": \"2019-01-01 21:14:07\",\n \"updated_at\": \"2019-01-01 21:14:07\"\n },\n {\n \"id\": 30,\n \"name\": \"Carter Mosciski\",\n \"gender\": \"male\",\n \"country\": \"United States of America\",\n \"created_at\": \"2019-01-01 21:14:07\",\n \"updated_at\": \"2019-01-01 21:14:07\"\n },\n {\n \"id\": 31,\n \"name\": \"Kiana Stroman\",\n \"gender\": \"female\",\n \"country\": \"Saint Martin\",\n \"created_at\": \"2019-01-01 21:14:07\",\n \"updated_at\": \"2019-01-01 21:14:07\"\n },\n {\n \"id\": 32,\n \"name\": \"Tabitha Aufderhar\",\n \"gender\": \"female\",\n \"country\": \"Eritrea\",\n \"created_at\": \"2019-01-01 21:14:07\",\n \"updated_at\": \"2019-01-01 21:14:07\"\n },\n {\n \"id\": 33,\n \"name\": \"Hollie Walsh\",\n \"gender\": \"female\",\n \"country\": \"Lao People's Democratic Republic\",\n \"created_at\": \"2019-01-01 21:14:08\",\n \"updated_at\": \"2019-01-01 21:14:08\"\n },\n {\n \"id\": 34,\n \"name\": \"Flossie Cormier\",\n \"gender\": \"female\",\n \"country\": \"French Polynesia\",\n \"created_at\": \"2019-01-01 21:14:08\",\n \"updated_at\": \"2019-01-01 21:14:08\"\n },\n {\n \"id\": 35,\n \"name\": \"Effie Feil\",\n \"gender\": \"female\",\n \"country\": \"Japan\",\n \"created_at\": \"2019-01-01 21:14:08\",\n \"updated_at\": \"2019-01-01 21:14:08\"\n },\n {\n \"id\": 36,\n \"name\": \"Samara Greenfelder\",\n \"gender\": \"female\",\n \"country\": \"Tunisia\",\n \"created_at\": \"2019-01-01 21:14:08\",\n \"updated_at\": \"2019-01-01 21:14:08\"\n },\n {\n \"id\": 37,\n \"name\": \"Amaya Block\",\n \"gender\": \"female\",\n \"country\": \"New Caledonia\",\n \"created_at\": \"2019-01-01 21:14:08\",\n \"updated_at\": \"2019-01-01 21:14:08\"\n },\n {\n \"id\": 38,\n \"name\": \"Chaz Gottlieb IV\",\n \"gender\": \"male\",\n \"country\": \"Cyprus\",\n \"created_at\": \"2019-01-01 21:14:08\",\n \"updated_at\": \"2019-01-01 21:14:08\"\n },\n {\n \"id\": 39,\n \"name\": \"Annalise Schoen\",\n \"gender\": \"female\",\n \"country\": \"Liberia\",\n \"created_at\": \"2019-01-01 21:14:09\",\n \"updated_at\": \"2019-01-01 21:14:09\"\n },\n {\n \"id\": 40,\n \"name\": \"Camila Glover\",\n \"gender\": \"female\",\n \"country\": \"Slovenia\",\n \"created_at\": \"2019-01-01 21:14:09\",\n \"updated_at\": \"2019-01-01 21:14:09\"\n },\n {\n \"id\": 41,\n \"name\": \"Emiliano Dooley\",\n \"gender\": \"male\",\n \"country\": \"Liechtenstein\",\n \"created_at\": \"2019-01-01 21:14:09\",\n \"updated_at\": \"2019-01-01 21:14:09\"\n },\n {\n \"id\": 42,\n \"name\": \"Mr. Coy Ziemann I\",\n \"gender\": \"male\",\n \"country\": \"Comoros\",\n \"created_at\": \"2019-01-01 21:14:09\",\n \"updated_at\": \"2019-01-01 21:14:09\"\n },\n {\n \"id\": 43,\n \"name\": \"Lemuel Haag\",\n \"gender\": \"male\",\n \"country\": \"Mozambique\",\n \"created_at\": \"2019-01-01 21:14:09\",\n \"updated_at\": \"2019-01-01 21:14:09\"\n },\n {\n \"id\": 44,\n \"name\": \"Keaton Zulauf\",\n \"gender\": \"male\",\n \"country\": \"Falkland Islands (Malvinas)\",\n \"created_at\": \"2019-01-01 21:14:09\",\n \"updated_at\": \"2019-01-01 21:14:09\"\n },\n {\n \"id\": 45,\n \"name\": \"Tristian Pfeffer\",\n \"gender\": \"male\",\n \"country\": \"Gabon\",\n \"created_at\": \"2019-01-01 21:14:09\",\n \"updated_at\": \"2019-01-01 21:14:09\"\n },\n {\n \"id\": 46,\n \"name\": \"Mr. Brant Jones\",\n \"gender\": \"male\",\n \"country\": \"Syrian Arab Republic\",\n \"created_at\": \"2019-01-01 21:14:10\",\n \"updated_at\": \"2019-01-01 21:14:10\"\n },\n {\n \"id\": 47,\n \"name\": \"Prof. Kristofer Conn\",\n \"gender\": \"male\",\n \"country\": \"Moldova\",\n \"created_at\": \"2019-01-01 21:14:10\",\n \"updated_at\": \"2019-01-01 21:14:10\"\n },\n {\n \"id\": 48,\n \"name\": \"Rhea Cartwright\",\n \"gender\": \"female\",\n \"country\": \"Malawi\",\n \"created_at\": \"2019-01-01 21:14:10\",\n \"updated_at\": \"2019-01-01 21:14:10\"\n },\n {\n \"id\": 49,\n \"name\": \"Mrs. Aniyah DuBuque\",\n \"gender\": \"female\",\n \"country\": \"Zambia\",\n \"created_at\": \"2019-01-01 21:14:10\",\n \"updated_at\": \"2019-01-01 21:14:10\"\n },\n {\n \"id\": 50,\n \"name\": \"Stevie Smitham\",\n \"gender\": \"male\",\n \"country\": \"Netherlands Antilles\",\n \"created_at\": \"2019-01-01 21:14:10\",\n \"updated_at\": \"2019-01-01 21:14:10\"\n }\n ]\n}"
}
]
},
{
"name": "Creating an author using POST",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "name",
"value": "agla gobla",
"type": "text"
},
{
"key": "gender",
"value": "male",
"type": "text"
},
{
"key": "country",
"value": "uganda",
"type": "text"
}
]
},
"url": {
"raw": "http://localhost:8066/authors",
"protocol": "http",
"host": [
"localhost"
],
"port": "8066",
"path": [
"authors"
]
}
},
"response": [
{
"name": "Creating an author using POST",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "name",
"value": "agla gobla",
"type": "text"
},
{
"key": "gender",
"value": "male",
"type": "text"
},
{
"key": "country",
"value": "uganda",
"type": "text"
}
]
},
"url": {
"raw": "http://localhost:8066/authors",
"protocol": "http",
"host": [
"localhost"
],
"port": "8066",
"path": [
"authors"
]
}
},
"_postman_previewlanguage": null,
"header": null,
"cookie": [],
"body": null
}
]
},
{
"name": "Getting infor mation of one author",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "name",
"value": "agla gobla",
"type": "text"
},
{
"key": "gender",
"value": "male",
"type": "text"
},
{
"key": "country",
"value": "uganda",
"type": "text"
}
]
},
"url": {
"raw": "http://localhost:8066/authors/2",
"protocol": "http",
"host": [
"localhost"
],
"port": "8066",
"path": [
"authors",
"2"
]
}
},
"response": [
{
"name": "Getting infor mation of one author",
"originalRequest": {
"method": "GET",
"header": [],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "name",
"value": "agla gobla",
"type": "text"
},
{
"key": "gender",
"value": "male",
"type": "text"
},
{
"key": "country",
"value": "uganda",
"type": "text"
}
]
},
"url": {
"raw": "http://localhost:8066/authors/2",
"protocol": "http",
"host": [
"localhost"
],
"port": "8066",
"path": [
"authors",
"2"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Host",
"value": "localhost:8066"
},
{
"key": "Date",
"value": "Wed, 02 Jan 2019 12:56:26 +0000"
},
{
"key": "Date",
"value": "Wed, 02 Jan 2019 12:56:26 GMT"
},
{
"key": "Connection",
"value": "close"
},
{
"key": "X-Powered-By",
"value": "PHP/7.1.16"
},
{
"key": "Cache-Control",
"value": "no-cache, private"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"data\": {\n \"id\": 2,\n \"name\": \"Prof. Arielle Roberts DVM\",\n \"gender\": \"female\",\n \"country\": \"Indonesia\",\n \"created_at\": \"2019-01-01 21:14:03\",\n \"updated_at\": \"2019-01-01 21:14:03\"\n }\n}"
}
]
},
{
"name": "Updating author information using PUT/PATCH",
"request": {
"method": "PUT",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/x-www-form-urlencoded",
"type": "text"
}
],
"body": {
"mode": "urlencoded",
"urlencoded": [
{
"key": "name",
"value": "Jhon",
"type": "text"
},
{
"key": "gender",
"value": "male",
"type": "text"
}
]
},
"url": {
"raw": "http://localhost:8066/authors/50",
"protocol": "http",
"host": [
"localhost"
],
"port": "8066",
"path": [
"authors",
"50"
]
}
},
"response": [
{
"name": "Updating author information using PUT/PATCH",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/x-www-form-urlencoded",
"type": "text"
}
],
"body": {
"mode": "urlencoded",
"urlencoded": [
{
"key": "name",
"value": "Jane Doe",
"type": "text"
},
{
"key": "gender",
"value": "female",
"type": "text"
}
]
},
"url": {
"raw": "http://localhost:8066/authors/50",
"protocol": "http",
"host": [
"localhost"
],
"port": "8066",
"path": [
"authors",
"50"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Host",
"value": "localhost:8066"
},
{
"key": "Date",
"value": "Wed, 02 Jan 2019 13:26:28 +0000"
},
{
"key": "Date",
"value": "Wed, 02 Jan 2019 13:26:28 GMT"
},
{
"key": "Connection",
"value": "close"
},
{
"key": "X-Powered-By",
"value": "PHP/7.1.16"
},
{
"key": "Cache-Control",
"value": "no-cache, private"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"data\": {\n \"id\": 50,\n \"name\": \"Jane Doe\",\n \"gender\": \"female\",\n \"country\": \"Netherlands Antilles\",\n \"created_at\": \"2019-01-01 21:14:10\",\n \"updated_at\": \"2019-01-02 13:26:27\"\n }\n}"
}
]
},
{
"name": "Delete author details using DELETE",
"request": {
"method": "DELETE",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/x-www-form-urlencoded",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "http://localhost:8066/authors/51",
"protocol": "http",
"host": [
"localhost"
],
"port": "8066",
"path": [
"authors",
"51"
]
}
},
"response": [
{
"name": "Delete author details using DELETE",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/x-www-form-urlencoded",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "http://localhost:8066/authors/51",
"protocol": "http",
"host": [
"localhost"
],
"port": "8066",
"path": [
"authors",
"51"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Host",
"value": "localhost:8066"
},
{
"key": "Date",
"value": "Wed, 02 Jan 2019 14:56:33 +0000"
},
{
"key": "Date",
"value": "Wed, 02 Jan 2019 14:56:33 GMT"
},
{
"key": "Connection",
"value": "close"
},
{
"key": "X-Powered-By",
"value": "PHP/7.1.16"
},
{
"key": "Cache-Control",
"value": "no-cache, private"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"data\": {\n \"id\": 51,\n \"name\": \"agla gobla\",\n \"gender\": \"male\",\n \"country\": \"uganda\",\n \"created_at\": \"2019-01-02 00:20:04\",\n \"updated_at\": \"2019-01-02 00:20:04\"\n }\n}"
}
]
},
{
"name": "Getting all info about books using GET",
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "http://localhost:8067/books",
"protocol": "http",
"host": [
"localhost"
],
"port": "8067",
"path": [
"books"
]
}
},
"response": [
{
"name": "Getting all info about books using GET",
"originalRequest": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "http://localhost:8067/books",
"protocol": "http",
"host": [
"localhost"
],
"port": "8067",
"path": [
"books"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Host",
"value": "localhost:8067"
},
{
"key": "Date",
"value": "Wed, 02 Jan 2019 22:33:57 +0000"
},
{
"key": "Date",
"value": "Wed, 02 Jan 2019 22:33:56 GMT"
},
{
"key": "Connection",
"value": "close"
},
{
"key": "X-Powered-By",
"value": "PHP/7.1.16"
},
{
"key": "Cache-Control",
"value": "no-cache, private"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"data\": [\n {\n \"id\": 1,\n \"title\": \"Et ipsum pariatur ex.\",\n \"description\": \"Illo repellat voluptates architecto quia ut harum voluptatem maiores.\",\n \"price\": \"84.0\",\n \"author_id\": \"20\",\n \"created_at\": \"2019-01-02 21:38:03\",\n \"updated_at\": \"2019-01-02 21:38:03\"\n },\n {\n \"id\": 2,\n \"title\": \"Et unde sit.\",\n \"description\": \"Sint placeat qui eius error et animi iusto animi aut ut.\",\n \"price\": \"58.0\",\n \"author_id\": \"6\",\n \"created_at\": \"2019-01-02 21:38:04\",\n \"updated_at\": \"2019-01-02 21:38:04\"\n },\n {\n \"id\": 3,\n \"title\": \"Necessitatibus esse sunt qui.\",\n \"description\": \"Quos suscipit saepe voluptate voluptatum odit animi cupiditate magni quia.\",\n \"price\": \"115.0\",\n \"author_id\": \"6\",\n \"created_at\": \"2019-01-02 21:38:04\",\n \"updated_at\": \"2019-01-02 21:38:04\"\n },\n {\n \"id\": 4,\n \"title\": \"Dicta iusto iusto.\",\n \"description\": \"Aut tempore et cupiditate in repellendus molestias.\",\n \"price\": \"110.0\",\n \"author_id\": \"40\",\n \"created_at\": \"2019-01-02 21:38:04\",\n \"updated_at\": \"2019-01-02 21:38:04\"\n },\n {\n \"id\": 5,\n \"title\": \"Doloribus iste fugit dolorem impedit.\",\n \"description\": \"Nihil laudantium consequatur et quae rerum magni placeat.\",\n \"price\": \"70.0\",\n \"author_id\": \"48\",\n \"created_at\": \"2019-01-02 21:38:04\",\n \"updated_at\": \"2019-01-02 21:38:04\"\n },\n {\n \"id\": 6,\n \"title\": \"Ea iusto ex reiciendis.\",\n \"description\": \"Nisi ut molestias eum rerum excepturi est iusto atque laudantium.\",\n \"price\": \"29.0\",\n \"author_id\": \"46\",\n \"created_at\": \"2019-01-02 21:38:04\",\n \"updated_at\": \"2019-01-02 21:38:04\"\n },\n {\n \"id\": 7,\n \"title\": \"Deserunt vero cumque.\",\n \"description\": \"Qui suscipit fugit rem dolore minima necessitatibus quae.\",\n \"price\": \"77.0\",\n \"author_id\": \"29\",\n \"created_at\": \"2019-01-02 21:38:04\",\n \"updated_at\": \"2019-01-02 21:38:04\"\n },\n {\n \"id\": 8,\n \"title\": \"Architecto accusamus unde et.\",\n \"description\": \"Ab fugiat totam aut necessitatibus dolorem rem ut.\",\n \"price\": \"136.0\",\n \"author_id\": \"6\",\n \"created_at\": \"2019-01-02 21:38:04\",\n \"updated_at\": \"2019-01-02 21:38:04\"\n },\n {\n \"id\": 9,\n \"title\": \"Optio rerum corporis quisquam.\",\n \"description\": \"Eius dolores sapiente optio fugiat natus officiis nemo.\",\n \"price\": \"42.0\",\n \"author_id\": \"13\",\n \"created_at\": \"2019-01-02 21:38:05\",\n \"updated_at\": \"2019-01-02 21:38:05\"\n },\n {\n \"id\": 10,\n \"title\": \"Eos numquam.\",\n \"description\": \"Perspiciatis sint modi occaecati totam fuga voluptas laudantium beatae non et.\",\n \"price\": \"133.0\",\n \"author_id\": \"19\",\n \"created_at\": \"2019-01-02 21:38:05\",\n \"updated_at\": \"2019-01-02 21:38:05\"\n },\n {\n \"id\": 11,\n \"title\": \"Sunt molestiae voluptas.\",\n \"description\": \"Officia ut eligendi consequatur quasi beatae magni eveniet dolor.\",\n \"price\": \"52.0\",\n \"author_id\": \"41\",\n \"created_at\": \"2019-01-02 21:38:05\",\n \"updated_at\": \"2019-01-02 21:38:05\"\n },\n {\n \"id\": 12,\n \"title\": \"Hic neque distinctio officiis debitis.\",\n \"description\": \"Nostrum reprehenderit aut aperiam voluptatem optio.\",\n \"price\": \"57.0\",\n \"author_id\": \"40\",\n \"created_at\": \"2019-01-02 21:38:05\",\n \"updated_at\": \"2019-01-02 21:38:05\"\n },\n {\n \"id\": 13,\n \"title\": \"Quis veniam fugit placeat aliquid.\",\n \"description\": \"Rerum ut quaerat sunt consectetur omnis.\",\n \"price\": \"40.0\",\n \"author_id\": \"9\",\n \"created_at\": \"2019-01-02 21:38:05\",\n \"updated_at\": \"2019-01-02 21:38:05\"\n },\n {\n \"id\": 14,\n \"title\": \"Voluptatem dolore.\",\n \"description\": \"Tempore at iure at assumenda assumenda tempore.\",\n \"price\": \"72.0\",\n \"author_id\": \"14\",\n \"created_at\": \"2019-01-02 21:38:05\",\n \"updated_at\": \"2019-01-02 21:38:05\"\n },\n {\n \"id\": 15,\n \"title\": \"Omnis ipsa possimus.\",\n \"description\": \"Quia quos est odio hic dolorum nemo aut.\",\n \"price\": \"84.0\",\n \"author_id\": \"34\",\n \"created_at\": \"2019-01-02 21:38:05\",\n \"updated_at\": \"2019-01-02 21:38:05\"\n },\n {\n \"id\": 16,\n \"title\": \"Laborum id ea sapiente aliquid.\",\n \"description\": \"Soluta modi dolores ut voluptatibus maiores error accusamus inventore nesciunt vero iste.\",\n \"price\": \"37.0\",\n \"author_id\": \"10\",\n \"created_at\": \"2019-01-02 21:38:06\",\n \"updated_at\": \"2019-01-02 21:38:06\"\n },\n {\n \"id\": 17,\n \"title\": \"Quis et excepturi.\",\n \"description\": \"In accusantium debitis blanditiis occaecati laboriosam veniam consequatur aperiam.\",\n \"price\": \"101.0\",\n \"author_id\": \"26\",\n \"created_at\": \"2019-01-02 21:38:06\",\n \"updated_at\": \"2019-01-02 21:38:06\"\n },\n {\n \"id\": 18,\n \"title\": \"Iste cum.\",\n \"description\": \"Dicta consequatur enim fuga voluptas quae ratione ut aut.\",\n \"price\": \"97.0\",\n \"author_id\": \"22\",\n \"created_at\": \"2019-01-02 21:38:06\",\n \"updated_at\": \"2019-01-02 21:38:06\"\n },\n {\n \"id\": 19,\n \"title\": \"Sint sunt ut.\",\n \"description\": \"Quo doloremque similique dicta rerum sapiente.\",\n \"price\": \"48.0\",\n \"author_id\": \"30\",\n \"created_at\": \"2019-01-02 21:38:06\",\n \"updated_at\": \"2019-01-02 21:38:06\"\n },\n {\n \"id\": 20,\n \"title\": \"Ut autem asperiores aut.\",\n \"description\": \"Odio laborum ut quo deleniti.\",\n \"price\": \"35.0\",\n \"author_id\": \"22\",\n \"created_at\": \"2019-01-02 21:38:06\",\n \"updated_at\": \"2019-01-02 21:38:06\"\n },\n {\n \"id\": 21,\n \"title\": \"Occaecati tempore.\",\n \"description\": \"Quia quasi iusto non vel perferendis dolor ut est.\",\n \"price\": \"42.0\",\n \"author_id\": \"2\",\n \"created_at\": \"2019-01-02 21:38:06\",\n \"updated_at\": \"2019-01-02 21:38:06\"\n },\n {\n \"id\": 22,\n \"title\": \"Molestiae delectus rem.\",\n \"description\": \"Earum similique aut animi sit minus.\",\n \"price\": \"86.0\",\n \"author_id\": \"49\",\n \"created_at\": \"2019-01-02 21:38:06\",\n \"updated_at\": \"2019-01-02 21:38:06\"\n },\n {\n \"id\": 23,\n \"title\": \"Voluptatem aut earum excepturi.\",\n \"description\": \"Vero beatae quibusdam et ea fugiat modi libero expedita nemo exercitationem.\",\n \"price\": \"81.0\",\n \"author_id\": \"45\",\n \"created_at\": \"2019-01-02 21:38:07\",\n \"updated_at\": \"2019-01-02 21:38:07\"\n },\n {\n \"id\": 24,\n \"title\": \"Voluptas fugit quisquam modi.\",\n \"description\": \"Numquam vel odit est esse ut.\",\n \"price\": \"27.0\",\n \"author_id\": \"18\",\n \"created_at\": \"2019-01-02 21:38:07\",\n \"updated_at\": \"2019-01-02 21:38:07\"\n },\n {\n \"id\": 25,\n \"title\": \"Eaque velit corporis aliquid fugiat.\",\n \"description\": \"Ad eligendi nostrum iste quasi excepturi.\",\n \"price\": \"43.0\",\n \"author_id\": \"45\",\n \"created_at\": \"2019-01-02 21:38:07\",\n \"updated_at\": \"2019-01-02 21:38:07\"\n },\n {\n \"id\": 26,\n \"title\": \"Veniam delectus explicabo aut.\",\n \"description\": \"Dolorum vel numquam ut amet architecto explicabo sequi et sed est ut.\",\n \"price\": \"85.0\",\n \"author_id\": \"22\",\n \"created_at\": \"2019-01-02 21:38:07\",\n \"updated_at\": \"2019-01-02 21:38:07\"\n },\n {\n \"id\": 27,\n \"title\": \"Est optio pariatur.\",\n \"description\": \"Quia dolore earum tempore aperiam.\",\n \"price\": \"59.0\",\n \"author_id\": \"49\",\n \"created_at\": \"2019-01-02 21:38:07\",\n \"updated_at\": \"2019-01-02 21:38:07\"\n },\n {\n \"id\": 28,\n \"title\": \"Ea minus officiis quia.\",\n \"description\": \"Fugiat sequi voluptatem est dolor molestias.\",\n \"price\": \"52.0\",\n \"author_id\": \"3\",\n \"created_at\": \"2019-01-02 21:38:07\",\n \"updated_at\": \"2019-01-02 21:38:07\"\n },\n {\n \"id\": 29,\n \"title\": \"In vel quaerat rerum.\",\n \"description\": \"Quasi voluptates eaque dolor illo aspernatur est et repellendus.\",\n \"price\": \"134.0\",\n \"author_id\": \"21\",\n \"created_at\": \"2019-01-02 21:38:07\",\n \"updated_at\": \"2019-01-02 21:38:07\"\n },\n {\n \"id\": 30,\n \"title\": \"Et nihil excepturi.\",\n \"description\": \"In ab atque temporibus rem inventore magnam dolor est.\",\n \"price\": \"119.0\",\n \"author_id\": \"50\",\n \"created_at\": \"2019-01-02 21:38:08\",\n \"updated_at\": \"2019-01-02 21:38:08\"\n },\n {\n \"id\": 31,\n \"title\": \"Aspernatur omnis similique.\",\n \"description\": \"Perspiciatis maiores repellat corrupti reiciendis maxime et.\",\n \"price\": \"75.0\",\n \"author_id\": \"16\",\n \"created_at\": \"2019-01-02 21:38:08\",\n \"updated_at\": \"2019-01-02 21:38:08\"\n },\n {\n \"id\": 32,\n \"title\": \"Eius ducimus rem.\",\n \"description\": \"Fuga quam rem ea et dolorem quod vero et quia repellat iure.\",\n \"price\": \"130.0\",\n \"author_id\": \"25\",\n \"created_at\": \"2019-01-02 21:38:08\",\n \"updated_at\": \"2019-01-02 21:38:08\"\n },\n {\n \"id\": 33,\n \"title\": \"Qui autem.\",\n \"description\": \"Ducimus voluptas adipisci reiciendis itaque tempore enim itaque enim voluptatibus omnis.\",\n \"price\": \"76.0\",\n \"author_id\": \"40\",\n \"created_at\": \"2019-01-02 21:38:08\",\n \"updated_at\": \"2019-01-02 21:38:08\"\n },\n {\n \"id\": 34,\n \"title\": \"Magni ut ea.\",\n \"description\": \"Tenetur quo voluptates voluptatibus iure dolore ducimus impedit accusantium.\",\n \"price\": \"35.0\",\n \"author_id\": \"22\",\n \"created_at\": \"2019-01-02 21:38:08\",\n \"updated_at\": \"2019-01-02 21:38:08\"\n },\n {\n \"id\": 35,\n \"title\": \"Voluptate optio voluptas ut.\",\n \"description\": \"Eum similique quae quaerat et eum nesciunt et amet odio vitae.\",\n \"price\": \"46.0\",\n \"author_id\": \"2\",\n \"created_at\": \"2019-01-02 21:38:08\",\n \"updated_at\": \"2019-01-02 21:38:08\"\n },\n {\n \"id\": 36,\n \"title\": \"Quisquam possimus id.\",\n \"description\": \"Dolores maiores sint consequuntur et atque ratione deleniti est molestias cum ut.\",\n \"price\": \"136.0\",\n \"author_id\": \"9\",\n \"created_at\": \"2019-01-02 21:38:08\",\n \"updated_at\": \"2019-01-02 21:38:08\"\n },\n {\n \"id\": 37,\n \"title\": \"Ipsam autem perferendis ut.\",\n \"description\": \"Ut vel quod amet aliquid amet dolore voluptas.\",\n \"price\": \"36.0\",\n \"author_id\": \"46\",\n \"created_at\": \"2019-01-02 21:38:08\",\n \"updated_at\": \"2019-01-02 21:38:08\"\n },\n {\n \"id\": 38,\n \"title\": \"Dolor quisquam similique aut.\",\n \"description\": \"Sit natus sunt repudiandae error cumque.\",\n \"price\": \"77.0\",\n \"author_id\": \"6\",\n \"created_at\": \"2019-01-02 21:38:09\",\n \"updated_at\": \"2019-01-02 21:38:09\"\n },\n {\n \"id\": 39,\n \"title\": \"Vero vitae eius.\",\n \"description\": \"Aspernatur dignissimos quo vel consectetur sunt voluptatem et voluptatem et.\",\n \"price\": \"93.0\",\n \"author_id\": \"32\",\n \"created_at\": \"2019-01-02 21:38:09\",\n \"updated_at\": \"2019-01-02 21:38:09\"\n },\n {\n \"id\": 40,\n \"title\": \"In iusto enim.\",\n \"description\": \"Modi dolores vel dolorum dignissimos sunt aut.\",\n \"price\": \"35.0\",\n \"author_id\": \"32\",\n \"created_at\": \"2019-01-02 21:38:09\",\n \"updated_at\": \"2019-01-02 21:38:09\"\n },\n {\n \"id\": 41,\n \"title\": \"Nam corrupti consequatur est.\",\n \"description\": \"Aut distinctio qui non est voluptatem eaque necessitatibus explicabo.\",\n \"price\": \"48.0\",\n \"author_id\": \"2\",\n \"created_at\": \"2019-01-02 21:38:09\",\n \"updated_at\": \"2019-01-02 21:38:09\"\n },\n {\n \"id\": 42,\n \"title\": \"In amet qui eum.\",\n \"description\": \"Sint quidem laboriosam sint hic molestiae id eveniet sed sint ratione.\",\n \"price\": \"126.0\",\n \"author_id\": \"50\",\n \"created_at\": \"2019-01-02 21:38:09\",\n \"updated_at\": \"2019-01-02 21:38:09\"\n },\n {\n \"id\": 43,\n \"title\": \"Quam debitis sed.\",\n \"description\": \"Est eius vero itaque doloremque exercitationem voluptatem.\",\n \"price\": \"100.0\",\n \"author_id\": \"32\",\n \"created_at\": \"2019-01-02 21:38:09\",\n \"updated_at\": \"2019-01-02 21:38:09\"\n },\n {\n \"id\": 44,\n \"title\": \"Ex aut maxime voluptatibus.\",\n \"description\": \"Dolorem et omnis recusandae provident cum iste ut et ad.\",\n \"price\": \"94.0\",\n \"author_id\": \"39\",\n \"created_at\": \"2019-01-02 21:38:09\",\n \"updated_at\": \"2019-01-02 21:38:09\"\n },\n {\n \"id\": 45,\n \"title\": \"Dolores qui et.\",\n \"description\": \"Ab laboriosam aspernatur quo suscipit sunt quia iste.\",\n \"price\": \"113.0\",\n \"author_id\": \"22\",\n \"created_at\": \"2019-01-02 21:38:09\",\n \"updated_at\": \"2019-01-02 21:38:09\"\n },\n {\n \"id\": 46,\n \"title\": \"Sint nobis illo odit.\",\n \"description\": \"Eveniet ut nihil consectetur in quidem ut.\",\n \"price\": \"109.0\",\n \"author_id\": \"11\",\n \"created_at\": \"2019-01-02 21:38:10\",\n \"updated_at\": \"2019-01-02 21:38:10\"\n },\n {\n \"id\": 47,\n \"title\": \"Quaerat eaque dolores.\",\n \"description\": \"Qui ipsa dolorum autem et nostrum optio.\",\n \"price\": \"80.0\",\n \"author_id\": \"42\",\n \"created_at\": \"2019-01-02 21:38:10\",\n \"updated_at\": \"2019-01-02 21:38:10\"\n },\n {\n \"id\": 48,\n \"title\": \"Labore qui et.\",\n \"description\": \"Enim voluptas laborum ad et optio eius excepturi est veritatis dolor.\",\n \"price\": \"85.0\",\n \"author_id\": \"49\",\n \"created_at\": \"2019-01-02 21:38:10\",\n \"updated_at\": \"2019-01-02 21:38:10\"\n },\n {\n \"id\": 49,\n \"title\": \"Ut molestiae nisi nam.\",\n \"description\": \"At consequatur vero reiciendis et quos est nihil.\",\n \"price\": \"148.0\",\n \"author_id\": \"12\",\n \"created_at\": \"2019-01-02 21:38:10\",\n \"updated_at\": \"2019-01-02 21:38:10\"\n },\n {\n \"id\": 50,\n \"title\": \"Natus ut cupiditate.\",\n \"description\": \"Voluptas maiores nisi molestias cumque velit aut.\",\n \"price\": \"111.0\",\n \"author_id\": \"19\",\n \"created_at\": \"2019-01-02 21:38:10\",\n \"updated_at\": \"2019-01-02 21:38:10\"\n },\n {\n \"id\": 51,\n \"title\": \"Sit distinctio.\",\n \"description\": \"Molestias aspernatur natus atque nihil dicta aut corporis.\",\n \"price\": \"26.0\",\n \"author_id\": \"48\",\n \"created_at\": \"2019-01-02 21:38:10\",\n \"updated_at\": \"2019-01-02 21:38:10\"\n },\n {\n \"id\": 52,\n \"title\": \"Suscipit quia expedita magni.\",\n \"description\": \"Nemo cupiditate ducimus consequuntur vel accusantium iste necessitatibus vero consequatur ut.\",\n \"price\": \"69.0\",\n \"author_id\": \"10\",\n \"created_at\": \"2019-01-02 21:38:10\",\n \"updated_at\": \"2019-01-02 21:38:10\"\n },\n {\n \"id\": 53,\n \"title\": \"Molestias consequatur ab.\",\n \"description\": \"Consequatur at omnis veritatis asperiores quisquam sed sint.\",\n \"price\": \"120.0\",\n \"author_id\": \"9\",\n \"created_at\": \"2019-01-02 21:38:10\",\n \"updated_at\": \"2019-01-02 21:38:10\"\n },\n {\n \"id\": 54,\n \"title\": \"Quas deleniti quia a et.\",\n \"description\": \"Dolorem at blanditiis totam nobis molestiae.\",\n \"price\": \"148.0\",\n \"author_id\": \"46\",\n \"created_at\": \"2019-01-02 21:38:10\",\n \"updated_at\": \"2019-01-02 21:38:10\"\n },\n {\n \"id\": 55,\n \"title\": \"Quibusdam minima non aliquam.\",\n \"description\": \"Assumenda eaque alias ullam nemo commodi harum.\",\n \"price\": \"105.0\",\n \"author_id\": \"19\",\n \"created_at\": \"2019-01-02 21:38:11\",\n \"updated_at\": \"2019-01-02 21:38:11\"\n },\n {\n \"id\": 56,\n \"title\": \"Ex assumenda labore unde.\",\n \"description\": \"Et inventore alias ipsam dolorem unde nisi id placeat.\",\n \"price\": \"144.0\",\n \"author_id\": \"40\",\n \"created_at\": \"2019-01-02 21:38:11\",\n \"updated_at\": \"2019-01-02 21:38:11\"\n },\n {\n \"id\": 57,\n \"title\": \"Dolores eligendi assumenda.\",\n \"description\": \"Iusto magni dolorem aperiam quisquam qui hic non vitae voluptatem.\",\n \"price\": \"143.0\",\n \"author_id\": \"15\",\n \"created_at\": \"2019-01-02 21:38:11\",\n \"updated_at\": \"2019-01-02 21:38:11\"\n },\n {\n \"id\": 58,\n \"title\": \"In id ut reiciendis.\",\n \"description\": \"Et consequatur et ea voluptatem.\",\n \"price\": \"148.0\",\n \"author_id\": \"41\",\n \"created_at\": \"2019-01-02 21:38:11\",\n \"updated_at\": \"2019-01-02 21:38:11\"\n },\n {\n \"id\": 59,\n \"title\": \"Fugiat eveniet aut.\",\n \"description\": \"Quisquam tempore non enim dolores earum voluptatibus sunt quo.\",\n \"price\": \"133.0\",\n \"author_id\": \"14\",\n \"created_at\": \"2019-01-02 21:38:11\",\n \"updated_at\": \"2019-01-02 21:38:11\"\n },\n {\n \"id\": 60,\n \"title\": \"Aperiam corporis ipsam.\",\n \"description\": \"Eum deserunt non ut dicta incidunt sint.\",\n \"price\": \"71.0\",\n \"author_id\": \"16\",\n \"created_at\": \"2019-01-02 21:38:11\",\n \"updated_at\": \"2019-01-02 21:38:11\"\n },\n {\n \"id\": 61,\n \"title\": \"Mollitia quos eum enim.\",\n \"description\": \"Sit ut dignissimos aut consequuntur et expedita libero nihil delectus.\",\n \"price\": \"78.0\",\n \"author_id\": \"19\",\n \"created_at\": \"2019-01-02 21:38:11\",\n \"updated_at\": \"2019-01-02 21:38:11\"\n },\n {\n \"id\": 62,\n \"title\": \"Esse molestias et.\",\n \"description\": \"Facere ea nostrum architecto dignissimos necessitatibus iure reiciendis sed.\",\n \"price\": \"116.0\",\n \"author_id\": \"17\",\n \"created_at\": \"2019-01-02 21:38:12\",\n \"updated_at\": \"2019-01-02 21:38:12\"\n },\n {\n \"id\": 63,\n \"title\": \"Deserunt ipsa non incidunt.\",\n \"description\": \"Perspiciatis est omnis aliquam possimus est.\",\n \"price\": \"82.0\",\n \"author_id\": \"21\",\n \"created_at\": \"2019-01-02 21:38:12\",\n \"updated_at\": \"2019-01-02 21:38:12\"\n },\n {\n \"id\": 64,\n \"title\": \"Iste veniam porro est.\",\n \"description\": \"Et aut ut reiciendis perspiciatis odio voluptas a.\",\n \"price\": \"102.0\",\n \"author_id\": \"30\",\n \"created_at\": \"2019-01-02 21:38:12\",\n \"updated_at\": \"2019-01-02 21:38:12\"\n },\n {\n \"id\": 65,\n \"title\": \"Atque atque adipisci deserunt dolor.\",\n \"description\": \"Cumque rem voluptates enim amet ullam consectetur quo enim quas officia laborum.\",\n \"price\": \"44.0\",\n \"author_id\": \"16\",\n \"created_at\": \"2019-01-02 21:38:12\",\n \"updated_at\": \"2019-01-02 21:38:12\"\n },\n {\n \"id\": 66,\n \"title\": \"Rem non officiis est et.\",\n \"description\": \"Beatae omnis pariatur ipsum commodi ab ad.\",\n \"price\": \"84.0\",\n \"author_id\": \"15\",\n \"created_at\": \"2019-01-02 21:38:12\",\n \"updated_at\": \"2019-01-02 21:38:12\"\n },\n {\n \"id\": 67,\n \"title\": \"Sunt voluptatibus libero a.\",\n \"description\": \"Dolore et quia cupiditate harum deleniti.\",\n \"price\": \"69.0\",\n \"author_id\": \"45\",\n \"created_at\": \"2019-01-02 21:38:12\",\n \"updated_at\": \"2019-01-02 21:38:12\"\n },\n {\n \"id\": 68,\n \"title\": \"Sapiente molestiae ipsam non.\",\n \"description\": \"Molestiae eum quo pariatur architecto voluptatem ipsam maxime quos sit excepturi.\",\n \"price\": \"36.0\",\n \"author_id\": \"8\",\n \"created_at\": \"2019-01-02 21:38:12\",\n \"updated_at\": \"2019-01-02 21:38:12\"\n },\n {\n \"id\": 69,\n \"title\": \"Porro accusamus sint cum.\",\n \"description\": \"Ad voluptatem nemo nemo ut sit.\",\n \"price\": \"127.0\",\n \"author_id\": \"33\",\n \"created_at\": \"2019-01-02 21:38:12\",\n \"updated_at\": \"2019-01-02 21:38:12\"\n },\n {\n \"id\": 70,\n \"title\": \"Nam ratione iure quia.\",\n \"description\": \"Quisquam rerum nostrum tenetur impedit consequatur eos officia qui non.\",\n \"price\": \"118.0\",\n \"author_id\": \"41\",\n \"created_at\": \"2019-01-02 21:38:13\",\n \"updated_at\": \"2019-01-02 21:38:13\"\n },\n {\n \"id\": 71,\n \"title\": \"Amet et sint optio.\",\n \"description\": \"Nihil sit et rerum rerum sunt sit neque officiis optio omnis.\",\n \"price\": \"57.0\",\n \"author_id\": \"15\",\n \"created_at\": \"2019-01-02 21:38:13\",\n \"updated_at\": \"2019-01-02 21:38:13\"\n },\n {\n \"id\": 72,\n \"title\": \"Consequatur animi reiciendis.\",\n \"description\": \"Nemo delectus vitae laborum vero.\",\n \"price\": \"73.0\",\n \"author_id\": \"43\",\n \"created_at\": \"2019-01-02 21:38:13\",\n \"updated_at\": \"2019-01-02 21:38:13\"\n },\n {\n \"id\": 73,\n \"title\": \"Quis totam ut.\",\n \"description\": \"Itaque unde id dolorum tenetur itaque ipsum aspernatur qui cupiditate itaque.\",\n \"price\": \"133.0\",\n \"author_id\": \"1\",\n \"created_at\": \"2019-01-02 21:38:13\",\n \"updated_at\": \"2019-01-02 21:38:13\"\n },\n {\n \"id\": 74,\n \"title\": \"Quas enim et doloribus.\",\n \"description\": \"Iste similique necessitatibus quo est et atque iure voluptatum repellat.\",\n \"price\": \"121.0\",\n \"author_id\": \"50\",\n \"created_at\": \"2019-01-02 21:38:13\",\n \"updated_at\": \"2019-01-02 21:38:13\"\n },\n {\n \"id\": 75,\n \"title\": \"Alias praesentium.\",\n \"description\": \"Earum tenetur qui est quasi autem ut.\",\n \"price\": \"125.0\",\n \"author_id\": \"2\",\n \"created_at\": \"2019-01-02 21:38:13\",\n \"updated_at\": \"2019-01-02 21:38:13\"\n },\n {\n \"id\": 76,\n \"title\": \"Doloremque aliquid voluptatum nobis.\",\n \"description\": \"Beatae dignissimos rem vel ad eos sapiente unde.\",\n \"price\": \"62.0\",\n \"author_id\": \"43\",\n \"created_at\": \"2019-01-02 21:38:13\",\n \"updated_at\": \"2019-01-02 21:38:13\"\n },\n {\n \"id\": 77,\n \"title\": \"Sint error reprehenderit.\",\n \"description\": \"Aspernatur cum magni hic sunt labore quae fugiat accusantium tempora eum.\",\n \"price\": \"56.0\",\n \"author_id\": \"27\",\n \"created_at\": \"2019-01-02 21:38:13\",\n \"updated_at\": \"2019-01-02 21:38:13\"\n },\n {\n \"id\": 78,\n \"title\": \"Possimus omnis quisquam recusandae.\",\n \"description\": \"Consequatur perspiciatis quia et ipsam aut aspernatur ea iure inventore error molestias.\",\n \"price\": \"49.0\",\n \"author_id\": \"25\",\n \"created_at\": \"2019-01-02 21:38:14\",\n \"updated_at\": \"2019-01-02 21:38:14\"\n },\n {\n \"id\": 79,\n \"title\": \"Mollitia ex ea.\",\n \"description\": \"Quae deleniti voluptas quaerat laboriosam vitae et fugiat harum magnam voluptas.\",\n \"price\": \"123.0\",\n \"author_id\": \"22\",\n \"created_at\": \"2019-01-02 21:38:14\",\n \"updated_at\": \"2019-01-02 21:38:14\"\n },\n {\n \"id\": 80,\n \"title\": \"Eum reiciendis.\",\n \"description\": \"In maiores est sit enim fugit qui sint culpa eos.\",\n \"price\": \"105.0\",\n \"author_id\": \"27\",\n \"created_at\": \"2019-01-02 21:38:14\",\n \"updated_at\": \"2019-01-02 21:38:14\"\n },\n {\n \"id\": 81,\n \"title\": \"Repellendus tempore.\",\n \"description\": \"Sint assumenda nulla optio voluptatibus quo voluptatem cupiditate quisquam aut omnis sapiente.\",\n \"price\": \"34.0\",\n \"author_id\": \"24\",\n \"created_at\": \"2019-01-02 21:38:14\",\n \"updated_at\": \"2019-01-02 21:38:14\"\n },\n {\n \"id\": 82,\n \"title\": \"Distinctio assumenda et commodi.\",\n \"description\": \"Dolor nobis ut rerum vitae id sed.\",\n \"price\": \"35.0\",\n \"author_id\": \"11\",\n \"created_at\": \"2019-01-02 21:38:14\",\n \"updated_at\": \"2019-01-02 21:38:14\"\n },\n {\n \"id\": 83,\n \"title\": \"Quas culpa neque voluptatem.\",\n \"description\": \"Voluptatem labore incidunt numquam accusamus omnis saepe quaerat sit.\",\n \"price\": \"72.0\",\n \"author_id\": \"18\",\n \"created_at\": \"2019-01-02 21:38:14\",\n \"updated_at\": \"2019-01-02 21:38:14\"\n },\n {\n \"id\": 84,\n \"title\": \"Et omnis adipisci.\",\n \"description\": \"Facilis iste sint quas sequi et dolores dolor.\",\n \"price\": \"98.0\",\n \"author_id\": \"13\",\n \"created_at\": \"2019-01-02 21:38:14\",\n \"updated_at\": \"2019-01-02 21:38:14\"\n },\n {\n \"id\": 85,\n \"title\": \"Quia cumque expedita.\",\n \"description\": \"Voluptas fugit dolores iste dolor et ducimus voluptatem magnam.\",\n \"price\": \"30.0\",\n \"author_id\": \"45\",\n \"created_at\": \"2019-01-02 21:38:14\",\n \"updated_at\": \"2019-01-02 21:38:14\"\n },\n {\n \"id\": 86,\n \"title\": \"Praesentium enim.\",\n \"description\": \"Dolorum exercitationem adipisci recusandae perspiciatis possimus ea vel maiores sed unde est.\",\n \"price\": \"122.0\",\n \"author_id\": \"3\",\n \"created_at\": \"2019-01-02 21:38:15\",\n \"updated_at\": \"2019-01-02 21:38:15\"\n },\n {\n \"id\": 87,\n \"title\": \"Nobis et sed eius.\",\n \"description\": \"Nobis ex animi cupiditate qui similique.\",\n \"price\": \"55.0\",\n \"author_id\": \"35\",\n \"created_at\": \"2019-01-02 21:38:15\",\n \"updated_at\": \"2019-01-02 21:38:15\"\n },\n {\n \"id\": 88,\n \"title\": \"Dolorem dolore qui dignissimos.\",\n \"description\": \"Tempore nisi molestias quidem velit aut est.\",\n \"price\": \"69.0\",\n \"author_id\": \"46\",\n \"created_at\": \"2019-01-02 21:38:15\",\n \"updated_at\": \"2019-01-02 21:38:15\"\n },\n {\n \"id\": 89,\n \"title\": \"Aliquam velit suscipit omnis.\",\n \"description\": \"Excepturi officiis vel libero quod recusandae reprehenderit voluptatum aut nisi.\",\n \"price\": \"101.0\",\n \"author_id\": \"4\",\n \"created_at\": \"2019-01-02 21:38:15\",\n \"updated_at\": \"2019-01-02 21:38:15\"\n },\n {\n \"id\": 90,\n \"title\": \"Vero non vel repudiandae.\",\n \"description\": \"Totam corporis qui est odit et autem voluptatem laboriosam fuga.\",\n \"price\": \"149.0\",\n \"author_id\": \"33\",\n \"created_at\": \"2019-01-02 21:38:15\",\n \"updated_at\": \"2019-01-02 21:38:15\"\n },\n {\n \"id\": 91,\n \"title\": \"Consequuntur voluptatum cupiditate.\",\n \"description\": \"Voluptatem molestiae vel est provident dicta repellat repudiandae.\",\n \"price\": \"68.0\",\n \"author_id\": \"1\",\n \"created_at\": \"2019-01-02 21:38:15\",\n \"updated_at\": \"2019-01-02 21:38:15\"\n },\n {\n \"id\": 92,\n \"title\": \"Dolorum at nesciunt commodi.\",\n \"description\": \"Dolorem ratione velit vitae dolorum omnis facilis.\",\n \"price\": \"79.0\",\n \"author_id\": \"16\",\n \"created_at\": \"2019-01-02 21:38:15\",\n \"updated_at\": \"2019-01-02 21:38:15\"\n },\n {\n \"id\": 93,\n \"title\": \"Veritatis deserunt.\",\n \"description\": \"In aut asperiores asperiores suscipit ab quis.\",\n \"price\": \"89.0\",\n \"author_id\": \"38\",\n \"created_at\": \"2019-01-02 21:38:16\",\n \"updated_at\": \"2019-01-02 21:38:16\"\n },\n {\n \"id\": 94,\n \"title\": \"Itaque vel similique debitis.\",\n \"description\": \"Modi omnis nobis voluptatem omnis optio sit.\",\n \"price\": \"133.0\",\n \"author_id\": \"38\",\n \"created_at\": \"2019-01-02 21:38:16\",\n \"updated_at\": \"2019-01-02 21:38:16\"\n },\n {\n \"id\": 95,\n \"title\": \"Quibusdam nostrum sed et quos.\",\n \"description\": \"Eum molestias quaerat ipsam ipsa culpa qui quia excepturi alias nobis.\",\n \"price\": \"51.0\",\n \"author_id\": \"6\",\n \"created_at\": \"2019-01-02 21:38:16\",\n \"updated_at\": \"2019-01-02 21:38:16\"\n },\n {\n \"id\": 96,\n \"title\": \"Nihil id eius.\",\n \"description\": \"Voluptas est quia enim magnam labore velit quod dicta aut est.\",\n \"price\": \"148.0\",\n \"author_id\": \"18\",\n \"created_at\": \"2019-01-02 21:38:16\",\n \"updated_at\": \"2019-01-02 21:38:16\"\n },\n {\n \"id\": 97,\n \"title\": \"Impedit ipsam id ex.\",\n \"description\": \"Omnis id asperiores excepturi tempore odit.\",\n \"price\": \"147.0\",\n \"author_id\": \"9\",\n \"created_at\": \"2019-01-02 21:38:16\",\n \"updated_at\": \"2019-01-02 21:38:16\"\n },\n {\n \"id\": 98,\n \"title\": \"Eos voluptas nam hic eius.\",\n \"description\": \"Recusandae explicabo sint consequatur tempora incidunt sit odit hic reprehenderit.\",\n \"price\": \"116.0\",\n \"author_id\": \"44\",\n \"created_at\": \"2019-01-02 21:38:16\",\n \"updated_at\": \"2019-01-02 21:38:16\"\n },\n {\n \"id\": 99,\n \"title\": \"Ut nemo ea et.\",\n \"description\": \"Harum nesciunt facilis aliquam eius quia et molestiae qui.\",\n \"price\": \"117.0\",\n \"author_id\": \"37\",\n \"created_at\": \"2019-01-02 21:38:16\",\n \"updated_at\": \"2019-01-02 21:38:16\"\n },\n {\n \"id\": 100,\n \"title\": \"Incidunt asperiores minima.\",\n \"description\": \"Delectus corporis provident sed nesciunt quasi delectus occaecati explicabo velit.\",\n \"price\": \"145.0\",\n \"author_id\": \"27\",\n \"created_at\": \"2019-01-02 21:38:16\",\n \"updated_at\": \"2019-01-02 21:38:16\"\n },\n {\n \"id\": 101,\n \"title\": \"Sequi molestiae.\",\n \"description\": \"Quia officiis animi ad sit minima architecto.\",\n \"price\": \"98.0\",\n \"author_id\": \"10\",\n \"created_at\": \"2019-01-02 21:38:17\",\n \"updated_at\": \"2019-01-02 21:38:17\"\n },\n {\n \"id\": 102,\n \"title\": \"Eum aut et ducimus.\",\n \"description\": \"Aliquid delectus hic dolore est accusamus et laudantium laudantium.\",\n \"price\": \"122.0\",\n \"author_id\": \"4\",\n \"created_at\": \"2019-01-02 21:38:17\",\n \"updated_at\": \"2019-01-02 21:38:17\"\n },\n {\n \"id\": 103,\n \"title\": \"Ad voluptatem vel ut.\",\n \"description\": \"Amet ad tempora sed provident tenetur.\",\n \"price\": \"58.0\",\n \"author_id\": \"11\",\n \"created_at\": \"2019-01-02 21:38:17\",\n \"updated_at\": \"2019-01-02 21:38:17\"\n },\n {\n \"id\": 104,\n \"title\": \"Magnam unde dolor dolor.\",\n \"description\": \"Perspiciatis quas in dolore saepe voluptatibus est.\",\n \"price\": \"35.0\",\n \"author_id\": \"39\",\n \"created_at\": \"2019-01-02 21:38:17\",\n \"updated_at\": \"2019-01-02 21:38:17\"\n },\n {\n \"id\": 105,\n \"title\": \"Sit error.\",\n \"description\": \"Et omnis dolor nesciunt sapiente qui dolore voluptate rerum.\",\n \"price\": \"36.0\",\n \"author_id\": \"10\",\n \"created_at\": \"2019-01-02 21:38:17\",\n \"updated_at\": \"2019-01-02 21:38:17\"\n },\n {\n \"id\": 106,\n \"title\": \"Amet id dolore.\",\n \"description\": \"Ut voluptatem sint quas nam qui officiis commodi excepturi totam.\",\n \"price\": \"37.0\",\n \"author_id\": \"6\",\n \"created_at\": \"2019-01-02 21:38:17\",\n \"updated_at\": \"2019-01-02 21:38:17\"\n },\n {\n \"id\": 107,\n \"title\": \"Et consequatur repellat.\",\n \"description\": \"Totam omnis nemo magnam illum doloremque.\",\n \"price\": \"105.0\",\n \"author_id\": \"45\",\n \"created_at\": \"2019-01-02 21:38:18\",\n \"updated_at\": \"2019-01-02 21:38:18\"\n },\n {\n \"id\": 108,\n \"title\": \"Rerum qui et.\",\n \"description\": \"Reiciendis tenetur placeat necessitatibus nostrum beatae ut libero atque dolorum repellat.\",\n \"price\": \"104.0\",\n \"author_id\": \"24\",\n \"created_at\": \"2019-01-02 21:38:18\",\n \"updated_at\": \"2019-01-02 21:38:18\"\n },\n {\n \"id\": 109,\n \"title\": \"Qui laudantium vel odit.\",\n \"description\": \"Et dolorum dolor est ad ipsum id magnam nam voluptates sed.\",\n \"price\": \"97.0\",\n \"author_id\": \"23\",\n \"created_at\": \"2019-01-02 21:38:18\",\n \"updated_at\": \"2019-01-02 21:38:18\"\n },\n {\n \"id\": 110,\n \"title\": \"Eius maxime distinctio.\",\n \"description\": \"Ipsam praesentium culpa architecto odio quia reiciendis fuga repellendus.\",\n \"price\": \"69.0\",\n \"author_id\": \"41\",\n \"created_at\": \"2019-01-02 21:38:18\",\n \"updated_at\": \"2019-01-02 21:38:18\"\n },\n {\n \"id\": 111,\n \"title\": \"Ipsum modi omnis.\",\n \"description\": \"Laudantium at ut consequatur mollitia neque.\",\n \"price\": \"77.0\",\n \"author_id\": \"23\",\n \"created_at\": \"2019-01-02 21:38:18\",\n \"updated_at\": \"2019-01-02 21:38:18\"\n },\n {\n \"id\": 112,\n \"title\": \"Omnis nulla.\",\n \"description\": \"Repellendus similique eveniet consequuntur iusto aut id.\",\n \"price\": \"143.0\",\n \"author_id\": \"40\",\n \"created_at\": \"2019-01-02 21:38:18\",\n \"updated_at\": \"2019-01-02 21:38:18\"\n },\n {\n \"id\": 113,\n \"title\": \"Dolores quisquam aut sit.\",\n \"description\": \"Quam eos debitis ea ex et tempora et.\",\n \"price\": \"132.0\",\n \"author_id\": \"50\",\n \"created_at\": \"2019-01-02 21:38:19\",\n \"updated_at\": \"2019-01-02 21:38:19\"\n },\n {\n \"id\": 114,\n \"title\": \"Nesciunt voluptas rerum in.\",\n \"description\": \"Sed enim eligendi ad voluptatem voluptatem iure.\",\n \"price\": \"47.0\",\n \"author_id\": \"7\",\n \"created_at\": \"2019-01-02 21:38:19\",\n \"updated_at\": \"2019-01-02 21:38:19\"\n },\n {\n \"id\": 115,\n \"title\": \"Repellendus alias odit suscipit.\",\n \"description\": \"Porro ut ab voluptatum odio dolor.\",\n \"price\": \"140.0\",\n \"author_id\": \"28\",\n \"created_at\": \"2019-01-02 21:38:19\",\n \"updated_at\": \"2019-01-02 21:38:19\"\n },\n {\n \"id\": 116,\n \"title\": \"Et placeat ut.\",\n \"description\": \"Non molestiae velit dolore voluptatem et sed culpa dolores nam et quia.\",\n \"price\": \"142.0\",\n \"author_id\": \"18\",\n \"created_at\": \"2019-01-02 21:38:19\",\n \"updated_at\": \"2019-01-02 21:38:19\"\n },\n {\n \"id\": 117,\n \"title\": \"Sit esse enim enim.\",\n \"description\": \"Totam alias illum tempore modi rerum ut quis quia reiciendis.\",\n \"price\": \"63.0\",\n \"author_id\": \"34\",\n \"created_at\": \"2019-01-02 21:38:19\",\n \"updated_at\": \"2019-01-02 21:38:19\"\n },\n {\n \"id\": 118,\n \"title\": \"Ut nam rerum dolorem.\",\n \"description\": \"Mollitia temporibus optio modi aut ut quisquam iusto quia corporis accusantium.\",\n \"price\": \"134.0\",\n \"author_id\": \"30\",\n \"created_at\": \"2019-01-02 21:38:19\",\n \"updated_at\": \"2019-01-02 21:38:19\"\n },\n {\n \"id\": 119,\n \"title\": \"Porro reiciendis fugiat.\",\n \"description\": \"Consequatur nam nobis voluptas magni non cumque consectetur quidem consequatur.\",\n \"price\": \"133.0\",\n \"author_id\": \"26\",\n \"created_at\": \"2019-01-02 21:38:20\",\n \"updated_at\": \"2019-01-02 21:38:20\"\n },\n {\n \"id\": 120,\n \"title\": \"Ullam sapiente labore.\",\n \"description\": \"Optio consequatur voluptate consequuntur sed pariatur ad quia debitis sit.\",\n \"price\": \"34.0\",\n \"author_id\": \"37\",\n \"created_at\": \"2019-01-02 21:38:20\",\n \"updated_at\": \"2019-01-02 21:38:20\"\n },\n {\n \"id\": 121,\n \"title\": \"Fugiat voluptatem magni id.\",\n \"description\": \"Unde reiciendis dolores eaque repellendus repellendus ex sit ratione voluptatum non.\",\n \"price\": \"58.0\",\n \"author_id\": \"3\",\n \"created_at\": \"2019-01-02 21:38:20\",\n \"updated_at\": \"2019-01-02 21:38:20\"\n },\n {\n \"id\": 122,\n \"title\": \"Doloremque nam et earum.\",\n \"description\": \"Expedita laudantium alias sed qui aut saepe eum.\",\n \"price\": \"105.0\",\n \"author_id\": \"25\",\n \"created_at\": \"2019-01-02 21:38:20\",\n \"updated_at\": \"2019-01-02 21:38:20\"\n },\n {\n \"id\": 123,\n \"title\": \"Autem ad esse consequuntur.\",\n \"description\": \"Accusantium odio voluptatem velit magnam ea.\",\n \"price\": \"62.0\",\n \"author_id\": \"27\",\n \"created_at\": \"2019-01-02 21:38:20\",\n \"updated_at\": \"2019-01-02 21:38:20\"\n },\n {\n \"id\": 124,\n \"title\": \"Beatae sunt impedit accusamus.\",\n \"description\": \"Soluta recusandae praesentium hic doloribus recusandae quisquam ut.\",\n \"price\": \"36.0\",\n \"author_id\": \"31\",\n \"created_at\": \"2019-01-02 21:38:20\",\n \"updated_at\": \"2019-01-02 21:38:20\"\n },\n {\n \"id\": 125,\n \"title\": \"Sed architecto esse.\",\n \"description\": \"Qui quam non provident consequatur et aliquid laborum illo voluptatem.\",\n \"price\": \"137.0\",\n \"author_id\": \"29\",\n \"created_at\": \"2019-01-02 21:38:20\",\n \"updated_at\": \"2019-01-02 21:38:20\"\n },\n {\n \"id\": 126,\n \"title\": \"Nihil architecto facere optio.\",\n \"description\": \"Nemo non et et ut doloremque officiis voluptas.\",\n \"price\": \"80.0\",\n \"author_id\": \"35\",\n \"created_at\": \"2019-01-02 21:38:21\",\n \"updated_at\": \"2019-01-02 21:38:21\"\n },\n {\n \"id\": 127,\n \"title\": \"Libero assumenda ut accusantium.\",\n \"description\": \"Sapiente aliquam ut libero aperiam nulla.\",\n \"price\": \"46.0\",\n \"author_id\": \"48\",\n \"created_at\": \"2019-01-02 21:38:21\",\n \"updated_at\": \"2019-01-02 21:38:21\"\n },\n {\n \"id\": 128,\n \"title\": \"Veritatis voluptas est suscipit.\",\n \"description\": \"In ex sint ipsum aperiam placeat iure.\",\n \"price\": \"105.0\",\n \"author_id\": \"47\",\n \"created_at\": \"2019-01-02 21:38:21\",\n \"updated_at\": \"2019-01-02 21:38:21\"\n },\n {\n \"id\": 129,\n \"title\": \"Tempore quis sit ut.\",\n \"description\": \"Ut laborum impedit vero repellendus beatae temporibus delectus voluptatem autem totam.\",\n \"price\": \"65.0\",\n \"author_id\": \"35\",\n \"created_at\": \"2019-01-02 21:38:21\",\n \"updated_at\": \"2019-01-02 21:38:21\"\n },\n {\n \"id\": 130,\n \"title\": \"Voluptate itaque aliquam.\",\n \"description\": \"Quasi doloribus vel et quis at eos et et eum.\",\n \"price\": \"29.0\",\n \"author_id\": \"39\",\n \"created_at\": \"2019-01-02 21:38:21\",\n \"updated_at\": \"2019-01-02 21:38:21\"\n },\n {\n \"id\": 131,\n \"title\": \"Nulla modi illum.\",\n \"description\": \"Cumque in ut quia excepturi occaecati praesentium vel.\",\n \"price\": \"102.0\",\n \"author_id\": \"39\",\n \"created_at\": \"2019-01-02 21:38:21\",\n \"updated_at\": \"2019-01-02 21:38:21\"\n },\n {\n \"id\": 132,\n \"title\": \"Et sed quam quia.\",\n \"description\": \"Fuga quae perferendis pariatur aliquid quidem id culpa enim vitae qui.\",\n \"price\": \"141.0\",\n \"author_id\": \"48\",\n \"created_at\": \"2019-01-02 21:38:22\",\n \"updated_at\": \"2019-01-02 21:38:22\"\n },\n {\n \"id\": 133,\n \"title\": \"Esse consequatur.\",\n \"description\": \"Qui quam labore corrupti doloribus inventore.\",\n \"price\": \"64.0\",\n \"author_id\": \"50\",\n \"created_at\": \"2019-01-02 21:38:22\",\n \"updated_at\": \"2019-01-02 21:38:22\"\n },\n {\n \"id\": 134,\n \"title\": \"Veritatis molestiae quibusdam fugit.\",\n \"description\": \"Qui illum ea ut qui magni.\",\n \"price\": \"110.0\",\n \"author_id\": \"17\",\n \"created_at\": \"2019-01-02 21:38:22\",\n \"updated_at\": \"2019-01-02 21:38:22\"\n },\n {\n \"id\": 135,\n \"title\": \"Minima nihil.\",\n \"description\": \"Maiores eligendi labore voluptatibus amet saepe necessitatibus voluptatem.\",\n \"price\": \"86.0\",\n \"author_id\": \"47\",\n \"created_at\": \"2019-01-02 21:38:22\",\n \"updated_at\": \"2019-01-02 21:38:22\"\n },\n {\n \"id\": 136,\n \"title\": \"Et quos laudantium.\",\n \"description\": \"Iste maiores odio similique voluptatem unde.\",\n \"price\": \"80.0\",\n \"author_id\": \"31\",\n \"created_at\": \"2019-01-02 21:38:22\",\n \"updated_at\": \"2019-01-02 21:38:22\"\n },\n {\n \"id\": 137,\n \"title\": \"Voluptatem saepe delectus.\",\n \"description\": \"Quos impedit fuga eum nobis non excepturi voluptatem id mollitia.\",\n \"price\": \"78.0\",\n \"author_id\": \"34\",\n \"created_at\": \"2019-01-02 21:38:22\",\n \"updated_at\": \"2019-01-02 21:38:22\"\n },\n {\n \"id\": 138,\n \"title\": \"Cumque odio vitae.\",\n \"description\": \"Voluptatem voluptatum non architecto sit architecto.\",\n \"price\": \"56.0\",\n \"author_id\": \"36\",\n \"created_at\": \"2019-01-02 21:38:22\",\n \"updated_at\": \"2019-01-02 21:38:22\"\n },\n {\n \"id\": 139,\n \"title\": \"Et molestias et sequi.\",\n \"description\": \"Autem quia itaque quis eos consequatur ipsam quisquam sit quia.\",\n \"price\": \"25.0\",\n \"author_id\": \"22\",\n \"created_at\": \"2019-01-02 21:38:22\",\n \"updated_at\": \"2019-01-02 21:38:22\"\n },\n {\n \"id\": 140,\n \"title\": \"Aut quaerat assumenda tenetur nisi.\",\n \"description\": \"Dolores rerum odit hic veritatis sit.\",\n \"price\": \"137.0\",\n \"author_id\": \"31\",\n \"created_at\": \"2019-01-02 21:38:23\",\n \"updated_at\": \"2019-01-02 21:38:23\"\n },\n {\n \"id\": 141,\n \"title\": \"Rem quod officiis.\",\n \"description\": \"Explicabo excepturi at iusto harum est.\",\n \"price\": \"71.0\",\n \"author_id\": \"45\",\n \"created_at\": \"2019-01-02 21:38:23\",\n \"updated_at\": \"2019-01-02 21:38:23\"\n },\n {\n \"id\": 142,\n \"title\": \"Atque repellendus ut.\",\n \"description\": \"Laudantium molestiae asperiores quisquam voluptatum quas est labore corporis ut.\",\n \"price\": \"58.0\",\n \"author_id\": \"21\",\n \"created_at\": \"2019-01-02 21:38:23\",\n \"updated_at\": \"2019-01-02 21:38:23\"\n },\n {\n \"id\": 143,\n \"title\": \"Numquam voluptate.\",\n \"description\": \"Minima autem aperiam architecto dolor pariatur dolores suscipit sit reiciendis velit.\",\n \"price\": \"70.0\",\n \"author_id\": \"6\",\n \"created_at\": \"2019-01-02 21:38:23\",\n \"updated_at\": \"2019-01-02 21:38:23\"\n },\n {\n \"id\": 144,\n \"title\": \"Eum reiciendis sed laboriosam in.\",\n \"description\": \"Sunt nulla dicta explicabo culpa mollitia consequatur quasi laudantium quia distinctio.\",\n \"price\": \"119.0\",\n \"author_id\": \"33\",\n \"created_at\": \"2019-01-02 21:38:23\",\n \"updated_at\": \"2019-01-02 21:38:23\"\n },\n {\n \"id\": 145,\n \"title\": \"Optio ex quam quibusdam.\",\n \"description\": \"Quo sequi quo exercitationem explicabo et consequatur magni provident consectetur modi.\",\n \"price\": \"77.0\",\n \"author_id\": \"10\",\n \"created_at\": \"2019-01-02 21:38:23\",\n \"updated_at\": \"2019-01-02 21:38:23\"\n },\n {\n \"id\": 146,\n \"title\": \"Beatae suscipit est qui.\",\n \"description\": \"Facere et dolorem ducimus quia sed voluptatem provident harum non pariatur.\",\n \"price\": \"125.0\",\n \"author_id\": \"7\",\n \"created_at\": \"2019-01-02 21:38:24\",\n \"updated_at\": \"2019-01-02 21:38:24\"\n },\n {\n \"id\": 147,\n \"title\": \"Doloremque nihil.\",\n \"description\": \"Ea sit nihil est optio esse asperiores perferendis voluptatem fuga.\",\n \"price\": \"100.0\",\n \"author_id\": \"28\",\n \"created_at\": \"2019-01-02 21:38:24\",\n \"updated_at\": \"2019-01-02 21:38:24\"\n },\n {\n \"id\": 148,\n \"title\": \"Perferendis numquam explicabo autem.\",\n \"description\": \"Ipsa dolores aspernatur facere ut quia ut est unde consequatur aut vel.\",\n \"price\": \"48.0\",\n \"author_id\": \"33\",\n \"created_at\": \"2019-01-02 21:38:24\",\n \"updated_at\": \"2019-01-02 21:38:24\"\n },\n {\n \"id\": 149,\n \"title\": \"Dolor at totam est.\",\n \"description\": \"Libero velit ratione repellat minus cupiditate itaque voluptate molestiae.\",\n \"price\": \"120.0\",\n \"author_id\": \"2\",\n \"created_at\": \"2019-01-02 21:38:24\",\n \"updated_at\": \"2019-01-02 21:38:24\"\n },\n {\n \"id\": 150,\n \"title\": \"Quae et aperiam quod.\",\n \"description\": \"Iure cupiditate occaecati facere id quia corrupti sed accusamus sit.\",\n \"price\": \"79.0\",\n \"author_id\": \"36\",\n \"created_at\": \"2019-01-02 21:38:24\",\n \"updated_at\": \"2019-01-02 21:38:24\"\n }\n ]\n}"
}
]
},
{
"name": "Storing a book information using POST",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "title",
"value": "toothless",
"type": "text"
},
{
"key": "description",
"value": "A black dragon",
"type": "text"
},
{
"key": "price",
"value": "120.39",
"type": "text"
},
{
"key": "author_id",
"value": "20",
"type": "text"
}
]
},
"url": {
"raw": "http://localhost:8067/books",
"protocol": "http",
"host": [
"localhost"
],
"port": "8067",
"path": [
"books"
]
}
},
"response": [
{
"name": "Storing a book information using POST",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "title",
"value": "toothless",
"type": "text"
},
{
"key": "description",
"value": "A black dragon",
"type": "text"
},
{
"key": "price",
"value": "120.39",
"type": "text"
},
{
"key": "author_id",
"value": "20",
"type": "text"
}
]
},
"url": {
"raw": "http://localhost:8067/books",
"protocol": "http",
"host": [
"localhost"
],
"port": "8067",
"path": [
"books"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Host",
"value": "localhost:8067"
},
{
"key": "Date",
"value": "Wed, 02 Jan 2019 23:16:41 +0000"
},
{
"key": "Date",
"value": "Wed, 02 Jan 2019 23:16:41 GMT"
},
{
"key": "Connection",
"value": "close"
},
{
"key": "X-Powered-By",
"value": "PHP/7.1.16"
},
{
"key": "Cache-Control",
"value": "no-cache, private"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"data\": {\n \"title\": \"toothless\",\n \"description\": \"A black dragon\",\n \"price\": \"120.39\",\n \"author_id\": \"20\",\n \"updated_at\": \"2019-01-02 23:16:41\",\n \"created_at\": \"2019-01-02 23:16:41\",\n \"id\": 151\n }\n}"
}
]
},
{
"name": "Showing a specific book data Using GET",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "title",
"value": "toothless",
"type": "text",
"disabled": true
},
{
"key": "description",
"value": "A black dragon",
"type": "text",
"disabled": true
},
{
"key": "price",
"value": "120.39",
"type": "text",
"disabled": true
},
{
"key": "author_id",
"value": "20",
"type": "text",
"disabled": true
}
]
},
"url": {
"raw": "http://localhost:8067/books/5",
"protocol": "http",
"host": [
"localhost"
],
"port": "8067",
"path": [
"books",
"5"
]
}
},
"response": [
{
"name": "Showing a specific book data Using GET",
"originalRequest": {
"method": "GET",
"header": [],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "title",
"value": "toothless",
"type": "text",
"disabled": true
},
{
"key": "description",
"value": "A black dragon",
"type": "text",
"disabled": true
},
{
"key": "price",
"value": "120.39",
"type": "text",
"disabled": true
},
{
"key": "author_id",
"value": "20",
"type": "text",
"disabled": true
}
]
},
"url": {
"raw": "http://localhost:8067/books/5",
"protocol": "http",
"host": [
"localhost"
],
"port": "8067",
"path": [
"books",
"5"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Host",
"value": "localhost:8067"
},
{
"key": "Date",
"value": "Wed, 02 Jan 2019 23:21:29 +0000"
},
{
"key": "Date",
"value": "Wed, 02 Jan 2019 23:21:29 GMT"
},
{
"key": "Connection",
"value": "close"
},
{
"key": "X-Powered-By",
"value": "PHP/7.1.16"
},
{
"key": "Cache-Control",
"value": "no-cache, private"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"data\": {\n \"id\": 5,\n \"title\": \"Doloribus iste fugit dolorem impedit.\",\n \"description\": \"Nihil laudantium consequatur et quae rerum magni placeat.\",\n \"price\": \"70.0\",\n \"author_id\": \"48\",\n \"created_at\": \"2019-01-02 21:38:04\",\n \"updated_at\": \"2019-01-02 21:38:04\"\n }\n}"
}
]
},
{
"name": "Updating book data using PUT/PATCH",
"request": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/x-www-form-urlencoded",
"type": "text"
}
],
"body": {
"mode": "urlencoded",
"urlencoded": [
{
"key": "title",
"value": "Little Red",
"type": "text"
}
]
},
"url": {
"raw": "http://localhost:8067/books/5",
"protocol": "http",
"host": [
"localhost"
],
"port": "8067",
"path": [
"books",
"5"
]
}
},
"response": [
{
"name": "Updating book data using PUT/PATCH",
"originalRequest": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/x-www-form-urlencoded",
"type": "text"
}
],
"body": {
"mode": "urlencoded",
"urlencoded": [
{
"key": "title",
"value": "Little Red",
"type": "text"
}
]
},
"url": {
"raw": "http://localhost:8067/books/5",
"protocol": "http",
"host": [
"localhost"
],
"port": "8067",
"path": [
"books",
"5"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Host",
"value": "localhost:8067"
},
{
"key": "Date",
"value": "Wed, 02 Jan 2019 23:30:57 +0000"
},
{
"key": "Date",
"value": "Wed, 02 Jan 2019 23:30:57 GMT"
},
{
"key": "Connection",
"value": "close"
},
{
"key": "X-Powered-By",
"value": "PHP/7.1.16"
},
{
"key": "Cache-Control",
"value": "no-cache, private"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"data\": {\n \"id\": 5,\n \"title\": \"Little Red\",\n \"description\": \"Nihil laudantium consequatur et quae rerum magni placeat.\",\n \"price\": \"70.0\",\n \"author_id\": \"48\",\n \"created_at\": \"2019-01-02 21:38:04\",\n \"updated_at\": \"2019-01-02 23:30:56\"\n }\n}"
}
]
},
{
"name": "http://localhost:8067/books/5",
"request": {
"method": "DELETE",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/x-www-form-urlencoded",
"type": "text"
}
],
"body": {
"mode": "urlencoded",
"urlencoded": [
{
"key": "title",
"value": "Little Red",
"type": "text"
}
]
},
"url": {
"raw": "http://localhost:8067/books/5",
"protocol": "http",
"host": [
"localhost"
],
"port": "8067",
"path": [
"books",
"5"
]
},
"description": "Deleting a book info using DELETE"
},
"response": []
},
{
"name": "Getting all authors information from API GET method",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{