-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMETRC.yaml
executable file
·1850 lines (1850 loc) · 52.4 KB
/
METRC.yaml
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: export
__export_format: 4
__export_date: 2019-06-21T17:49:29.803Z
__export_source: insomnia.desktop.app:v6.5.4
resources:
- _id: req_130f154dcab24bbcaea4a96c94d56880
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body:
mimeType: application/json
text: |-
[
{
"Label": "1A4FF0100000027000000007",
"ResultDate": "2019-06-20T00:00:00Z",
"Results": [
{
"LabTestTypeName": "Acetone (mg/g)",
"Quantity": 100.2345,
"Passed": false,
"Notes": "That is enough"
}
]
}
]
created: 1528278443539
description: ""
headers:
- id: pair_f642fe30dc0b407e84ea7bc7c2467a03
name: Content-Type
value: application/json
isPrivate: false
metaSortKey: -1527763045362.4844
method: POST
modified: 1561115561844
name: Record Test
parameters: []
parentId: fld_d288f656aeac4107939253a7b11915c8
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/labtests/v1/record?licenseNumber={{ licenseNumber }}"
_type: request
- _id: fld_d288f656aeac4107939253a7b11915c8
created: 1528278406623
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1527846758470
modified: 1528278449806
name: Lab Test
parentId: fld_8b93e05f459d453a871f4c502189ab3e
_type: request_group
- _id: fld_8b93e05f459d453a871f4c502189ab3e
created: 1527855474445
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1526038483730
modified: 1527855474535
name: METRC
parentId: wrk_ba6ce46029ae4b12a4e86e8289efec78
_type: request_group
- _id: wrk_ba6ce46029ae4b12a4e86e8289efec78
created: 1527855465400
description: ""
modified: 1527855465400
name: METRC
parentId: null
_type: workspace
- _id: req_f0ad75399eef47f78df7e382f02e6c27
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body: {}
created: 1528278560798
description: ""
headers:
- id: pair_f642fe30dc0b407e84ea7bc7c2467a03
name: Content-Type
value: application/json
isPrivate: false
metaSortKey: -1527763042346.7578
method: GET
modified: 1528280782578
name: Get Types
parameters: []
parentId: fld_d288f656aeac4107939253a7b11915c8
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/labtests/v1/types?licenseNumber={{ licenseNumber }}"
_type: request
- _id: req_b844abed515546eaa3ec2fa89b5ece44
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body:
mimeType: application/json
text: ""
created: 1528266023668
description: ""
headers:
- id: pair_f642fe30dc0b407e84ea7bc7c2467a03
name: Content-Type
value: application/json
isPrivate: false
metaSortKey: -1527763051443.9375
method: GET
modified: 1528266037471
name: Get Strains
parameters: []
parentId: fld_36b1c23f72cd4f1693225c10b818d3e3
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/strains/v1/active?licenseNumber={{ licenseNumber }}"
_type: request
- _id: fld_36b1c23f72cd4f1693225c10b818d3e3
created: 1528265898372
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1527846758420
modified: 1528265900022
name: Strains
parentId: fld_8b93e05f459d453a871f4c502189ab3e
_type: request_group
- _id: req_3fed3314c7e14819890a6c7658e13f0e
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body:
mimeType: application/json
text: |-
[
{
"Name": "Stormbreaker",
"TestingStatus": "None",
"ThcLevel": 0.565,
"CbdLevel": 0.375,
"IndicaPercentage": 50.0,
"SativaPercentage": 50.0
}
]
created: 1528265904809
description: ""
headers:
- id: pair_f642fe30dc0b407e84ea7bc7c2467a03
name: Content-Type
value: application/json
isPrivate: false
metaSortKey: -1527763051393.9375
method: POST
modified: 1561110595526
name: Create Strain
parameters: []
parentId: fld_36b1c23f72cd4f1693225c10b818d3e3
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/strains/v1/create?licenseNumber={{ licenseNumber }}"
_type: request
- _id: req_ebce82d896ba4f548ce2ea11af80957c
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body:
mimeType: application/json
text: |-
[
{
"Id" : 71716,
"Name": "Stormbreaker",
"TestingStatus": "None",
"ThcLevel": 0.965,
"CbdLevel": 0.275,
"IndicaPercentage": 50.0,
"SativaPercentage": 50.0
}
]
created: 1528266068977
description: ""
headers:
- id: pair_f642fe30dc0b407e84ea7bc7c2467a03
name: Content-Type
value: application/json
isPrivate: false
metaSortKey: -1527763039331.0312
method: POST
modified: 1561110618324
name: Update Strain
parameters: []
parentId: fld_36b1c23f72cd4f1693225c10b818d3e3
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/strains/v1/update?licenseNumber={{ licenseNumber }}"
_type: request
- _id: req_d06cb4e720d04293bba35c3f8dca8c1f
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body:
mimeType: application/json
text: |-
[{
"Name" : "Revant420",
"ItemCategory" : "Edible (weight)",
"UnitOfMeasure" : "Ounces",
"Strain" : "Gorilla Glue"
}]
created: 1550054997648
description: ""
headers:
- id: pair_9d34238a248b414e958cc2e1728d0ed6
name: Content-Type
value: application/json
isPrivate: false
metaSortKey: -1527846316087.5
method: POST
modified: 1550055334996
name: Info
parameters: []
parentId: fld_4d83665bdebf4b8fb3294ae71e67664b
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/items/v1/create?licenseNumber={{ licenseNumber }}"
_type: request
- _id: fld_4d83665bdebf4b8fb3294ae71e67664b
created: 1527855474516
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1527846758370
modified: 1527855474516
name: Item
parentId: fld_8b93e05f459d453a871f4c502189ab3e
_type: request_group
- _id: req_d2e0092d74e04bc3968babe56a0bcb13
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body: {}
created: 1527855474521
description: ""
headers: []
isPrivate: false
metaSortKey: -1527846316037.5
method: GET
modified: 1552297507808
name: Active Items
parameters: []
parentId: fld_4d83665bdebf4b8fb3294ae71e67664b
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/items/v1/active?licenseNumber={{ licenseNumber }}"
_type: request
- _id: req_f04a7dfc7dd54a76a4527f20334f2cde
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body:
mimeType: application/json
text: |-
[
{
"ItemCategory": "Edible (weight)",
"Name": "The Power Stone",
"UnitOfMeasure": "Grams",
"AdministrationMethod": null,
"Strain": "Mjolnir",
"UnitCbdPercent": null,
"UnitCbdContent": null,
"UnitCbdContentUnitOfMeasure": null,
"UnitThcPercent": null,
"UnitThcContent": null,
"UnitThcContentUnitOfMeasure": null,
"UnitVolume": null,
"UnitVolumeUnitOfMeasure": null,
"UnitWeight": 150,
"UnitWeightUnitOfMeasure": "Milligrams",
"ServingSize": null,
"SupplyDurationDays": null,
"Ingredients": null
}
]
created: 1528276759045
description: ""
headers:
- id: pair_80f998d16aad44a6aad170ebdf69f150
name: Content-Type
value: application/json
isPrivate: false
metaSortKey: -1527846316012.5
method: POST
modified: 1561114198575
name: Create Item
parameters: []
parentId: fld_4d83665bdebf4b8fb3294ae71e67664b
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/items/v1/create?licenseNumber={{ licenseNumber }}"
_type: request
- _id: req_6bc80a6e1c474a469daa8dd44c6c341e
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body: {}
created: 1545308713248
description: ""
headers: []
isPrivate: false
metaSortKey: -1527846316006.25
method: DELETE
modified: 1553002213034
name: Delete Item
parameters: []
parentId: fld_4d83665bdebf4b8fb3294ae71e67664b
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/items/v1/45789?licenseNumber={{ licenseNumber }}"
_type: request
- _id: req_cd60a795d5a94c13aec0f09280bc851d
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body:
mimeType: application/json
text: |-
[
{
"Id": 55202,
"ItemCategory": "Flower",
"Name": "The Mind Stone",
"UnitOfMeasure": "Ounces",
"AdministrationMethod": null,
"Strain": null,
"UnitCbdPercent": null,
"UnitCbdContent": null,
"UnitCbdContentUnitOfMeasure": null,
"UnitThcPercent": null,
"UnitThcContent": null,
"UnitThcContentUnitOfMeasure": null,
"UnitVolume": null,
"UnitVolumeUnitOfMeasure": null,
"UnitWeight": 150,
"UnitWeightUnitOfMeasure": "Milligrams",
"ServingSize": null,
"SupplyDurationDays": null,
"Ingredients": null
}
]
created: 1528277057340
description: ""
headers:
- id: pair_80f998d16aad44a6aad170ebdf69f150
name: Content-Type
value: application/json
isPrivate: false
metaSortKey: -1527846316000
method: POST
modified: 1561113137054
name: Update Item
parameters: []
parentId: fld_4d83665bdebf4b8fb3294ae71e67664b
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/items/v1/update?licenseNumber={{ licenseNumber }}"
_type: request
- _id: req_b9cd204b3f6c47a2b99e120921fd9c2d
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body: {}
created: 1527855474518
description: ""
headers: []
isPrivate: false
metaSortKey: -1527846315987.5
method: GET
modified: 1545218975784
name: Item Categories
parameters: []
parentId: fld_4d83665bdebf4b8fb3294ae71e67664b
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/items/v1/categories"
_type: request
- _id: req_bbe46f9fc4ff4bad8c0418ba0cb016c3
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body:
mimeType: application/json
text: ""
created: 1528194996939
description: ""
headers:
- id: pair_5e684d36dff84b04808f0f19babf649c
name: Content-Type
value: application/json
isPrivate: false
metaSortKey: -1526926079065.6562
method: GET
modified: 1528199327865
name: Get Receipts
parameters: []
parentId: fld_d51dbed4aeb2475f90c66af0d80304b4
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/sales/v1/receipts?licenseNumber={{ licenseNumber }}"
_type: request
- _id: fld_d51dbed4aeb2475f90c66af0d80304b4
created: 1528194962411
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1527846316037.5
modified: 1528194965195
name: Sales
parentId: fld_8b93e05f459d453a871f4c502189ab3e
_type: request_group
- _id: req_14f6da673f23487fb443d4349461d1f3
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body:
mimeType: application/json
text: ""
created: 1528199699862
description: ""
headers:
- id: pair_5e684d36dff84b04808f0f19babf649c
name: Content-Type
value: application/json
isPrivate: false
metaSortKey: -1526915992827.6602
method: DELETE
modified: 1561115216627
name: Delete Receipt
parameters: []
parentId: fld_d51dbed4aeb2475f90c66af0d80304b4
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/sales/v1/receipts/11928?licenseNumber={{ licenseNumber }}"
_type: request
- _id: req_851d60f7d89c4e38b72187e383cfc5a3
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body:
mimeType: application/json
text: |-
[
{
"SalesDateTime": "2019-06-21T00:44:53Z",
"SalesCustomerType": "Consumer",
"PatientLicenseNumber": null,
"CaregiverLicenseNumber": null,
"IdentificationMethod": null,
"Transactions": [
{
"PackageLabel": "1A4FF0300000029000002162",
"Quantity": 1.0,
"UnitOfMeasure": "Grams",
"TotalAmount": 10.99
}
]
}
]
created: 1528199302234
description: ""
headers:
- id: pair_5e684d36dff84b04808f0f19babf649c
name: Content-Type
value: application/json
isPrivate: false
metaSortKey: -1526905906589.664
method: POST
modified: 1561115173984
name: Create Reciept
parameters: []
parentId: fld_d51dbed4aeb2475f90c66af0d80304b4
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/sales/v1/receipts?licenseNumber={{ licenseNumber }}"
_type: request
- _id: req_fc75b9fe1403491ca7bb3707266bcea6
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body:
mimeType: application/json
text: |-
[
{
"Id" : 11927,
"SalesDateTime": "2019-06-22T16:44:53.000",
"SalesCustomerType": "Consumer",
"PatientLicenseNumber": null,
"CaregiverLicenseNumber": null,
"IdentificationMethod": null,
"Transactions": [
{
"PackageLabel": "1A4FF0300000029000002162",
"Quantity": 1.0,
"UnitOfMeasure": "Grams",
"TotalAmount": 9.99
}
]
}
]
created: 1528199257724
description: ""
headers:
- id: pair_5e684d36dff84b04808f0f19babf649c
name: Content-Type
value: application/json
isPrivate: false
metaSortKey: -1526885734113.6719
method: PUT
modified: 1561115152268
name: Update Receipt
parameters: []
parentId: fld_d51dbed4aeb2475f90c66af0d80304b4
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/sales/v1/receipts?licenseNumber={{ licenseNumber }}"
_type: request
- _id: req_8e12e099c5b74e3e94a63f2c66948c73
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body: {}
created: 1527855474509
description: ""
headers: []
isPrivate: false
metaSortKey: -1527845873805
method: GET
modified: 1527855676840
name: On Hold Harvests
parameters: []
parentId: fld_8f10921ce60240f7825dc7c8399406d4
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/harvests/v1/onhold?licenseNumber={{ licenseNumber }}"
_type: request
- _id: fld_8f10921ce60240f7825dc7c8399406d4
created: 1527855474507
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1527845873705
modified: 1527855474507
name: Harvest
parentId: fld_8b93e05f459d453a871f4c502189ab3e
_type: request_group
- _id: req_d45f1498e58f45b5a1e129b975cf27b2
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body: {}
created: 1527855474512
description: ""
headers: []
isPrivate: false
metaSortKey: -1527845873755
method: GET
modified: 1528276690288
name: Active Harvests
parameters: []
parentId: fld_8f10921ce60240f7825dc7c8399406d4
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/harvests/v1/active?licenseNumber={{ licenseNumber }}"
_type: request
- _id: req_02f36ef07c944bd29e0291e42e47f09d
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body: {}
created: 1561113871446
description: ""
headers: []
isPrivate: false
metaSortKey: -1527827328547.5625
method: GET
modified: 1561113883489
name: Waste Types
parameters: []
parentId: fld_8f10921ce60240f7825dc7c8399406d4
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/harvests/v1/waste/types?licenseNumber={{ licenseNumber }}"
_type: request
- _id: req_de3fb9a887664b5085f65d3342d49971
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body:
mimeType: application/json
text: |-
[
{
"Tag": "1A4FF0300000029000001868",
"Room": null,
"Item": "The Mind Stone",
"UnitOfWeight": "Pounds",
"Note": null,
"PatientLicenseNumber": null,
"IsProductionBatch": false,
"ProductionBatchNumber": null,
"IsTradeSample": false,
"ProductRequiresRemediation": false,
"RemediateProduct": false,
"RemediationMethodId": null,
"RemediationDate": null,
"RemediationSteps": null,
"ActualDate": "2015-12-15",
"Ingredients": [
{
"HarvestId": 29802,
"HarvestName": null,
"Weight": 200,
"UnitOfWeight": "Grams"
}
]
}
]
created: 1527855474514
description: ""
headers:
- id: pair_5e684d36dff84b04808f0f19babf649c
name: Content-Type
value: application/json
isPrivate: false
metaSortKey: -1527808783340.125
method: POST
modified: 1561113784753
name: Create Packages
parameters: []
parentId: fld_8f10921ce60240f7825dc7c8399406d4
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/harvests/v1/create/packages?licenseNumber={{ licenseNumber }}"
_type: request
- _id: req_496999e7bcfc45079499f7db2f930c2f
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body:
mimeType: application/json
text: |-
[
{
"Id": 29802,
"UnitOfWeight": "Grams",
"WasteWeight": 33.95,
"WasteType": "Plant Material",
"ActualDate": "2018-06-21"
}
]
created: 1528193774550
description: ""
headers:
- id: pair_5e684d36dff84b04808f0f19babf649c
name: Content-Type
value: application/json
isPrivate: false
metaSortKey: -1527790238132.6875
method: POST
modified: 1561113903689
name: Remove waste
parameters: []
parentId: fld_8f10921ce60240f7825dc7c8399406d4
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/harvests/v1/removewaste?licenseNumber={{ licenseNumber }}"
_type: request
- _id: req_5139f801e4e84dc59b0bb728c5a1b1e7
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body:
mimeType: application/json
text: |-
[
{
"Id": 29802,
"ActualDate": "2019-06-21"
}
]
created: 1528193853273
description: ""
headers:
- id: pair_5e684d36dff84b04808f0f19babf649c
name: Content-Type
value: application/json
isPrivate: false
metaSortKey: -1527780965528.9688
method: POST
modified: 1561113961290
name: Finish Harvest
parameters: []
parentId: fld_8f10921ce60240f7825dc7c8399406d4
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/harvests/v1/finish?licenseNumber={{ licenseNumber }}"
_type: request
- _id: req_a621505086fd49769758ede7f34e0cd6
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body:
mimeType: application/json
text: |-
[
{
"Id": 29802
}
]
created: 1528193893563
description: ""
headers:
- id: pair_5e684d36dff84b04808f0f19babf649c
name: Content-Type
value: application/json
isPrivate: false
metaSortKey: -1527776329227.1094
method: POST
modified: 1561113975737
name: Unfinish Harvest
parameters: []
parentId: fld_8f10921ce60240f7825dc7c8399406d4
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/harvests/v1/unfinish?licenseNumber={{ licenseNumber }}"
_type: request
- _id: req_b60baef3040c4a9ab313ff0e0f60bf10
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body: {}
created: 1527855474503
description: ""
headers: []
isPrivate: false
metaSortKey: -1527771692925.25
method: GET
modified: 1528278779603
name: Incoming License
parameters: []
parentId: fld_478fa24b27164298a7f4666252838ec4
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/transfers/v1/incoming?licenseNumber={{ licenseNumber }}"
_type: request
- _id: fld_478fa24b27164298a7f4666252838ec4
created: 1527855474501
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1527774401862
modified: 1527855474501
name: Transfer
parentId: fld_8b93e05f459d453a871f4c502189ab3e
_type: request_group
- _id: req_a2e4a9d5a04d4a65835ed6c0775a845e
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body: {}
created: 1527855474487
description: ""
headers: []
isPrivate: false
metaSortKey: -1527769568374
method: GET
modified: 1561112279339
name: Get Vegetative Plants
parameters: []
parentId: fld_296ae0caa85849339092df1409a6799c
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/plants/v1/vegetative?licenseNumber={{ licenseNumber }}"
_type: request
- _id: fld_296ae0caa85849339092df1409a6799c
created: 1527855474485
description: ""
environment: {}
environmentPropertyOrder: null
metaSortKey: -1527763566115
modified: 1527855474485
name: Plants
parentId: fld_8b93e05f459d453a871f4c502189ab3e
_type: request_group
- _id: req_7f6694c36df54ed18291e23b71da0bda
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body: {}
created: 1561112260092
description: ""
headers: []
isPrivate: false
metaSortKey: -1527769568367.75
method: GET
modified: 1561112283422
name: Get Flowering Plants
parameters: []
parentId: fld_296ae0caa85849339092df1409a6799c
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/plants/v1/flowering?licenseNumber={{ licenseNumber }}"
_type: request
- _id: req_ae17351d3cf84a5aab5be7fb2ae2d34c
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body:
mimeType: application/json
text: |-
[
{
"Plant" : "1A4FF0200000029000003219",
"Weight": 50,
"UnitOfWeight": "Grams",
"DryingRoom": "New Asgard",
"ActualDate": "2019-06-22"
}
]
created: 1527855474496
description: ""
headers:
- id: pair_6aaaa2eb609d4d199c9ba1a93a40ef23
name: Content-Type
value: application/json
isPrivate: false
metaSortKey: -1527769568361.5
method: POST
modified: 1561112302400
name: Manicure Plants
parameters: []
parentId: fld_296ae0caa85849339092df1409a6799c
settingDisableRenderRequestBody: false
settingEncodeUrl: true
settingRebuildPath: true
settingSendCookies: true
settingStoreCookies: true
url: "{{ URL }}/plants/v1/manicureplants?licenseNumber={{ licenseNumber }}"
_type: request
- _id: req_88181d671a254cb1b3e1ff6c32ca5327
authentication:
disabled: false
password: "{{ UserKey }}"
type: basic
username: "{{ VendorKey }}"
body:
mimeType: application/json
text: |-
[
{
"Plant" : "1A4FF0200000029000003219",
"Weight": 666,
"UnitOfWeight": "Grams",
"DryingRoom": "New Asgard",
"HarvestName": "Nidavellir",
"ActualDate": "2019-06-21"
}
]
created: 1527855474499
description: ""
headers:
- id: pair_6aaaa2eb609d4d199c9ba1a93a40ef23
name: Content-Type