-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheGaza-insomnia.json
More file actions
3603 lines (3599 loc) · 129 KB
/
eGaza-insomnia.json
File metadata and controls
3603 lines (3599 loc) · 129 KB
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
type: collection.insomnia.rest/5.0
name: Graduation Project / E_Gaza
meta:
id: wrk_c7519099b915426f86c2efd8880be4ff
created: 1746107119284
modified: 1746107119284
description: ""
collection:
- name: Sprint1/Authentication
meta:
id: fld_4dfc22e122cd45a3ad2fc4f37cfa97b4
created: 1746107154307
modified: 1747070088179
sortKey: -1746107154307
description: ""
children:
- url: http://localhost:8000/api/register
name: register
meta:
id: req_860b4fd2d9994d7e859f5ccbc3abffde
created: 1746107160067
modified: 1751269354028
isPrivate: false
description: ""
sortKey: -1746107160067
method: POST
body:
mimeType: application/json
text: |+
{
"type": "government-employee",
"email": "emploe4e@example.com",
"password": "password123",
"password_confirmation": "password123",
"full_name": " ahmad khalil",
"national_id": "133445956677",
"username": "ahmed",
"phone": "059998776",
"employee_id": "EMP-2025-08",
"government_id": "GOV123456",
"governorate": "Gaza",
"city": "Rafah",
"street": "Al-Quds Street",
"nearest_landmark": "Rafah School"
}
headers:
- name: Content-Type
value: application/json
id: pair_20bfda5de978466c816b66dc5acf44e2
- name: User-Agent
value: insomnia/10.3.0
id: pair_3c3694dfd86d48d0b4434432e8179348
- id: pair_d321c36d782743de93e9a1aca7862b4d
name: Accept
value: application/json
description: ""
disabled: false
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: http://localhost:8000/api/verify
name: verify
meta:
id: req_b2063df74456411087e08662f42cd4a7
created: 1746109861221
modified: 1749222882482
isPrivate: false
description: ""
sortKey: -1746109861221
method: POST
body:
mimeType: application/json
text: |
{
"type": "government-employee",
"national_id": "133445956677",
"code": "25422"
}
headers:
- name: Content-Type
value: application/json
id: pair_04fe651a08f1478bacfcbfdf80cc519b
- name: User-Agent
value: insomnia/10.3.0
id: pair_35acdb5fdbe6444a99d9edcdd1f17e78
- id: pair_2bf4f85b18ab48bfb453d68f84f9583d
name: Accept
value: application/json
description: ""
disabled: false
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: http://localhost:8000/api/login
name: login
meta:
id: req_8eb2680505c543898364533dca4b2b02
created: 1746218026502
modified: 1748192831566
isPrivate: false
description: ""
sortKey: -1746218026502
method: POST
body:
mimeType: application/json
text: |-
{
"type": "citizen",
"national_id": "523456789",
"password": "password123"
}
headers:
- name: Content-Type
value: application/json
id: pair_e9969c97dea14276a61c22113edfac94
- name: User-Agent
value: insomnia/10.3.0
id: pair_02a93c618837442bb73eb4ab984c5c27
- id: pair_236c8ca387aa4c25921f1fcc40ee1d7b
name: Accept
value: application/json
description: ""
disabled: false
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: http://localhost:8000/api/forget-password
name: forget password
meta:
id: req_54233b21d2484ef48fbcad7c20c7347c
created: 1746269777282
modified: 1746891547004
isPrivate: false
description: ""
sortKey: -1746269777282
method: POST
body:
mimeType: application/json
text: |
{
"national_id": "123456789",
"type": "citizen",
"email":"citizen1@example.com"
}
headers:
- name: Content-Type
value: application/json
- name: User-Agent
value: insomnia/10.3.0
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: http://localhost:8000/api/reset-password
name: reset password
meta:
id: req_f58314cd2f74449ca00b8659c293c737
created: 1746298124250
modified: 1746891549096
isPrivate: false
description: ""
sortKey: -1746298124250
method: POST
body:
mimeType: application/json
text: >
{
"email": "citizen1@example.com",
"type": "citizen",
"token": "CsmSYJkUQaUtaumKV876IECwFqyXNYmpwvvOm0zAPhjIEdCLoZC0daMoWrhmp9GN",
"new_password": "newpassword",
"new_password_confirmation": "newpassword"
}
headers:
- name: Content-Type
value: application/json
id: pair_90fd86b4bf094bf8a296859220f394ac
- name: User-Agent
value: insomnia/10.3.0
id: pair_c924789c7b504ba1833f202ac218892a
- id: pair_35baf28703fd4e72ac2775b26f2728e8
name: Accept
value: application/json
description: ""
disabled: false
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: http://localhost:8000/api/change-password
name: change password
meta:
id: req_f23469765d09436bbc5b0f3632a2b6f9
created: 1746298670640
modified: 1746909957093
isPrivate: false
description: ""
sortKey: -1746298670640
method: POST
body:
mimeType: application/json
text: |
{
"password": "newpassword",
"new_password": "123password123",
"new_password_confirmation": "123password123"
}
headers:
- name: Content-Type
value: application/json
id: pair_9040c4f882464add859815892ebbcb9b
- name: User-Agent
value: insomnia/10.3.0
id: pair_ac7c57b28c9e45cd97ca84e8417d3975
- id: pair_073fc5db9823436a9a7220cebd5d53de
name: Authorization
value: Bearer
3|USpair_073fc5db9823436a9a7220cebd5d53deHT9q4NwRb27Oh98uC3m87cpPVDmBtmbs7uvNtU99f7d248
description: ""
disabled: false
- id: pair_49454c68ef554a73879fe46f42e90cd3
name: Accept
value: application/json
description: ""
disabled: false
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- name: sprint2/citizen &institute engegment
meta:
id: fld_5a728803b8d94fa78a6417ed456fe71d
created: 1746909709185
modified: 1749490625773
sortKey: -1746909709185
description: ""
children:
- name: Friendship
meta:
id: fld_42c440dcd87a42dfafff3a9b0d624353
created: 1746805990720
modified: 1746909722526
sortKey: -1746909713633
description: ""
children:
- url: http://localhost:8000/api/friend-request/send
name: send Friend Request
meta:
id: req_edfe18b0ad724eb6a0384c43b143c7a7
created: 1746218020795
modified: 1749465547369
isPrivate: false
description: ""
sortKey: -1746808045120
method: POST
body:
mimeType: application/json
text: |-
{
"receiver_id": 6
}
headers:
- name: Content-Type
value: application/json
id: pair_91d1b345b50941f99922c9c1fee74446
- name: User-Agent
value: insomnia/10.3.0
id: pair_5770d532317a40eea30c2aba5f2a2734
- id: pair_47762382a2f14cb48945fb0e66613b92
name: Accept
value: " application/json"
description: ""
disabled: false
- id: pair_a579af31cf3f43818633fdb46d04141d
name: Authorization
value: Bearer 6|JBQRlvFf8QorjbuwPtj7TBGGWdUHj7wiprLbOUDL23394886
description: ""
disabled: false
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: http://localhost:8000/api/friend-request/respond/2
name: respond friend request
meta:
id: req_ddc66abc9b2f48ca8d712a1bfe829b99
created: 1746808045020
modified: 1749465515799
isPrivate: false
description: ""
sortKey: -1746808045020
method: POST
body:
mimeType: application/json
text: |-
{
"status": "accepted"
}
headers:
- name: Content-Type
value: application/json
id: pair_6eb757d64ed54d49815a799fe6555cfb
- name: User-Agent
value: insomnia/10.3.0
id: pair_051fe6f20b2b49389226a22b64a367f4
- id: pair_afa0b1739b49404aa1c1c82499efb981
name: Accept
value: application/json
description: ""
disabled: false
- id: pair_6b916c032eae40e195572b425eecb5d3
name: Authorization
value: Bearer 5|6FnmwHw5YLQABOWRDLVx143OaoOMFLVEthxlF6Bdac88b889
description: ""
disabled: false
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: http://localhost:8000/api/friends
name: list friends
meta:
id: req_e228da280f3949ecb637aa33e5f85ac6
created: 1746817201859
modified: 1749465659055
isPrivate: false
description: ""
sortKey: -1746817201859
method: GET
headers:
- name: User-Agent
value: insomnia/10.3.0
id: pair_925948387e8d48298452d942c3b94747
- id: pair_4c69fbfc870d49edb7e664693f81f0e7
name: Accept
value: " application/json"
description: ""
disabled: false
- id: pair_1472be67aa764568a2f3c162ef788918
name: Content-Type
value: " application/json"
description: ""
disabled: false
- id: pair_d50f6d73e04940dc9bf8a50e8967e052
name: Authorization
value: Bearer 6|JBQRlvFf8QorjbuwPtj7TBGGWdUHj7wiprLbOUDL23394886
description: ""
disabled: false
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: http://localhost:8000/api/friends/unfriend/11
name: unfriend
meta:
id: req_1d75ae13604c489db7e254e2921937eb
created: 1746817253895
modified: 1747308283873
isPrivate: false
description: ""
sortKey: -1746817253895
method: DELETE
headers:
- name: User-Agent
value: insomnia/10.3.0
id: pair_4fcb78d40f384a9fad889c3dd6fc49a7
- id: pair_7d5abd88bb11491b8e828ae2995167e3
name: Accept
value: " application/json"
description: ""
disabled: false
- id: pair_fa483ad4a2fa4e488fbae2507f8e61bf
name: Content-Type
value: " application/json"
description: ""
disabled: false
- id: pair_01115ad885ca40e89684d6ea0a7ffe46
name: Authorization
value: Bearer 9|PMXTNG5ZiyfQoCcRUXrgw0hH99fI4YZOCGijuAE7798947b1
description: ""
disabled: false
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: http://localhost:8000/api/citizen/friends/count
name: friend count
meta:
id: req_ab32eaa306184f289aa9e748675b7999
created: 1746980984751
modified: 1747499720675
isPrivate: false
description: ""
sortKey: -1746980984751
method: GET
headers:
- name: User-Agent
value: insomnia/10.3.0
id: pair_17ebddf2843d48c8951604ec388326c9
- id: pair_a29cf49468694b1baf24a695e7731db5
name: Accept
value: " application/json"
description: ""
disabled: false
- id: pair_805b4ab21d9445bfb87b6e1c4ec9a9bb
name: Content-Type
value: " application/json"
description: ""
disabled: false
- id: pair_6b4c50312d9b4264b150935ac1edba8c
name: Authorization
value: Bearer 13|dVLqrrcHCGZNnY8FLlGQ6AmsogzT8SJZ6P6JrR9wcd5ab426
description: ""
disabled: false
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: http://localhost:8000/api/friends/search?search=ahmed
name: "search from citizen friends by citizen "
meta:
id: req_18ccfb57a5b3489aaf4a90b4af4dcf2b
created: 1749464093546
modified: 1749487088588
isPrivate: false
description: ""
sortKey: -1746980984851
method: GET
headers:
- name: User-Agent
value: insomnia/10.3.0
id: pair_df186aa6def1415ba7adf0f0be064a15
- id: pair_ba3d140ab0e54e7394f94bd101020dda
name: Accept
value: " application/json"
description: ""
disabled: false
- id: pair_459971584a3c479db23f4e14c61c235b
name: Authorization
value: Bearer 6|JBQRlvFf8QorjbuwPtj7TBGGWdUHj7wiprLbOUDL23394886
description: ""
disabled: false
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- name: Notification
meta:
id: fld_f928a5dc8f2c430ca302ca983a9469ef
created: 1746806015276
modified: 1747895197791
sortKey: -1746909713533
description: ""
children:
- url: http://localhost:8000/api/citizen/notifications
name: "citizen notification "
meta:
id: req_2ed345db22cf47719de6bc704d1dd31b
created: 1746806034532
modified: 1749400570954
isPrivate: false
description: ""
sortKey: -1746806034532
method: GET
headers:
- name: User-Agent
value: insomnia/10.3.0
id: pair_f62a67f6d7d34970946c98b6bdec3ac5
- id: pair_353b550509434a8b9600b4bcb16dd941
name: Accept
value: " application/json"
description: ""
disabled: false
- id: pair_67fdf7b3c1d1481c9e2393a6e11d9ab4
name: Content-Type
value: " application/json"
description: ""
disabled: false
- id: pair_714b96f4aa0c4acd9382465ce7f4a96a
name: Authorization
value: " Bearer 6|JBQRlvFf8QorjbuwPtj7TBGGWdUHj7wiprLbOUDL23394886"
description: ""
disabled: false
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: http://localhost:8000/api/institute/notifications
name: institution notification
meta:
id: req_216753afe2eb4eca9060adcdc94baa22
created: 1747067627887
modified: 1749225748155
isPrivate: false
description: ""
sortKey: -1747152682178
method: GET
headers:
- name: User-Agent
value: insomnia/10.3.0
id: pair_bfaf088f01e046c28e18fa4315a734a6
- id: pair_58ee0e05cd664067be188895200bfb3e
name: Content-Type
value: " application/json"
description: ""
disabled: false
- id: pair_7af0a30d650f4de4b11734528a747862
name: Accept
value: " application/json"
description: ""
disabled: false
- id: pair_9b0e2af34de84fc891e6849a44b12864
name: Authorization
value: " Bearer 1|HlEmdu6EYGiyV3bnl5N7cWvZOwMiGHcUnXSw4Z1Wc9d318df"
description: ""
disabled: false
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: http://localhost:8000/api/notifications/6613f396-6d3f-43a6-9dc2-cba9151d7bf9/mark-read
name: mark read
meta:
id: req_6f6bd048cbf94a849257d897f4af40fa
created: 1747152665907
modified: 1749225774366
isPrivate: false
description: ""
sortKey: -1747152665907
method: POST
headers:
- name: User-Agent
value: insomnia/10.3.0
id: pair_8e3fb8583c2e4442a60fb28a3aefa5a2
- id: pair_3b66436b84274970b166b346c6128c74
name: Content-Type
value: " application/json"
description: ""
disabled: false
- id: pair_dc890334bc5244169ec4d31eea51cc20
name: Accept
value: " application/json"
description: ""
disabled: false
- id: pair_b50e8fe9da0048008df826ec5152f78a
name: Authorization
value: Bearer 17|3Ps7K1l4B63VGwhhfAB5W8QgGOqpFebz7EsUEoWId3597750
description: ""
disabled: false
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: http://localhost:8000/api/employee/notifications
name: "employee notification "
meta:
id: req_d898bd54813943a0a522f8c9e1767581
created: 1747500856292
modified: 1749312169629
isPrivate: false
description: ""
sortKey: -1747152682078
method: GET
headers:
- name: User-Agent
value: insomnia/11.1.0
id: pair_517b63d0883e4bd7b621440cfe27a1ff
- id: pair_3d63d4208ebf4eaf9945ab93542a6c82
name: Accept
value: " application/json"
description: ""
disabled: false
- id: pair_228ff594b30c4c78a6720249bdb4543c
name: Content-Type
value: " application/json"
description: ""
disabled: false
- id: pair_cacc9597ddb34b0e90507e12ce9f3be4
name: Authorization
value: " Bearer 4|rtKSsvJm4yIDep5QpCG1qkSIzscejHshdG6SRc32620fabd2"
description: ""
disabled: false
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: http://localhost:8000/api/notifications/unread-count
name: Count unread notifications
meta:
id: req_dc697880a54c4c3bbb488e185833acfa
created: 1749295001648
modified: 1749295265261
isPrivate: false
description: ""
sortKey: -1747066825329
method: GET
headers:
- name: User-Agent
value: insomnia/10.3.0
id: pair_8e3fb8583c2e4442a60fb28a3aefa5a2
- id: pair_3b66436b84274970b166b346c6128c74
name: Content-Type
value: " application/json"
description: ""
disabled: false
- id: pair_dc890334bc5244169ec4d31eea51cc20
name: Accept
value: " application/json"
description: ""
disabled: false
- id: pair_b50e8fe9da0048008df826ec5152f78a
name: Authorization
value: Bearer 6|JBQRlvFf8QorjbuwPtj7TBGGWdUHj7wiprLbOUDL23394886
description: ""
disabled: false
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- name: Follow features
meta:
id: fld_e0943c1458794b448a5df348f3331f87
created: 1746909687273
modified: 1749490525232
sortKey: -1746909713433
description: ""
children:
- url: http://localhost:8000/api/follow
name: follow
meta:
id: req_3411ac867e8d47928081c1e35c321849
created: 1746909755701
modified: 1749488581393
isPrivate: false
description: ""
sortKey: -1746909755701
method: POST
body:
mimeType: application/json
text: |-
{
"government_institute_id": 10
}
headers:
- name: Content-Type
value: application/json
id: pair_9b8422a27de14bccb2fc19e632dd67ee
- name: User-Agent
value: insomnia/10.3.0
id: pair_5f7eb939aec749babefb045405e47646
- id: pair_737c7a09cc094adeb8fed9d50621cf91
name: Accept
value: application/json
description: ""
disabled: false
- id: pair_65d9f6ee8c944bd1ba344f4d9d673fcd
name: Authorization
value: " Bearer 6|JBQRlvFf8QorjbuwPtj7TBGGWdUHj7wiprLbOUDL23394886"
description: ""
disabled: false
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: http://localhost:8000/api/unfollow
name: unfollow
meta:
id: req_c96eaab8177141e9b9483d2fbf41c038
created: 1746909760576
modified: 1747070058324
isPrivate: false
description: ""
sortKey: -1746909760576
method: POST
body:
mimeType: application/json
text: |-
{
"government_institute_id": 13
}
headers:
- name: Content-Type
value: application/json
- name: User-Agent
value: insomnia/10.3.0
id: pair_aae3c2aefe6048a39c7246ff8dee259b
- id: pair_149c8efba7334825a9a06ef44a63519a
name: Accept
value: application/json
description: ""
disabled: false
- id: pair_08ae324ed55842c9b6a9163d18eccccd
name: Authorization
value: Bearer 9|PMXTNG5ZiyfQoCcRUXrgw0hH99fI4YZOCGijuAE7798947b1
description: ""
disabled: false
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: http://localhost:8000/api/my-follows
name: list followed
meta:
id: req_cd705ac686714fd78fb17b55084b1a59
created: 1746909801027
modified: 1749570190161
isPrivate: false
description: ""
sortKey: -1746909801027
method: GET
headers:
- name: User-Agent
value: insomnia/10.3.0
id: pair_295d4d34a68d4db48e90bbc33894a765
- id: pair_7638dfd1bf0d4660b0055b10e52cc227
name: Content-Type
value: application/json
description: ""
disabled: false
- id: pair_e42322323c374de7b27be8b9b4ea14fd
name: Accept
value: application/json
description: ""
disabled: false
- id: pair_5827b57407a447ce8e0fa262a36e3cbd
name: Authorization
value: Bearer 6|JBQRlvFf8QorjbuwPtj7TBGGWdUHj7wiprLbOUDL23394886
description: ""
disabled: false
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: http://localhost:8000/api/citizen/my-follows?q=gaza
name: search at list followed
meta:
id: req_96fb6b21b93240baa2205d3fcddf6f61
created: 1749487529488
modified: 1749570899444
isPrivate: false
description: ""
sortKey: -1746909780801.5
method: GET
headers:
- name: User-Agent
value: insomnia/10.3.0
id: pair_295d4d34a68d4db48e90bbc33894a765
- id: pair_7638dfd1bf0d4660b0055b10e52cc227
name: Content-Type
value: application/json
description: ""
disabled: false
- id: pair_e42322323c374de7b27be8b9b4ea14fd
name: Accept
value: application/json
description: ""
disabled: false
- id: pair_5827b57407a447ce8e0fa262a36e3cbd
name: Authorization
value: " Bearer 5|6FnmwHw5YLQABOWRDLVx143OaoOMFLVEthxlF6Bdac88b889"
description: ""
disabled: false
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: http://localhost:8000/api/institute/followers?q=Khatib
name: list followers and search by institute
meta:
id: req_b5175cf602bc407dbd2f4d0d0349b60a
created: 1749570365075
modified: 1749570930833
isPrivate: false
description: ""
sortKey: -1746909790914.25
method: GET
headers:
- name: User-Agent
value: insomnia/10.3.0
id: pair_295d4d34a68d4db48e90bbc33894a765
- id: pair_7638dfd1bf0d4660b0055b10e52cc227
name: Content-Type
value: application/json
description: ""
disabled: false
- id: pair_e42322323c374de7b27be8b9b4ea14fd
name: Accept
value: application/json
description: ""
disabled: false
- id: pair_5827b57407a447ce8e0fa262a36e3cbd
name: Authorization
value: Bearer 1|HlEmdu6EYGiyV3bnl5N7cWvZOwMiGHcUnXSw4Z1Wc9d318df
description: ""
disabled: false
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- url: http://localhost:8000/api/institute/employees
name: list employee and search by institute
meta:
id: req_3924ab96eb9d4481a3e6853375f3af87
created: 1749571222425
modified: 1749572066036
isPrivate: false
description: ""
sortKey: -1746909785857.875
method: GET
headers:
- name: User-Agent
value: insomnia/10.3.0
id: pair_295d4d34a68d4db48e90bbc33894a765
- id: pair_7638dfd1bf0d4660b0055b10e52cc227
name: Content-Type
value: application/json
description: ""
disabled: false
- id: pair_e42322323c374de7b27be8b9b4ea14fd
name: Accept
value: application/json
description: ""
disabled: false
- id: pair_5827b57407a447ce8e0fa262a36e3cbd
name: Authorization
value: Bearer 1|HlEmdu6EYGiyV3bnl5N7cWvZOwMiGHcUnXSw4Z1Wc9d318df
description: ""
disabled: false
settings:
renderRequestBody: true
encodeUrl: true
followRedirects: global
cookies:
send: true
store: true
rebuildPath: true
- name: Citizen Profile
meta:
id: fld_e3944f8199fa46efbc9124f1476ff832
created: 1747308192207
modified: 1749490551636
sortKey: -1747308192207
description: ""
children:
- url: http://localhost:8000/api/citizen/profile
name: "edit profile information "
meta:
id: req_62f8b3c976f04277815e044b79bafb33
created: 1747308196625
modified: 1749490841355
isPrivate: false
description: ""
sortKey: -1747308196625
method: POST
body:
mimeType: multipart/form-data
params:
- id: pair_ac8be164f6744c19ab8c24aa54275bce
name: full_name
value: "\tmina"
description: ""
disabled: false
- id: pair_0bcfc5d0fe9246e89410fba81d272af5
name: phone
value: "\t059123555433"
description: ""
disabled: false
- id: pair_d10f05d24fd14fb8a3cd4eaba2a38897
name: email
value: "\tina@example.com"
description: ""
disabled: false
- id: pair_a8c3a2be52d0460f865d79480a738c57
name: governorate
value: NorthGaza
description: ""
disabled: false
- id: pair_8c432f1c70ed4c80a30e4b73785612a1
name: city
value: jabalia
description: ""
disabled: false
- id: pair_72b67c13586a4325ae2ccff50dd1791d
name: street
value: Altranse
description: ""
disabled: false
- id: pair_d230a4993e0942f2a4292da01443e8ab
name: nearest_landmark
value: Market
description: ""
disabled: false
- id: pair_eac4c98a74b84bbfae7dd967a165fa08
name: profile_picture
value: ""
description: ""
disabled: false
type: file
fileName: C:\Users\alamiah\Downloads\ChatGPT Image 2 مايو 2025، 07_20_05 م.png
headers:
- name: Content-Type
value: multipart/form-data
- name: User-Agent
value: insomnia/10.3.0
id: pair_df186aa6def1415ba7adf0f0be064a15