-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTrello-API.postman_collection.json
More file actions
2736 lines (2736 loc) · 184 KB
/
Copy pathTrello-API.postman_collection.json
File metadata and controls
2736 lines (2736 loc) · 184 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
{
"info": {
"_postman_id": "0d6141fd-4c0e-4d2d-82ff-95916dfe55a9",
"name": "Trello - API",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "23221818"
},
"item": [
{
"name": "Create a board",
"event": [
{
"listen": "test",
"script": {
"exec": [
"const responseData = pm.response.json();\r",
"\r",
"pm.test('Check length of ID', () => {\r",
" pm.expect(responseData.id).to.have.lengthOf(24)\r",
"})\r",
"\r",
"pm.collectionVariables.set('board_Id', responseData.id);"
],
"type": "text/javascript"
}
},
{
"listen": "prerequest",
"script": {
"exec": [
"const randomBoardName = pm.variables.replaceIn('{{$randomFirstName}}') + \"'s Board\"\r",
"pm.collectionVariables.set('boardName', randomBoardName)"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "noauth"
},
"method": "POST",
"header": [
{
"key": "key",
"value": "a78ee836c4a2876c8b5d637fb3a47754",
"type": "text",
"disabled": true
},
{
"key": "token",
"value": "6ac88079bf74d3017e1db38cd22efd1242b74cb7ada1f67870aaeb2581b2331c",
"type": "text",
"disabled": true
}
],
"url": {
"raw": "{{baseUrl}}/1/boards?key={{key}}&token={{token}}&name={{boardName}}&prefs_background=pink&defaultLists=false",
"host": [
"{{baseUrl}}"
],
"path": [
"1",
"boards"
],
"query": [
{
"key": "key",
"value": "{{key}}"
},
{
"key": "token",
"value": "{{token}}"
},
{
"key": "name",
"value": "{{boardName}}"
},
{
"key": "prefs_background",
"value": "pink"
},
{
"key": "defaultLists",
"value": "false"
}
]
}
},
"response": []
},
{
"name": "Get a board",
"event": [
{
"listen": "test",
"script": {
"exec": [
"const responseData = pm.response.json();\r",
"\r",
"pm.test('Check name', () => {\r",
" pm.expect(responseData.name).to.eql(pm.collectionVariables.get('boardName'))\r",
" pm.expect(responseData.name).to.be.a('string')\r",
"})"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{baseUrl}}/1/boards/:id?token={{token}}&key={{key}}",
"host": [
"{{baseUrl}}"
],
"path": [
"1",
"boards",
":id"
],
"query": [
{
"key": "token",
"value": "{{token}}"
},
{
"key": "key",
"value": "{{key}}"
}
],
"variable": [
{
"key": "id",
"value": "{{board_Id}}"
}
]
}
},
"response": []
},
{
"name": "Get all boards",
"event": [
{
"listen": "test",
"script": {
"exec": [
"const responseData = pm.response.json();\r",
"\r",
"pm.test('Check names of boards -> string', () => {\r",
" responseData.map(item => {\r",
" pm.expect(item.name).to.be.a('string')\r",
" });\r",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "noauth"
},
"method": "GET",
"header": [
{
"key": "key",
"value": "a78ee836c4a2876c8b5d637fb3a47754",
"type": "text",
"disabled": true
},
{
"key": "token",
"value": "6ac88079bf74d3017e1db38cd22efd1242b74cb7ada1f67870aaeb2581b2331c",
"type": "text",
"disabled": true
}
],
"url": {
"raw": "{{baseUrl}}/1/members/me/boards?key={{key}}&token={{token}}",
"host": [
"{{baseUrl}}"
],
"path": [
"1",
"members",
"me",
"boards"
],
"query": [
{
"key": "key",
"value": "{{key}}"
},
{
"key": "token",
"value": "{{token}}"
}
]
}
},
"response": [
{
"name": "Get all boards",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "key",
"value": "a78ee836c4a2876c8b5d637fb3a47754",
"type": "text",
"disabled": true
},
{
"key": "token",
"value": "6ac88079bf74d3017e1db38cd22efd1242b74cb7ada1f67870aaeb2581b2331c",
"type": "text",
"disabled": true
}
],
"url": {
"raw": "https://api.trello.com/1/members/me/boards?key={{key}}&token={{token}}",
"protocol": "https",
"host": [
"api",
"trello",
"com"
],
"path": [
"1",
"members",
"me",
"boards"
],
"query": [
{
"key": "key",
"value": "{{key}}"
},
{
"key": "token",
"value": "{{token}}"
},
{
"key": "name",
"value": "New Board",
"disabled": true
},
{
"key": "prefs_background",
"value": "pink",
"disabled": true
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Date",
"value": "Mon, 24 Oct 2022 12:32:24 GMT"
},
{
"key": "Content-Type",
"value": "application/json; charset=utf-8"
},
{
"key": "X-Dns-Prefetch-Control",
"value": "off"
},
{
"key": "X-Frame-Options",
"value": "DENY"
},
{
"key": "X-Download-Options",
"value": "noopen"
},
{
"key": "X-Permitted-Cross-Domain-Policies",
"value": "none"
},
{
"key": "Referrer-Policy",
"value": "strict-origin-when-cross-origin"
},
{
"key": "Surrogate-Control",
"value": "no-store"
},
{
"key": "Cache-Control",
"value": "max-age=0, must-revalidate, no-cache, no-store"
},
{
"key": "Pragma",
"value": "no-cache"
},
{
"key": "Expires",
"value": "Thu, 01 Jan 1970 00:00:00"
},
{
"key": "X-Trello-Version",
"value": "1.165256.0"
},
{
"key": "X-Trello-Environment",
"value": "Production (Micros)"
},
{
"key": "Access-Control-Allow-Origin",
"value": "*"
},
{
"key": "Access-Control-Allow-Methods",
"value": "GET, PUT, POST, DELETE"
},
{
"key": "Access-Control-Allow-Headers",
"value": "Authorization, Accept, Content-Type"
},
{
"key": "Access-Control-Expose-Headers",
"value": "x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining, x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining"
},
{
"key": "X-Rate-Limit-Api-Token-Interval-Ms",
"value": "10000"
},
{
"key": "X-Rate-Limit-Api-Token-Max",
"value": "100"
},
{
"key": "X-Rate-Limit-Api-Token-Remaining",
"value": "99"
},
{
"key": "X-Rate-Limit-Db-Query-Time-Interval-Ms",
"value": "600000"
},
{
"key": "X-Rate-Limit-Db-Query-Time-Max",
"value": "7200000"
},
{
"key": "X-Rate-Limit-Db-Query-Time-Remaining",
"value": "7199990"
},
{
"key": "X-Rate-Limit-Api-Key-Interval-Ms",
"value": "10000"
},
{
"key": "X-Rate-Limit-Api-Key-Max",
"value": "300"
},
{
"key": "X-Rate-Limit-Api-Key-Remaining",
"value": "299"
},
{
"key": "X-Rate-Limit-Member-Interval-Ms",
"value": "10000"
},
{
"key": "X-Rate-Limit-Member-Max",
"value": "375"
},
{
"key": "X-Rate-Limit-Member-Remaining",
"value": "374"
},
{
"key": "Set-Cookie",
"value": "preAuthProps=s%3A5fcbd3ddd4c9ae1ce35e5ac3%3AisEnterpriseAdmin%3Dfalse.5g2LChLwMY9cORjA0YdH719a2Kq8Px6n2pYJ8YVr3W8; Path=/; HttpOnly"
},
{
"key": "X-Server-Time",
"value": "1666614744905"
},
{
"key": "X-Trello-Actual-Fastget-Path",
"value": "fast"
},
{
"key": "X-Envoy-Upstream-Service-Time",
"value": "188"
},
{
"key": "Server",
"value": "globaledge-envoy"
},
{
"key": "Expect-Ct",
"value": "report-uri=\"https://web-security-reports.services.atlassian.com/expect-ct-report/trello-edge\", max-age=86400"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=63072000; preload"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "Atl-Traceid",
"value": "230b42135e47c375"
},
{
"key": "Report-To",
"value": "{\"endpoints\": [{\"url\": \"https://dz8aopenkvv6s.cloudfront.net\"}], \"group\": \"endpoint-1\", \"include_subdomains\": true, \"max_age\": 600}"
},
{
"key": "Nel",
"value": "{\"failure_fraction\": 0.001, \"include_subdomains\": true, \"max_age\": 600, \"report_to\": \"endpoint-1\"}"
},
{
"key": "Vary",
"value": "Accept-Encoding"
},
{
"key": "Content-Encoding",
"value": "gzip"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
}
],
"cookie": [],
"body": "[\n {\n \"id\": \"62cbc0047a461a7654abffb0\",\n \"name\": \"Aktualne\",\n \"desc\": \"\",\n \"descData\": null,\n \"closed\": false,\n \"dateClosed\": null,\n \"idOrganization\": \"5fcbd3efd8d9a658ff6d44d3\",\n \"idEnterprise\": null,\n \"limits\": {\n \"attachments\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 36000,\n \"warnAt\": 28800\n },\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 1000,\n \"warnAt\": 800\n }\n },\n \"boards\": {\n \"totalMembersPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1600,\n \"warnAt\": 1280\n },\n \"totalAccessRequestsPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 4000,\n \"warnAt\": 3200\n }\n },\n \"cards\": {\n \"openPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 5000,\n \"warnAt\": 4000\n },\n \"openPerList\": {\n \"status\": \"ok\",\n \"disableAt\": 5000,\n \"warnAt\": 4000\n },\n \"totalPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 2000000,\n \"warnAt\": 1600000\n },\n \"totalPerList\": {\n \"status\": \"ok\",\n \"disableAt\": 1000000,\n \"warnAt\": 800000\n }\n },\n \"checklists\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1800000,\n \"warnAt\": 1440000\n },\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 500,\n \"warnAt\": 400\n }\n },\n \"checkItems\": {\n \"perChecklist\": {\n \"status\": \"ok\",\n \"disableAt\": 200,\n \"warnAt\": 160\n }\n },\n \"customFields\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 50,\n \"warnAt\": 40\n }\n },\n \"customFieldOptions\": {\n \"perField\": {\n \"status\": \"ok\",\n \"disableAt\": 50,\n \"warnAt\": 40\n }\n },\n \"labels\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1000,\n \"warnAt\": 800\n }\n },\n \"lists\": {\n \"openPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 500,\n \"warnAt\": 400\n },\n \"totalPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 3000,\n \"warnAt\": 2400\n }\n },\n \"stickers\": {\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 70,\n \"warnAt\": 56\n }\n },\n \"reactions\": {\n \"perAction\": {\n \"status\": \"ok\",\n \"disableAt\": 900,\n \"warnAt\": 720\n },\n \"uniquePerAction\": {\n \"status\": \"ok\",\n \"disableAt\": 17,\n \"warnAt\": 14\n }\n }\n },\n \"pinned\": false,\n \"starred\": false,\n \"url\": \"https://trello.com/b/QLNWtlgB/aktualne\",\n \"prefs\": {\n \"permissionLevel\": \"org\",\n \"hideVotes\": false,\n \"voting\": \"disabled\",\n \"comments\": \"members\",\n \"invitations\": \"members\",\n \"selfJoin\": true,\n \"cardCovers\": true,\n \"isTemplate\": false,\n \"cardAging\": \"regular\",\n \"calendarFeedEnabled\": false,\n \"hiddenPluginBoardButtons\": [],\n \"switcherViews\": [\n {\n \"_id\": \"62cbc0047a461a7654abffb1\",\n \"viewType\": \"Board\",\n \"enabled\": true\n },\n {\n \"_id\": \"62cbc0047a461a7654abffb2\",\n \"viewType\": \"Table\",\n \"enabled\": true\n },\n {\n \"_id\": \"62cbc0047a461a7654abffb3\",\n \"viewType\": \"Calendar\",\n \"enabled\": false\n },\n {\n \"_id\": \"62cbc0047a461a7654abffb4\",\n \"viewType\": \"Dashboard\",\n \"enabled\": false\n },\n {\n \"_id\": \"62cbc0047a461a7654abffb5\",\n \"viewType\": \"Timeline\",\n \"enabled\": false\n },\n {\n \"_id\": \"62cbc0047a461a7654abffb6\",\n \"viewType\": \"Map\",\n \"enabled\": false\n }\n ],\n \"background\": \"62cba614223c8b7be93033e8\",\n \"backgroundColor\": null,\n \"backgroundImage\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/a557bd797c1b530c50c632e8f1c189e1/photo-1656464868371-602be27fd4c2\",\n \"backgroundImageScaled\": [\n {\n \"width\": 132,\n \"height\": 100,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/132x100/3b501fa73852c54aeca2c5cf6d9d748f/photo-1656464868371-602be27fd4c2.jpg\"\n },\n {\n \"width\": 253,\n \"height\": 192,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/253x192/3b501fa73852c54aeca2c5cf6d9d748f/photo-1656464868371-602be27fd4c2.jpg\"\n },\n {\n \"width\": 480,\n \"height\": 365,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x365/3b501fa73852c54aeca2c5cf6d9d748f/photo-1656464868371-602be27fd4c2.jpg\"\n },\n {\n \"width\": 960,\n \"height\": 729,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x729/3b501fa73852c54aeca2c5cf6d9d748f/photo-1656464868371-602be27fd4c2.jpg\"\n },\n {\n \"width\": 1024,\n \"height\": 778,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x778/3b501fa73852c54aeca2c5cf6d9d748f/photo-1656464868371-602be27fd4c2.jpg\"\n },\n {\n \"width\": 1280,\n \"height\": 973,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x973/3b501fa73852c54aeca2c5cf6d9d748f/photo-1656464868371-602be27fd4c2.jpg\"\n },\n {\n \"width\": 1920,\n \"height\": 1459,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1459/3b501fa73852c54aeca2c5cf6d9d748f/photo-1656464868371-602be27fd4c2.jpg\"\n },\n {\n \"width\": 2048,\n \"height\": 1556,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1556/3b501fa73852c54aeca2c5cf6d9d748f/photo-1656464868371-602be27fd4c2.jpg\"\n },\n {\n \"width\": 2106,\n \"height\": 1600,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2106x1600/3b501fa73852c54aeca2c5cf6d9d748f/photo-1656464868371-602be27fd4c2.jpg\"\n },\n {\n \"width\": 2560,\n \"height\": 1945,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/a557bd797c1b530c50c632e8f1c189e1/photo-1656464868371-602be27fd4c2\"\n }\n ],\n \"backgroundTile\": false,\n \"backgroundBrightness\": \"dark\",\n \"backgroundBottomColor\": \"#0c0c14\",\n \"backgroundTopColor\": \"#21273d\",\n \"canBePublic\": true,\n \"canBeEnterprise\": true,\n \"canBeOrg\": true,\n \"canBePrivate\": true,\n \"canInvite\": true\n },\n \"shortLink\": \"QLNWtlgB\",\n \"subscribed\": false,\n \"labelNames\": {\n \"green\": \"\",\n \"yellow\": \"Video\",\n \"orange\": \"\",\n \"red\": \"\",\n \"purple\": \"\",\n \"blue\": \"\",\n \"sky\": \"\",\n \"lime\": \"\",\n \"pink\": \"\",\n \"black\": \"\",\n \"green_dark\": \"\",\n \"yellow_dark\": \"\",\n \"orange_dark\": \"\",\n \"red_dark\": \"\",\n \"purple_dark\": \"\",\n \"blue_dark\": \"\",\n \"sky_dark\": \"\",\n \"lime_dark\": \"\",\n \"pink_dark\": \"\",\n \"black_dark\": \"\",\n \"green_light\": \"\",\n \"yellow_light\": \"\",\n \"orange_light\": \"\",\n \"red_light\": \"\",\n \"purple_light\": \"\",\n \"blue_light\": \"\",\n \"sky_light\": \"\",\n \"lime_light\": \"\",\n \"pink_light\": \"\",\n \"black_light\": \"\"\n },\n \"powerUps\": [],\n \"dateLastActivity\": \"2022-09-14T09:40:23.056Z\",\n \"dateLastView\": \"2022-10-24T10:54:10.886Z\",\n \"shortUrl\": \"https://trello.com/b/QLNWtlgB\",\n \"idTags\": [],\n \"datePluginDisable\": null,\n \"creationMethod\": null,\n \"ixUpdate\": \"560\",\n \"templateGallery\": null,\n \"enterpriseOwned\": false,\n \"idBoardSource\": null,\n \"premiumFeatures\": [\n \"additionalBoardBackgrounds\",\n \"additionalStickers\",\n \"customBoardBackgrounds\",\n \"customEmoji\",\n \"customStickers\",\n \"plugins\"\n ],\n \"idMemberCreator\": \"5fcbd3ddd4c9ae1ce35e5ac3\",\n \"memberships\": [\n {\n \"idMember\": \"5fcbd3ddd4c9ae1ce35e5ac3\",\n \"memberType\": \"admin\",\n \"unconfirmed\": false,\n \"deactivated\": false,\n \"id\": \"62cbc0047a461a7654abffb8\"\n }\n ]\n },\n {\n \"id\": \"5fcbd3f0aca1d62179081f9a\",\n \"name\": \"Bez tytułu\",\n \"desc\": \"\",\n \"descData\": null,\n \"closed\": false,\n \"dateClosed\": null,\n \"idOrganization\": \"5fcbd3efd8d9a658ff6d44d3\",\n \"idEnterprise\": null,\n \"limits\": {\n \"attachments\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 36000,\n \"warnAt\": 28800\n },\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 1000,\n \"warnAt\": 800\n }\n },\n \"boards\": {\n \"totalMembersPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1600,\n \"warnAt\": 1280\n },\n \"totalAccessRequestsPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 4000,\n \"warnAt\": 3200\n }\n },\n \"cards\": {\n \"openPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 5000,\n \"warnAt\": 4000\n },\n \"openPerList\": {\n \"status\": \"ok\",\n \"disableAt\": 5000,\n \"warnAt\": 4000\n },\n \"totalPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 2000000,\n \"warnAt\": 1600000\n },\n \"totalPerList\": {\n \"status\": \"ok\",\n \"disableAt\": 1000000,\n \"warnAt\": 800000\n }\n },\n \"checklists\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1800000,\n \"warnAt\": 1440000\n },\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 500,\n \"warnAt\": 400\n }\n },\n \"checkItems\": {\n \"perChecklist\": {\n \"status\": \"ok\",\n \"disableAt\": 200,\n \"warnAt\": 160\n }\n },\n \"customFields\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 50,\n \"warnAt\": 40\n }\n },\n \"customFieldOptions\": {\n \"perField\": {\n \"status\": \"ok\",\n \"disableAt\": 50,\n \"warnAt\": 40\n }\n },\n \"labels\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1000,\n \"warnAt\": 800\n }\n },\n \"lists\": {\n \"openPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 500,\n \"warnAt\": 400\n },\n \"totalPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 3000,\n \"warnAt\": 2400\n }\n },\n \"stickers\": {\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 70,\n \"warnAt\": 56\n }\n },\n \"reactions\": {\n \"perAction\": {\n \"status\": \"ok\",\n \"disableAt\": 900,\n \"warnAt\": 720\n },\n \"uniquePerAction\": {\n \"status\": \"ok\",\n \"disableAt\": 17,\n \"warnAt\": 14\n }\n }\n },\n \"pinned\": false,\n \"starred\": false,\n \"url\": \"https://trello.com/b/CncAloqm/bez-tytu%C5%82u\",\n \"prefs\": {\n \"permissionLevel\": \"private\",\n \"hideVotes\": false,\n \"voting\": \"disabled\",\n \"comments\": \"members\",\n \"invitations\": \"members\",\n \"selfJoin\": false,\n \"cardCovers\": true,\n \"isTemplate\": false,\n \"cardAging\": \"regular\",\n \"calendarFeedEnabled\": false,\n \"hiddenPluginBoardButtons\": [],\n \"switcherViews\": [\n {\n \"viewType\": \"Board\",\n \"enabled\": true,\n \"_id\": \"63567fec22dd340347ef3ceb\"\n },\n {\n \"viewType\": \"Table\",\n \"enabled\": true,\n \"_id\": \"63567fec22dd340347ef3cec\"\n },\n {\n \"viewType\": \"Calendar\",\n \"enabled\": false,\n \"_id\": \"63567fec22dd340347ef3ced\"\n },\n {\n \"viewType\": \"Dashboard\",\n \"enabled\": false,\n \"_id\": \"63567fec22dd340347ef3cee\"\n },\n {\n \"viewType\": \"Timeline\",\n \"enabled\": false,\n \"_id\": \"63567fec22dd340347ef3cef\"\n },\n {\n \"viewType\": \"Map\",\n \"enabled\": false,\n \"_id\": \"63567fec22dd340347ef3cf0\"\n }\n ],\n \"background\": \"626161a352ca203b72beb055\",\n \"backgroundColor\": null,\n \"backgroundImage\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/8b5e26cf41ffd1190339f561258d6925/photo-1647806052557-e799f103fddd\",\n \"backgroundImageScaled\": [\n {\n \"width\": 67,\n \"height\": 100,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/67x100/44691d5e101f2e8dd444c7c236fcc7c5/photo-1647806052557-e799f103fddd.jpg\"\n },\n {\n \"width\": 128,\n \"height\": 192,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/128x192/44691d5e101f2e8dd444c7c236fcc7c5/photo-1647806052557-e799f103fddd.jpg\"\n },\n {\n \"width\": 320,\n \"height\": 480,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/320x480/44691d5e101f2e8dd444c7c236fcc7c5/photo-1647806052557-e799f103fddd.jpg\"\n },\n {\n \"width\": 640,\n \"height\": 960,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/640x960/44691d5e101f2e8dd444c7c236fcc7c5/photo-1647806052557-e799f103fddd.jpg\"\n },\n {\n \"width\": 683,\n \"height\": 1024,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/683x1024/44691d5e101f2e8dd444c7c236fcc7c5/photo-1647806052557-e799f103fddd.jpg\"\n },\n {\n \"width\": 853,\n \"height\": 1280,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/853x1280/44691d5e101f2e8dd444c7c236fcc7c5/photo-1647806052557-e799f103fddd.jpg\"\n },\n {\n \"width\": 1066,\n \"height\": 1600,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1066x1600/44691d5e101f2e8dd444c7c236fcc7c5/photo-1647806052557-e799f103fddd.jpg\"\n },\n {\n \"width\": 1280,\n \"height\": 1920,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x1920/44691d5e101f2e8dd444c7c236fcc7c5/photo-1647806052557-e799f103fddd.jpg\"\n },\n {\n \"width\": 1365,\n \"height\": 2048,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/8b5e26cf41ffd1190339f561258d6925/photo-1647806052557-e799f103fddd\"\n }\n ],\n \"backgroundTile\": false,\n \"backgroundBrightness\": \"dark\",\n \"backgroundBottomColor\": \"#211110\",\n \"backgroundTopColor\": \"#b9a3af\",\n \"canBePublic\": true,\n \"canBeEnterprise\": true,\n \"canBeOrg\": true,\n \"canBePrivate\": true,\n \"canInvite\": true\n },\n \"shortLink\": \"CncAloqm\",\n \"subscribed\": false,\n \"labelNames\": {\n \"green\": \"\",\n \"yellow\": \"\",\n \"orange\": \"\",\n \"red\": \"\",\n \"purple\": \"\",\n \"blue\": \"\",\n \"sky\": \"\",\n \"lime\": \"\",\n \"pink\": \"\",\n \"black\": \"\",\n \"green_dark\": \"\",\n \"yellow_dark\": \"\",\n \"orange_dark\": \"\",\n \"red_dark\": \"\",\n \"purple_dark\": \"\",\n \"blue_dark\": \"\",\n \"sky_dark\": \"\",\n \"lime_dark\": \"\",\n \"pink_dark\": \"\",\n \"black_dark\": \"\",\n \"green_light\": \"\",\n \"yellow_light\": \"\",\n \"orange_light\": \"\",\n \"red_light\": \"\",\n \"purple_light\": \"\",\n \"blue_light\": \"\",\n \"sky_light\": \"\",\n \"lime_light\": \"\",\n \"pink_light\": \"\",\n \"black_light\": \"\"\n },\n \"powerUps\": [],\n \"dateLastActivity\": \"2022-07-11T06:10:38.006Z\",\n \"dateLastView\": \"2022-10-23T15:15:11.293Z\",\n \"shortUrl\": \"https://trello.com/b/CncAloqm\",\n \"idTags\": [],\n \"datePluginDisable\": null,\n \"creationMethod\": \"assisted\",\n \"ixUpdate\": \"891\",\n \"templateGallery\": null,\n \"enterpriseOwned\": false,\n \"idBoardSource\": null,\n \"premiumFeatures\": [\n \"additionalBoardBackgrounds\",\n \"additionalStickers\",\n \"customBoardBackgrounds\",\n \"customEmoji\",\n \"customStickers\",\n \"plugins\"\n ],\n \"idMemberCreator\": \"5fcbd3ddd4c9ae1ce35e5ac3\",\n \"memberships\": [\n {\n \"idMember\": \"5fcbd3ddd4c9ae1ce35e5ac3\",\n \"memberType\": \"admin\",\n \"unconfirmed\": false,\n \"deactivated\": false,\n \"id\": \"5fcbd3f0aca1d62179081f9b\"\n }\n ]\n },\n {\n \"id\": \"5ea87ba036a8ca22933cd815\",\n \"name\": \"Daily To Do\",\n \"desc\": \"Do you find it hard to keep track of what's to do, what you've done and when? This template will help!\\n\\n------------------------------------------\\n\\nThis template uses Butler automation to help with your daily task management. \\n\\nFor guidance on how to set up Butler specifically for this template, please see: [Using Butler Automation with your Trello board](https://www.mfry.uk/trello-template-help \\\"Using Butler Automation with your Trello board\\\")\\n\\nHere is how to use it:\\n\\n1. Add tasks which you want to do into the **Backlog**. This could be tasks you want to complete today/tomorrow/next month etc.\\n\\n2. Each day, drag your tasks which you want to complete from the **Backlog** into **To Do Today**.\\n\\n3. Once a task is done, move it to the **Done Today** List.\\n\\n**Simple!**\\n\\nWhere does Butler come on? Each day at 01:00 Butler will rename list **Done Today** to a new list with yesterday's date - so you can keep track of what you did when. A new **Done Today** list will be created. (_Note: You'll need to set up these Butler rules on your new board._)\\n \\n\\n\\n---\\n\\n**Extras**\\n\\nDaily tasks can be created in the **Daily Tasks** list. These are copied each day into the **To Do Today** list.\\n\\nIf a task in the **Backlog** has a due date and it's tomorrow then this task will automatically move into the **To Do Today** list. \\n\\n\",\n \"descData\": null,\n \"closed\": false,\n \"dateClosed\": null,\n \"idOrganization\": \"5fcb66e5868d6e4e98783d20\",\n \"idEnterprise\": null,\n \"limits\": {\n \"attachments\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 36000,\n \"warnAt\": 28800\n },\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 1000,\n \"warnAt\": 800\n }\n },\n \"boards\": {\n \"totalMembersPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1600,\n \"warnAt\": 1280\n },\n \"totalAccessRequestsPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 4000,\n \"warnAt\": 3200\n }\n },\n \"cards\": {\n \"openPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 5000,\n \"warnAt\": 4000\n },\n \"openPerList\": {\n \"status\": \"ok\",\n \"disableAt\": 5000,\n \"warnAt\": 4000\n },\n \"totalPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 2000000,\n \"warnAt\": 1600000\n },\n \"totalPerList\": {\n \"status\": \"ok\",\n \"disableAt\": 1000000,\n \"warnAt\": 800000\n }\n },\n \"checklists\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1800000,\n \"warnAt\": 1440000\n },\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 500,\n \"warnAt\": 400\n }\n },\n \"checkItems\": {\n \"perChecklist\": {\n \"status\": \"ok\",\n \"disableAt\": 200,\n \"warnAt\": 160\n }\n },\n \"customFields\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 50,\n \"warnAt\": 40\n }\n },\n \"customFieldOptions\": {\n \"perField\": {\n \"status\": \"ok\",\n \"disableAt\": 50,\n \"warnAt\": 40\n }\n },\n \"labels\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1000,\n \"warnAt\": 800\n }\n },\n \"lists\": {\n \"openPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 500,\n \"warnAt\": 400\n },\n \"totalPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 3000,\n \"warnAt\": 2400\n }\n },\n \"stickers\": {\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 70,\n \"warnAt\": 56\n }\n },\n \"reactions\": {\n \"perAction\": {\n \"status\": \"ok\",\n \"disableAt\": 900,\n \"warnAt\": 720\n },\n \"uniquePerAction\": {\n \"status\": \"ok\",\n \"disableAt\": 17,\n \"warnAt\": 14\n }\n }\n },\n \"pinned\": false,\n \"starred\": false,\n \"url\": \"https://trello.com/b/db0dAPe8/daily-to-do\",\n \"prefs\": {\n \"permissionLevel\": \"private\",\n \"hideVotes\": false,\n \"voting\": \"disabled\",\n \"comments\": \"disabled\",\n \"invitations\": \"admins\",\n \"selfJoin\": false,\n \"cardCovers\": true,\n \"isTemplate\": false,\n \"cardAging\": \"regular\",\n \"calendarFeedEnabled\": false,\n \"hiddenPluginBoardButtons\": [],\n \"switcherViews\": [\n {\n \"_id\": \"62a2f747f8bfd043f3f99990\",\n \"viewType\": \"Board\",\n \"enabled\": true\n },\n {\n \"_id\": \"62a2f747f8bfd043f3f99991\",\n \"viewType\": \"Table\",\n \"enabled\": true\n },\n {\n \"_id\": \"62a2f747f8bfd043f3f99992\",\n \"viewType\": \"Calendar\",\n \"enabled\": false\n },\n {\n \"_id\": \"62a2f747f8bfd043f3f99993\",\n \"viewType\": \"Dashboard\",\n \"enabled\": false\n },\n {\n \"_id\": \"62a2f747f8bfd043f3f99994\",\n \"viewType\": \"Timeline\",\n \"enabled\": false\n },\n {\n \"_id\": \"62a2f747f8bfd043f3f99995\",\n \"viewType\": \"Map\",\n \"enabled\": false\n }\n ],\n \"background\": \"613a28c918ea8584cb647149\",\n \"backgroundColor\": null,\n \"backgroundImage\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/fda0f0a6c1321df784c0d16c12ddf245/photo-1624724587078-df79f0084930\",\n \"backgroundImageScaled\": [\n {\n \"width\": 67,\n \"height\": 100,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/67x100/6a8f847c223fc9d6ec299ff2e2be0734/photo-1624724587078-df79f0084930.jpg\"\n },\n {\n \"width\": 128,\n \"height\": 192,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/128x192/6a8f847c223fc9d6ec299ff2e2be0734/photo-1624724587078-df79f0084930.jpg\"\n },\n {\n \"width\": 320,\n \"height\": 480,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/320x480/6a8f847c223fc9d6ec299ff2e2be0734/photo-1624724587078-df79f0084930.jpg\"\n },\n {\n \"width\": 640,\n \"height\": 960,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/640x960/6a8f847c223fc9d6ec299ff2e2be0734/photo-1624724587078-df79f0084930.jpg\"\n },\n {\n \"width\": 683,\n \"height\": 1024,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/683x1024/6a8f847c223fc9d6ec299ff2e2be0734/photo-1624724587078-df79f0084930.jpg\"\n },\n {\n \"width\": 854,\n \"height\": 1280,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/854x1280/6a8f847c223fc9d6ec299ff2e2be0734/photo-1624724587078-df79f0084930.jpg\"\n },\n {\n \"width\": 1067,\n \"height\": 1600,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1067x1600/6a8f847c223fc9d6ec299ff2e2be0734/photo-1624724587078-df79f0084930.jpg\"\n },\n {\n \"width\": 1281,\n \"height\": 1920,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1281x1920/6a8f847c223fc9d6ec299ff2e2be0734/photo-1624724587078-df79f0084930.jpg\"\n },\n {\n \"width\": 1366,\n \"height\": 2048,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/fda0f0a6c1321df784c0d16c12ddf245/photo-1624724587078-df79f0084930\"\n }\n ],\n \"backgroundTile\": false,\n \"backgroundBrightness\": \"dark\",\n \"backgroundBottomColor\": \"#121a22\",\n \"backgroundTopColor\": \"#0c1c24\",\n \"canBePublic\": true,\n \"canBeEnterprise\": true,\n \"canBeOrg\": true,\n \"canBePrivate\": true,\n \"canInvite\": true\n },\n \"shortLink\": \"db0dAPe8\",\n \"subscribed\": false,\n \"labelNames\": {\n \"green\": \"Could\",\n \"yellow\": \"\",\n \"orange\": \"Should\",\n \"red\": \"Must\",\n \"purple\": \"Reminder\",\n \"blue\": \"\",\n \"sky\": \"\",\n \"lime\": \"\",\n \"pink\": \"Milena\",\n \"black\": \"\",\n \"green_dark\": \"\",\n \"yellow_dark\": \"\",\n \"orange_dark\": \"\",\n \"red_dark\": \"\",\n \"purple_dark\": \"\",\n \"blue_dark\": \"\",\n \"sky_dark\": \"\",\n \"lime_dark\": \"\",\n \"pink_dark\": \"\",\n \"black_dark\": \"\",\n \"green_light\": \"\",\n \"yellow_light\": \"\",\n \"orange_light\": \"\",\n \"red_light\": \"\",\n \"purple_light\": \"\",\n \"blue_light\": \"\",\n \"sky_light\": \"\",\n \"lime_light\": \"\",\n \"pink_light\": \"\",\n \"black_light\": \"\"\n },\n \"powerUps\": [],\n \"dateLastActivity\": \"2022-08-14T07:20:23.602Z\",\n \"dateLastView\": \"2022-08-28T15:50:35.052Z\",\n \"shortUrl\": \"https://trello.com/b/db0dAPe8\",\n \"idTags\": [],\n \"datePluginDisable\": null,\n \"creationMethod\": null,\n \"ixUpdate\": \"5443\",\n \"templateGallery\": null,\n \"enterpriseOwned\": false,\n \"idBoardSource\": \"5de2721303a73434ebb2cc45\",\n \"premiumFeatures\": [\n \"additionalBoardBackgrounds\",\n \"additionalStickers\",\n \"customBoardBackgrounds\",\n \"customEmoji\",\n \"customStickers\",\n \"plugins\"\n ],\n \"idMemberCreator\": null,\n \"memberships\": [\n {\n \"idMember\": \"5e89d3aa0690a4622cb36dff\",\n \"memberType\": \"admin\",\n \"unconfirmed\": false,\n \"deactivated\": false,\n \"id\": \"5ea87ba036a8ca22933cd870\"\n },\n {\n \"idMember\": \"5fcbd3ddd4c9ae1ce35e5ac3\",\n \"memberType\": \"normal\",\n \"unconfirmed\": false,\n \"deactivated\": false,\n \"id\": \"5fcbe6e16f1aaa62f73d3838\"\n }\n ]\n },\n {\n \"id\": \"619131523dfb3766222e6f3d\",\n \"name\": \"Książki\",\n \"desc\": \"\",\n \"descData\": null,\n \"closed\": false,\n \"dateClosed\": null,\n \"idOrganization\": \"5fcbd3efd8d9a658ff6d44d3\",\n \"idEnterprise\": null,\n \"limits\": {\n \"attachments\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 36000,\n \"warnAt\": 28800\n },\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 1000,\n \"warnAt\": 800\n }\n },\n \"boards\": {\n \"totalMembersPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1600,\n \"warnAt\": 1280\n },\n \"totalAccessRequestsPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 4000,\n \"warnAt\": 3200\n }\n },\n \"cards\": {\n \"openPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 5000,\n \"warnAt\": 4000\n },\n \"openPerList\": {\n \"status\": \"ok\",\n \"disableAt\": 5000,\n \"warnAt\": 4000\n },\n \"totalPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 2000000,\n \"warnAt\": 1600000\n },\n \"totalPerList\": {\n \"status\": \"ok\",\n \"disableAt\": 1000000,\n \"warnAt\": 800000\n }\n },\n \"checklists\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1800000,\n \"warnAt\": 1440000\n },\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 500,\n \"warnAt\": 400\n }\n },\n \"checkItems\": {\n \"perChecklist\": {\n \"status\": \"ok\",\n \"disableAt\": 200,\n \"warnAt\": 160\n }\n },\n \"customFields\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 50,\n \"warnAt\": 40\n }\n },\n \"customFieldOptions\": {\n \"perField\": {\n \"status\": \"ok\",\n \"disableAt\": 50,\n \"warnAt\": 40\n }\n },\n \"labels\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1000,\n \"warnAt\": 800\n }\n },\n \"lists\": {\n \"openPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 500,\n \"warnAt\": 400\n },\n \"totalPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 3000,\n \"warnAt\": 2400\n }\n },\n \"stickers\": {\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 70,\n \"warnAt\": 56\n }\n },\n \"reactions\": {\n \"perAction\": {\n \"status\": \"ok\",\n \"disableAt\": 900,\n \"warnAt\": 720\n },\n \"uniquePerAction\": {\n \"status\": \"ok\",\n \"disableAt\": 17,\n \"warnAt\": 14\n }\n }\n },\n \"pinned\": false,\n \"starred\": false,\n \"url\": \"https://trello.com/b/kzRRc8Br/ksi%C4%85%C5%BCki\",\n \"prefs\": {\n \"permissionLevel\": \"org\",\n \"hideVotes\": false,\n \"voting\": \"disabled\",\n \"comments\": \"members\",\n \"invitations\": \"members\",\n \"selfJoin\": true,\n \"cardCovers\": true,\n \"isTemplate\": false,\n \"cardAging\": \"regular\",\n \"calendarFeedEnabled\": false,\n \"hiddenPluginBoardButtons\": [],\n \"switcherViews\": [\n {\n \"viewType\": \"Board\",\n \"enabled\": true,\n \"_id\": \"63567fec22dd340347ef3ceb\"\n },\n {\n \"viewType\": \"Table\",\n \"enabled\": true,\n \"_id\": \"63567fec22dd340347ef3cec\"\n },\n {\n \"viewType\": \"Calendar\",\n \"enabled\": false,\n \"_id\": \"63567fec22dd340347ef3ced\"\n },\n {\n \"viewType\": \"Dashboard\",\n \"enabled\": false,\n \"_id\": \"63567fec22dd340347ef3cee\"\n },\n {\n \"viewType\": \"Timeline\",\n \"enabled\": false,\n \"_id\": \"63567fec22dd340347ef3cef\"\n },\n {\n \"viewType\": \"Map\",\n \"enabled\": false,\n \"_id\": \"63567fec22dd340347ef3cf0\"\n }\n ],\n \"background\": \"6191317da7b1eb738e22f911\",\n \"backgroundColor\": null,\n \"backgroundImage\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/868044fa6769d15fe992b9f2a0f3cd91/photo-1634828535553-70267ceac5c3\",\n \"backgroundImageScaled\": [\n {\n \"width\": 133,\n \"height\": 100,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/133x100/bbe0a084814ff562c2f545622281c7d9/photo-1634828535553-70267ceac5c3.jpg\"\n },\n {\n \"width\": 256,\n \"height\": 192,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x192/bbe0a084814ff562c2f545622281c7d9/photo-1634828535553-70267ceac5c3.jpg\"\n },\n {\n \"width\": 480,\n \"height\": 360,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x360/bbe0a084814ff562c2f545622281c7d9/photo-1634828535553-70267ceac5c3.jpg\"\n },\n {\n \"width\": 960,\n \"height\": 720,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x720/bbe0a084814ff562c2f545622281c7d9/photo-1634828535553-70267ceac5c3.jpg\"\n },\n {\n \"width\": 1024,\n \"height\": 768,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x768/bbe0a084814ff562c2f545622281c7d9/photo-1634828535553-70267ceac5c3.jpg\"\n },\n {\n \"width\": 1280,\n \"height\": 960,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x960/bbe0a084814ff562c2f545622281c7d9/photo-1634828535553-70267ceac5c3.jpg\"\n },\n {\n \"width\": 1920,\n \"height\": 1440,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1440/bbe0a084814ff562c2f545622281c7d9/photo-1634828535553-70267ceac5c3.jpg\"\n },\n {\n \"width\": 2048,\n \"height\": 1536,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1536/bbe0a084814ff562c2f545622281c7d9/photo-1634828535553-70267ceac5c3.jpg\"\n },\n {\n \"width\": 2133,\n \"height\": 1600,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2133x1600/bbe0a084814ff562c2f545622281c7d9/photo-1634828535553-70267ceac5c3.jpg\"\n },\n {\n \"width\": 2560,\n \"height\": 1920,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/868044fa6769d15fe992b9f2a0f3cd91/photo-1634828535553-70267ceac5c3\"\n }\n ],\n \"backgroundTile\": false,\n \"backgroundBrightness\": \"dark\",\n \"backgroundBottomColor\": \"#122220\",\n \"backgroundTopColor\": \"#041515\",\n \"canBePublic\": true,\n \"canBeEnterprise\": true,\n \"canBeOrg\": true,\n \"canBePrivate\": true,\n \"canInvite\": true\n },\n \"shortLink\": \"kzRRc8Br\",\n \"subscribed\": false,\n \"labelNames\": {\n \"green\": \"\",\n \"yellow\": \"\",\n \"orange\": \"\",\n \"red\": \"\",\n \"purple\": \"\",\n \"blue\": \"\",\n \"sky\": \"\",\n \"lime\": \"\",\n \"pink\": \"\",\n \"black\": \"\",\n \"green_dark\": \"\",\n \"yellow_dark\": \"\",\n \"orange_dark\": \"\",\n \"red_dark\": \"\",\n \"purple_dark\": \"\",\n \"blue_dark\": \"\",\n \"sky_dark\": \"\",\n \"lime_dark\": \"\",\n \"pink_dark\": \"\",\n \"black_dark\": \"\",\n \"green_light\": \"\",\n \"yellow_light\": \"\",\n \"orange_light\": \"\",\n \"red_light\": \"\",\n \"purple_light\": \"\",\n \"blue_light\": \"\",\n \"sky_light\": \"\",\n \"lime_light\": \"\",\n \"pink_light\": \"\",\n \"black_light\": \"\"\n },\n \"powerUps\": [],\n \"dateLastActivity\": \"2022-05-16T17:17:19.224Z\",\n \"dateLastView\": \"2022-10-23T15:16:13.438Z\",\n \"shortUrl\": \"https://trello.com/b/kzRRc8Br\",\n \"idTags\": [],\n \"datePluginDisable\": null,\n \"creationMethod\": null,\n \"ixUpdate\": \"44\",\n \"templateGallery\": null,\n \"enterpriseOwned\": false,\n \"idBoardSource\": null,\n \"premiumFeatures\": [\n \"additionalBoardBackgrounds\",\n \"additionalStickers\",\n \"customBoardBackgrounds\",\n \"customEmoji\",\n \"customStickers\",\n \"plugins\"\n ],\n \"idMemberCreator\": \"5fcbd3ddd4c9ae1ce35e5ac3\",\n \"memberships\": [\n {\n \"idMember\": \"5fcbd3ddd4c9ae1ce35e5ac3\",\n \"memberType\": \"admin\",\n \"unconfirmed\": false,\n \"deactivated\": false,\n \"id\": \"619131523dfb3766222e6f3f\"\n }\n ]\n },\n {\n \"id\": \"635559994849a80061e62589\",\n \"name\": \"New Board\",\n \"desc\": \"\",\n \"descData\": null,\n \"closed\": true,\n \"dateClosed\": \"2022-10-23T15:14:32.282Z\",\n \"idOrganization\": \"5fcbd3efd8d9a658ff6d44d3\",\n \"idEnterprise\": null,\n \"limits\": {\n \"attachments\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 36000,\n \"warnAt\": 28800\n },\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 1000,\n \"warnAt\": 800\n }\n },\n \"boards\": {\n \"totalMembersPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1600,\n \"warnAt\": 1280\n },\n \"totalAccessRequestsPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 4000,\n \"warnAt\": 3200\n }\n },\n \"cards\": {\n \"openPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 5000,\n \"warnAt\": 4000\n },\n \"openPerList\": {\n \"status\": \"ok\",\n \"disableAt\": 5000,\n \"warnAt\": 4000\n },\n \"totalPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 2000000,\n \"warnAt\": 1600000\n },\n \"totalPerList\": {\n \"status\": \"ok\",\n \"disableAt\": 1000000,\n \"warnAt\": 800000\n }\n },\n \"checklists\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1800000,\n \"warnAt\": 1440000\n },\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 500,\n \"warnAt\": 400\n }\n },\n \"checkItems\": {\n \"perChecklist\": {\n \"status\": \"ok\",\n \"disableAt\": 200,\n \"warnAt\": 160\n }\n },\n \"customFields\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 50,\n \"warnAt\": 40\n }\n },\n \"customFieldOptions\": {\n \"perField\": {\n \"status\": \"ok\",\n \"disableAt\": 50,\n \"warnAt\": 40\n }\n },\n \"labels\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1000,\n \"warnAt\": 800\n }\n },\n \"lists\": {\n \"openPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 500,\n \"warnAt\": 400\n },\n \"totalPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 3000,\n \"warnAt\": 2400\n }\n },\n \"stickers\": {\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 70,\n \"warnAt\": 56\n }\n },\n \"reactions\": {\n \"perAction\": {\n \"status\": \"ok\",\n \"disableAt\": 900,\n \"warnAt\": 720\n },\n \"uniquePerAction\": {\n \"status\": \"ok\",\n \"disableAt\": 17,\n \"warnAt\": 14\n }\n }\n },\n \"pinned\": false,\n \"starred\": false,\n \"url\": \"https://trello.com/b/ogXFq7UF/new-board\",\n \"prefs\": {\n \"permissionLevel\": \"private\",\n \"hideVotes\": false,\n \"voting\": \"disabled\",\n \"comments\": \"members\",\n \"invitations\": \"members\",\n \"selfJoin\": true,\n \"cardCovers\": true,\n \"isTemplate\": false,\n \"cardAging\": \"regular\",\n \"calendarFeedEnabled\": false,\n \"hiddenPluginBoardButtons\": [],\n \"switcherViews\": [\n {\n \"_id\": \"635559994849a80061e6258a\",\n \"viewType\": \"Board\",\n \"enabled\": true\n },\n {\n \"_id\": \"635559994849a80061e6258b\",\n \"viewType\": \"Table\",\n \"enabled\": true\n },\n {\n \"_id\": \"635559994849a80061e6258c\",\n \"viewType\": \"Calendar\",\n \"enabled\": false\n },\n {\n \"_id\": \"635559994849a80061e6258d\",\n \"viewType\": \"Dashboard\",\n \"enabled\": false\n },\n {\n \"_id\": \"635559994849a80061e6258e\",\n \"viewType\": \"Timeline\",\n \"enabled\": false\n },\n {\n \"_id\": \"635559994849a80061e6258f\",\n \"viewType\": \"Map\",\n \"enabled\": false\n }\n ],\n \"background\": \"blue\",\n \"backgroundColor\": \"#0079BF\",\n \"backgroundImage\": null,\n \"backgroundImageScaled\": null,\n \"backgroundTile\": false,\n \"backgroundBrightness\": \"dark\",\n \"backgroundBottomColor\": \"#0079BF\",\n \"backgroundTopColor\": \"#0079BF\",\n \"canBePublic\": true,\n \"canBeEnterprise\": true,\n \"canBeOrg\": true,\n \"canBePrivate\": true,\n \"canInvite\": true\n },\n \"shortLink\": \"ogXFq7UF\",\n \"subscribed\": false,\n \"labelNames\": {\n \"green\": \"\",\n \"yellow\": \"\",\n \"orange\": \"\",\n \"red\": \"\",\n \"purple\": \"\",\n \"blue\": \"\",\n \"sky\": \"\",\n \"lime\": \"\",\n \"pink\": \"\",\n \"black\": \"\",\n \"green_dark\": \"\",\n \"yellow_dark\": \"\",\n \"orange_dark\": \"\",\n \"red_dark\": \"\",\n \"purple_dark\": \"\",\n \"blue_dark\": \"\",\n \"sky_dark\": \"\",\n \"lime_dark\": \"\",\n \"pink_dark\": \"\",\n \"black_dark\": \"\",\n \"green_light\": \"\",\n \"yellow_light\": \"\",\n \"orange_light\": \"\",\n \"red_light\": \"\",\n \"purple_light\": \"\",\n \"blue_light\": \"\",\n \"sky_light\": \"\",\n \"lime_light\": \"\",\n \"pink_light\": \"\",\n \"black_light\": \"\"\n },\n \"powerUps\": [],\n \"dateLastActivity\": null,\n \"dateLastView\": \"2022-10-23T15:14:24.914Z\",\n \"shortUrl\": \"https://trello.com/b/ogXFq7UF\",\n \"idTags\": [],\n \"datePluginDisable\": null,\n \"creationMethod\": \"automatic\",\n \"ixUpdate\": \"5\",\n \"templateGallery\": null,\n \"enterpriseOwned\": false,\n \"idBoardSource\": null,\n \"premiumFeatures\": [\n \"additionalBoardBackgrounds\",\n \"additionalStickers\",\n \"customBoardBackgrounds\",\n \"customEmoji\",\n \"customStickers\",\n \"plugins\"\n ],\n \"idMemberCreator\": \"5fcbd3ddd4c9ae1ce35e5ac3\",\n \"memberships\": [\n {\n \"idMember\": \"5fcbd3ddd4c9ae1ce35e5ac3\",\n \"memberType\": \"admin\",\n \"unconfirmed\": false,\n \"deactivated\": false,\n \"id\": \"635559994849a80061e62594\"\n }\n ]\n },\n {\n \"id\": \"63555cc193d07800f5904da8\",\n \"name\": \"New Board\",\n \"desc\": \"\",\n \"descData\": null,\n \"closed\": true,\n \"dateClosed\": \"2022-10-24T10:55:54.617Z\",\n \"idOrganization\": \"5fcbd3efd8d9a658ff6d44d3\",\n \"idEnterprise\": null,\n \"limits\": {\n \"attachments\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 36000,\n \"warnAt\": 28800\n },\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 1000,\n \"warnAt\": 800\n }\n },\n \"boards\": {\n \"totalMembersPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1600,\n \"warnAt\": 1280\n },\n \"totalAccessRequestsPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 4000,\n \"warnAt\": 3200\n }\n },\n \"cards\": {\n \"openPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 5000,\n \"warnAt\": 4000\n },\n \"openPerList\": {\n \"status\": \"ok\",\n \"disableAt\": 5000,\n \"warnAt\": 4000\n },\n \"totalPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 2000000,\n \"warnAt\": 1600000\n },\n \"totalPerList\": {\n \"status\": \"ok\",\n \"disableAt\": 1000000,\n \"warnAt\": 800000\n }\n },\n \"checklists\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1800000,\n \"warnAt\": 1440000\n },\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 500,\n \"warnAt\": 400\n }\n },\n \"checkItems\": {\n \"perChecklist\": {\n \"status\": \"ok\",\n \"disableAt\": 200,\n \"warnAt\": 160\n }\n },\n \"customFields\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 50,\n \"warnAt\": 40\n }\n },\n \"customFieldOptions\": {\n \"perField\": {\n \"status\": \"ok\",\n \"disableAt\": 50,\n \"warnAt\": 40\n }\n },\n \"labels\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1000,\n \"warnAt\": 800\n }\n },\n \"lists\": {\n \"openPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 500,\n \"warnAt\": 400\n },\n \"totalPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 3000,\n \"warnAt\": 2400\n }\n },\n \"stickers\": {\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 70,\n \"warnAt\": 56\n }\n },\n \"reactions\": {\n \"perAction\": {\n \"status\": \"ok\",\n \"disableAt\": 900,\n \"warnAt\": 720\n },\n \"uniquePerAction\": {\n \"status\": \"ok\",\n \"disableAt\": 17,\n \"warnAt\": 14\n }\n }\n },\n \"pinned\": false,\n \"starred\": false,\n \"url\": \"https://trello.com/b/cOTJwJnM/new-board\",\n \"prefs\": {\n \"permissionLevel\": \"private\",\n \"hideVotes\": false,\n \"voting\": \"disabled\",\n \"comments\": \"members\",\n \"invitations\": \"members\",\n \"selfJoin\": true,\n \"cardCovers\": true,\n \"isTemplate\": false,\n \"cardAging\": \"regular\",\n \"calendarFeedEnabled\": false,\n \"hiddenPluginBoardButtons\": [],\n \"switcherViews\": [\n {\n \"_id\": \"63555cc193d07800f5904da9\",\n \"viewType\": \"Board\",\n \"enabled\": true\n },\n {\n \"_id\": \"63555cc193d07800f5904daa\",\n \"viewType\": \"Table\",\n \"enabled\": true\n },\n {\n \"_id\": \"63555cc193d07800f5904dab\",\n \"viewType\": \"Calendar\",\n \"enabled\": false\n },\n {\n \"_id\": \"63555cc193d07800f5904dac\",\n \"viewType\": \"Dashboard\",\n \"enabled\": false\n },\n {\n \"_id\": \"63555cc193d07800f5904dad\",\n \"viewType\": \"Timeline\",\n \"enabled\": false\n },\n {\n \"_id\": \"63555cc193d07800f5904dae\",\n \"viewType\": \"Map\",\n \"enabled\": false\n }\n ],\n \"background\": \"blue\",\n \"backgroundColor\": \"#0079BF\",\n \"backgroundImage\": null,\n \"backgroundImageScaled\": null,\n \"backgroundTile\": false,\n \"backgroundBrightness\": \"dark\",\n \"backgroundBottomColor\": \"#0079BF\",\n \"backgroundTopColor\": \"#0079BF\",\n \"canBePublic\": true,\n \"canBeEnterprise\": true,\n \"canBeOrg\": true,\n \"canBePrivate\": true,\n \"canInvite\": true\n },\n \"shortLink\": \"cOTJwJnM\",\n \"subscribed\": false,\n \"labelNames\": {\n \"green\": \"\",\n \"yellow\": \"\",\n \"orange\": \"\",\n \"red\": \"\",\n \"purple\": \"\",\n \"blue\": \"\",\n \"sky\": \"\",\n \"lime\": \"\",\n \"pink\": \"\",\n \"black\": \"\",\n \"green_dark\": \"\",\n \"yellow_dark\": \"\",\n \"orange_dark\": \"\",\n \"red_dark\": \"\",\n \"purple_dark\": \"\",\n \"blue_dark\": \"\",\n \"sky_dark\": \"\",\n \"lime_dark\": \"\",\n \"pink_dark\": \"\",\n \"black_dark\": \"\",\n \"green_light\": \"\",\n \"yellow_light\": \"\",\n \"orange_light\": \"\",\n \"red_light\": \"\",\n \"purple_light\": \"\",\n \"blue_light\": \"\",\n \"sky_light\": \"\",\n \"lime_light\": \"\",\n \"pink_light\": \"\",\n \"black_light\": \"\"\n },\n \"powerUps\": [],\n \"dateLastActivity\": null,\n \"dateLastView\": \"2022-10-24T10:54:55.878Z\",\n \"shortUrl\": \"https://trello.com/b/cOTJwJnM\",\n \"idTags\": [],\n \"datePluginDisable\": null,\n \"creationMethod\": \"automatic\",\n \"ixUpdate\": \"6\",\n \"templateGallery\": null,\n \"enterpriseOwned\": false,\n \"idBoardSource\": null,\n \"premiumFeatures\": [\n \"additionalBoardBackgrounds\",\n \"additionalStickers\",\n \"customBoardBackgrounds\",\n \"customEmoji\",\n \"customStickers\",\n \"plugins\"\n ],\n \"idMemberCreator\": \"5fcbd3ddd4c9ae1ce35e5ac3\",\n \"memberships\": [\n {\n \"idMember\": \"5fcbd3ddd4c9ae1ce35e5ac3\",\n \"memberType\": \"admin\",\n \"unconfirmed\": false,\n \"deactivated\": false,\n \"id\": \"63555cc193d07800f5904db3\"\n }\n ]\n },\n {\n \"id\": \"63567068594eb20068682f5d\",\n \"name\": \"New Board\",\n \"desc\": \"\",\n \"descData\": null,\n \"closed\": true,\n \"dateClosed\": \"2022-10-24T11:02:45.033Z\",\n \"idOrganization\": \"5fcbd3efd8d9a658ff6d44d3\",\n \"idEnterprise\": null,\n \"limits\": {\n \"attachments\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 36000,\n \"warnAt\": 28800\n },\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 1000,\n \"warnAt\": 800\n }\n },\n \"boards\": {\n \"totalMembersPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1600,\n \"warnAt\": 1280\n },\n \"totalAccessRequestsPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 4000,\n \"warnAt\": 3200\n }\n },\n \"cards\": {\n \"openPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 5000,\n \"warnAt\": 4000\n },\n \"openPerList\": {\n \"status\": \"ok\",\n \"disableAt\": 5000,\n \"warnAt\": 4000\n },\n \"totalPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 2000000,\n \"warnAt\": 1600000\n },\n \"totalPerList\": {\n \"status\": \"ok\",\n \"disableAt\": 1000000,\n \"warnAt\": 800000\n }\n },\n \"checklists\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1800000,\n \"warnAt\": 1440000\n },\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 500,\n \"warnAt\": 400\n }\n },\n \"checkItems\": {\n \"perChecklist\": {\n \"status\": \"ok\",\n \"disableAt\": 200,\n \"warnAt\": 160\n }\n },\n \"customFields\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 50,\n \"warnAt\": 40\n }\n },\n \"customFieldOptions\": {\n \"perField\": {\n \"status\": \"ok\",\n \"disableAt\": 50,\n \"warnAt\": 40\n }\n },\n \"labels\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1000,\n \"warnAt\": 800\n }\n },\n \"lists\": {\n \"openPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 500,\n \"warnAt\": 400\n },\n \"totalPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 3000,\n \"warnAt\": 2400\n }\n },\n \"stickers\": {\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 70,\n \"warnAt\": 56\n }\n },\n \"reactions\": {\n \"perAction\": {\n \"status\": \"ok\",\n \"disableAt\": 900,\n \"warnAt\": 720\n },\n \"uniquePerAction\": {\n \"status\": \"ok\",\n \"disableAt\": 17,\n \"warnAt\": 14\n }\n }\n },\n \"pinned\": false,\n \"starred\": false,\n \"url\": \"https://trello.com/b/zYdb0fMt/new-board\",\n \"prefs\": {\n \"permissionLevel\": \"private\",\n \"hideVotes\": false,\n \"voting\": \"disabled\",\n \"comments\": \"members\",\n \"invitations\": \"members\",\n \"selfJoin\": true,\n \"cardCovers\": true,\n \"isTemplate\": false,\n \"cardAging\": \"regular\",\n \"calendarFeedEnabled\": false,\n \"hiddenPluginBoardButtons\": [],\n \"switcherViews\": [\n {\n \"_id\": \"63567068594eb20068682f5e\",\n \"viewType\": \"Board\",\n \"enabled\": true\n },\n {\n \"_id\": \"63567068594eb20068682f5f\",\n \"viewType\": \"Table\",\n \"enabled\": true\n },\n {\n \"_id\": \"63567068594eb20068682f60\",\n \"viewType\": \"Calendar\",\n \"enabled\": false\n },\n {\n \"_id\": \"63567068594eb20068682f61\",\n \"viewType\": \"Dashboard\",\n \"enabled\": false\n },\n {\n \"_id\": \"63567068594eb20068682f62\",\n \"viewType\": \"Timeline\",\n \"enabled\": false\n },\n {\n \"_id\": \"63567068594eb20068682f63\",\n \"viewType\": \"Map\",\n \"enabled\": false\n }\n ],\n \"background\": \"blue\",\n \"backgroundColor\": \"#0079BF\",\n \"backgroundImage\": null,\n \"backgroundImageScaled\": null,\n \"backgroundTile\": false,\n \"backgroundBrightness\": \"dark\",\n \"backgroundBottomColor\": \"#0079BF\",\n \"backgroundTopColor\": \"#0079BF\",\n \"canBePublic\": true,\n \"canBeEnterprise\": true,\n \"canBeOrg\": true,\n \"canBePrivate\": true,\n \"canInvite\": true\n },\n \"shortLink\": \"zYdb0fMt\",\n \"subscribed\": false,\n \"labelNames\": {\n \"green\": \"\",\n \"yellow\": \"\",\n \"orange\": \"\",\n \"red\": \"\",\n \"purple\": \"\",\n \"blue\": \"\",\n \"sky\": \"\",\n \"lime\": \"\",\n \"pink\": \"\",\n \"black\": \"\",\n \"green_dark\": \"\",\n \"yellow_dark\": \"\",\n \"orange_dark\": \"\",\n \"red_dark\": \"\",\n \"purple_dark\": \"\",\n \"blue_dark\": \"\",\n \"sky_dark\": \"\",\n \"lime_dark\": \"\",\n \"pink_dark\": \"\",\n \"black_dark\": \"\",\n \"green_light\": \"\",\n \"yellow_light\": \"\",\n \"orange_light\": \"\",\n \"red_light\": \"\",\n \"purple_light\": \"\",\n \"blue_light\": \"\",\n \"sky_light\": \"\",\n \"lime_light\": \"\",\n \"pink_light\": \"\",\n \"black_light\": \"\"\n },\n \"powerUps\": [],\n \"dateLastActivity\": null,\n \"dateLastView\": null,\n \"shortUrl\": \"https://trello.com/b/zYdb0fMt\",\n \"idTags\": [],\n \"datePluginDisable\": null,\n \"creationMethod\": \"automatic\",\n \"ixUpdate\": \"5\",\n \"templateGallery\": null,\n \"enterpriseOwned\": false,\n \"idBoardSource\": null,\n \"premiumFeatures\": [\n \"additionalBoardBackgrounds\",\n \"additionalStickers\",\n \"customBoardBackgrounds\",\n \"customEmoji\",\n \"customStickers\",\n \"plugins\"\n ],\n \"idMemberCreator\": \"5fcbd3ddd4c9ae1ce35e5ac3\",\n \"memberships\": [\n {\n \"idMember\": \"5fcbd3ddd4c9ae1ce35e5ac3\",\n \"memberType\": \"admin\",\n \"unconfirmed\": false,\n \"deactivated\": false,\n \"id\": \"63567069594eb20068682f70\"\n }\n ]\n },\n {\n \"id\": \"635670bd92854300a058a43a\",\n \"name\": \"New Board\",\n \"desc\": \"\",\n \"descData\": null,\n \"closed\": true,\n \"dateClosed\": \"2022-10-24T11:02:49.179Z\",\n \"idOrganization\": \"5fcbd3efd8d9a658ff6d44d3\",\n \"idEnterprise\": null,\n \"limits\": {\n \"attachments\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 36000,\n \"warnAt\": 28800\n },\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 1000,\n \"warnAt\": 800\n }\n },\n \"boards\": {\n \"totalMembersPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1600,\n \"warnAt\": 1280\n },\n \"totalAccessRequestsPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 4000,\n \"warnAt\": 3200\n }\n },\n \"cards\": {\n \"openPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 5000,\n \"warnAt\": 4000\n },\n \"openPerList\": {\n \"status\": \"ok\",\n \"disableAt\": 5000,\n \"warnAt\": 4000\n },\n \"totalPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 2000000,\n \"warnAt\": 1600000\n },\n \"totalPerList\": {\n \"status\": \"ok\",\n \"disableAt\": 1000000,\n \"warnAt\": 800000\n }\n },\n \"checklists\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1800000,\n \"warnAt\": 1440000\n },\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 500,\n \"warnAt\": 400\n }\n },\n \"checkItems\": {\n \"perChecklist\": {\n \"status\": \"ok\",\n \"disableAt\": 200,\n \"warnAt\": 160\n }\n },\n \"customFields\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 50,\n \"warnAt\": 40\n }\n },\n \"customFieldOptions\": {\n \"perField\": {\n \"status\": \"ok\",\n \"disableAt\": 50,\n \"warnAt\": 40\n }\n },\n \"labels\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1000,\n \"warnAt\": 800\n }\n },\n \"lists\": {\n \"openPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 500,\n \"warnAt\": 400\n },\n \"totalPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 3000,\n \"warnAt\": 2400\n }\n },\n \"stickers\": {\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 70,\n \"warnAt\": 56\n }\n },\n \"reactions\": {\n \"perAction\": {\n \"status\": \"ok\",\n \"disableAt\": 900,\n \"warnAt\": 720\n },\n \"uniquePerAction\": {\n \"status\": \"ok\",\n \"disableAt\": 17,\n \"warnAt\": 14\n }\n }\n },\n \"pinned\": false,\n \"starred\": false,\n \"url\": \"https://trello.com/b/h1JLl3Ma/new-board\",\n \"prefs\": {\n \"permissionLevel\": \"private\",\n \"hideVotes\": false,\n \"voting\": \"disabled\",\n \"comments\": \"members\",\n \"invitations\": \"members\",\n \"selfJoin\": true,\n \"cardCovers\": true,\n \"isTemplate\": false,\n \"cardAging\": \"regular\",\n \"calendarFeedEnabled\": false,\n \"hiddenPluginBoardButtons\": [],\n \"switcherViews\": [\n {\n \"_id\": \"635670bd92854300a058a43b\",\n \"viewType\": \"Board\",\n \"enabled\": true\n },\n {\n \"_id\": \"635670bd92854300a058a43c\",\n \"viewType\": \"Table\",\n \"enabled\": true\n },\n {\n \"_id\": \"635670bd92854300a058a43d\",\n \"viewType\": \"Calendar\",\n \"enabled\": false\n },\n {\n \"_id\": \"635670bd92854300a058a43e\",\n \"viewType\": \"Dashboard\",\n \"enabled\": false\n },\n {\n \"_id\": \"635670bd92854300a058a43f\",\n \"viewType\": \"Timeline\",\n \"enabled\": false\n },\n {\n \"_id\": \"635670bd92854300a058a440\",\n \"viewType\": \"Map\",\n \"enabled\": false\n }\n ],\n \"background\": \"blue\",\n \"backgroundColor\": \"#0079BF\",\n \"backgroundImage\": null,\n \"backgroundImageScaled\": null,\n \"backgroundTile\": false,\n \"backgroundBrightness\": \"dark\",\n \"backgroundBottomColor\": \"#0079BF\",\n \"backgroundTopColor\": \"#0079BF\",\n \"canBePublic\": true,\n \"canBeEnterprise\": true,\n \"canBeOrg\": true,\n \"canBePrivate\": true,\n \"canInvite\": true\n },\n \"shortLink\": \"h1JLl3Ma\",\n \"subscribed\": false,\n \"labelNames\": {\n \"green\": \"\",\n \"yellow\": \"\",\n \"orange\": \"\",\n \"red\": \"\",\n \"purple\": \"\",\n \"blue\": \"\",\n \"sky\": \"\",\n \"lime\": \"\",\n \"pink\": \"\",\n \"black\": \"\",\n \"green_dark\": \"\",\n \"yellow_dark\": \"\",\n \"orange_dark\": \"\",\n \"red_dark\": \"\",\n \"purple_dark\": \"\",\n \"blue_dark\": \"\",\n \"sky_dark\": \"\",\n \"lime_dark\": \"\",\n \"pink_dark\": \"\",\n \"black_dark\": \"\",\n \"green_light\": \"\",\n \"yellow_light\": \"\",\n \"orange_light\": \"\",\n \"red_light\": \"\",\n \"purple_light\": \"\",\n \"blue_light\": \"\",\n \"sky_light\": \"\",\n \"lime_light\": \"\",\n \"pink_light\": \"\",\n \"black_light\": \"\"\n },\n \"powerUps\": [],\n \"dateLastActivity\": null,\n \"dateLastView\": null,\n \"shortUrl\": \"https://trello.com/b/h1JLl3Ma\",\n \"idTags\": [],\n \"datePluginDisable\": null,\n \"creationMethod\": \"automatic\",\n \"ixUpdate\": \"5\",\n \"templateGallery\": null,\n \"enterpriseOwned\": false,\n \"idBoardSource\": null,\n \"premiumFeatures\": [\n \"additionalBoardBackgrounds\",\n \"additionalStickers\",\n \"customBoardBackgrounds\",\n \"customEmoji\",\n \"customStickers\",\n \"plugins\"\n ],\n \"idMemberCreator\": \"5fcbd3ddd4c9ae1ce35e5ac3\",\n \"memberships\": [\n {\n \"idMember\": \"5fcbd3ddd4c9ae1ce35e5ac3\",\n \"memberType\": \"admin\",\n \"unconfirmed\": false,\n \"deactivated\": false,\n \"id\": \"635670bd92854300a058a445\"\n }\n ]\n },\n {\n \"id\": \"635670ef458bed027abe9305\",\n \"name\": \"New Board\",\n \"desc\": \"\",\n \"descData\": null,\n \"closed\": true,\n \"dateClosed\": \"2022-10-24T11:04:52.823Z\",\n \"idOrganization\": \"5fcbd3efd8d9a658ff6d44d3\",\n \"idEnterprise\": null,\n \"limits\": {\n \"attachments\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 36000,\n \"warnAt\": 28800\n },\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 1000,\n \"warnAt\": 800\n }\n },\n \"boards\": {\n \"totalMembersPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1600,\n \"warnAt\": 1280\n },\n \"totalAccessRequestsPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 4000,\n \"warnAt\": 3200\n }\n },\n \"cards\": {\n \"openPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 5000,\n \"warnAt\": 4000\n },\n \"openPerList\": {\n \"status\": \"ok\",\n \"disableAt\": 5000,\n \"warnAt\": 4000\n },\n \"totalPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 2000000,\n \"warnAt\": 1600000\n },\n \"totalPerList\": {\n \"status\": \"ok\",\n \"disableAt\": 1000000,\n \"warnAt\": 800000\n }\n },\n \"checklists\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1800000,\n \"warnAt\": 1440000\n },\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 500,\n \"warnAt\": 400\n }\n },\n \"checkItems\": {\n \"perChecklist\": {\n \"status\": \"ok\",\n \"disableAt\": 200,\n \"warnAt\": 160\n }\n },\n \"customFields\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 50,\n \"warnAt\": 40\n }\n },\n \"customFieldOptions\": {\n \"perField\": {\n \"status\": \"ok\",\n \"disableAt\": 50,\n \"warnAt\": 40\n }\n },\n \"labels\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1000,\n \"warnAt\": 800\n }\n },\n \"lists\": {\n \"openPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 500,\n \"warnAt\": 400\n },\n \"totalPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 3000,\n \"warnAt\": 2400\n }\n },\n \"stickers\": {\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 70,\n \"warnAt\": 56\n }\n },\n \"reactions\": {\n \"perAction\": {\n \"status\": \"ok\",\n \"disableAt\": 900,\n \"warnAt\": 720\n },\n \"uniquePerAction\": {\n \"status\": \"ok\",\n \"disableAt\": 17,\n \"warnAt\": 14\n }\n }\n },\n \"pinned\": false,\n \"starred\": false,\n \"url\": \"https://trello.com/b/qOiLTJ2Y/new-board\",\n \"prefs\": {\n \"permissionLevel\": \"private\",\n \"hideVotes\": false,\n \"voting\": \"disabled\",\n \"comments\": \"members\",\n \"invitations\": \"members\",\n \"selfJoin\": true,\n \"cardCovers\": true,\n \"isTemplate\": false,\n \"cardAging\": \"regular\",\n \"calendarFeedEnabled\": false,\n \"hiddenPluginBoardButtons\": [],\n \"switcherViews\": [\n {\n \"_id\": \"635670ef458bed027abe9306\",\n \"viewType\": \"Board\",\n \"enabled\": true\n },\n {\n \"_id\": \"635670ef458bed027abe9307\",\n \"viewType\": \"Table\",\n \"enabled\": true\n },\n {\n \"_id\": \"635670ef458bed027abe9308\",\n \"viewType\": \"Calendar\",\n \"enabled\": false\n },\n {\n \"_id\": \"635670ef458bed027abe9309\",\n \"viewType\": \"Dashboard\",\n \"enabled\": false\n },\n {\n \"_id\": \"635670ef458bed027abe930a\",\n \"viewType\": \"Timeline\",\n \"enabled\": false\n },\n {\n \"_id\": \"635670ef458bed027abe930b\",\n \"viewType\": \"Map\",\n \"enabled\": false\n }\n ],\n \"background\": \"blue\",\n \"backgroundColor\": \"#0079BF\",\n \"backgroundImage\": null,\n \"backgroundImageScaled\": null,\n \"backgroundTile\": false,\n \"backgroundBrightness\": \"dark\",\n \"backgroundBottomColor\": \"#0079BF\",\n \"backgroundTopColor\": \"#0079BF\",\n \"canBePublic\": true,\n \"canBeEnterprise\": true,\n \"canBeOrg\": true,\n \"canBePrivate\": true,\n \"canInvite\": true\n },\n \"shortLink\": \"qOiLTJ2Y\",\n \"subscribed\": false,\n \"labelNames\": {\n \"green\": \"\",\n \"yellow\": \"\",\n \"orange\": \"\",\n \"red\": \"\",\n \"purple\": \"\",\n \"blue\": \"\",\n \"sky\": \"\",\n \"lime\": \"\",\n \"pink\": \"\",\n \"black\": \"\",\n \"green_dark\": \"\",\n \"yellow_dark\": \"\",\n \"orange_dark\": \"\",\n \"red_dark\": \"\",\n \"purple_dark\": \"\",\n \"blue_dark\": \"\",\n \"sky_dark\": \"\",\n \"lime_dark\": \"\",\n \"pink_dark\": \"\",\n \"black_dark\": \"\",\n \"green_light\": \"\",\n \"yellow_light\": \"\",\n \"orange_light\": \"\",\n \"red_light\": \"\",\n \"purple_light\": \"\",\n \"blue_light\": \"\",\n \"sky_light\": \"\",\n \"lime_light\": \"\",\n \"pink_light\": \"\",\n \"black_light\": \"\"\n },\n \"powerUps\": [],\n \"dateLastActivity\": null,\n \"dateLastView\": null,\n \"shortUrl\": \"https://trello.com/b/qOiLTJ2Y\",\n \"idTags\": [],\n \"datePluginDisable\": null,\n \"creationMethod\": \"automatic\",\n \"ixUpdate\": \"5\",\n \"templateGallery\": null,\n \"enterpriseOwned\": false,\n \"idBoardSource\": null,\n \"premiumFeatures\": [\n \"additionalBoardBackgrounds\",\n \"additionalStickers\",\n \"customBoardBackgrounds\",\n \"customEmoji\",\n \"customStickers\",\n \"plugins\"\n ],\n \"idMemberCreator\": \"5fcbd3ddd4c9ae1ce35e5ac3\",\n \"memberships\": [\n {\n \"idMember\": \"5fcbd3ddd4c9ae1ce35e5ac3\",\n \"memberType\": \"admin\",\n \"unconfirmed\": false,\n \"deactivated\": false,\n \"id\": \"635670ef458bed027abe9311\"\n }\n ]\n },\n {\n \"id\": \"635671397e91bb006f371918\",\n \"name\": \"New Board\",\n \"desc\": \"\",\n \"descData\": null,\n \"closed\": false,\n \"dateClosed\": null,\n \"idOrganization\": \"5fcbd3efd8d9a658ff6d44d3\",\n \"idEnterprise\": null,\n \"limits\": {\n \"attachments\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 36000,\n \"warnAt\": 28800\n },\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 1000,\n \"warnAt\": 800\n }\n },\n \"boards\": {\n \"totalMembersPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1600,\n \"warnAt\": 1280\n },\n \"totalAccessRequestsPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 4000,\n \"warnAt\": 3200\n }\n },\n \"cards\": {\n \"openPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 5000,\n \"warnAt\": 4000\n },\n \"openPerList\": {\n \"status\": \"ok\",\n \"disableAt\": 5000,\n \"warnAt\": 4000\n },\n \"totalPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 2000000,\n \"warnAt\": 1600000\n },\n \"totalPerList\": {\n \"status\": \"ok\",\n \"disableAt\": 1000000,\n \"warnAt\": 800000\n }\n },\n \"checklists\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1800000,\n \"warnAt\": 1440000\n },\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 500,\n \"warnAt\": 400\n }\n },\n \"checkItems\": {\n \"perChecklist\": {\n \"status\": \"ok\",\n \"disableAt\": 200,\n \"warnAt\": 160\n }\n },\n \"customFields\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 50,\n \"warnAt\": 40\n }\n },\n \"customFieldOptions\": {\n \"perField\": {\n \"status\": \"ok\",\n \"disableAt\": 50,\n \"warnAt\": 40\n }\n },\n \"labels\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1000,\n \"warnAt\": 800\n }\n },\n \"lists\": {\n \"openPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 500,\n \"warnAt\": 400\n },\n \"totalPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 3000,\n \"warnAt\": 2400\n }\n },\n \"stickers\": {\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 70,\n \"warnAt\": 56\n }\n },\n \"reactions\": {\n \"perAction\": {\n \"status\": \"ok\",\n \"disableAt\": 900,\n \"warnAt\": 720\n },\n \"uniquePerAction\": {\n \"status\": \"ok\",\n \"disableAt\": 17,\n \"warnAt\": 14\n }\n }\n },\n \"pinned\": false,\n \"starred\": false,\n \"url\": \"https://trello.com/b/06IQgjwU/new-board\",\n \"prefs\": {\n \"permissionLevel\": \"private\",\n \"hideVotes\": false,\n \"voting\": \"disabled\",\n \"comments\": \"members\",\n \"invitations\": \"members\",\n \"selfJoin\": true,\n \"cardCovers\": true,\n \"isTemplate\": false,\n \"cardAging\": \"regular\",\n \"calendarFeedEnabled\": false,\n \"hiddenPluginBoardButtons\": [],\n \"switcherViews\": [\n {\n \"_id\": \"635671397e91bb006f371919\",\n \"viewType\": \"Board\",\n \"enabled\": true\n },\n {\n \"_id\": \"635671397e91bb006f37191a\",\n \"viewType\": \"Table\",\n \"enabled\": true\n },\n {\n \"_id\": \"635671397e91bb006f37191b\",\n \"viewType\": \"Calendar\",\n \"enabled\": false\n },\n {\n \"_id\": \"635671397e91bb006f37191c\",\n \"viewType\": \"Dashboard\",\n \"enabled\": false\n },\n {\n \"_id\": \"635671397e91bb006f37191d\",\n \"viewType\": \"Timeline\",\n \"enabled\": false\n },\n {\n \"_id\": \"635671397e91bb006f37191e\",\n \"viewType\": \"Map\",\n \"enabled\": false\n }\n ],\n \"background\": \"pink\",\n \"backgroundColor\": \"#CD5A91\",\n \"backgroundImage\": null,\n \"backgroundImageScaled\": null,\n \"backgroundTile\": false,\n \"backgroundBrightness\": \"dark\",\n \"backgroundBottomColor\": \"#CD5A91\",\n \"backgroundTopColor\": \"#CD5A91\",\n \"canBePublic\": true,\n \"canBeEnterprise\": true,\n \"canBeOrg\": true,\n \"canBePrivate\": true,\n \"canInvite\": true\n },\n \"shortLink\": \"06IQgjwU\",\n \"subscribed\": false,\n \"labelNames\": {\n \"green\": \"\",\n \"yellow\": \"\",\n \"orange\": \"\",\n \"red\": \"\",\n \"purple\": \"\",\n \"blue\": \"\",\n \"sky\": \"\",\n \"lime\": \"\",\n \"pink\": \"\",\n \"black\": \"\",\n \"green_dark\": \"\",\n \"yellow_dark\": \"\",\n \"orange_dark\": \"\",\n \"red_dark\": \"\",\n \"purple_dark\": \"\",\n \"blue_dark\": \"\",\n \"sky_dark\": \"\",\n \"lime_dark\": \"\",\n \"pink_dark\": \"\",\n \"black_dark\": \"\",\n \"green_light\": \"\",\n \"yellow_light\": \"\",\n \"orange_light\": \"\",\n \"red_light\": \"\",\n \"purple_light\": \"\",\n \"blue_light\": \"\",\n \"sky_light\": \"\",\n \"lime_light\": \"\",\n \"pink_light\": \"\",\n \"black_light\": \"\"\n },\n \"powerUps\": [],\n \"dateLastActivity\": \"2022-10-24T12:30:14.644Z\",\n \"dateLastView\": \"2022-10-24T12:30:14.779Z\",\n \"shortUrl\": \"https://trello.com/b/06IQgjwU\",\n \"idTags\": [],\n \"datePluginDisable\": null,\n \"creationMethod\": \"automatic\",\n \"ixUpdate\": \"28\",\n \"templateGallery\": null,\n \"enterpriseOwned\": false,\n \"idBoardSource\": null,\n \"premiumFeatures\": [\n \"additionalBoardBackgrounds\",\n \"additionalStickers\",\n \"customBoardBackgrounds\",\n \"customEmoji\",\n \"customStickers\",\n \"plugins\"\n ],\n \"idMemberCreator\": \"5fcbd3ddd4c9ae1ce35e5ac3\",\n \"memberships\": [\n {\n \"idMember\": \"5fcbd3ddd4c9ae1ce35e5ac3\",\n \"memberType\": \"admin\",\n \"unconfirmed\": false,\n \"deactivated\": false,\n \"id\": \"635671397e91bb006f371923\"\n }\n ]\n },\n {\n \"id\": \"60394c56949bf94aaf9e6b39\",\n \"name\": \"☺️☺️☺️\",\n \"desc\": \"\",\n \"descData\": null,\n \"closed\": false,\n \"dateClosed\": null,\n \"idOrganization\": \"5fcbd3efd8d9a658ff6d44d3\",\n \"idEnterprise\": null,\n \"limits\": {\n \"attachments\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 36000,\n \"warnAt\": 28800\n },\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 1000,\n \"warnAt\": 800\n }\n },\n \"boards\": {\n \"totalMembersPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1600,\n \"warnAt\": 1280\n },\n \"totalAccessRequestsPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 4000,\n \"warnAt\": 3200\n }\n },\n \"cards\": {\n \"openPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 5000,\n \"warnAt\": 4000\n },\n \"openPerList\": {\n \"status\": \"ok\",\n \"disableAt\": 5000,\n \"warnAt\": 4000\n },\n \"totalPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 2000000,\n \"warnAt\": 1600000\n },\n \"totalPerList\": {\n \"status\": \"ok\",\n \"disableAt\": 1000000,\n \"warnAt\": 800000\n }\n },\n \"checklists\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1800000,\n \"warnAt\": 1440000\n },\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 500,\n \"warnAt\": 400\n }\n },\n \"checkItems\": {\n \"perChecklist\": {\n \"status\": \"ok\",\n \"disableAt\": 200,\n \"warnAt\": 160\n }\n },\n \"customFields\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 50,\n \"warnAt\": 40\n }\n },\n \"customFieldOptions\": {\n \"perField\": {\n \"status\": \"ok\",\n \"disableAt\": 50,\n \"warnAt\": 40\n }\n },\n \"labels\": {\n \"perBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 1000,\n \"warnAt\": 800\n }\n },\n \"lists\": {\n \"openPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 500,\n \"warnAt\": 400\n },\n \"totalPerBoard\": {\n \"status\": \"ok\",\n \"disableAt\": 3000,\n \"warnAt\": 2400\n }\n },\n \"stickers\": {\n \"perCard\": {\n \"status\": \"ok\",\n \"disableAt\": 70,\n \"warnAt\": 56\n }\n },\n \"reactions\": {\n \"perAction\": {\n \"status\": \"ok\",\n \"disableAt\": 900,\n \"warnAt\": 720\n },\n \"uniquePerAction\": {\n \"status\": \"ok\",\n \"disableAt\": 17,\n \"warnAt\": 14\n }\n }\n },\n \"pinned\": false,\n \"starred\": false,\n \"url\": \"https://trello.com/b/8yYnIbn1/%E2%98%BA%EF%B8%8F%E2%98%BA%EF%B8%8F%E2%98%BA%EF%B8%8F\",\n \"prefs\": {\n \"permissionLevel\": \"org\",\n \"hideVotes\": false,\n \"voting\": \"disabled\",\n \"comments\": \"members\",\n \"invitations\": \"members\",\n \"selfJoin\": true,\n \"cardCovers\": true,\n \"isTemplate\": false,\n \"cardAging\": \"regular\",\n \"calendarFeedEnabled\": false,\n \"hiddenPluginBoardButtons\": [],\n \"switcherViews\": [\n {\n \"viewType\": \"Board\",\n \"enabled\": true,\n \"_id\": \"63567fec22dd340347ef3ceb\"\n },\n {\n \"viewType\": \"Table\",\n \"enabled\": true,\n \"_id\": \"63567fec22dd340347ef3cec\"\n },\n {\n \"viewType\": \"Calendar\",\n \"enabled\": false,\n \"_id\": \"63567fec22dd340347ef3ced\"\n },\n {\n \"viewType\": \"Dashboard\",\n \"enabled\": false,\n \"_id\": \"63567fec22dd340347ef3cee\"\n },\n {\n \"viewType\": \"Timeline\",\n \"enabled\": false,\n \"_id\": \"63567fec22dd340347ef3cef\"\n },\n {\n \"viewType\": \"Map\",\n \"enabled\": false,\n \"_id\": \"63567fec22dd340347ef3cf0\"\n }\n ],\n \"background\": \"614f0e7bc51b1d0f020e6f74\",\n \"backgroundColor\": null,\n \"backgroundImage\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/1f7de987df422f3befa1ab978783dd56/photo-1631715193954-68842ba0b843\",\n \"backgroundImageScaled\": [\n {\n \"width\": 75,\n \"height\": 100,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/75x100/02c7ea1375f904da454dce4cb2e304de/photo-1631715193954-68842ba0b843.jpg\"\n },\n {\n \"width\": 144,\n \"height\": 192,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/144x192/02c7ea1375f904da454dce4cb2e304de/photo-1631715193954-68842ba0b843.jpg\"\n },\n {\n \"width\": 361,\n \"height\": 480,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/361x480/02c7ea1375f904da454dce4cb2e304de/photo-1631715193954-68842ba0b843.jpg\"\n },\n {\n \"width\": 722,\n \"height\": 960,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/722x960/02c7ea1375f904da454dce4cb2e304de/photo-1631715193954-68842ba0b843.jpg\"\n },\n {\n \"width\": 770,\n \"height\": 1024,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/770x1024/02c7ea1375f904da454dce4cb2e304de/photo-1631715193954-68842ba0b843.jpg\"\n },\n {\n \"width\": 963,\n \"height\": 1280,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/963x1280/02c7ea1375f904da454dce4cb2e304de/photo-1631715193954-68842ba0b843.jpg\"\n },\n {\n \"width\": 1203,\n \"height\": 1600,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1203x1600/02c7ea1375f904da454dce4cb2e304de/photo-1631715193954-68842ba0b843.jpg\"\n },\n {\n \"width\": 1444,\n \"height\": 1920,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1444x1920/02c7ea1375f904da454dce4cb2e304de/photo-1631715193954-68842ba0b843.jpg\"\n },\n {\n \"width\": 1540,\n \"height\": 2048,\n \"url\": \"https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/1f7de987df422f3befa1ab978783dd56/photo-1631715193954-68842ba0b843\"\n }\n ],\n \"backgroundTile\": false,\n \"backgroundBrightness\": \"dark\",\n \"backgroundBottomColor\": \"#0e0a0a\",\n \"backgroundTopColor\": \"#0d0807\",\n \"canBePublic\": true,\n \"canBeEnterprise\": true,\n \"canBeOrg\": true,\n \"canBePrivate\": true,\n \"canInvite\": true\n },\n \"shortLink\": \"8yYnIbn1\",\n \"subscribed\": false,\n \"labelNames\": {\n \"green\": \"\",\n \"yellow\": \"\",\n \"orange\": \"\",\n \"red\": \"\",\n \"purple\": \"\",\n \"blue\": \"\",\n \"sky\": \"\",\n \"lime\": \"\",\n \"pink\": \"\",\n \"black\": \"\",\n \"green_dark\": \"\",\n \"yellow_dark\": \"\",\n \"orange_dark\": \"\",\n \"red_dark\": \"\",\n \"purple_dark\": \"\",\n \"blue_dark\": \"\",\n \"sky_dark\": \"\",\n \"lime_dark\": \"\",\n \"pink_dark\": \"\",\n \"black_dark\": \"\",\n \"green_light\": \"\",\n \"yellow_light\": \"\",\n \"orange_light\": \"\",\n \"red_light\": \"\",\n \"purple_light\": \"\",\n \"blue_light\": \"\",\n \"sky_light\": \"\",\n \"lime_light\": \"\",\n \"pink_light\": \"\",\n \"black_light\": \"\"\n },\n \"powerUps\": [],\n \"dateLastActivity\": \"2022-03-22T18:25:52.864Z\",\n \"dateLastView\": \"2022-10-23T15:17:20.968Z\",\n \"shortUrl\": \"https://trello.com/b/8yYnIbn1\",\n \"idTags\": [],\n \"datePluginDisable\": null,\n \"creationMethod\": null,\n \"ixUpdate\": \"198\",\n \"templateGallery\": null,\n \"enterpriseOwned\": false,\n \"idBoardSource\": null,\n \"premiumFeatures\": [\n \"additionalBoardBackgrounds\",\n \"additionalStickers\",\n \"customBoardBackgrounds\",\n \"customEmoji\",\n \"customStickers\",\n \"plugins\"\n ],\n \"idMemberCreator\": \"5fcbd3ddd4c9ae1ce35e5ac3\",\n \"memberships\": [\n {\n \"idMember\": \"5fcbd3ddd4c9ae1ce35e5ac3\",\n \"memberType\": \"admin\",\n \"unconfirmed\": false,\n \"deactivated\": false,\n \"id\": \"60394c56949bf94aaf9e6b3a\"\n }\n ]\n }\n]"
}
]
},
{
"name": "Create List - 1",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
"const randomListName = pm.variables.replaceIn('{{$randomNoun}}')\r",
"pm.collectionVariables.set('listName', randomListName)"
],
"type": "text/javascript"
}
},
{
"listen": "test",
"script": {
"exec": [
"const responseData = pm.response.json()\r",
"\r",
"pm.test('Check name', () => {\r",
" pm.expect(responseData.name).to.eql(pm.collectionVariables.get('listName'))\r",
"});\r",
"\r",
"pm.test('Check board ID', () => {\r",
" pm.expect(responseData.idBoard).to.eql(pm.collectionVariables.get('board_Id'))\r",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [],
"url": {
"raw": "{{baseUrl}}/1/boards/:id/lists?token={{token}}&key={{key}}&name={{listName}}",
"host": [
"{{baseUrl}}"
],
"path": [
"1",
"boards",
":id",
"lists"
],
"query": [
{
"key": "token",
"value": "{{token}}"
},
{
"key": "key",
"value": "{{key}}"
},
{
"key": "name",
"value": "{{listName}}"
}
],
"variable": [
{
"key": "id",
"value": "{{board_Id}}"
}
]
}
},
"response": []
},
{
"name": "Create List - 2",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
"const randomListName = pm.variables.replaceIn('{{$randomNoun}}')\r",
"pm.collectionVariables.set('listName', randomListName)"
],
"type": "text/javascript"
}
},
{
"listen": "test",
"script": {
"exec": [
"const responseData = pm.response.json()\r",
"\r",
"pm.test('Check name', () => {\r",
" pm.expect(responseData.name).to.eql(pm.collectionVariables.get('listName'))\r",
"});\r",
"\r",
"pm.test('Check board ID', () => {\r",
" pm.expect(responseData.idBoard).to.eql(pm.collectionVariables.get('board_Id'))\r",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [],
"url": {
"raw": "{{baseUrl}}/1/boards/:id/lists?token={{token}}&key={{key}}&name={{listName}}",
"host": [
"{{baseUrl}}"
],
"path": [
"1",
"boards",
":id",
"lists"
],
"query": [
{
"key": "token",
"value": "{{token}}"
},
{
"key": "key",
"value": "{{key}}"
},
{
"key": "name",
"value": "{{listName}}"
}
],
"variable": [
{
"key": "id",
"value": "{{board_Id}}"
}
]
}
},
"response": []
},
{
"name": "Create List - 3",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
"const randomListName = pm.variables.replaceIn('{{$randomNoun}}')\r",
"pm.collectionVariables.set('listName', randomListName)"
],
"type": "text/javascript"
}
},
{
"listen": "test",
"script": {
"exec": [
"const responseData = pm.response.json()\r",
"\r",
"pm.test('Check name', () => {\r",
" pm.expect(responseData.name).to.eql(pm.collectionVariables.get('listName'))\r",
"});\r",
"\r",
"pm.test('Check board ID', () => {\r",
" pm.expect(responseData.idBoard).to.eql(pm.collectionVariables.get('board_Id'))\r",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [],
"url": {
"raw": "{{baseUrl}}/1/boards/:id/lists?token={{token}}&key={{key}}&name={{listName}}",
"host": [
"{{baseUrl}}"
],
"path": [
"1",
"boards",
":id",
"lists"
],
"query": [
{
"key": "token",
"value": "{{token}}"
},
{
"key": "key",
"value": "{{key}}"
},
{
"key": "name",
"value": "{{listName}}"
}
],
"variable": [
{
"key": "id",
"value": "{{board_Id}}"
}
]
}
},
"response": []
},
{
"name": "Create List - 4",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
"const randomListName = pm.variables.replaceIn(\"{{$randomNoun}}\")\r",
"pm.collectionVariables.set('listName', randomListName)"
],
"type": "text/javascript"
}
},
{
"listen": "test",
"script": {
"exec": [
"const responseData = pm.response.json()\r",
"\r",
"pm.test('Check name', () => {\r",
" pm.expect(responseData.name).to.eql(pm.collectionVariables.get('listName'))\r",
"});\r",
"\r",
"pm.test('Check board ID', () => {\r",
" pm.expect(responseData.idBoard).to.eql(pm.collectionVariables.get('board_Id'))\r",
"});\r",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [],
"url": {
"raw": "{{baseUrl}}/1/boards/:id/lists?token={{token}}&key={{key}}&name={{listName}}",
"host": [
"{{baseUrl}}"
],
"path": [
"1",
"boards",
":id",
"lists"
],
"query": [
{
"key": "token",
"value": "{{token}}"
},
{
"key": "key",
"value": "{{key}}"
},
{
"key": "name",
"value": "{{listName}}"
}
],
"variable": [
{
"key": "id",
"value": "{{board_Id}}"
}
]
}
},
"response": []
},
{
"name": "Create List - 5",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
"const randomListName = pm.variables.replaceIn(\"{{$randomNoun}}\")\r",
"pm.collectionVariables.set('listName', randomListName)"
],
"type": "text/javascript"
}
},
{
"listen": "test",
"script": {
"exec": [
"const responseData = pm.response.json()\r",
"\r",
"pm.test('Check name', () => {\r",
" pm.expect(responseData.name).to.eql(pm.collectionVariables.get('listName'))\r",
"});\r",
"\r",
"pm.test('Check board ID', () => {\r",
" pm.expect(responseData.idBoard).to.eql(pm.collectionVariables.get('board_Id'))\r",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [],
"url": {
"raw": "{{baseUrl}}/1/boards/:id/lists?token={{token}}&key={{key}}&name={{listName}}",
"host": [
"{{baseUrl}}"
],
"path": [
"1",
"boards",
":id",
"lists"
],
"query": [
{
"key": "token",
"value": "{{token}}"
},
{
"key": "key",
"value": "{{key}}"
},
{
"key": "name",
"value": "{{listName}}"
}
],
"variable": [
{
"key": "id",
"value": "{{board_Id}}"
}
]
}
},
"response": []
},
{
"name": "Get lists on a Board",
"event": [
{
"listen": "test",
"script": {
"exec": [
"const responseData = pm.response.json();\r",
"\r",
"pm.test('Check names of lists -> string', () => {\r",
" responseData.map(item => {\r",
" pm.expect(item.name).to.be.a(\"string\")\r",
" });\r",
"});\r",
"\r",
"pm.test('Check if lists are open', () => {\r",
" responseData.map(item => {\r",
" pm.expect(item.closed).to.eql(false)\r",
" })\r",
"});\r",
"pm.collectionVariables.set('listId1', responseData[0].id)\r",
"\r",
"pm.collectionVariables.set('listId2', responseData[1].id)\r",
"\r",
"pm.collectionVariables.set('listId3', responseData[2].id)\r",
"\r",
"pm.collectionVariables.set('listId4', responseData[3].id)\r",
"\r",
"pm.collectionVariables.set('listId5', responseData[4].id)"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "noauth"
},
"method": "GET",
"header": [
{
"key": "key",
"value": "a78ee836c4a2876c8b5d637fb3a47754",
"type": "text",
"disabled": true
},
{
"key": "token",
"value": "6ac88079bf74d3017e1db38cd22efd1242b74cb7ada1f67870aaeb2581b2331c",
"type": "text",
"disabled": true
}
],
"url": {
"raw": "{{baseUrl}}/1/boards/:id/lists?key={{key}}&token={{token}}",
"host": [
"{{baseUrl}}"
],
"path": [
"1",
"boards",
":id",
"lists"
],
"query": [
{
"key": "key",
"value": "{{key}}"
},
{
"key": "token",
"value": "{{token}}"
}
],
"variable": [
{
"key": "id",
"value": "{{board_Id}}"
}
]
}
},
"response": [
{
"name": "Get lists on a Board",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "key",
"value": "a78ee836c4a2876c8b5d637fb3a47754",
"type": "text",
"disabled": true
},
{
"key": "token",
"value": "6ac88079bf74d3017e1db38cd22efd1242b74cb7ada1f67870aaeb2581b2331c",
"type": "text",
"disabled": true
}
],
"url": {
"raw": "https://api.trello.com/1/boards/:id/lists?key={{key}}&token={{token}}",
"protocol": "https",
"host": [
"api",
"trello",
"com"
],
"path": [
"1",
"boards",
":id",
"lists"
],
"query": [
{
"key": "key",
"value": "{{key}}"
},
{
"key": "token",
"value": "{{token}}"
}
],
"variable": [
{
"key": "id",
"value": "{{newId}}"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Date",
"value": "Mon, 24 Oct 2022 12:06:44 GMT"
},
{
"key": "Content-Type",
"value": "application/json; charset=utf-8"
},
{
"key": "Content-Length",
"value": "747"
},
{
"key": "X-Dns-Prefetch-Control",
"value": "off"
},
{
"key": "X-Frame-Options",
"value": "DENY"
},
{
"key": "X-Download-Options",
"value": "noopen"
},
{
"key": "X-Permitted-Cross-Domain-Policies",
"value": "none"
},
{
"key": "Referrer-Policy",
"value": "strict-origin-when-cross-origin"
},
{
"key": "Surrogate-Control",
"value": "no-store"
},
{
"key": "Cache-Control",
"value": "max-age=0, must-revalidate, no-cache, no-store"
},
{
"key": "Pragma",
"value": "no-cache"
},
{
"key": "Expires",
"value": "Thu, 01 Jan 1970 00:00:00"
},
{
"key": "X-Trello-Version",
"value": "1.165256.0"
},
{
"key": "X-Trello-Environment",
"value": "Production (Micros)"
},
{
"key": "Access-Control-Allow-Origin",
"value": "*"
},
{
"key": "Access-Control-Allow-Methods",
"value": "GET, PUT, POST, DELETE"
},
{
"key": "Access-Control-Allow-Headers",
"value": "Authorization, Accept, Content-Type"
},
{
"key": "Access-Control-Expose-Headers",
"value": "x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining, x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining"
},
{