-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcresline.postman_collection.json
1990 lines (1990 loc) · 173 KB
/
cresline.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": "895c4316-9c4a-4d83-b2ae-d244540e9fa3",
"name": "cresline",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Signup API",
"request": {
"method": "POST",
"header": [
{
"key": "refreshtoken",
"value": "AGEhc0Cr2ktvKr1R7CND9Z2ToLZLHvPrj-auxW9-gZ33IZ-wTZ0fQrWwj2Lnz9FDCqhLyJWJhQ_kXsstiOB-gQze5gvErkwO_-In7wT3QkZ5tdV9CIxJwVS_wDwgwMjhKLJ-jaqKNduyCOfofeUX-VMSgrQOkDvOgqVCrRh-uLzhHmUBaRC2vbSSzYN7nSccMfciFLptWbRS",
"type": "text"
},
{
"key": "accesstoken",
"value": "eyJhbGciOiJSUzI1NiIsImtpZCI6Ijg4ZGYxMzgwM2I3NDM2NjExYWQ0ODE0NmE4ZGExYjA3MTg2ZmQxZTkiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL3NlY3VyZXRva2VuLmdvb2dsZS5jb20vZm9zcy0zYTYxNSIsImF1ZCI6ImZvc3MtM2E2MTUiLCJhdXRoX3RpbWUiOjE2MjQ0NTg2MDcsInVzZXJfaWQiOiJQZnZTUVZLRmMyVzR2dmpNN2JEWlZrN2pXT1MyIiwic3ViIjoiUGZ2U1FWS0ZjMlc0dnZqTTdiRFpWazdqV09TMiIsImlhdCI6MTYyNDc4NjQ2MSwiZXhwIjoxNjI0NzkwMDYxLCJwaG9uZV9udW1iZXIiOiIrOTE3NDA3ODc4Nzc4IiwiZmlyZWJhc2UiOnsiaWRlbnRpdGllcyI6eyJwaG9uZSI6WyIrOTE3NDA3ODc4Nzc4Il19LCJzaWduX2luX3Byb3ZpZGVyIjoicGhvbmUifX0.s8uc8HCgmBKnqHLSXCY_r45MBxqNDf7ojELcwqldnyHat7ITf2_0Ah9Fi5Z2daHra1Lmz4m1OYDSQwVvj3sKERKKr_J-3ZiTiZzLUx9dUW_Ule4I2GP84YQpZw-aoA656SB-rH4eZNcnipUAanD17kGey9QnUoGX3NBJm8peLZVjcOnb55gUOyu58aIaUKTc0sGu4t8ZYVL0AJdjb4IbjiE2vfTTlrk7hDR3j8DLppyWqr9cpFR7DejP2DO9A7OnklmTl2T-TaFnlBpyk7AH4-hFDxgZXw6KUvIoking8avKzaY5zFRiJbhqWfySHwqqZWbR-SffhPRP4xEJTt_HFA",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"phone_number\": \"918967998601\",\n \"frst_name\": \"Raja\",\n \"email\": \"[email protected]\",\n \"last_name\": \"Samanta\",\n \"user_type\": \"P\",\n \"refresh_token\": \"AFxQ4_p_StdL3m6sussRnzWURuEli9oSE-aYg1uQs6qlXSH_OEYPFGsPH5N159mJOn6wFcxhN7Pg6DCPINRSkGCbwb4-VGVsI1paDt8PtgWGmYaH9kCy0N_XZSpVBSkp_VGQSdcpSNxo5ditMtN--w2ojSsB8643G57snXUN8LW2RbT0sMXJ5eXJNalUwamyaesqejDNZJPW\",\n \"IsNewUser\": false,\n \"major\": \"LC\",\n \"spec\": \"AM\",\n \"experience\": \"Having Broad Experience\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:3000/signup",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"signup"
]
}
},
"response": []
},
{
"name": "Create Appoinment API",
"request": {
"method": "POST",
"header": [
{
"key": "refreshtoken",
"value": "ACzBnCgCGFS52tC0Lt_iDupzzwFathR0iAG9cydkC3M9eXxw_BIzqbOAFLQJEQ745MuhePHye_02hK6U3Eaa3OANhHA00RM4wxvgN8LOoyQLFeoYJn3Cc-InjdHOZ18lyrPHNAOTzU8Cx1osOPHI-9FiZXBv9kZ6-JaUexYrs99ftli7y_BQzTk60O-ramBzdOgIVVuB0Loa",
"type": "text"
},
{
"key": "accesstoken",
"value": "eyJhbGciOiJSUzI1NiIsImtpZCI6ImY1NWUyOTRlZWRjMTY3Y2Q5N2JiNWE4MTliYmY3OTA2MzZmMTIzN2UiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL3NlY3VyZXRva2VuLmdvb2dsZS5jb20vdGhvci1jcmVzbGluIiwiYXVkIjoidGhvci1jcmVzbGluIiwiYXV0aF90aW1lIjoxNjM2OTAxMDcwLCJ1c2VyX2lkIjoiS0lLVWFKRmFTRWhqblc1RDdld0NQM2J2NXZpMSIsInN1YiI6IktJS1VhSkZhU0Voam5XNUQ3ZXdDUDNidjV2aTEiLCJpYXQiOjE2MzY5MDUyNjUsImV4cCI6MTYzNjkwODg2NSwicGhvbmVfbnVtYmVyIjoiKzkxODk2Nzk5ODYwMSIsImZpcmViYXNlIjp7ImlkZW50aXRpZXMiOnsicGhvbmUiOlsiKzkxODk2Nzk5ODYwMSJdfSwic2lnbl9pbl9wcm92aWRlciI6InBob25lIn19.izmQsJHCgSnqRQu1d5MwhJ-y7YO3JBHPzVBNfJo25F89HVVJHMV122xJqdwMd81nKS1neB0y3Ly0yCYGRXGtUCLC1Oe_cpO9l4V46mf4eTFAEKWoLFT6QG1eM-NaEoFtBGeZ-6iraKOekevpcSUPiHLLmVy21VXafl765j_p7_vnFUStwmPIEFtdBA3yLovJ4_drgsZmXsIJ-6MJQXfWxbjxmmfHKnCos5re-CDPyabDf4Aj764SwYyTvCu55dOn70hO3KpGfUu7rm5MrYnbAFLdUk7kCvJVKiuwANtZRgvKy8ORnM4r6wYHZzSMARlDwhqmFRK6bvKic507RcCbPw",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"summary\": \"Next Appoinment Testing\",\n \"sessionInfo\": \"Doctor Visit\",\n \"date\": \"2021-11-14\",\n \"startTime\": \"22:30\",\n \"endTime\": \"23:30\",\n \"patientDetails\": [\n {\n \"email\": \"[email protected]\",\n \"name\": \"Sankhadip Samanta\",\n \"gender\": \"M\",\n \"ph\": \"918967998601\",\n \"dob\": \"4/08/2000\"\n },\n {\n \"email\": \"[email protected]\",\n \"name\": \"Sankharaj Samanta\",\n \"gender\": \"M\",\n \"ph\": \"918967998601\",\n \"dob\": \"4/08/2000\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:3000/create-meeting",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"create-meeting"
]
}
},
"response": []
},
{
"name": "Generate Google OAUTH URL API",
"request": {
"method": "POST",
"header": [
{
"key": "refreshtoken",
"type": "text",
"value": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MjU1NWEyMjM3MWYxMGY0ZTIyZjFhY2U3NjJmYzUwZmYzYmVlMGMiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL3NlY3VyZXRva2VuLmdvb2dsZS5jb20vdGhvci1jcmVzbGluIiwiYXVkIjoidGhvci1jcmVzbGluIiwiYXV0aF90aW1lIjoxNjM1MjM5Njg5LCJ1c2VyX2lkIjoiS0lLVWFKRmFTRWhqblc1RDdld0NQM2J2NXZpMSIsInN1YiI6IktJS1VhSkZhU0Voam5XNUQ3ZXdDUDNidjV2aTEiLCJpYXQiOjE2MzUzMjU0MDIsImV4cCI6MTYzNTMyOTAwMiwicGhvbmVfbnVtYmVyIjoiKzkxODk2Nzk5ODYwMSIsImZpcmViYXNlIjp7ImlkZW50aXRpZXMiOnsicGhvbmUiOlsiKzkxODk2Nzk5ODYwMSJdfSwic2lnbl9pbl9wcm92aWRlciI6InBob25lIn19.PXWYb63kqXm4XaRukQtNcT90_YK1gfFTO7QxzyisM2aRLeHP2TkDoG5oc4QSP_4xGAF1LzOI0wQ6j7twGV0lPZbMvTDoQLxtvJ3LQV4xMJ23a19EYdyJdsL0O0RAIuy4SGjxsX_7iKHq3v4-1vqNYG0EN58sZZUgGD2Ah5wl6Y98A2NfryWzxCO_HAhBd5qb1XDjkU-F8AS2yR6xY86aQfppGjkImXS_xVzBKj6zxB29EeVQj59BsOeXirluMbLpnOu6QpxC4NCjcG8oM1jXdR_VOKUN8g3oaeHWHbtaPqLvk-CbS2tQ6m3qWPoB7TmWH5RO6nKrQFzBaOdwtcYrSw"
},
{
"key": "accesstoken",
"type": "text",
"value": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjY5NGNmYTAxOTgyMDNlMjgwN2Q4MzRkYmE2MjBlZjczZjI4ZTRlMmMiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL3NlY3VyZXRva2VuLmdvb2dsZS5jb20vdGhvci1jcmVzbGluIiwiYXVkIjoidGhvci1jcmVzbGluIiwiYXV0aF90aW1lIjoxNjM1NzM5MTc5LCJ1c2VyX2lkIjoiS0lLVWFKRmFTRWhqblc1RDdld0NQM2J2NXZpMSIsInN1YiI6IktJS1VhSkZhU0Voam5XNUQ3ZXdDUDNidjV2aTEiLCJpYXQiOjE2MzY2NDU3NzYsImV4cCI6MTYzNjY0OTM3NiwicGhvbmVfbnVtYmVyIjoiKzkxODk2Nzk5ODYwMSIsImZpcmViYXNlIjp7ImlkZW50aXRpZXMiOnsicGhvbmUiOlsiKzkxODk2Nzk5ODYwMSJdfSwic2lnbl9pbl9wcm92aWRlciI6InBob25lIn19.M7VtWVYBomOaVsUoFd9ll-xnslq385dos2uDXAWSACfApQZNhwTT1WvBqOHh9rlhefneMAtwaZ_6ApT39Z5-9T_Jmu2kaCTbqt4nN9cBzo_MYs0bOy9kN8zOisWttXFPBP5F8-qQwIS0wK3uXRFjuX0OEp8SpEto9NOPPXu9ZX8IuwD4oPyZItHdNxVxhnKYILcuz7p6WYQD2hxFNT0n2SBtDMvBJKuCFcaeHcHIw9jF9oLeOH6QeL2qM9BHXu1U3FkSqayeuUKnA38HuhaUR-l5-05SEINOWav775Fjx_863BF8KnusbtmOgNWmsae27EAbh4VSKo2gm3fZliRFkQ"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"email\": \"[email protected]\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:3000/generate-oauth-url",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"generate-oauth-url"
]
}
},
"response": [
{
"name": "Generate Google OAUTH URL API",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "refreshtoken",
"type": "text",
"value": "ACzBnCgCGFS52tC0Lt_iDupzzwFathR0iAG9cydkC3M9eXxw_BIzqbOAFLQJEQ745MuhePHye_02hK6U3Eaa3OANhHA00RM4wxvgN8LOoyQLFeoYJn3Cc-InjdHOZ18lyrPHNAOTzU8Cx1osOPHI-9FiZXBv9kZ6-JaUexYrs99ftli7y_BQzTk60O-ramBzdOgIVVuB0Loa"
},
{
"key": "accesstoken",
"type": "text",
"value": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjM1MDM0MmIwMjU1MDAyYWI3NWUwNTM0YzU4MmVjYzY2Y2YwZTE3ZDIiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL3NlY3VyZXRva2VuLmdvb2dsZS5jb20vdGVzdC0yMDI1NCIsImF1ZCI6InRlc3QtMjAyNTQiLCJhdXRoX3RpbWUiOjE2MzMxNjYyNDYsInVzZXJfaWQiOiJQRTBuZzBiTHlmZUJ0WlZFaEQyTnF3c3pFMngxIiwic3ViIjoiUEUwbmcwYkx5ZmVCdFpWRWhEMk5xd3N6RTJ4MSIsImlhdCI6MTYzMzQyMjQ3NywiZXhwIjoxNjMzNDI2MDc3LCJwaG9uZV9udW1iZXIiOiIrOTE4OTY3OTk4NjAxIiwiZmlyZWJhc2UiOnsiaWRlbnRpdGllcyI6eyJwaG9uZSI6WyIrOTE4OTY3OTk4NjAxIl19LCJzaWduX2luX3Byb3ZpZGVyIjoicGhvbmUifX0.CJpNVGEBIe7Ke3s0HhcwG1bw6esJJ8MgojJKhrXRrDs9ELTB123ZXqPkFgWl8comqyXVHnCuudbh1qPfcAfyDJX6bhSzETZG32_YidutnWfRb-exIWtAhw_K_2OSLfa-YzquZBPLDcg30jGAFC7Pk6melpPJdUuqSmwH7RY9NuuD9Tm8UVWrMVR2fwvsYpA64tx4ga-lNgQqCaygdxyvtY0fPwv_Oi42ZeYA8pVhy9BQqVBi8okPTGWFJqqH-JUHJ42wMVxgfa9ytRt2cWK-LQH0K9AVaRCQ5C42127CLQKdL1pAWJJDmnh8_zooT_0XULxJ1InPEic-KiyrsgNwWg"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"email\": \"[email protected]\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:3000/generate-oauth-url",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"generate-oauth-url"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "html",
"header": [
{
"key": "X-Powered-By",
"value": "Express"
},
{
"key": "Access-Control-Allow-Origin",
"value": "http://localhost:4200"
},
{
"key": "Vary",
"value": "Origin"
},
{
"key": "Content-Type",
"value": "text/html; charset=utf-8"
},
{
"key": "Content-Length",
"value": "536"
},
{
"key": "ETag",
"value": "W/\"218-+qQZSQuFmCFveFusjuo/jXCuuAM\""
},
{
"key": "Date",
"value": "Tue, 05 Oct 2021 08:29:26 GMT"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Keep-Alive",
"value": "timeout=5"
}
],
"cookie": [],
"body": "https://accounts.google.com/o/oauth2/v2/auth?access_type=offline&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fcalendar.events%20https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fcalendar%20https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile%20https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&login_hint=samantaraja627%40gmail.com&prompt=select_account%20consent&response_type=code&client_id=806793783770-qtgfggrogm16vva0npg6s0is4hch81a6.apps.googleusercontent.com&redirect_uri=https%3A%2F%2F3afe-202-142-96-37.ngrok.io%2Foauth"
}
]
},
{
"name": "Login API",
"request": {
"method": "POST",
"header": [
{
"key": "refreshtoken",
"value": "AGEhc0Cr2ktvKr1R7CND9Z2ToLZLHvPrj-auxW9-gZ33IZ-wTZ0fQrWwj2Lnz9FDCqhLyJWJhQ_kXsstiOB-gQze5gvErkwO_-In7wT3QkZ5tdV9CIxJwVS_wDwgwMjhKLJ-jaqKNduyCOfofeUX-VMSgrQOkDvOgqVCrRh-uLzhHmUBaRC2vbSSzYN7nSccMfciFLptWbRS",
"type": "text"
},
{
"key": "accesstoken",
"value": "eyJhbGciOiJSUzI1NiIsImtpZCI6Ijg4ZGYxMzgwM2I3NDM2NjExYWQ0ODE0NmE4ZGExYjA3MTg2ZmQxZTkiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL3NlY3VyZXRva2VuLmdvb2dsZS5jb20vZm9zcy0zYTYxNSIsImF1ZCI6ImZvc3MtM2E2MTUiLCJhdXRoX3RpbWUiOjE2MjQ0NTg2MDcsInVzZXJfaWQiOiJQZnZTUVZLRmMyVzR2dmpNN2JEWlZrN2pXT1MyIiwic3ViIjoiUGZ2U1FWS0ZjMlc0dnZqTTdiRFpWazdqV09TMiIsImlhdCI6MTYyNDc4NjQ2MSwiZXhwIjoxNjI0NzkwMDYxLCJwaG9uZV9udW1iZXIiOiIrOTE3NDA3ODc4Nzc4IiwiZmlyZWJhc2UiOnsiaWRlbnRpdGllcyI6eyJwaG9uZSI6WyIrOTE3NDA3ODc4Nzc4Il19LCJzaWduX2luX3Byb3ZpZGVyIjoicGhvbmUifX0.s8uc8HCgmBKnqHLSXCY_r45MBxqNDf7ojELcwqldnyHat7ITf2_0Ah9Fi5Z2daHra1Lmz4m1OYDSQwVvj3sKERKKr_J-3ZiTiZzLUx9dUW_Ule4I2GP84YQpZw-aoA656SB-rH4eZNcnipUAanD17kGey9QnUoGX3NBJm8peLZVjcOnb55gUOyu58aIaUKTc0sGu4t8ZYVL0AJdjb4IbjiE2vfTTlrk7hDR3j8DLppyWqr9cpFR7DejP2DO9A7OnklmTl2T-TaFnlBpyk7AH4-hFDxgZXw6KUvIoking8avKzaY5zFRiJbhqWfySHwqqZWbR-SffhPRP4xEJTt_HFA",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"phone_number\": \"918967998601\",\n \"refresh_token\": \"ACzBnCgCGFS52tC0Lt_iDupzzwFathR0iAG9cydkC3M9eXxw_BIzqbOAFLQJEQ745MuhePHye_02hK6U3Eaa3OANhHA00RM4wxvgN8LOoyQLFeoYJn3Cc-InjdHOZ18lyrPHNAOTzU8Cx1osOPHI-9FiZXBv9kZ6-JaUexYrs99ftli7y_BQzTk60O-ramBzdOgIVVuB0Loa\",\n \"access_token\": \"llplplp\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:3000/login",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"login"
]
}
},
"response": [
{
"name": "Login API",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "refreshtoken",
"value": "AGEhc0Cr2ktvKr1R7CND9Z2ToLZLHvPrj-auxW9-gZ33IZ-wTZ0fQrWwj2Lnz9FDCqhLyJWJhQ_kXsstiOB-gQze5gvErkwO_-In7wT3QkZ5tdV9CIxJwVS_wDwgwMjhKLJ-jaqKNduyCOfofeUX-VMSgrQOkDvOgqVCrRh-uLzhHmUBaRC2vbSSzYN7nSccMfciFLptWbRS",
"type": "text"
},
{
"key": "accesstoken",
"value": "eyJhbGciOiJSUzI1NiIsImtpZCI6Ijg4ZGYxMzgwM2I3NDM2NjExYWQ0ODE0NmE4ZGExYjA3MTg2ZmQxZTkiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL3NlY3VyZXRva2VuLmdvb2dsZS5jb20vZm9zcy0zYTYxNSIsImF1ZCI6ImZvc3MtM2E2MTUiLCJhdXRoX3RpbWUiOjE2MjQ0NTg2MDcsInVzZXJfaWQiOiJQZnZTUVZLRmMyVzR2dmpNN2JEWlZrN2pXT1MyIiwic3ViIjoiUGZ2U1FWS0ZjMlc0dnZqTTdiRFpWazdqV09TMiIsImlhdCI6MTYyNDc4NjQ2MSwiZXhwIjoxNjI0NzkwMDYxLCJwaG9uZV9udW1iZXIiOiIrOTE3NDA3ODc4Nzc4IiwiZmlyZWJhc2UiOnsiaWRlbnRpdGllcyI6eyJwaG9uZSI6WyIrOTE3NDA3ODc4Nzc4Il19LCJzaWduX2luX3Byb3ZpZGVyIjoicGhvbmUifX0.s8uc8HCgmBKnqHLSXCY_r45MBxqNDf7ojELcwqldnyHat7ITf2_0Ah9Fi5Z2daHra1Lmz4m1OYDSQwVvj3sKERKKr_J-3ZiTiZzLUx9dUW_Ule4I2GP84YQpZw-aoA656SB-rH4eZNcnipUAanD17kGey9QnUoGX3NBJm8peLZVjcOnb55gUOyu58aIaUKTc0sGu4t8ZYVL0AJdjb4IbjiE2vfTTlrk7hDR3j8DLppyWqr9cpFR7DejP2DO9A7OnklmTl2T-TaFnlBpyk7AH4-hFDxgZXw6KUvIoking8avKzaY5zFRiJbhqWfySHwqqZWbR-SffhPRP4xEJTt_HFA",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"phone_number\": \"918967998601\",\n \"refresh_token\": \"ACzBnCgCGFS52tC0Lt_iDupzzwFathR0iAG9cydkC3M9eXxw_BIzqbOAFLQJEQ745MuhePHye_02hK6U3Eaa3OANhHA00RM4wxvgN8LOoyQLFeoYJn3Cc-InjdHOZ18lyrPHNAOTzU8Cx1osOPHI-9FiZXBv9kZ6-JaUexYrs99ftli7y_BQzTk60O-ramBzdOgIVVuB0Loa\",\n \"access_token\": \"llplplp\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:3000/login",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"login"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "X-Powered-By",
"value": "Express"
},
{
"key": "Access-Control-Allow-Origin",
"value": "http://localhost:4200"
},
{
"key": "Vary",
"value": "Origin"
},
{
"key": "Content-Type",
"value": "application/json; charset=utf-8"
},
{
"key": "Content-Length",
"value": "420"
},
{
"key": "ETag",
"value": "W/\"1a4-UcUcWSIiX7M77OOy9xJm6rcSdcI\""
},
{
"key": "Date",
"value": "Tue, 05 Oct 2021 08:32:44 GMT"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Keep-Alive",
"value": "timeout=5"
}
],
"cookie": [],
"body": "[\n {\n \"Identification\": \"918967998601\",\n \"User_Type\": \"P\",\n \"Is_Active\": \"Y\",\n \"Frst_Name\": \"Sankhadip\",\n \"Last_Name\": \"Samanta\",\n \"Email\": \"[email protected]\",\n \"Refresh_Token\": \"ACzBnCgCGFS52tC0Lt_iDupzzwFathR0iAG9cydkC3M9eXxw_BIzqbOAFLQJEQ745MuhePHye_02hK6U3Eaa3OANhHA00RM4wxvgN8LOoyQLFeoYJn3Cc-InjdHOZ18lyrPHNAOTzU8Cx1osOPHI-9FiZXBv9kZ6-JaUexYrs99ftli7y_BQzTk60O-ramBzdOgIVVuB0Loa\",\n \"User_Id\": \"f8a63e98-e4d8-4547-b73c-bb4506b1c0eb\"\n }\n]"
}
]
},
{
"name": "Fetch Upcoming Calender Event API",
"request": {
"method": "GET",
"header": [
{
"key": "refreshtoken",
"value": "ACzBnCgCGFS52tC0Lt_iDupzzwFathR0iAG9cydkC3M9eXxw_BIzqbOAFLQJEQ745MuhePHye_02hK6U3Eaa3OANhHA00RM4wxvgN8LOoyQLFeoYJn3Cc-InjdHOZ18lyrPHNAOTzU8Cx1osOPHI-9FiZXBv9kZ6-JaUexYrs99ftli7y_BQzTk60O-ramBzdOgIVVuB0Loa",
"type": "text"
},
{
"key": "accesstoken",
"value": "eyJhbGciOiJSUzI1NiIsImtpZCI6ImY1NWUyOTRlZWRjMTY3Y2Q5N2JiNWE4MTliYmY3OTA2MzZmMTIzN2UiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL3NlY3VyZXRva2VuLmdvb2dsZS5jb20vdGhvci1jcmVzbGluIiwiYXVkIjoidGhvci1jcmVzbGluIiwiYXV0aF90aW1lIjoxNjM2OTAxMDcwLCJ1c2VyX2lkIjoiS0lLVWFKRmFTRWhqblc1RDdld0NQM2J2NXZpMSIsInN1YiI6IktJS1VhSkZhU0Voam5XNUQ3ZXdDUDNidjV2aTEiLCJpYXQiOjE2MzY5MDkzOTgsImV4cCI6MTYzNjkxMjk5OCwicGhvbmVfbnVtYmVyIjoiKzkxODk2Nzk5ODYwMSIsImZpcmViYXNlIjp7ImlkZW50aXRpZXMiOnsicGhvbmUiOlsiKzkxODk2Nzk5ODYwMSJdfSwic2lnbl9pbl9wcm92aWRlciI6InBob25lIn19.qCU6boraB8ctBdB_t1806zdoA8JNcOQS5KMGHIWNVupaLGU2PyyibRAjn0Q7EQ1-eO5UWRGT8qyMjUZQST_7-PEY6ccJoQUde11EdA0dAQ7DYSBRdT4wTHjVJ_Ra3YK-ShHePaXEAl7T54FPI_W0MCfJl83M2dh82ggUCXf_xzwIhIvZ7e7G1Bm8GKoFAfpS6d4ZoGItAADG0XrlpJYBsQyO2Eck8CMnhNY12eaTHZDk6WvPVH60kWls9XEbs86t66OnBMRpQq_QIGa0_uLjubkQ1V29XFrFm6KUF6HbNZAs0dvHKvv3ReaCr7kg5w3W9iZShD3QpeD6p0iCbBg3wA",
"type": "text"
}
],
"url": {
"raw": "http://localhost:3000/calender",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"calender"
]
}
},
"response": [
{
"name": "Fetch Upcoming Calender Event API",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "refreshtoken",
"value": "ACzBnCgCGFS52tC0Lt_iDupzzwFathR0iAG9cydkC3M9eXxw_BIzqbOAFLQJEQ745MuhePHye_02hK6U3Eaa3OANhHA00RM4wxvgN8LOoyQLFeoYJn3Cc-InjdHOZ18lyrPHNAOTzU8Cx1osOPHI-9FiZXBv9kZ6-JaUexYrs99ftli7y_BQzTk60O-ramBzdOgIVVuB0Loa",
"type": "text"
},
{
"key": "accesstoken",
"value": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MjU1NWEyMjM3MWYxMGY0ZTIyZjFhY2U3NjJmYzUwZmYzYmVlMGMiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL3NlY3VyZXRva2VuLmdvb2dsZS5jb20vdGhvci1jcmVzbGluIiwiYXVkIjoidGhvci1jcmVzbGluIiwiYXV0aF90aW1lIjoxNjM1NzM5MTc5LCJ1c2VyX2lkIjoiS0lLVWFKRmFTRWhqblc1RDdld0NQM2J2NXZpMSIsInN1YiI6IktJS1VhSkZhU0Voam5XNUQ3ZXdDUDNidjV2aTEiLCJpYXQiOjE2MzU5MzI2MjgsImV4cCI6MTYzNTkzNjIyOCwicGhvbmVfbnVtYmVyIjoiKzkxODk2Nzk5ODYwMSIsImZpcmViYXNlIjp7ImlkZW50aXRpZXMiOnsicGhvbmUiOlsiKzkxODk2Nzk5ODYwMSJdfSwic2lnbl9pbl9wcm92aWRlciI6InBob25lIn19.kRVvwZy66KFGeorzL-nA9iGLaIUUtZ7eoMMqt_jawUGZ-08hWmyBA0Hghn7eU6lKmhNAPaxlP0yB8lXqjFoQ1JHX-y835NI8cXtjWAnQ2qyyLR3WPgvtKPvB6EJQvhJ1KhvfEO-GWw3Z6A9Ja-PCZhPLd9azJnqFM-L8eM50q1cc5z0KsxmKis21MXn6PhEis80kxIg331mfFY44xewNzYgiw9WvEnya6_Emo2UYy_B6XO5QFaOScgHdx_Ys-F_fRxo72DGNO5QJZUfQ3IKd583liFtC4kDOdZcQOu2Q4AUAcqBzk-JBmAnFuRlvuUIRIbDnvakHNvVPhdec3IZ2Ug",
"type": "text"
}
],
"url": {
"raw": "http://localhost:3000/calender",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"calender"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "X-Powered-By",
"value": "Express"
},
{
"key": "Access-Control-Allow-Origin",
"value": "http://localhost:4200"
},
{
"key": "Vary",
"value": "Origin"
},
{
"key": "Content-Type",
"value": "application/json; charset=utf-8"
},
{
"key": "Content-Length",
"value": "57005"
},
{
"key": "ETag",
"value": "W/\"dead-rQZk/MfXAP5HaK62c1b4FdBg2xo\""
},
{
"key": "Date",
"value": "Wed, 03 Nov 2021 09:44:35 GMT"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Keep-Alive",
"value": "timeout=5"
}
],
"cookie": [],
"body": "{\n \"event_info\": [\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"0aac5365-fb75-4628-ba92-4cd42e4757b3\",\n \"startTime\": \"2021-11-04T13:30:00.000Z\",\n \"endTime\": \"2021-11-04T14:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"Sprint Plan Test \",\n \"platformMeetingId\": \"https://meet.google.com/amk-cwmr-bki\",\n \"eventId\": \"7mb8jcdpaaagrd8kkto32utkg4\",\n \"patientDetails\": [\n {\n \"meetingId\": \"0aac5365-fb75-4628-ba92-4cd42e4757b3\",\n \"clientIden\": \"[email protected]\",\n \"clientId\": \"fc6a1eae-d2d2-4294-9214-8d98ad989846\",\n \"isCresClient\": \"N\",\n \"name\": null,\n \"gender\": null,\n \"ph\": null,\n \"dob\": null\n }\n ]\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"998060a6-402a-4c53-a0a0-84edeef0b078\",\n \"startTime\": \"2021-11-06T14:30:00.000Z\",\n \"endTime\": \"2021-11-06T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20211106T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"767b80c5-791a-4f3e-b24f-c862a8b941a2\",\n \"startTime\": \"2021-11-13T14:30:00.000Z\",\n \"endTime\": \"2021-11-13T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20211113T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"d238aa4d-a791-43fb-abe1-5baca9f520eb\",\n \"startTime\": \"2021-11-20T14:30:00.000Z\",\n \"endTime\": \"2021-11-20T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20211120T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"e5f6ee40-c014-411d-adf3-e8587420cd1b\",\n \"startTime\": \"2021-11-27T14:30:00.000Z\",\n \"endTime\": \"2021-11-27T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20211127T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"20ae5b93-39ac-4626-9081-98067769c832\",\n \"startTime\": \"2021-12-04T14:30:00.000Z\",\n \"endTime\": \"2021-12-04T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20211204T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"2edea178-8378-4933-9997-f010715c3b44\",\n \"startTime\": \"2021-12-11T14:30:00.000Z\",\n \"endTime\": \"2021-12-11T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20211211T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"7a3d4591-6483-40d0-9b3e-3bc6e2c61d72\",\n \"startTime\": \"2021-12-18T14:30:00.000Z\",\n \"endTime\": \"2021-12-18T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20211218T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"32f49259-be54-4dfd-b77a-a024de7c2cea\",\n \"startTime\": \"2021-12-25T14:30:00.000Z\",\n \"endTime\": \"2021-12-25T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20211225T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"d17bd8be-9e16-4d0f-98f7-2e8d51cc4c97\",\n \"startTime\": \"2022-01-01T14:30:00.000Z\",\n \"endTime\": \"2022-01-01T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220101T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"beaa9b39-6cf2-4205-b6f0-77168421f1c0\",\n \"startTime\": \"2022-01-08T14:30:00.000Z\",\n \"endTime\": \"2022-01-08T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220108T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"a4d5cb4b-39ce-4b77-970d-eb0767e1fc14\",\n \"startTime\": \"2022-01-15T14:30:00.000Z\",\n \"endTime\": \"2022-01-15T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220115T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"183f6148-ae64-41e2-90cd-312ac1a52859\",\n \"startTime\": \"2022-01-22T14:30:00.000Z\",\n \"endTime\": \"2022-01-22T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220122T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"e830e6a4-a6d0-452c-990f-77670e742bc9\",\n \"startTime\": \"2022-01-29T14:30:00.000Z\",\n \"endTime\": \"2022-01-29T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220129T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"88ba60f3-1dbb-4135-97f8-112235c865bc\",\n \"startTime\": \"2022-02-05T14:30:00.000Z\",\n \"endTime\": \"2022-02-05T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220205T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"4cdec84b-3649-453f-8125-ee9fc05ddfdd\",\n \"startTime\": \"2022-02-12T14:30:00.000Z\",\n \"endTime\": \"2022-02-12T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220212T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"52e374f1-f9cc-4917-a41a-08886e32bf23\",\n \"startTime\": \"2022-02-19T14:30:00.000Z\",\n \"endTime\": \"2022-02-19T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220219T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"644201bc-5a5d-42fc-a037-5912f685f7e8\",\n \"startTime\": \"2022-02-26T14:30:00.000Z\",\n \"endTime\": \"2022-02-26T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220226T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"13c15910-f634-4056-8a9d-d84e4bd07682\",\n \"startTime\": \"2022-03-05T14:30:00.000Z\",\n \"endTime\": \"2022-03-05T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220305T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"b6b9bdd2-ff41-4047-8c6c-81cc31ea85d0\",\n \"startTime\": \"2022-03-12T14:30:00.000Z\",\n \"endTime\": \"2022-03-12T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220312T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"ad5ae575-086b-4bb4-b97c-c4296b4cec14\",\n \"startTime\": \"2022-03-19T14:30:00.000Z\",\n \"endTime\": \"2022-03-19T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220319T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"066ffce7-515d-4cc3-88ac-259467ddad6f\",\n \"startTime\": \"2022-03-26T14:30:00.000Z\",\n \"endTime\": \"2022-03-26T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220326T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"81db0c3b-09f2-4b03-a591-f3dde8a8a605\",\n \"startTime\": \"2022-04-02T14:30:00.000Z\",\n \"endTime\": \"2022-04-02T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220402T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"7ffe0c0e-f3d6-41b0-990d-5a972c37ddef\",\n \"startTime\": \"2022-04-09T14:30:00.000Z\",\n \"endTime\": \"2022-04-09T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220409T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"d28752e2-20e2-436e-a879-7a11b2fb7baf\",\n \"startTime\": \"2022-04-16T14:30:00.000Z\",\n \"endTime\": \"2022-04-16T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220416T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"24371c83-a882-495b-94a9-3661cf926ed3\",\n \"startTime\": \"2022-04-23T14:30:00.000Z\",\n \"endTime\": \"2022-04-23T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220423T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"d294aba0-2b05-421d-a172-f18b22bee0f8\",\n \"startTime\": \"2022-04-30T14:30:00.000Z\",\n \"endTime\": \"2022-04-30T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220430T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"dbdf2fbe-0776-4dea-9084-d46e9648e279\",\n \"startTime\": \"2022-05-07T14:30:00.000Z\",\n \"endTime\": \"2022-05-07T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220507T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"965899c0-5d9e-4c90-b3ab-2b135c9c20b3\",\n \"startTime\": \"2022-05-14T14:30:00.000Z\",\n \"endTime\": \"2022-05-14T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220514T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"edfcc21b-befe-4637-a135-4c213e78bbf9\",\n \"startTime\": \"2022-05-21T14:30:00.000Z\",\n \"endTime\": \"2022-05-21T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220521T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"c8f6a824-5eaa-44c0-93a5-e6e3f092695b\",\n \"startTime\": \"2022-05-28T14:30:00.000Z\",\n \"endTime\": \"2022-05-28T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220528T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"92c70781-46f9-45c2-b9df-7e86a32b08ab\",\n \"startTime\": \"2022-06-04T14:30:00.000Z\",\n \"endTime\": \"2022-06-04T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220604T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"aab5d94e-698d-43b7-b48f-9c8a01492347\",\n \"startTime\": \"2022-06-11T14:30:00.000Z\",\n \"endTime\": \"2022-06-11T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220611T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"f65802b8-c818-4302-9b31-c5654821b5ba\",\n \"startTime\": \"2022-06-18T14:30:00.000Z\",\n \"endTime\": \"2022-06-18T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220618T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"09d4d314-6ada-4dfb-acf9-ad20632786b2\",\n \"startTime\": \"2022-06-25T14:30:00.000Z\",\n \"endTime\": \"2022-06-25T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220625T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"4810765d-3028-408d-ba21-209c3771e5e3\",\n \"startTime\": \"2022-07-02T14:30:00.000Z\",\n \"endTime\": \"2022-07-02T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220702T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"a3210717-4f03-459b-8f53-360f0fe12b09\",\n \"startTime\": \"2022-07-09T14:30:00.000Z\",\n \"endTime\": \"2022-07-09T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220709T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"a752a1c8-e629-4359-bd6a-4223725e6997\",\n \"startTime\": \"2022-07-16T14:30:00.000Z\",\n \"endTime\": \"2022-07-16T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220716T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"a209ba01-eb27-4224-b7f6-cde6bf11e647\",\n \"startTime\": \"2022-07-23T14:30:00.000Z\",\n \"endTime\": \"2022-07-23T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220723T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"91201214-2c55-4163-ae98-20c70e62e0a8\",\n \"startTime\": \"2022-07-30T14:30:00.000Z\",\n \"endTime\": \"2022-07-30T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220730T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"317431c5-a6b6-4f18-baec-e32c099f7ad9\",\n \"startTime\": \"2022-08-06T14:30:00.000Z\",\n \"endTime\": \"2022-08-06T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220806T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"22657b67-515b-450c-baf7-b0ebd98ee8c3\",\n \"startTime\": \"2022-08-13T14:30:00.000Z\",\n \"endTime\": \"2022-08-13T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220813T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"f67c921a-890f-4593-95f6-01e160c06cfb\",\n \"startTime\": \"2022-08-20T14:30:00.000Z\",\n \"endTime\": \"2022-08-20T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220820T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"c47e7297-64d9-49fb-8fd0-086cc2987aec\",\n \"startTime\": \"2022-08-27T14:30:00.000Z\",\n \"endTime\": \"2022-08-27T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220827T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"4f2d8c2e-524d-47ef-989c-4c4049128926\",\n \"startTime\": \"2022-09-03T14:30:00.000Z\",\n \"endTime\": \"2022-09-03T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220903T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"3fd017ee-2d84-430f-8a1c-931e8d8ee7df\",\n \"startTime\": \"2022-09-10T14:30:00.000Z\",\n \"endTime\": \"2022-09-10T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220910T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"c2d0ed26-4e1a-4d3b-9c75-62c44405007c\",\n \"startTime\": \"2022-09-17T14:30:00.000Z\",\n \"endTime\": \"2022-09-17T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220917T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"c6b671d2-7c61-495f-9763-aa53ea55298f\",\n \"startTime\": \"2022-09-24T14:30:00.000Z\",\n \"endTime\": \"2022-09-24T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20220924T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"dc07e6b4-b172-4504-b4c8-f2f474802140\",\n \"startTime\": \"2022-10-01T14:30:00.000Z\",\n \"endTime\": \"2022-10-01T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20221001T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"80f2e379-338d-4cc9-849a-76342ba3d357\",\n \"startTime\": \"2022-10-08T14:30:00.000Z\",\n \"endTime\": \"2022-10-08T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20221008T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"5c78173b-3110-4763-b36b-428244193fa3\",\n \"startTime\": \"2022-10-15T14:30:00.000Z\",\n \"endTime\": \"2022-10-15T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20221015T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"d9cdc83f-5286-4c7d-98f8-0fa3c0f4e273\",\n \"startTime\": \"2022-10-22T14:30:00.000Z\",\n \"endTime\": \"2022-10-22T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20221022T143000Z\",\n \"patientDetails\": []\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"552653ce-23b1-4690-9f50-233688aafa44\",\n \"startTime\": \"2022-10-23T08:30:00.000Z\",\n \"endTime\": \"2022-10-23T09:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test long event\",\n \"platformMeetingId\": \"https://meet.google.com/mwi-ghia-htz\",\n \"eventId\": \"66989aaaec1uapqpc0prng7n7f_20221023T083000Z\",\n \"patientDetails\": [\n {\n \"meetingId\": \"552653ce-23b1-4690-9f50-233688aafa44\",\n \"clientIden\": \"[email protected]\",\n \"clientId\": \"fc6a1eae-d2d2-4294-9214-8d98ad989846\",\n \"isCresClient\": \"N\",\n \"name\": null,\n \"gender\": null,\n \"ph\": null,\n \"dob\": null\n }\n ]\n },\n {\n \"memberId\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"meetingId\": \"63811b93-5f6b-4f33-8e46-3946de99a5cc\",\n \"startTime\": \"2022-10-29T14:30:00.000Z\",\n \"endTime\": \"2022-10-29T15:30:00.000Z\",\n \"sessionInfo\": null,\n \"summary\": \"test with recurrence\",\n \"platformMeetingId\": \"https://meet.google.com/gao-cjzm-afg\",\n \"eventId\": \"42r955n7vhu3baaq1c1specffp_20221029T143000Z\",\n \"patientDetails\": []\n }\n ],\n \"holiday_info\": [\n {\n \"Id\": 7,\n \"Meeting_Id\": \"b67d553a-758d-42a9-b5e9-10368a208a74\",\n \"Event_Id\": \"20210219_v2ekgtp4509ashjs9ih2m73ghs\",\n \"Start_TS\": \"2021-02-18T18:30:00.000Z\",\n \"End_TS\": \"2021-02-19T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Shivaji Jayanti\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 8,\n \"Meeting_Id\": \"9fdf4bb1-551f-4a7a-afb6-e05375e87b65\",\n \"Event_Id\": \"20210413_ltcdvuol0j22tht35q2g8ve2go\",\n \"Start_TS\": \"2021-04-12T18:30:00.000Z\",\n \"End_TS\": \"2021-04-13T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Gudi Padwa\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 9,\n \"Meeting_Id\": \"63496364-b3bd-43b0-b01e-e15e692a31fb\",\n \"Event_Id\": \"20211119_6cl69m396kj947jseinmo31v0o\",\n \"Start_TS\": \"2021-11-18T18:30:00.000Z\",\n \"End_TS\": \"2021-11-19T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Guru Nanak Jayanti\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 10,\n \"Meeting_Id\": \"d655b7f2-86b0-4a16-ab03-75f2a1bc9673\",\n \"Event_Id\": \"20220414_s465qeqls7epibotpm88vklmcg\",\n \"Start_TS\": \"2022-04-13T18:30:00.000Z\",\n \"End_TS\": \"2022-04-14T18:30:00.000Z\",\n \"Description\": \"Observance\\nTo hide observances, go to Google Calendar Settings > Holidays in India\",\n \"Summary\": \"Ambedkar Jayanti\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 11,\n \"Meeting_Id\": \"a04f633c-c5be-46d7-a6ae-14b2551e359a\",\n \"Event_Id\": \"20220417_k8rd3csu8e1scll1fsl72t5sl8\",\n \"Start_TS\": \"2022-04-16T18:30:00.000Z\",\n \"End_TS\": \"2022-04-17T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Easter Day\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 12,\n \"Meeting_Id\": \"f954bca7-5bd4-4b22-bed7-f531b3dd83a1\",\n \"Event_Id\": \"20220819_0va86dckv04kqe7ijdahr7h7pc\",\n \"Start_TS\": \"2022-08-18T18:30:00.000Z\",\n \"End_TS\": \"2022-08-19T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Janmashtami\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 13,\n \"Meeting_Id\": \"91622f07-bec7-47e9-bf2b-f5673a80e4c0\",\n \"Event_Id\": \"20221003_ona4o2s7vi3psngn3bp1673beg\",\n \"Start_TS\": \"2022-10-02T18:30:00.000Z\",\n \"End_TS\": \"2022-10-03T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Maha Ashtami\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 14,\n \"Meeting_Id\": \"d8812dea-4b09-4e07-9103-17ffdc9fe879\",\n \"Event_Id\": \"20221005_roo4jse4gcdo2uc1f7si7hl25s\",\n \"Start_TS\": \"2022-10-04T18:30:00.000Z\",\n \"End_TS\": \"2022-10-05T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Dussehra\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 15,\n \"Meeting_Id\": \"5951888a-150d-4828-a976-4424ff85c753\",\n \"Event_Id\": \"20221225_apfbln527i1qpgefsv8lh81uug\",\n \"Start_TS\": \"2022-12-24T18:30:00.000Z\",\n \"End_TS\": \"2022-12-25T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Christmas\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 20,\n \"Meeting_Id\": \"efd0da04-70d5-4a70-a407-5388626c5c11\",\n \"Event_Id\": \"20210113_eicm6e09pderpudv1u2dqpb0fk\",\n \"Start_TS\": \"2021-01-12T18:30:00.000Z\",\n \"End_TS\": \"2021-01-13T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Lohri\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 21,\n \"Meeting_Id\": \"0f970435-2ae2-46bf-83a7-14d160a8f948\",\n \"Event_Id\": \"20210329_gss72oadctdhtij1v32ce8id9g\",\n \"Start_TS\": \"2021-03-28T18:30:00.000Z\",\n \"End_TS\": \"2021-03-29T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Holi\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 22,\n \"Meeting_Id\": \"5ab42fad-b84a-47ae-8cde-e13901fe18d3\",\n \"Event_Id\": \"20210910_9jjookn665rbev1luggh5fq19g\",\n \"Start_TS\": \"2021-09-09T18:30:00.000Z\",\n \"End_TS\": \"2021-09-10T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Ganesh Chaturthi/Vinayaka Chaturthi\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 23,\n \"Meeting_Id\": \"e7d5a772-cad1-4238-9721-0e48fb6cc9ca\",\n \"Event_Id\": \"20211002_06tc7es1bu8gq8r88d65h3tjms\",\n \"Start_TS\": \"2021-10-01T18:30:00.000Z\",\n \"End_TS\": \"2021-10-02T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Mahatma Gandhi Jayanti\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 24,\n \"Meeting_Id\": \"0155fece-3dc8-447e-bf34-ace0aa5803fb\",\n \"Event_Id\": \"20211106_ts9kmltug6ahm9t7vkj79g86so\",\n \"Start_TS\": \"2021-11-05T18:30:00.000Z\",\n \"End_TS\": \"2021-11-06T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Bhai Duj\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 25,\n \"Meeting_Id\": \"5c673e3d-9edf-431c-b06d-d5eb53baa191\",\n \"Event_Id\": \"20211224_0rcmj7kj8smtd38uv4kfu46e9o\",\n \"Start_TS\": \"2021-12-23T18:30:00.000Z\",\n \"End_TS\": \"2021-12-24T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Christmas Eve\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 26,\n \"Meeting_Id\": \"3320e600-f14c-4c74-bc99-703ebe985758\",\n \"Event_Id\": \"20220114_k3ejbt6sk5h6m9q7t05c3legbg\",\n \"Start_TS\": \"2022-01-13T18:30:00.000Z\",\n \"End_TS\": \"2022-01-14T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Pongal\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 27,\n \"Meeting_Id\": \"c4ea6437-a11c-400b-942e-d05b082d4df3\",\n \"Event_Id\": \"20220318_psntc0tm3gvo8vi8rtsas66o08\",\n \"Start_TS\": \"2022-03-17T18:30:00.000Z\",\n \"End_TS\": \"2022-03-18T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Holi\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 28,\n \"Meeting_Id\": \"3bd1788a-9492-467c-9cb2-a10d954871e2\",\n \"Event_Id\": \"20220410_82u8rlbn27q0a32gdneufd5e2g\",\n \"Start_TS\": \"2022-04-09T18:30:00.000Z\",\n \"End_TS\": \"2022-04-10T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Rama Navami\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 29,\n \"Meeting_Id\": \"ff0feab3-66af-402d-8466-1998d683b6c2\",\n \"Event_Id\": \"20220908_6bp6c6ahuhalv53iivjih7hbns\",\n \"Start_TS\": \"2022-09-07T18:30:00.000Z\",\n \"End_TS\": \"2022-09-08T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Onam\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 30,\n \"Meeting_Id\": \"505615b9-ac77-4490-8325-4cb2883fb6bc\",\n \"Event_Id\": \"20221002_j334b8p70ev3939f7kc93pa3jo\",\n \"Start_TS\": \"2022-10-01T18:30:00.000Z\",\n \"End_TS\": \"2022-10-02T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Maha Saptami\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 31,\n \"Meeting_Id\": \"0776b2f3-f250-4c89-8799-ca99b21c89a4\",\n \"Event_Id\": \"20221030_3qo6uqqudpqitdek1olo948e1k\",\n \"Start_TS\": \"2022-10-29T18:30:00.000Z\",\n \"End_TS\": \"2022-10-30T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Chhat Puja (Pratihar Sashthi/Surya Sashthi)\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 38,\n \"Meeting_Id\": \"5f48114f-69a9-4c71-95f8-e34ddf258403\",\n \"Event_Id\": \"20210414_q44qolv2vk28ua2tpshtr5qlgc\",\n \"Start_TS\": \"2021-04-13T18:30:00.000Z\",\n \"End_TS\": \"2021-04-14T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Vaisakhi\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 39,\n \"Meeting_Id\": \"ef452760-cac3-4b2c-bac8-9220322ba206\",\n \"Event_Id\": \"20210712_o3q8kl0pnkrtda2dupgv5dpe0k\",\n \"Start_TS\": \"2021-07-11T18:30:00.000Z\",\n \"End_TS\": \"2021-07-12T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Rath Yatra\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 40,\n \"Meeting_Id\": \"3caab149-762e-49ed-9863-b2f23fbad1de\",\n \"Event_Id\": \"20210821_q4lqo6u947emjefk6cotm4qhsc\",\n \"Start_TS\": \"2021-08-20T18:30:00.000Z\",\n \"End_TS\": \"2021-08-21T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Onam\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 41,\n \"Meeting_Id\": \"44c6e143-dee0-44cb-b96f-94b4ee73e22e\",\n \"Event_Id\": \"20211124_bj7l44p72nj8ofb65vo5eu25jc\",\n \"Start_TS\": \"2021-11-23T18:30:00.000Z\",\n \"End_TS\": \"2021-11-24T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Guru Tegh Bahadur's Martyrdom Day\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 42,\n \"Meeting_Id\": \"e580e760-5f25-44cc-b72f-ecc61fbefd15\",\n \"Event_Id\": \"20220402_5t9gre9q1ur7r71ghohhp75oo8\",\n \"Start_TS\": \"2022-04-01T18:30:00.000Z\",\n \"End_TS\": \"2022-04-02T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Chaitra Sukhladi\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 43,\n \"Meeting_Id\": \"0f917b18-67de-48bb-94a0-c9291a03dbee\",\n \"Event_Id\": \"20221026_it8enrcffkmcumfdjldn2bqjbo\",\n \"Start_TS\": \"2022-10-25T18:30:00.000Z\",\n \"End_TS\": \"2022-10-26T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Bhai Duj\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 46,\n \"Meeting_Id\": \"abbd9aa7-7016-429a-90d6-250c19fc58b6\",\n \"Event_Id\": \"20210114_5k446skqnc5tgmgvh0gnfknqv4\",\n \"Start_TS\": \"2021-01-13T18:30:00.000Z\",\n \"End_TS\": \"2021-01-14T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Pongal\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 47,\n \"Meeting_Id\": \"52a84554-7031-4a0e-87eb-abc6309c0973\",\n \"Event_Id\": \"20210413_hr86s3afjhn4ranohfa8eunag4\",\n \"Start_TS\": \"2021-04-12T18:30:00.000Z\",\n \"End_TS\": \"2021-04-13T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Ugadi\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 48,\n \"Meeting_Id\": \"bc43256a-951c-4005-8013-3926ed6cad51\",\n \"Event_Id\": \"20210415_id5itt4o4m7hl939jm2p58d9q8\",\n \"Start_TS\": \"2021-04-14T18:30:00.000Z\",\n \"End_TS\": \"2021-04-15T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Bahag Bihu/Vaisakhadi\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 49,\n \"Meeting_Id\": \"28c6e183-24b3-4b7c-927c-081ecda61456\",\n \"Event_Id\": \"20210816_vmk8f214i2n56an0kplr05eong\",\n \"Start_TS\": \"2021-08-15T18:30:00.000Z\",\n \"End_TS\": \"2021-08-16T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Parsi New Year\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 50,\n \"Meeting_Id\": \"3bafabcb-9a8d-40e2-8cfc-4680ca440a28\",\n \"Event_Id\": \"20211013_lph4srbtted8423j3dtsjn2r6s\",\n \"Start_TS\": \"2021-10-12T18:30:00.000Z\",\n \"End_TS\": \"2021-10-13T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Maha Ashtami\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 51,\n \"Meeting_Id\": \"0c884414-12a7-49b0-bd99-ea49ef5f351e\",\n \"Event_Id\": \"20220101_risgjahoj7j4iq6s7ggumlcsg4\",\n \"Start_TS\": \"2021-12-31T18:30:00.000Z\",\n \"End_TS\": \"2022-01-01T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"New Year's Day\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 52,\n \"Meeting_Id\": \"79c11054-70ea-4910-8d27-483eaa4a36ef\",\n \"Event_Id\": \"20220226_1o3b8dikvo9bpo5p1o5av5msp4\",\n \"Start_TS\": \"2022-02-25T18:30:00.000Z\",\n \"End_TS\": \"2022-02-26T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Maharishi Dayanand Saraswati Jayanti\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 53,\n \"Meeting_Id\": \"faeaa087-a963-44b3-aeb4-2b24bcf3d4d3\",\n \"Event_Id\": \"20220301_89jn8v0gq583ak7j76u2v6u2o8\",\n \"Start_TS\": \"2022-02-28T18:30:00.000Z\",\n \"End_TS\": \"2022-03-01T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Maha Shivaratri/Shivaratri\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 54,\n \"Meeting_Id\": \"286d9eb3-f981-400a-b9fb-e826ee379f82\",\n \"Event_Id\": \"20220318_3n64pd6a2blvdehacfktd3s340\",\n \"Start_TS\": \"2022-03-17T18:30:00.000Z\",\n \"End_TS\": \"2022-03-18T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Dolyatra\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 55,\n \"Meeting_Id\": \"6dd12ab1-7cb1-45c9-8c6e-4ef07c1f5d54\",\n \"Event_Id\": \"20220701_csmai99n5k4qurb9vapj36iqt8\",\n \"Start_TS\": \"2022-06-30T18:30:00.000Z\",\n \"End_TS\": \"2022-07-01T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Rath Yatra\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 61,\n \"Meeting_Id\": \"58cd487d-53a4-41c7-8df5-18d2c2c706f5\",\n \"Event_Id\": \"20210226_ogtps50oj4mu2ugv8k71mtn4qo\",\n \"Start_TS\": \"2021-02-25T18:30:00.000Z\",\n \"End_TS\": \"2021-02-26T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Hazarat Ali's Birthday\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 62,\n \"Meeting_Id\": \"b99f1ad4-5c72-472e-a25d-e99301e8e913\",\n \"Event_Id\": \"20210404_mt3e00d6pvju5puj42c595iqh4\",\n \"Start_TS\": \"2021-04-03T18:30:00.000Z\",\n \"End_TS\": \"2021-04-04T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Easter Day\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 63,\n \"Meeting_Id\": \"188facce-1d12-426b-bcc8-0efaf9296406\",\n \"Event_Id\": \"20210421_kvnkn09neuqgq2be8vmhfrphsc\",\n \"Start_TS\": \"2021-04-20T18:30:00.000Z\",\n \"End_TS\": \"2021-04-21T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Rama Navami\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 64,\n \"Meeting_Id\": \"fd812eff-c3bf-4dca-9543-2175cca2e8b0\",\n \"Event_Id\": \"20210509_hpl916v54stt1gt25f5h68r7k0\",\n \"Start_TS\": \"2021-05-08T18:30:00.000Z\",\n \"End_TS\": \"2021-05-09T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Birthday of Ravindranath\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 65,\n \"Meeting_Id\": \"8ce007e4-d64d-47c0-b6aa-96dfa74df88f\",\n \"Event_Id\": \"20210815_f9tfkdhc4qs7k93vkcgm0lvuhs\",\n \"Start_TS\": \"2021-08-14T18:30:00.000Z\",\n \"End_TS\": \"2021-08-15T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Independence Day\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 66,\n \"Meeting_Id\": \"5b58e999-a400-4349-9e41-0be8132a4f8f\",\n \"Event_Id\": \"20210830_69hi2ehk6gf09ijnpr2iuklai0\",\n \"Start_TS\": \"2021-08-29T18:30:00.000Z\",\n \"End_TS\": \"2021-08-30T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Janmashtami\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 67,\n \"Meeting_Id\": \"8154fd5b-f3ec-4ece-ac5d-a2b195ea4624\",\n \"Event_Id\": \"20211024_1dfolan638gu4485bhigqb14dk\",\n \"Start_TS\": \"2021-10-23T18:30:00.000Z\",\n \"End_TS\": \"2021-10-24T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Karaka Chaturthi (Karva Chauth)\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 68,\n \"Meeting_Id\": \"245966ff-12db-41a4-a6e4-5fa4d99f7044\",\n \"Event_Id\": \"20220109_lleoqageok61nkvq7p8fu8ecqk\",\n \"Start_TS\": \"2022-01-08T18:30:00.000Z\",\n \"End_TS\": \"2022-01-09T18:30:00.000Z\",\n \"Description\": \"Observance\\nTo hide observances, go to Google Calendar Settings > Holidays in India\",\n \"Summary\": \"Guru Govind Singh Jayanti\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 69,\n \"Meeting_Id\": \"e05852e5-09a9-44e6-b952-acf9123a9366\",\n \"Event_Id\": \"20220216_dqbqgjmtibl1nvna48qjvnccks\",\n \"Start_TS\": \"2022-02-15T18:30:00.000Z\",\n \"End_TS\": \"2022-02-16T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Guru Ravidas Jayanti\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 70,\n \"Meeting_Id\": \"8d852aee-a3e2-48c6-9f85-e12001c26939\",\n \"Event_Id\": \"20220317_umtthrtc3d8erfdootp3lgml3k\",\n \"Start_TS\": \"2022-03-16T18:30:00.000Z\",\n \"End_TS\": \"2022-03-17T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Holika Dahana\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 71,\n \"Meeting_Id\": \"26478220-6e17-4094-9bb3-dcf566fdcffe\",\n \"Event_Id\": \"20220516_ig56fm2g1p8n0jo31i49blpgqs\",\n \"Start_TS\": \"2022-05-15T18:30:00.000Z\",\n \"End_TS\": \"2022-05-16T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Buddha Purnima/Vesak\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 72,\n \"Meeting_Id\": \"64d7f8a3-1573-4186-84f9-7343d5e9d422\",\n \"Event_Id\": \"20221013_ero68ng3m5p86khn7imt34q924\",\n \"Start_TS\": \"2022-10-12T18:30:00.000Z\",\n \"End_TS\": \"2022-10-13T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Karaka Chaturthi (Karva Chauth)\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 73,\n \"Meeting_Id\": \"29fcda4b-8d88-41c7-bff7-2d5851a528b2\",\n \"Event_Id\": \"20221124_bk320g1aj1o00je77ke987hk6o\",\n \"Start_TS\": \"2022-11-23T18:30:00.000Z\",\n \"End_TS\": \"2022-11-24T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Guru Tegh Bahadur's Martyrdom Day\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 78,\n \"Meeting_Id\": \"5b1b3ff4-3bfd-4cab-a6ca-76db7274f881\",\n \"Event_Id\": \"20211019_se5fkngarfa57712dmd7490kqc\",\n \"Start_TS\": \"2021-10-18T18:30:00.000Z\",\n \"End_TS\": \"2021-10-19T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Milad un-Nabi/Id-e-Milad\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 79,\n \"Meeting_Id\": \"9b050099-5f01-4461-8fbe-3c4e74ee7e1f\",\n \"Event_Id\": \"20211110_hf8ibb3vjomg3kq45h68jc05jo\",\n \"Start_TS\": \"2021-11-09T18:30:00.000Z\",\n \"End_TS\": \"2021-11-10T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Chhat Puja (Pratihar Sashthi/Surya Sashthi)\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 80,\n \"Meeting_Id\": \"4474e656-d423-4124-82af-5b3e7cc6877a\",\n \"Event_Id\": \"20220126_61vvf5epd10r951h92dae910a8\",\n \"Start_TS\": \"2022-01-25T18:30:00.000Z\",\n \"End_TS\": \"2022-01-26T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Republic Day\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 81,\n \"Meeting_Id\": \"10cedd00-05c2-406f-b870-8c397d95e557\",\n \"Event_Id\": \"20220509_n21gcv6cir1m90nskd0jv891l4\",\n \"Start_TS\": \"2022-05-08T18:30:00.000Z\",\n \"End_TS\": \"2022-05-09T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Birthday of Ravindranath\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 82,\n \"Meeting_Id\": \"9fee4f16-9ce6-49fb-aa24-b51b70b0cf90\",\n \"Event_Id\": \"20220811_3ut0grckljm9juk16m83g6aq20\",\n \"Start_TS\": \"2022-08-10T18:30:00.000Z\",\n \"End_TS\": \"2022-08-11T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Raksha Bandhan (Rakhi)\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 83,\n \"Meeting_Id\": \"affff23e-a442-4065-b60d-e60ba27086a4\",\n \"Event_Id\": \"20220818_fgtvaoti4ou0dnus7ntu61ugbs\",\n \"Start_TS\": \"2022-08-17T18:30:00.000Z\",\n \"End_TS\": \"2022-08-18T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Janmashtami (Smarta)\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 84,\n \"Meeting_Id\": \"968f9e57-3958-4d29-8680-01dd8ea1b1b3\",\n \"Event_Id\": \"20221024_t47jelhfh3qm4ifq6sba82qltg\",\n \"Start_TS\": \"2022-10-23T18:30:00.000Z\",\n \"End_TS\": \"2022-10-24T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Diwali/Deepavali\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 85,\n \"Meeting_Id\": \"3d36a646-3b45-4af4-8d51-3211ac55fb54\",\n \"Event_Id\": \"20221108_bnn7ahc9qr0lh2afqjpb9veuj0\",\n \"Start_TS\": \"2022-11-07T18:30:00.000Z\",\n \"End_TS\": \"2022-11-08T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Guru Nanak Jayanti\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 92,\n \"Meeting_Id\": \"571ffa55-88c6-4174-aa16-a6dcc2f29df7\",\n \"Event_Id\": \"20210820_uo9godietj71om32rsgb7cdl3g\",\n \"Start_TS\": \"2021-08-19T18:30:00.000Z\",\n \"End_TS\": \"2021-08-20T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Muharram/Ashura\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 93,\n \"Meeting_Id\": \"41507df8-37f0-4704-a27e-b882ca5d10ee\",\n \"Event_Id\": \"20211015_unupg2i9atdnu1ihv2216r8co8\",\n \"Start_TS\": \"2021-10-14T18:30:00.000Z\",\n \"End_TS\": \"2021-10-15T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Dussehra\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 94,\n \"Meeting_Id\": \"a0320aa1-6c2c-475c-8703-bd0fd329121a\",\n \"Event_Id\": \"20211104_f1ik6r8f7j0fma0uqlr534cnt0\",\n \"Start_TS\": \"2021-11-03T18:30:00.000Z\",\n \"End_TS\": \"2021-11-04T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Diwali/Deepavali\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 95,\n \"Meeting_Id\": \"f387a447-d2c7-47ec-9d42-ae9e2024148b\",\n \"Event_Id\": \"20220205_r5dcqv3998eiiigp7pj8pn5gj8\",\n \"Start_TS\": \"2022-02-04T18:30:00.000Z\",\n \"End_TS\": \"2022-02-05T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Vasant Panchami\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 96,\n \"Meeting_Id\": \"295e8c0b-c87e-42f7-a6e7-dce07d4ad1fb\",\n \"Event_Id\": \"20221009_4d7bv1ogp93k0bk075sjcredb0\",\n \"Start_TS\": \"2022-10-08T18:30:00.000Z\",\n \"End_TS\": \"2022-10-09T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Maharishi Valmiki Jayanti\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 97,\n \"Meeting_Id\": \"0c693199-ff73-48fb-8842-68601cf4c98c\",\n \"Event_Id\": \"20221024_8s56pko5sn47fi9o9bl7bu43ds\",\n \"Start_TS\": \"2022-10-23T18:30:00.000Z\",\n \"End_TS\": \"2022-10-24T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Naraka Chaturdasi\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 98,\n \"Meeting_Id\": \"5130b030-3e5f-4b8b-9f27-8bb1e96ffead\",\n \"Event_Id\": \"20221224_1mbkqmsliveagblqr40q364phg\",\n \"Start_TS\": \"2022-12-23T18:30:00.000Z\",\n \"End_TS\": \"2022-12-24T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Christmas Eve\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 103,\n \"Meeting_Id\": \"93c15236-c296-4365-a63b-d6926addaacf\",\n \"Event_Id\": \"20210120_apb5ltb5913ed5dvo101gd9pk4\",\n \"Start_TS\": \"2021-01-19T18:30:00.000Z\",\n \"End_TS\": \"2021-01-20T18:30:00.000Z\",\n \"Description\": \"Observance\\nTo hide observances, go to Google Calendar Settings > Holidays in India\",\n \"Summary\": \"Guru Govind Singh Jayanti\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 104,\n \"Meeting_Id\": \"72948061-50fd-4928-a186-06f129997ba5\",\n \"Event_Id\": \"20210328_rrc2fkjicivcef932gajc2vtcs\",\n \"Start_TS\": \"2021-03-27T18:30:00.000Z\",\n \"End_TS\": \"2021-03-28T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Dolyatra\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 105,\n \"Meeting_Id\": \"d0bd3612-43e7-4c2d-aae9-ec15a31a49e3\",\n \"Event_Id\": \"20210413_5pdla7p179l9hpuva4j2c5m30s\",\n \"Start_TS\": \"2021-04-12T18:30:00.000Z\",\n \"End_TS\": \"2021-04-13T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Chaitra Sukhladi\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 106,\n \"Meeting_Id\": \"9055569e-a69e-46fa-a94a-e1edc13ff5b0\",\n \"Event_Id\": \"20211104_dk5pvlltpvbpu8vaepkji8sl7o\",\n \"Start_TS\": \"2021-11-03T18:30:00.000Z\",\n \"End_TS\": \"2021-11-04T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Naraka Chaturdasi\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 107,\n \"Meeting_Id\": \"70429ddd-07d0-4af9-9139-f5fd9d1a6798\",\n \"Event_Id\": \"20211225_n5mm8g2k4laua937i4400filvs\",\n \"Start_TS\": \"2021-12-24T18:30:00.000Z\",\n \"End_TS\": \"2021-12-25T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Christmas\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 108,\n \"Meeting_Id\": \"b4741d6b-8a69-4c1c-be56-a76d1365aab4\",\n \"Event_Id\": \"20220114_di97h7t22ica43a9s726sbrrfk\",\n \"Start_TS\": \"2022-01-13T18:30:00.000Z\",\n \"End_TS\": \"2022-01-14T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Makar Sankranti\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 109,\n \"Meeting_Id\": \"733ace48-b9cc-45a4-ac01-892248647e20\",\n \"Event_Id\": \"20220402_qafbem65vsctqhn71970eaje54\",\n \"Start_TS\": \"2022-04-01T18:30:00.000Z\",\n \"End_TS\": \"2022-04-02T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Gudi Padwa\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 110,\n \"Meeting_Id\": \"ceb7f2da-9960-4565-a471-4b0ec2b52d57\",\n \"Event_Id\": \"20221009_u48u3ujtg0g708r5mchpcidujc\",\n \"Start_TS\": \"2022-10-08T18:30:00.000Z\",\n \"End_TS\": \"2022-10-09T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Milad un-Nabi/Id-e-Milad\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 115,\n \"Meeting_Id\": \"1aa8fcb6-22ae-4d53-af1b-b752f8330044\",\n \"Event_Id\": \"20210308_3v7clb6e4p86jcec7spu9onfqk\",\n \"Start_TS\": \"2021-03-07T18:30:00.000Z\",\n \"End_TS\": \"2021-03-08T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Maharishi Dayanand Saraswati Jayanti\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 116,\n \"Meeting_Id\": \"63f71c93-5270-4fc0-ae2d-e3af9a66566a\",\n \"Event_Id\": \"20210425_9ek8tgvolv436ea8anru6joqhs\",\n \"Start_TS\": \"2021-04-24T18:30:00.000Z\",\n \"End_TS\": \"2021-04-25T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Mahavir Jayanti\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 117,\n \"Meeting_Id\": \"bc2d5b5e-54d9-47b9-bd75-2b3fc51d4f9d\",\n \"Event_Id\": \"20220113_acng6ntadkt582gd6m4dgftlis\",\n \"Start_TS\": \"2022-01-12T18:30:00.000Z\",\n \"End_TS\": \"2022-01-13T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Lohri\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 118,\n \"Meeting_Id\": \"747c0ff2-e4a9-4549-b90b-7149bc6be0a4\",\n \"Event_Id\": \"20220402_s2n2k0ihcicbq94sd1ev7u2els\",\n \"Start_TS\": \"2022-04-01T18:30:00.000Z\",\n \"End_TS\": \"2022-04-02T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Ugadi\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 119,\n \"Meeting_Id\": \"7f8b6d95-b636-46a6-a473-0d919f6fe0e2\",\n \"Event_Id\": \"20220816_rr2hpjbl2ne8vibh30vbl1qjig\",\n \"Start_TS\": \"2022-08-15T18:30:00.000Z\",\n \"End_TS\": \"2022-08-16T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Parsi New Year\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 126,\n \"Meeting_Id\": \"1576ba79-4dbc-4e5c-b744-9c05f5cf5327\",\n \"Event_Id\": \"20210227_fv7ok2vl4h3a4sfvm93c78o73s\",\n \"Start_TS\": \"2021-02-26T18:30:00.000Z\",\n \"End_TS\": \"2021-02-27T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Guru Ravidas Jayanti\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 127,\n \"Meeting_Id\": \"4c03e4b4-6ff1-4a2a-8cf0-04aae64a71bc\",\n \"Event_Id\": \"20210311_ff44d56b7ifa7nh33peokm2to8\",\n \"Start_TS\": \"2021-03-10T18:30:00.000Z\",\n \"End_TS\": \"2021-03-11T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Maha Shivaratri/Shivaratri\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 128,\n \"Meeting_Id\": \"ebad9627-b6be-4104-b436-7633723b8b40\",\n \"Event_Id\": \"20210414_il6frin01atami1htfqd6cnch4\",\n \"Start_TS\": \"2021-04-13T18:30:00.000Z\",\n \"End_TS\": \"2021-04-14T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Ambedkar Jayanti\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 129,\n \"Meeting_Id\": \"3c561333-db2a-443d-b064-fa850b16adcb\",\n \"Event_Id\": \"20210507_tdnk8pnvvr73r2juedpk9g9iqo\",\n \"Start_TS\": \"2021-05-06T18:30:00.000Z\",\n \"End_TS\": \"2021-05-07T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Jamat Ul-Vida\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 130,\n \"Meeting_Id\": \"30802738-4e15-4dd3-baa7-0b2e82619721\",\n \"Event_Id\": \"20210822_jkqnc927fk3s5cq5o9h92gjadc\",\n \"Start_TS\": \"2021-08-21T18:30:00.000Z\",\n \"End_TS\": \"2021-08-22T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Raksha Bandhan (Rakhi)\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 131,\n \"Meeting_Id\": \"aba0f43a-8901-45f7-ae0e-8442098d62a6\",\n \"Event_Id\": \"20210830_n5gr3l3qtm13mj4tnid6396ui8\",\n \"Start_TS\": \"2021-08-29T18:30:00.000Z\",\n \"End_TS\": \"2021-08-30T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Janmashtami (Smarta)\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 132,\n \"Meeting_Id\": \"b7d796ee-a571-4b1a-9fa9-56686f193dc4\",\n \"Event_Id\": \"20220215_11fecl9rlku00cufscinoqaqqk\",\n \"Start_TS\": \"2022-02-14T18:30:00.000Z\",\n \"End_TS\": \"2022-02-15T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Hazarat Ali's Birthday\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 133,\n \"Meeting_Id\": \"e85fb12a-68a9-4692-b203-f965524d2b8d\",\n \"Event_Id\": \"20220414_p53627l5r01ardvanaa4pqn3ec\",\n \"Start_TS\": \"2022-04-13T18:30:00.000Z\",\n \"End_TS\": \"2022-04-14T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Mahavir Jayanti\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 134,\n \"Meeting_Id\": \"ceec71cb-aecf-47b2-a26a-279d53d4a645\",\n \"Event_Id\": \"20220415_mqecjs2reg96b1g6eft6sgb5a8\",\n \"Start_TS\": \"2022-04-14T18:30:00.000Z\",\n \"End_TS\": \"2022-04-15T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Good Friday\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 135,\n \"Meeting_Id\": \"3ee255f2-1dac-4314-8049-e04849cb2d27\",\n \"Event_Id\": \"20220503_19gkkie1hub1a4ajulcku03he0\",\n \"Start_TS\": \"2022-05-02T18:30:00.000Z\",\n \"End_TS\": \"2022-05-03T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Ramzan Id/Eid-ul-Fitar\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 136,\n \"Meeting_Id\": \"3755629c-3fd1-4129-9c7e-f0244f940867\",\n \"Event_Id\": \"20220808_kld26ald5j65gh2cl7e6g6pp58\",\n \"Start_TS\": \"2022-08-07T18:30:00.000Z\",\n \"End_TS\": \"2022-08-08T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Muharram/Ashura\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 137,\n \"Meeting_Id\": \"17fe9be9-0d4c-4a49-bbf1-7003cd8a625b\",\n \"Event_Id\": \"20220815_5qifn9idp1endkelhuk7kt3cfo\",\n \"Start_TS\": \"2022-08-14T18:30:00.000Z\",\n \"End_TS\": \"2022-08-15T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Independence Day\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 138,\n \"Meeting_Id\": \"ea0d8492-8990-4fc5-8c44-ad86b8249799\",\n \"Event_Id\": \"20220926_q4cgvj6agl66mr6uoli0fidb2s\",\n \"Start_TS\": \"2022-09-25T18:30:00.000Z\",\n \"End_TS\": \"2022-09-26T18:30:00.000Z\",\n \"Description\": \"Observance\\nTo hide observances, go to Google Calendar Settings > Holidays in India\",\n \"Summary\": \"First Day of Sharad Navratri\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 144,\n \"Meeting_Id\": \"56301c17-82e1-4513-8e63-6ee129f1c008\",\n \"Event_Id\": \"20210101_2qu4ka3crvilq9ce04nn0h2vf8\",\n \"Start_TS\": \"2020-12-31T18:30:00.000Z\",\n \"End_TS\": \"2021-01-01T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"New Year's Day\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 145,\n \"Meeting_Id\": \"0d7494bd-9e4f-4170-8fdd-6dafe1b30335\",\n \"Event_Id\": \"20210126_r96alqqadv2dtsqvvfk48th58c\",\n \"Start_TS\": \"2021-01-25T18:30:00.000Z\",\n \"End_TS\": \"2021-01-26T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Republic Day\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 146,\n \"Meeting_Id\": \"0962bd97-c446-4020-ae1f-1a71d8bf2ec0\",\n \"Event_Id\": \"20210402_4k51bcna76h0pirb2911bi8qp0\",\n \"Start_TS\": \"2021-04-01T18:30:00.000Z\",\n \"End_TS\": \"2021-04-02T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Good Friday\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 147,\n \"Meeting_Id\": \"44dace55-9746-49f5-a4f6-5d012cb0dbac\",\n \"Event_Id\": \"20210514_vavk77jm07uftvff0jt53732p0\",\n \"Start_TS\": \"2021-05-13T18:30:00.000Z\",\n \"End_TS\": \"2021-05-14T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Ramzan Id/Eid-ul-Fitar\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 148,\n \"Meeting_Id\": \"155947a0-c082-42ec-bb97-9a7180d66e63\",\n \"Event_Id\": \"20210526_vnc9p6bae3bd20dtmcsodam714\",\n \"Start_TS\": \"2021-05-25T18:30:00.000Z\",\n \"End_TS\": \"2021-05-26T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Buddha Purnima/Vesak\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 149,\n \"Meeting_Id\": \"c047768d-30a7-4397-87b7-04c58b7b6963\",\n \"Event_Id\": \"20211007_napmjnkovfp95vn9n47gj8p47c\",\n \"Start_TS\": \"2021-10-06T18:30:00.000Z\",\n \"End_TS\": \"2021-10-07T18:30:00.000Z\",\n \"Description\": \"Observance\\nTo hide observances, go to Google Calendar Settings > Holidays in India\",\n \"Summary\": \"First Day of Sharad Navratri\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 150,\n \"Meeting_Id\": \"cbae0651-67dc-41f2-8f0d-b0c971464548\",\n \"Event_Id\": \"20211012_bth5n1dap26um4o4fm2g75vuic\",\n \"Start_TS\": \"2021-10-11T18:30:00.000Z\",\n \"End_TS\": \"2021-10-12T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Maha Saptami\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 151,\n \"Meeting_Id\": \"1862b4d4-7329-4f89-8968-f7d9a209f50a\",\n \"Event_Id\": \"20211014_i3d6mue8gjoqgf9gir68iq294k\",\n \"Start_TS\": \"2021-10-13T18:30:00.000Z\",\n \"End_TS\": \"2021-10-14T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Maha Navami\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 152,\n \"Meeting_Id\": \"a733c161-c24e-4c37-8980-83586ce57860\",\n \"Event_Id\": \"20220710_7qf3oo8nd0hou763ufvpn8fb8o\",\n \"Start_TS\": \"2022-07-09T18:30:00.000Z\",\n \"End_TS\": \"2022-07-10T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Bakr Id/Eid ul-Adha\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 153,\n \"Meeting_Id\": \"28de5414-b8d1-4531-864f-975b0cc0fbb7\",\n \"Event_Id\": \"20220831_o1ebq280uhvbmvn7795ueb8vlg\",\n \"Start_TS\": \"2022-08-30T18:30:00.000Z\",\n \"End_TS\": \"2022-08-31T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Ganesh Chaturthi/Vinayaka Chaturthi\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 154,\n \"Meeting_Id\": \"38074dfb-76fb-4863-9221-da4ffe220b1b\",\n \"Event_Id\": \"20221001_5bs6mo9bfnhkm1to8o7vshu5oc\",\n \"Start_TS\": \"2022-09-30T18:30:00.000Z\",\n \"End_TS\": \"2022-10-01T18:30:00.000Z\",\n \"Description\": \"Observance\\nTo hide observances, go to Google Calendar Settings > Holidays in India\",\n \"Summary\": \"First Day of Durga Puja Festivities\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 155,\n \"Meeting_Id\": \"d04407ae-4137-4a25-87f4-2180f859c423\",\n \"Event_Id\": \"20221004_shbc8rnqlm67oo88prd4olb94s\",\n \"Start_TS\": \"2022-10-03T18:30:00.000Z\",\n \"End_TS\": \"2022-10-04T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Maha Navami\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 156,\n \"Meeting_Id\": \"61620545-8a9e-4330-829e-98ad21237690\",\n \"Event_Id\": \"20221025_ckhndp8p3igi9grmoi224ioc88\",\n \"Start_TS\": \"2022-10-24T18:30:00.000Z\",\n \"End_TS\": \"2022-10-25T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Govardhan Puja\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 157,\n \"Meeting_Id\": \"9efe8cfe-f618-41e8-9afd-524dd9c907ad\",\n \"Event_Id\": \"20221229_ueqrermmn8re3h4unpof3k6fs4\",\n \"Start_TS\": \"2022-12-28T18:30:00.000Z\",\n \"End_TS\": \"2022-12-29T18:30:00.000Z\",\n \"Description\": \"Observance\\nTo hide observances, go to Google Calendar Settings > Holidays in India\",\n \"Summary\": \"Guru Govind Singh Jayanti\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 163,\n \"Meeting_Id\": \"df846227-1f57-43d0-9734-4a96106e9d62\",\n \"Event_Id\": \"20210114_891k4gpt7f3t4e7tg1trtv8en4\",\n \"Start_TS\": \"2021-01-13T18:30:00.000Z\",\n \"End_TS\": \"2021-01-14T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Makar Sankranti\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 164,\n \"Meeting_Id\": \"3a90a912-2e12-4f68-87b2-00b322107db5\",\n \"Event_Id\": \"20210328_naadltedqf7ebc3pud6imd7s8o\",\n \"Start_TS\": \"2021-03-27T18:30:00.000Z\",\n \"End_TS\": \"2021-03-28T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Holika Dahana\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 165,\n \"Meeting_Id\": \"180c2cac-70dc-46d7-864b-db0237a5a405\",\n \"Event_Id\": \"20210414_9b9ka0apgp6mr62fmuaoop7hsc\",\n \"Start_TS\": \"2021-04-13T18:30:00.000Z\",\n \"End_TS\": \"2021-04-14T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Mesadi\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 166,\n \"Meeting_Id\": \"3232b475-9a20-41ef-afad-408360ef3bbb\",\n \"Event_Id\": \"20211011_5dlsd5c5q5q5vmed3rpd9vvsno\",\n \"Start_TS\": \"2021-10-10T18:30:00.000Z\",\n \"End_TS\": \"2021-10-11T18:30:00.000Z\",\n \"Description\": \"Observance\\nTo hide observances, go to Google Calendar Settings > Holidays in India\",\n \"Summary\": \"First Day of Durga Puja Festivities\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 167,\n \"Meeting_Id\": \"d878c422-189a-41f8-a207-14dfcf5cfaa3\",\n \"Event_Id\": \"20211020_hjlh2p53j0tjr9eujkvrkehufg\",\n \"Start_TS\": \"2021-10-19T18:30:00.000Z\",\n \"End_TS\": \"2021-10-20T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Maharishi Valmiki Jayanti\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 168,\n \"Meeting_Id\": \"45865158-fa73-4827-a6c7-9089bdcc3e9b\",\n \"Event_Id\": \"20211105_l0qi5p5c2jih7qjl4co80j8od8\",\n \"Start_TS\": \"2021-11-04T18:30:00.000Z\",\n \"End_TS\": \"2021-11-05T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Govardhan Puja\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 169,\n \"Meeting_Id\": \"18d0f13f-a6b8-481b-9e7b-658d173d6999\",\n \"Event_Id\": \"20220414_90a70el7dqtjns47j38ilbbbbk\",\n \"Start_TS\": \"2022-04-13T18:30:00.000Z\",\n \"End_TS\": \"2022-04-14T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Vaisakhi\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 170,\n \"Meeting_Id\": \"1a0ebac4-29d3-4da7-bd36-aa4758471959\",\n \"Event_Id\": \"20220414_me0g00gp47e7o04guh6f8ca7h0\",\n \"Start_TS\": \"2022-04-13T18:30:00.000Z\",\n \"End_TS\": \"2022-04-14T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Mesadi / Vaisakhadi\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 171,\n \"Meeting_Id\": \"465e8a53-215e-40b1-a547-f3da08f15be3\",\n \"Event_Id\": \"20220429_35641ua1guvdkljg24p7n33kgc\",\n \"Start_TS\": \"2022-04-28T18:30:00.000Z\",\n \"End_TS\": \"2022-04-29T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Jamat Ul-Vida\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 172,\n \"Meeting_Id\": \"21e50e27-b224-4fcc-86dd-ccfdc02668f7\",\n \"Event_Id\": \"20221002_ane7fo0k4fd3obgm92sv0m9uns\",\n \"Start_TS\": \"2022-10-01T18:30:00.000Z\",\n \"End_TS\": \"2022-10-02T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Mahatma Gandhi Jayanti\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 174,\n \"Meeting_Id\": \"3ac10a9c-d4b3-4d80-9a44-4c0a7e4aa262\",\n \"Event_Id\": \"20210216_1d4oancgait9ad9l6lb35atpik\",\n \"Start_TS\": \"2021-02-15T18:30:00.000Z\",\n \"End_TS\": \"2021-02-16T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Vasant Panchami\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 175,\n \"Meeting_Id\": \"47906939-c61b-4cb4-9e24-fc4f95821caf\",\n \"Event_Id\": \"20210721_jsuff4pevpgb8tr8jjfmqcp6oc\",\n \"Start_TS\": \"2021-07-20T18:30:00.000Z\",\n \"End_TS\": \"2021-07-21T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Bakr Id/Eid ul-Adha\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n },\n {\n \"Id\": 176,\n \"Meeting_Id\": \"76d87fac-5147-4dfa-a811-9b4f8ae14155\",\n \"Event_Id\": \"20220219_vdkp1n6pv8chjgcfuk03rs7pe0\",\n \"Start_TS\": \"2022-02-18T18:30:00.000Z\",\n \"End_TS\": \"2022-02-19T18:30:00.000Z\",\n \"Description\": \"Public holiday\",\n \"Summary\": \"Shivaji Jayanti\",\n \"Status\": \"confirmed\",\n \"Created_On\": \"2021-10-14T07:53:57.000Z\"\n }\n ]\n}"
}
]
},
{
"name": "Get Member Details API",
"request": {
"method": "GET",
"header": [
{
"key": "accesstoken",
"value": "eyJhbGciOiJSUzI1NiIsImtpZCI6ImY1NWUyOTRlZWRjMTY3Y2Q5N2JiNWE4MTliYmY3OTA2MzZmMTIzN2UiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL3NlY3VyZXRva2VuLmdvb2dsZS5jb20vdGhvci1jcmVzbGluIiwiYXVkIjoidGhvci1jcmVzbGluIiwiYXV0aF90aW1lIjoxNjM2ODA1NDA1LCJ1c2VyX2lkIjoiS0lLVWFKRmFTRWhqblc1RDdld0NQM2J2NXZpMSIsInN1YiI6IktJS1VhSkZhU0Voam5XNUQ3ZXdDUDNidjV2aTEiLCJpYXQiOjE2MzY4MDYxNTAsImV4cCI6MTYzNjgwOTc1MCwicGhvbmVfbnVtYmVyIjoiKzkxODk2Nzk5ODYwMSIsImZpcmViYXNlIjp7ImlkZW50aXRpZXMiOnsicGhvbmUiOlsiKzkxODk2Nzk5ODYwMSJdfSwic2lnbl9pbl9wcm92aWRlciI6InBob25lIn19.tNhCzfxd4b8vNb6HqcFwLKKdye4JhsYsfRgX74OvjGUkGFsfl9r_oIqefCQ_YGY-aBpCq8D0GuhMh-Z1PLqFXTLUTSiW0yKIKSQSa2zGQbogsP-uX6aelyEg4-lEumJuoGK4GlS1V-TygPJhVt9iOWboi-nV9VO8SLMPZgELLvynccpqTIMrIc9nFUQ8aRjYEyXUEuWFbwR9FnxGm81nth4sVoOY3z2GuIJGGFZrILQASHhLfsjeLwPSuBzUkFJdGzKUOONxYXQ8ZB7g07sWNDLlILQ1rGAZHQLkVrgaj03dfEQyfYo9jrPCGFHbRcXbVs-msBR4rLF9iVgLBvszLQ",
"type": "text"
},
{
"key": "refreshtoken",
"value": "ACzBnCgCGFS52tC0Lt_iDupzzwFathR0iAG9cydkC3M9eXxw_BIzqbOAFLQJEQ745MuhePHye_02hK6U3Eaa3OANhHA00RM4wxvgN8LOoyQLFeoYJn3Cc-InjdHOZ18lyrPHNAOTzU8Cx1osOPHI-9FiZXBv9kZ6-JaUexYrs99ftli7y_BQzTk60O-ramBzdOgIVVuB0Loa",
"type": "text"
}
],
"url": {
"raw": "http://localhost:3000/member-info",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"member-info"
]
}
},
"response": [
{
"name": "Get Member Details API",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "accesstoken",
"value": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjY5NGNmYTAxOTgyMDNlMjgwN2Q4MzRkYmE2MjBlZjczZjI4ZTRlMmMiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL3NlY3VyZXRva2VuLmdvb2dsZS5jb20vdGhvci1jcmVzbGluIiwiYXVkIjoidGhvci1jcmVzbGluIiwiYXV0aF90aW1lIjoxNjM1NzM5MTc5LCJ1c2VyX2lkIjoiS0lLVWFKRmFTRWhqblc1RDdld0NQM2J2NXZpMSIsInN1YiI6IktJS1VhSkZhU0Voam5XNUQ3ZXdDUDNidjV2aTEiLCJpYXQiOjE2MzU5OTM4MjksImV4cCI6MTYzNTk5NzQyOSwicGhvbmVfbnVtYmVyIjoiKzkxODk2Nzk5ODYwMSIsImZpcmViYXNlIjp7ImlkZW50aXRpZXMiOnsicGhvbmUiOlsiKzkxODk2Nzk5ODYwMSJdfSwic2lnbl9pbl9wcm92aWRlciI6InBob25lIn19.DoQLzlFqdGzmVU6n4-WkmJ32tmah_Og88ckRKa-hUyKGdR4TrK6oQS2NARngVm0V3oQK5KepPJVbguwcaWvlkkXqkYciaCsCRU4FMJF7cU2Mt5QAyQvbO5kO3SKfQo2RCf8DMHCOxTvuc1And-UiiPyu7qC2TwNzZ1rIaUlXh_QIt49caMa3Efrg0mVSxngSKTNBQM6JwbBFx9l-d3pgtQUJCPBJd_ODiipBC72oVSwuQoYBpUBrk0qcZcnRr8RFzFpJRcex6WCNnyKUnywXiCD62qxWLXXjscDCg51R7eTTL8of9fRaCp_EjDgmufoN-qKYFiuA6YAK3BMGst2xEg",
"type": "text"
},
{
"key": "refreshtoken",
"value": "ACzBnCgCGFS52tC0Lt_iDupzzwFathR0iAG9cydkC3M9eXxw_BIzqbOAFLQJEQ745MuhePHye_02hK6U3Eaa3OANhHA00RM4wxvgN8LOoyQLFeoYJn3Cc-InjdHOZ18lyrPHNAOTzU8Cx1osOPHI-9FiZXBv9kZ6-JaUexYrs99ftli7y_BQzTk60O-ramBzdOgIVVuB0Loa",
"type": "text"
}
],
"url": {
"raw": "http://localhost:3000/member-info",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"member-info"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "X-Powered-By",
"value": "Express"
},
{
"key": "Access-Control-Allow-Origin",
"value": "http://localhost:4200"
},
{
"key": "Vary",
"value": "Origin"
},
{
"key": "Content-Type",
"value": "application/json; charset=utf-8"
},
{
"key": "Content-Length",
"value": "774"
},
{
"key": "ETag",
"value": "W/\"306-psaWxZeylVnI5WrKUI7jor5ZxaA\""
},
{
"key": "Date",
"value": "Thu, 04 Nov 2021 02:44:14 GMT"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Keep-Alive",
"value": "timeout=5"
}
],
"cookie": [],
"body": "{\n \"member_info\": {\n \"Frst_Name\": \"Raja\",\n \"Last_Name\": \"Samanta\",\n \"Email\": \"[email protected]\",\n \"Identification\": \"918967998601\",\n \"Major\": \"LC\",\n \"Specification\": \"AM\",\n \"Experience\": \"Having Broad Experience\",\n \"Major_Desc\": null,\n \"Spec_Desc\": \"Anger Management\",\n \"Total_Patient\": 1\n },\n \"IsOauthVerified\": true,\n \"appoinments\": [\n {\n \"Start_TS\": \"2021-11-04T19:00:00+05:30\",\n \"End_TS\": \"2021-11-04T20:00:00+05:30\",\n \"Platform_Meeting_Id\": \"https://meet.google.com/amk-cwmr-bki\",\n \"Client_Info\": [\n {\n \"Name\": null,\n \"Client_Iden\": \"[email protected]\"\n }\n ],\n \"Meeting_Id\": \"0aac5365-fb75-4628-ba92-4cd42e4757b3\"\n },\n {\n \"Start_TS\": \"2021-11-06T20:00:00+05:30\",\n \"End_TS\": \"2021-11-06T21:00:00+05:30\",\n \"Platform_Meeting_Id\": \"https://meet.google.com/gao-cjzm-afg\",\n \"Client_Info\": [],\n \"Meeting_Id\": \"998060a6-402a-4c53-a0a0-84edeef0b078\"\n }\n ]\n}"
}
]
},
{
"name": "Get Patient Profile Data",
"request": {
"method": "GET",
"header": [
{
"key": "accesstoken",
"value": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjY5NGNmYTAxOTgyMDNlMjgwN2Q4MzRkYmE2MjBlZjczZjI4ZTRlMmMiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL3NlY3VyZXRva2VuLmdvb2dsZS5jb20vdGhvci1jcmVzbGluIiwiYXVkIjoidGhvci1jcmVzbGluIiwiYXV0aF90aW1lIjoxNjM1NzM5MTc5LCJ1c2VyX2lkIjoiS0lLVWFKRmFTRWhqblc1RDdld0NQM2J2NXZpMSIsInN1YiI6IktJS1VhSkZhU0Voam5XNUQ3ZXdDUDNidjV2aTEiLCJpYXQiOjE2MzU5OTQ1MzEsImV4cCI6MTYzNTk5ODEzMSwicGhvbmVfbnVtYmVyIjoiKzkxODk2Nzk5ODYwMSIsImZpcmViYXNlIjp7ImlkZW50aXRpZXMiOnsicGhvbmUiOlsiKzkxODk2Nzk5ODYwMSJdfSwic2lnbl9pbl9wcm92aWRlciI6InBob25lIn19.q2xfXMhhRTKeGuYYQM03vezPkBK9wna05cejGxI6bc9JuGqvl83mIoN3H60S3esZaRPSuvNLaKO26cpV2RcYTk6P094J9UuBI_inAImRxizx9UW56sa3Ejuj1Db4SyBzvWzoRb00V6S_3phVICaXc4Fx5cLKjAnI0sqy_S1QNFEtouk7Yn0LJWsPe_E5YGVC7y00ixNpKs5T-Fgl1BsMrzz0lUhc8QZauMWtM9UslzmziXDMcMxjtONVhAwHgFE5rNmAyM8kvHdNdBSZBRlEXRohDJdTcTz25CNN_pEIVyPpJ7DEVzVFbNtBWpgwk7uDcORoHpblpkV6_R3KJ3cf9w",
"type": "text"
},
{
"key": "refreshtoken",
"value": "AFxQ4_pTv4zF3TqV0gtDEEs1v-WUtYgXDBdSBr9KdeOhS2UIme9k7UXh2kvWaxmWLcDZet-hh28zmItew0y2hQJKyhR2KORWgvdyFdCQUP5WpiIRwOR5w_Or8Xcu_yh95GFyQLNmy3_YYbASPRH7ik-CgKVj2UC2C29qwIPBH8-rY_RSwfvw8KH8CA3q9qpkE59scp8iPRqn",
"type": "text"
}
],
"url": {
"raw": "http://localhost:3000/patient?client_Id=fc6a1eae-d2d2-4294-9214-8d98ad989846",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"patient"
],
"query": [
{
"key": "client_Id",
"value": "fc6a1eae-d2d2-4294-9214-8d98ad989846"
}
]
}
},
"response": [
{
"name": "Get Patient Profile Data",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "accesstoken",
"value": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjY5NGNmYTAxOTgyMDNlMjgwN2Q4MzRkYmE2MjBlZjczZjI4ZTRlMmMiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL3NlY3VyZXRva2VuLmdvb2dsZS5jb20vdGhvci1jcmVzbGluIiwiYXVkIjoidGhvci1jcmVzbGluIiwiYXV0aF90aW1lIjoxNjM1NzM5MTc5LCJ1c2VyX2lkIjoiS0lLVWFKRmFTRWhqblc1RDdld0NQM2J2NXZpMSIsInN1YiI6IktJS1VhSkZhU0Voam5XNUQ3ZXdDUDNidjV2aTEiLCJpYXQiOjE2MzU5OTQ1MzEsImV4cCI6MTYzNTk5ODEzMSwicGhvbmVfbnVtYmVyIjoiKzkxODk2Nzk5ODYwMSIsImZpcmViYXNlIjp7ImlkZW50aXRpZXMiOnsicGhvbmUiOlsiKzkxODk2Nzk5ODYwMSJdfSwic2lnbl9pbl9wcm92aWRlciI6InBob25lIn19.q2xfXMhhRTKeGuYYQM03vezPkBK9wna05cejGxI6bc9JuGqvl83mIoN3H60S3esZaRPSuvNLaKO26cpV2RcYTk6P094J9UuBI_inAImRxizx9UW56sa3Ejuj1Db4SyBzvWzoRb00V6S_3phVICaXc4Fx5cLKjAnI0sqy_S1QNFEtouk7Yn0LJWsPe_E5YGVC7y00ixNpKs5T-Fgl1BsMrzz0lUhc8QZauMWtM9UslzmziXDMcMxjtONVhAwHgFE5rNmAyM8kvHdNdBSZBRlEXRohDJdTcTz25CNN_pEIVyPpJ7DEVzVFbNtBWpgwk7uDcORoHpblpkV6_R3KJ3cf9w",
"type": "text"
},
{
"key": "refreshtoken",
"value": "AFxQ4_pTv4zF3TqV0gtDEEs1v-WUtYgXDBdSBr9KdeOhS2UIme9k7UXh2kvWaxmWLcDZet-hh28zmItew0y2hQJKyhR2KORWgvdyFdCQUP5WpiIRwOR5w_Or8Xcu_yh95GFyQLNmy3_YYbASPRH7ik-CgKVj2UC2C29qwIPBH8-rY_RSwfvw8KH8CA3q9qpkE59scp8iPRqn",
"type": "text"
}
],
"url": {
"raw": "http://localhost:3000/patient?client_Id=fc6a1eae-d2d2-4294-9214-8d98ad989846",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"patient"
],
"query": [
{
"key": "client_Id",
"value": "fc6a1eae-d2d2-4294-9214-8d98ad989846"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "X-Powered-By",
"value": "Express"
},
{
"key": "Access-Control-Allow-Origin",
"value": "http://localhost:4200"
},
{
"key": "Vary",
"value": "Origin"
},
{
"key": "Content-Type",
"value": "application/json; charset=utf-8"
},
{
"key": "Content-Length",
"value": "967"
},
{
"key": "ETag",
"value": "W/\"3c7-W4F7Cvv4dUa0O9CAUjyMeqFN6So\""
},
{
"key": "Date",
"value": "Thu, 04 Nov 2021 02:55:54 GMT"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Keep-Alive",
"value": "timeout=5"
}
],
"cookie": [],
"body": "{\n \"patient_info\": {\n \"Client_Iden\": \"[email protected]\",\n \"Name\": null,\n \"Ph\": null,\n \"DOB\": null,\n \"Gender\": null,\n \"Is_Cres_Client\": \"N\",\n \"Created_On\": \"2021-11-02T03:53:39.000Z\"\n },\n \"last_appoinment\": [],\n \"next_appoinment\": [\n {\n \"Meeting_Id\": \"552653ce-23b1-4690-9f50-233688aafa44\",\n \"Start_TS\": \"2022-10-23T08:30:00.000Z\",\n \"End_TS\": \"2022-10-23T09:30:00.000Z\",\n \"Platform_Meeting_Id\": \"https://meet.google.com/mwi-ghia-htz\",\n \"Member_Id\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"Patient_Note_Id\": null,\n \"Doctor_Note_Id\": null\n },\n {\n \"Meeting_Id\": \"0aac5365-fb75-4628-ba92-4cd42e4757b3\",\n \"Start_TS\": \"2021-11-04T13:30:00.000Z\",\n \"End_TS\": \"2021-11-04T14:30:00.000Z\",\n \"Platform_Meeting_Id\": \"https://meet.google.com/amk-cwmr-bki\",\n \"Member_Id\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"Patient_Note_Id\": null,\n \"Doctor_Note_Id\": null\n }\n ],\n \"files\": [\n {\n \"File_Id\": \"1a60cc32-2620-484d-9633-122e8981a249\",\n \"File_Path\": \"https://creslin-patient-meeting.s3.ap-south-1.amazonaws.com/tsconfig.json\",\n \"Created_On\": \"2021-11-04T02:53:59.000Z\"\n }\n ]\n}"
}
]
},
{
"name": "Get Patient List",
"request": {
"method": "GET",
"header": [
{
"key": "accesstoken",
"value": "eyJhbGciOiJSUzI1NiIsImtpZCI6ImY1NWUyOTRlZWRjMTY3Y2Q5N2JiNWE4MTliYmY3OTA2MzZmMTIzN2UiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL3NlY3VyZXRva2VuLmdvb2dsZS5jb20vdGhvci1jcmVzbGluIiwiYXVkIjoidGhvci1jcmVzbGluIiwiYXV0aF90aW1lIjoxNjM2OTAxMDcwLCJ1c2VyX2lkIjoiS0lLVWFKRmFTRWhqblc1RDdld0NQM2J2NXZpMSIsInN1YiI6IktJS1VhSkZhU0Voam5XNUQ3ZXdDUDNidjV2aTEiLCJpYXQiOjE2MzY5MDkzOTgsImV4cCI6MTYzNjkxMjk5OCwicGhvbmVfbnVtYmVyIjoiKzkxODk2Nzk5ODYwMSIsImZpcmViYXNlIjp7ImlkZW50aXRpZXMiOnsicGhvbmUiOlsiKzkxODk2Nzk5ODYwMSJdfSwic2lnbl9pbl9wcm92aWRlciI6InBob25lIn19.qCU6boraB8ctBdB_t1806zdoA8JNcOQS5KMGHIWNVupaLGU2PyyibRAjn0Q7EQ1-eO5UWRGT8qyMjUZQST_7-PEY6ccJoQUde11EdA0dAQ7DYSBRdT4wTHjVJ_Ra3YK-ShHePaXEAl7T54FPI_W0MCfJl83M2dh82ggUCXf_xzwIhIvZ7e7G1Bm8GKoFAfpS6d4ZoGItAADG0XrlpJYBsQyO2Eck8CMnhNY12eaTHZDk6WvPVH60kWls9XEbs86t66OnBMRpQq_QIGa0_uLjubkQ1V29XFrFm6KUF6HbNZAs0dvHKvv3ReaCr7kg5w3W9iZShD3QpeD6p0iCbBg3wA",
"type": "text"
},
{
"key": "refreshtoken",
"value": "ACzBnCgCGFS52tC0Lt_iDupzzwFathR0iAG9cydkC3M9eXxw_BIzqbOAFLQJEQ745MuhePHye_02hK6U3Eaa3OANhHA00RM4wxvgN8LOoyQLFeoYJn3Cc-InjdHOZ18lyrPHNAOTzU8Cx1osOPHI-9FiZXBv9kZ6-JaUexYrs99ftli7y_BQzTk60O-ramBzdOgIVVuB0Loa",
"type": "text"
}
],
"url": {
"raw": "http://localhost:3000/patient-list",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"patient-list"
]
}
},
"response": [
{
"name": "Get Patient List",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "accesstoken",
"value": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MjU1NWEyMjM3MWYxMGY0ZTIyZjFhY2U3NjJmYzUwZmYzYmVlMGMiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL3NlY3VyZXRva2VuLmdvb2dsZS5jb20vdGhvci1jcmVzbGluIiwiYXVkIjoidGhvci1jcmVzbGluIiwiYXV0aF90aW1lIjoxNjM1MzI2Njg3LCJ1c2VyX2lkIjoiS0lLVWFKRmFTRWhqblc1RDdld0NQM2J2NXZpMSIsInN1YiI6IktJS1VhSkZhU0Voam5XNUQ3ZXdDUDNidjV2aTEiLCJpYXQiOjE2MzU1NzEyNjMsImV4cCI6MTYzNTU3NDg2MywicGhvbmVfbnVtYmVyIjoiKzkxODk2Nzk5ODYwMSIsImZpcmViYXNlIjp7ImlkZW50aXRpZXMiOnsicGhvbmUiOlsiKzkxODk2Nzk5ODYwMSJdfSwic2lnbl9pbl9wcm92aWRlciI6InBob25lIn19.ZiQkZ0EZs3N_z1hASEZw6LE5ntA3pw6hWW_Z9gpyioBwRxzfSuZ2GTreJlaIG6MJnNlhIWkgWtm5MUdRPzZE-mM2boQKGuKaOq8hWSepiaZcGu7LGuP1hLLJTuTA5XeKoE36IQaLeT1TeZb8DOQ09QMNUcVJQHYHPtTgnAEr_yOv0wk9GVtFan8stB1XjarTTw7wuLtow59RI8Ks59e0CBr-_7ijsKN6ATNdUiVaQMJ0fE5AnE32IO0h5Rt6gXQZku1FfPd890bJdVg-s9eB8DINBBTtqtsZpzi1kyAC4Zs3UjGh5TzVjBb0uFb9kCYgOOTNS5Y7XTr7UdTuJSm6IA",
"type": "text"
},
{
"key": "refreshtoken",
"value": "ACzBnCgCGFS52tC0Lt_iDupzzwFathR0iAG9cydkC3M9eXxw_BIzqbOAFLQJEQ745MuhePHye_02hK6U3Eaa3OANhHA00RM4wxvgN8LOoyQLFeoYJn3Cc-InjdHOZ18lyrPHNAOTzU8Cx1osOPHI-9FiZXBv9kZ6-JaUexYrs99ftli7y_BQzTk60O-ramBzdOgIVVuB0Loa",
"type": "text"
}
],
"url": {
"raw": "http://localhost:3000/patient-list",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"patient-list"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "X-Powered-By",
"value": "Express"
},
{
"key": "Access-Control-Allow-Origin",
"value": "http://localhost:4200"
},
{
"key": "Vary",
"value": "Origin"
},
{
"key": "Content-Type",
"value": "application/json; charset=utf-8"
},
{
"key": "Content-Length",
"value": "2417"
},
{
"key": "ETag",
"value": "W/\"971-asU2GtmhCVpk0d+F7rgxGL4mHUc\""
},
{
"key": "Date",
"value": "Sat, 30 Oct 2021 05:28:55 GMT"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Keep-Alive",
"value": "timeout=5"
}
],
"cookie": [],
"body": "[\n {\n \"Client_Id\": \"5dd3ba89-74a4-45f3-901b-4e81db707ef5\",\n \"Email\": \"[email protected]\",\n \"Ph\": null,\n \"Member_Id\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"Name\": null,\n \"Last_Appoinment\": \"2021-10-13T13:00:00.000Z\",\n \"Next_Appoinment\": null,\n \"Created_On\": \"2021-10-27T09:09:01.000Z\"\n },\n {\n \"Client_Id\": \"26d57913-742e-42cc-9126-c1b49af33eb1\",\n \"Email\": \"[email protected]\",\n \"Ph\": null,\n \"Member_Id\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"Name\": null,\n \"Last_Appoinment\": \"2021-10-27T13:00:00.000Z\",\n \"Next_Appoinment\": null,\n \"Created_On\": \"2021-10-27T09:09:01.000Z\"\n },\n {\n \"Client_Id\": \"de92d096-bc9b-4519-b5a4-b722698a2db8\",\n \"Email\": \"[email protected]\",\n \"Ph\": null,\n \"Member_Id\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"Name\": null,\n \"Last_Appoinment\": \"2021-10-27T13:00:00.000Z\",\n \"Next_Appoinment\": null,\n \"Created_On\": \"2021-10-27T09:09:01.000Z\"\n },\n {\n \"Client_Id\": \"2fb21f04-3478-447c-a170-afa13bbbb793\",\n \"Email\": \"[email protected]\",\n \"Ph\": null,\n \"Member_Id\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"Name\": null,\n \"Last_Appoinment\": \"2021-10-27T13:00:00.000Z\",\n \"Next_Appoinment\": null,\n \"Created_On\": \"2021-10-27T09:09:01.000Z\"\n },\n {\n \"Client_Id\": \"dcc42b28-5a06-453a-945f-70c757993a40\",\n \"Email\": \"[email protected]\",\n \"Ph\": null,\n \"Member_Id\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"Name\": null,\n \"Last_Appoinment\": \"2021-10-28T13:50:00.000Z\",\n \"Next_Appoinment\": null,\n \"Created_On\": \"2021-10-27T09:09:01.000Z\"\n },\n {\n \"Client_Id\": \"bc249e63-1c4e-40ce-862e-9a2ee2ceeff7\",\n \"Email\": \"[email protected]\",\n \"Ph\": null,\n \"Member_Id\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"Name\": null,\n \"Last_Appoinment\": \"2021-10-28T13:50:00.000Z\",\n \"Next_Appoinment\": null,\n \"Created_On\": \"2021-10-27T09:09:01.000Z\"\n },\n {\n \"Client_Id\": \"55dd0e68-29b5-4fe7-b3cf-8ab7ac631190\",\n \"Email\": \"[email protected]\",\n \"Ph\": null,\n \"Member_Id\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"Name\": null,\n \"Last_Appoinment\": \"2021-10-20T07:00:00.000Z\",\n \"Next_Appoinment\": null,\n \"Created_On\": \"2021-10-27T09:09:01.000Z\"\n },\n {\n \"Client_Id\": \"0ee84636-f412-424a-9ed1-50c727a986c4\",\n \"Email\": \"[email protected]\",\n \"Ph\": null,\n \"Member_Id\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"Name\": null,\n \"Last_Appoinment\": \"2021-10-20T07:00:00.000Z\",\n \"Next_Appoinment\": null,\n \"Created_On\": \"2021-10-27T09:09:01.000Z\"\n },\n {\n \"Client_Id\": \"31cd87be-e965-440f-a729-bb9da67623a8\",\n \"Email\": \"[email protected]\",\n \"Ph\": \"917407878778\",\n \"Member_Id\": \"497f416b-e2c8-4818-b144-ce8392ff27a1\",\n \"Name\": \"Sankhadip Samanta\",\n \"Last_Appoinment\": null,\n \"Next_Appoinment\": null,\n \"Created_On\": \"2021-10-27T09:28:32.000Z\"\n }\n]"
}
]
},
{
"name": "Create Patient Notes",
"request": {
"method": "POST",
"header": [
{
"key": "accesstoken",
"value": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjY5NGNmYTAxOTgyMDNlMjgwN2Q4MzRkYmE2MjBlZjczZjI4ZTRlMmMiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL3NlY3VyZXRva2VuLmdvb2dsZS5jb20vdGhvci1jcmVzbGluIiwiYXVkIjoidGhvci1jcmVzbGluIiwiYXV0aF90aW1lIjoxNjM1NzM5MTc5LCJ1c2VyX2lkIjoiS0lLVWFKRmFTRWhqblc1RDdld0NQM2J2NXZpMSIsInN1YiI6IktJS1VhSkZhU0Voam5XNUQ3ZXdDUDNidjV2aTEiLCJpYXQiOjE2MzU5OTQyNjgsImV4cCI6MTYzNTk5Nzg2OCwicGhvbmVfbnVtYmVyIjoiKzkxODk2Nzk5ODYwMSIsImZpcmViYXNlIjp7ImlkZW50aXRpZXMiOnsicGhvbmUiOlsiKzkxODk2Nzk5ODYwMSJdfSwic2lnbl9pbl9wcm92aWRlciI6InBob25lIn19.d4mbRFcuzU6m7ZdgNq6UGr0JVM3125iVeqCjNl78_9wzKxhCPX4zmUl8IlEjFF1HFsB56WZ1VN3qN3UG2ZrjhYrsS60pIv6zaMGUuIjoA_ylG38BbCQT3ivq6xl_noNLLuj2pLXmb8Xdug0xOGaYQzge0_V-QveWu_H4m3EDYtBpn3NuoFJ1FEzlYSscHd4iRV4WJGigCa3cqVs8pkdw1VbWz5z0rkbbisF65QkSukgQNmT69KGmvKT9DPFUMHyOLMfyaZoUj-D1Fq0hiKa5s7bCBYGQ_BXjjwzSYEgg5rmkjDTkXuR_U9RBaTyJ4p8XM_ONvJ0959RWHsltOu-cxw",
"type": "text"
},
{
"key": "refreshtoken",
"value": "ACzBnCgCGFS52tC0Lt_iDupzzwFathR0iAG9cydkC3M9eXxw_BIzqbOAFLQJEQ745MuhePHye_02hK6U3Eaa3OANhHA00RM4wxvgN8LOoyQLFeoYJn3Cc-InjdHOZ18lyrPHNAOTzU8Cx1osOPHI-9FiZXBv9kZ6-JaUexYrs99ftli7y_BQzTk60O-ramBzdOgIVVuB0Loa",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"clientId\": \"fc6a1eae-d2d2-4294-9214-8d98ad989846\",\n \"noteId\": null,\n \"meetingId\": \"dc07e6b4-b172-4504-b4c8-f2f474802140\",\n \"resource\": \"Please take medicine in time and do well. HEHEHEHE\",\n \"resourceType\": \"DN\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:3000/create-note",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"create-note"
]
}
},
"response": [
{
"name": "Create Patient Notes",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "accesstoken",
"value": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjM1MDM0MmIwMjU1MDAyYWI3NWUwNTM0YzU4MmVjYzY2Y2YwZTE3ZDIiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL3NlY3VyZXRva2VuLmdvb2dsZS5jb20vdGVzdC0yMDI1NCIsImF1ZCI6InRlc3QtMjAyNTQiLCJhdXRoX3RpbWUiOjE2MzMxNjYyNDYsInVzZXJfaWQiOiJQRTBuZzBiTHlmZUJ0WlZFaEQyTnF3c3pFMngxIiwic3ViIjoiUEUwbmcwYkx5ZmVCdFpWRWhEMk5xd3N6RTJ4MSIsImlhdCI6MTYzMzQyMjQ3NywiZXhwIjoxNjMzNDI2MDc3LCJwaG9uZV9udW1iZXIiOiIrOTE4OTY3OTk4NjAxIiwiZmlyZWJhc2UiOnsiaWRlbnRpdGllcyI6eyJwaG9uZSI6WyIrOTE4OTY3OTk4NjAxIl19LCJzaWduX2luX3Byb3ZpZGVyIjoicGhvbmUifX0.CJpNVGEBIe7Ke3s0HhcwG1bw6esJJ8MgojJKhrXRrDs9ELTB123ZXqPkFgWl8comqyXVHnCuudbh1qPfcAfyDJX6bhSzETZG32_YidutnWfRb-exIWtAhw_K_2OSLfa-YzquZBPLDcg30jGAFC7Pk6melpPJdUuqSmwH7RY9NuuD9Tm8UVWrMVR2fwvsYpA64tx4ga-lNgQqCaygdxyvtY0fPwv_Oi42ZeYA8pVhy9BQqVBi8okPTGWFJqqH-JUHJ42wMVxgfa9ytRt2cWK-LQH0K9AVaRCQ5C42127CLQKdL1pAWJJDmnh8_zooT_0XULxJ1InPEic-KiyrsgNwWg",
"type": "text"
},
{
"key": "refreshtoken",
"value": "ACzBnCgCGFS52tC0Lt_iDupzzwFathR0iAG9cydkC3M9eXxw_BIzqbOAFLQJEQ745MuhePHye_02hK6U3Eaa3OANhHA00RM4wxvgN8LOoyQLFeoYJn3Cc-InjdHOZ18lyrPHNAOTzU8Cx1osOPHI-9FiZXBv9kZ6-JaUexYrs99ftli7y_BQzTk60O-ramBzdOgIVVuB0Loa",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"clientId\": \"3c082a9c-c711-4b63-b28e-499b4d8b9bcf\",\n \"noteId\": null,\n \"meetingId\": \"dca210be-268a-4011-bcb6-dcedac9f907c\",\n \"resource\": \"Please take medicine in time and do well. HEHEHEHE\",\n \"resourceType\": \"PN\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:3000/create-note",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"create-note"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "plain",
"header": [
{
"key": "X-Powered-By",
"value": "Express"
},
{
"key": "Access-Control-Allow-Origin",
"value": "http://localhost:4200"
},
{
"key": "Vary",
"value": "Origin"
},
{
"key": "Date",
"value": "Tue, 05 Oct 2021 08:54:12 GMT"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Keep-Alive",
"value": "timeout=5"
},
{
"key": "Content-Length",
"value": "0"
}
],
"cookie": [],
"body": null
}
]
},
{
"name": "Upload File - Patient & Meeting",
"request": {
"method": "POST",
"header": [
{
"key": "accesstoken",
"value": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjY5NGNmYTAxOTgyMDNlMjgwN2Q4MzRkYmE2MjBlZjczZjI4ZTRlMmMiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL3NlY3VyZXRva2VuLmdvb2dsZS5jb20vdGhvci1jcmVzbGluIiwiYXVkIjoidGhvci1jcmVzbGluIiwiYXV0aF90aW1lIjoxNjM1NzM5MTc5LCJ1c2VyX2lkIjoiS0lLVWFKRmFTRWhqblc1RDdld0NQM2J2NXZpMSIsInN1YiI6IktJS1VhSkZhU0Voam5XNUQ3ZXdDUDNidjV2aTEiLCJpYXQiOjE2MzU5OTQyNjgsImV4cCI6MTYzNTk5Nzg2OCwicGhvbmVfbnVtYmVyIjoiKzkxODk2Nzk5ODYwMSIsImZpcmViYXNlIjp7ImlkZW50aXRpZXMiOnsicGhvbmUiOlsiKzkxODk2Nzk5ODYwMSJdfSwic2lnbl9pbl9wcm92aWRlciI6InBob25lIn19.d4mbRFcuzU6m7ZdgNq6UGr0JVM3125iVeqCjNl78_9wzKxhCPX4zmUl8IlEjFF1HFsB56WZ1VN3qN3UG2ZrjhYrsS60pIv6zaMGUuIjoA_ylG38BbCQT3ivq6xl_noNLLuj2pLXmb8Xdug0xOGaYQzge0_V-QveWu_H4m3EDYtBpn3NuoFJ1FEzlYSscHd4iRV4WJGigCa3cqVs8pkdw1VbWz5z0rkbbisF65QkSukgQNmT69KGmvKT9DPFUMHyOLMfyaZoUj-D1Fq0hiKa5s7bCBYGQ_BXjjwzSYEgg5rmkjDTkXuR_U9RBaTyJ4p8XM_ONvJ0959RWHsltOu-cxw",
"type": "text"
},
{
"key": "refreshtoken",
"value": "AFxQ4_pTv4zF3TqV0gtDEEs1v-WUtYgXDBdSBr9KdeOhS2UIme9k7UXh2kvWaxmWLcDZet-hh28zmItew0y2hQJKyhR2KORWgvdyFdCQUP5WpiIRwOR5w_Or8Xcu_yh95GFyQLNmy3_YYbASPRH7ik-CgKVj2UC2C29qwIPBH8-rY_RSwfvw8KH8CA3q9qpkE59scp8iPRqn",
"type": "text"
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "file",
"type": "file",
"src": "/Users/sankha/Documents/creslin/hulk/tsconfig.json"
},
{
"key": "clientId",
"value": "fc6a1eae-d2d2-4294-9214-8d98ad989846",
"type": "text"
},
{
"key": "meetingId",
"value": "",
"description": "Optional",
"type": "text"
}
]
},
"url": {
"raw": "http://localhost:3000/patient-file-upload",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"patient-file-upload"
]
}
},
"response": [
{
"name": "Patient-Meeting File upload to S#",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "accesstoken",
"value": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1MjU1NWEyMjM3MWYxMGY0ZTIyZjFhY2U3NjJmYzUwZmYzYmVlMGMiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL3NlY3VyZXRva2VuLmdvb2dsZS5jb20vdGhvci1jcmVzbGluIiwiYXVkIjoidGhvci1jcmVzbGluIiwiYXV0aF90aW1lIjoxNjM1MzI2Njg3LCJ1c2VyX2lkIjoiS0lLVWFKRmFTRWhqblc1RDdld0NQM2J2NXZpMSIsInN1YiI6IktJS1VhSkZhU0Voam5XNUQ3ZXdDUDNidjV2aTEiLCJpYXQiOjE2MzU2NTM1NDYsImV4cCI6MTYzNTY1NzE0NiwicGhvbmVfbnVtYmVyIjoiKzkxODk2Nzk5ODYwMSIsImZpcmViYXNlIjp7ImlkZW50aXRpZXMiOnsicGhvbmUiOlsiKzkxODk2Nzk5ODYwMSJdfSwic2lnbl9pbl9wcm92aWRlciI6InBob25lIn19.Wzlm7V9kkzHuk6sp2vTiATWtx9iBMqbsFa0ZzVaZ3C20no6mmqOrrODOX76Y1ah6PbIPw-6XsE_xkqX_OhmebxwBBMBKvcyVM31nZrsdhs6lhg9rXQBOZAjGdtgal18bAgOJ5L_CKtO81V9nUdP1rIA3asGRGIBicXqw4mZ9EvPfnJhka1pF14dCfuELS--M3O0MLiBnktDAWUGGRGYxi3mj4-xogM0rRBC0wzYgj38u38mqO2UL9HfQUBkoStWocQTsUpD3yce8gQxMuF76qqR5PU05RQ7ec-eISH65OC56olGO3qRDzlutbEC_W1PjK4NRC6qP__fA1h_F0-IKDw",
"type": "text"
},
{
"key": "refreshtoken",
"value": "AFxQ4_pTv4zF3TqV0gtDEEs1v-WUtYgXDBdSBr9KdeOhS2UIme9k7UXh2kvWaxmWLcDZet-hh28zmItew0y2hQJKyhR2KORWgvdyFdCQUP5WpiIRwOR5w_Or8Xcu_yh95GFyQLNmy3_YYbASPRH7ik-CgKVj2UC2C29qwIPBH8-rY_RSwfvw8KH8CA3q9qpkE59scp8iPRqn",
"type": "text"
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "file",
"type": "file",
"src": "/Users/sankha/Documents/creslin/hulk/tsconfig.json"
},
{
"key": "clientId",
"value": "5dd3ba89-74a4-45f3-901b-4e81db707ef5",
"type": "text"
}
]
},
"url": {
"raw": "http://localhost:3000/patient-file-upload",
"protocol": "http",
"host": [
"localhost"
],
"port": "3000",
"path": [
"patient-file-upload"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "X-Powered-By",
"value": "Express"
},
{
"key": "Access-Control-Allow-Origin",
"value": "http://localhost:4200"
},
{
"key": "Vary",
"value": "Origin"
},
{
"key": "Content-Type",
"value": "application/json; charset=utf-8"
},
{
"key": "Content-Length",
"value": "107"
},
{
"key": "ETag",
"value": "W/\"6b-hVWnr/0cloSwNEbdJOe//RqAJu8\""
},
{
"key": "Date",
"value": "Sun, 31 Oct 2021 04:18:24 GMT"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Keep-Alive",
"value": "timeout=5"
}
],
"cookie": [],
"body": "{\n \"status\": \"Success\",\n \"Location\": \"https://creslin-patient-meeting.s3.ap-south-1.amazonaws.com/tsconfig.json\"\n}"