-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathItemSense.postman_collection
1043 lines (1043 loc) · 65.6 KB
/
ItemSense.postman_collection
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
{
"id": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"name": "ItemSense",
"description": null,
"order": [],
"folders": [
{
"id": "a8e41d9b-85d8-66c1-1a0f-dd536550e13c",
"name": "Facilities",
"description": "",
"order": [
"c5c3e580-11e3-6985-a5af-c0923cda05bf",
"5e9f5c47-e5dc-ef54-fbc6-eb42e9ca63a7",
"2c775678-aec6-3747-cc60-9248b867a71f",
"c3ceed74-6047-f514-686d-949e79b3f17e",
"52bda3c3-0060-cdb2-3cad-4ab5967a8393"
],
"owner": "136628"
},
{
"id": "f8550f3e-e60b-4a00-a9b8-12a650dc6f1e",
"name": "Items",
"description": "# Items\n<div id=\"items\"></div>\nThis is where you will do all your item level data queries, looking for things such as inventory, item location and others.<br/> <br/>\nThe API is very simple, with just two endpoints; one to show items and another to show the history of items. You can apply complex filtering conditions which will allow you to select data in a precise way.\n\n",
"order": [
"6ec5ef94-21dc-4300-1c00-3d3f3e8927f3",
"653396db-2b10-4ea8-8c3c-5d805ccde7d3"
],
"owner": "136628",
"collectionId": "1088e941-ac23-8eb4-2ebe-9fc6eb2b1cf6"
},
{
"id": "6b1a63ca-f2c3-0b75-1510-da7314f9f1c7",
"name": "Jobs",
"description": "",
"order": [
"c9e68900-79a5-0701-6a72-d66ef6f89088",
"4c0052bc-1437-4a11-8fef-827abbcb74dc",
"6f67ae1c-b847-c50a-66e2-7a0a32f4bc33",
"fc007282-4dc6-5e91-a7b5-640bb3f8be30"
],
"owner": "136628"
},
{
"id": "1384dd68-2e59-6234-6c69-2b157dbcd45f",
"name": "Message Queues",
"description": "",
"order": [
"dd09a9f1-536f-cae4-1d37-d946f81cea4e"
],
"owner": "136628"
},
{
"id": "85712c32-0841-b86a-764c-01675b923166",
"name": "Reader Configurations",
"description": "",
"order": [
"731d6399-9957-a1fc-a8da-1aa4cb7c7453",
"39acfa7d-9913-9f89-dd92-b12d67c38160",
"fbc835a5-2040-2886-b535-3e16c2fa2e65",
"f46ca3c5-03f4-6009-f85c-8b1f58708cbe",
"f59b7980-3e59-7c22-6377-1c5813b8b530"
],
"owner": "136628"
},
{
"id": "708517f7-b1b4-cdd6-3b11-e1fbf4b3a1dd",
"name": "Reader Definitions",
"description": "",
"order": [
"310038eb-b593-5f40-1422-f2386c2fa320",
"83a4829b-61a6-6455-f91d-cbee5007ca38",
"d1135d48-550f-f1d1-2094-068785cd61fb",
"651f6456-c9d8-01b6-658e-273df70ec30a",
"379f9661-84d6-7118-fc64-abd0f7961172"
],
"owner": "136628"
},
{
"id": "9e49329f-e8a0-5249-e7c7-41902f599933",
"name": "Recipe",
"description": "",
"order": [
"caa5321e-7897-22f4-71e9-f43a63ab5911",
"b02d7b80-9bfd-8d05-8fc6-28abd71aa85f",
"4a95be85-55a8-57d0-0c98-50428e02ac24",
"d384ca3b-a6af-3dcb-1c9b-2978874c59aa",
"88d7e30b-2763-22d3-83e0-dda1f0b53731"
],
"owner": "136628"
},
{
"id": "b793ccd8-d11f-081f-2cc2-c040ffb84cc0",
"name": "Token",
"description": "",
"order": [
"3cbc5f56-2d39-33ae-9b4b-9d34b2858c84",
"37f1ac93-0427-7dbf-79d8-908f565440ae",
"80da84b2-65ec-08d6-3ecd-47c5cbab95d1",
"6bde2b9c-2bab-0bbd-3d1b-39e7b9635d17",
"3d703adc-cdfa-0a67-f7fa-89ef1bd405b1"
],
"owner": "136628"
},
{
"id": "66a9927a-8bf4-81a0-f1dd-5c8a3a0db76b",
"name": "Users",
"description": "",
"order": [
"d9b89992-976f-1b01-ae4a-c80d5b9822af",
"2dfed113-db54-5a98-db4e-8d41965aec0d",
"80d9d685-9ad5-30dc-05dd-b123d9b86df9",
"aee4fd06-8e49-c66f-29fb-ba475badc474",
"e0987de2-c710-e2ec-8ab1-39b990618a88"
],
"owner": "136628"
},
{
"id": "59f1fa56-216e-f328-a8fa-3d7fff389f26",
"name": "Zone Maps",
"description": "",
"order": [
"f0c3355a-82b2-a303-8f94-4230b9959f38",
"7e570562-68c9-6779-d6ec-f1c477044eab",
"fafff9ef-5df8-e077-b81d-5769abcbae03",
"4e2419d6-5abf-ef78-2589-702dfafcefbc",
"94400a39-06ac-d07f-7cc0-3e856e89677a",
"483f9e35-a86b-7a88-814a-f1fcbfc8ae84",
"6814fc1f-b77a-fb28-6636-aea3a5f939ac",
"44c099c8-d4b9-e5e7-7973-6afb0d189266"
],
"owner": "136628"
}
],
"timestamp": 0,
"owner": "136628",
"remoteLink": "https://www.getpostman.com/collections/42a78fbe324d8fbafbb5",
"public": false,
"requests": [
{
"id": "2c775678-aec6-3747-cc60-9248b867a71f",
"headers": "",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/facilities/createOrReplace",
"preRequestScript": null,
"pathVariables": {},
"method": "PUT",
"data": [],
"dataMode": "raw",
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"time": 1464022712602,
"name": "Facility - Create or Replace",
"description": "<div id=\"facilities-create-or-replace\"></div>\nThis method is used to create or replace a facility.\n\n### HTTP Request\n`PUT http://BASE_URL/itemsense/configuration/v1/facilities/createOrReplace`\n\n### Request Body\n\n\nProperty | Type | Description\n--------- | ------- | -----------\nname | String | The name associated to a facility. This name will be used as the identifier for retrieving, updating, and deleting a Facility. It will also be used as the primary identifier for a Facility in other API calls.\n\n",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"rawModeData": "{\n \"name\": \"\"\n}"
},
{
"id": "2dfed113-db54-5a98-db4e-8d41965aec0d",
"headers": "Authorization: Basic YWRtaW46aW1waW5qc3Zs\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/users/show",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "raw",
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1463506032974,
"name": "User - Get All",
"description": "<div id=\"users-get-all\"></div>\n\nThis method retrieves all of the users from the user store.\n\n### Http Request\n`GET http://BASE_URL/itemsense/confiugration/users/show `\n",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"folder": "66a9927a-8bf4-81a0-f1dd-5c8a3a0db76b",
"rawModeData": ""
},
{
"id": "310038eb-b593-5f40-1422-f2386c2fa320",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/readerDefinitions/create",
"preRequestScript": null,
"pathVariables": {},
"method": "POST",
"data": [],
"dataMode": "raw",
"version": 2,
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"time": 1464023188562,
"name": "Reader Definition - Create",
"description": "<div id=\"reader-definitions-create\"></div>\n\nThis method is used to create a reader definition\n\n### HTTP Request\n`POST http://BASE_URL/itemsense/configuration/v1/readerDefinitions/create`\n\n### Request Body\nParameter | Type | Description\n--------- | ------- | -----------\nname | String | The name associated to a specific Reader Definition. This name will be used as the identifier for retrieving, updating, and deleting a Reader Definition. If not provided, will default to the address.\naddress | String | The hostname or IP address of the target RAIN RFID Reader\nfacility<br/><small>(optional, <b>except</b> if using multiple facilities)</small> | String | The name of the facility where the reader is located\nType | Enum | The specific type of RFID reader that this definition is for. The options are: <ul><li>'XARRAY'</li> <li>'SPEEDWAY'</li></ul>\nplacement <br/><small>(optional)</small>| [Placement Configuration](http://developer.impinj.com/itemsense/docs/api/#placement-configuration) | The Placement Configuration for the reader (primarily used by xArray readers)\nreaderZone <br/><small>(optional)</small>| string | Used only for Spot Readers (not xArray's), this is the name for the zone where a Spot Reader is configured. This zone name will be designated for each of the Spot Reader's antennas, if the antennaZone field is not utilized.\nantennaZones <br/><small>(optional)</small> | Map<int, string> | Used only for Spot Readers (not xArray's), this field designates a zone name for each individual antenna attached to a Spot Reader.\n",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"responses": [],
"rawModeData": "{\n \"readerZone\": \"\",\n \"antennaZones\": \"Map[int,string]\",\n \"serialNumber\": \"\",\n \"facility\": \"\",\n \"agentIdentifier\": \"\",\n \"connectionType\": \"ConnectionType\",\n \"placement\": {\n \"x\": 0,\n \"y\": 0,\n \"z\": 0,\n \"yaw\": 0,\n \"pitch\": 0,\n \"roll\": 0,\n \"floor\": \"\"\n },\n \"address\": \"\",\n \"name\": \"\",\n \"type\": \"ReaderType\"\n}"
},
{
"id": "379f9661-84d6-7118-fc64-abd0f7961172",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/readerDefinitions/show",
"pathVariables": {},
"preRequestScript": null,
"method": "GET",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"data": null,
"dataMode": "params",
"name": "Reader Definition - Show All",
"description": "<div id=\"reader-definitions-get-all\"></div>\nThis method is used to retrieve all of the Reader Definitions\n\n### HTTP Request\n`GET http://BASE_URL/itemsense/configuration/v1/readerDefinitions/show`\n",
"descriptionFormat": "html",
"time": 1463500103638,
"version": 2,
"responses": [],
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"folder": "708517f7-b1b4-cdd6-3b11-e1fbf4b3a1dd"
},
{
"folder": "b793ccd8-d11f-081f-2cc2-c040ffb84cc0",
"id": "37f1ac93-0427-7dbf-79d8-908f565440ae",
"name": "Token - List Tokens",
"dataMode": "params",
"data": [],
"rawModeData": null,
"descriptionFormat": null,
"description": "<div id=\"list-tokens\"></div>\nThis method is used to list all tokens for a specific user.\n\n### HTTP Request\n`GET http://{BASE_URL}/itemsense/authentication/v1/listTokens/{USER_NAME}`\n",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"method": "GET",
"pathVariables": null,
"url": "http://{{BASE_URL}}/itemsense/authentication/v1/listTokens/{USER_NAME}",
"preRequestScript": "",
"tests": "",
"currentHelper": null,
"helperAttributes": null,
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43"
},
{
"id": "39acfa7d-9913-9f89-dd92-b12d67c38160",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/readerConfigurations/createOrReplace",
"preRequestScript": null,
"pathVariables": {},
"method": "PUT",
"data": [],
"dataMode": "raw",
"version": 2,
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"time": 1464023136833,
"name": "Reader Configuration - Create or Replace",
"description": "<div id=\"reader-configurations-create-or-replace\"></div>\n\n\nThis method is used to create or replace a Reader Configuration\n\n### HTTP Request\n`PUT http://BASE_URL/itemsense/configuration/v1/readerConfigurations/createOrReplace`\n\n### Request Body\nProperty | Type | Description\n--------- | ------- | -----------\nname | String | The name associated to a specific Reader Configuration. This name will be used as the identifier for retrieving, updating, and deleting a Reader Configuration\noperation | Enum | The operation mode for the current reader configuration. This allows recipes to be defined that explicitly include reader configurations where the reader is told to “Do Nothing”. The options are: <ul> <li>NORMAL</li><li>DO_NOTHING</li></ul>\nconfiguration | [Reader Configuration Details](http://developer.impinj.com/itemsense/docs/api/#reader-configuration-details) | Contains all of the details of the Reader Configuration\n",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"responses": [],
"rawModeData": "{\n \"name\": \"\",\n \"operation\": \"Operation\",\n \"configuration\": {\n \"readerMode\": \"ReaderMode\",\n \"searchMode\": \"SearchMode\",\n \"session\": 0,\n \"tagPopulationEstimate\": 0,\n \"transmitPowerInDbm\": 0,\n \"antennaDwellTimeInMs\": 0,\n \"tagNak\": false,\n \"polarization\": false,\n \"antennas\": [\n \"int\"\n ],\n \"filter\": {\n \"memoryBank\": 0,\n \"pointer\": 0,\n \"tagMask\": \"\"\n },\n \"channelConfig\": {\n \"channelIndex\": 0,\n \"txFrequenciesInMhz\": [\n 0\n ]\n },\n \"reportConfig\": {\n \"tidIncluded\": false,\n \"peakRssiIncluded\": false,\n \"phaseAngleIncluded\": false,\n \"dopplerFrequencyIncluded\": false,\n \"channelIncluded\": false\n }\n }\n}"
},
{
"id": "3cbc5f56-2d39-33ae-9b4b-9d34b2858c84",
"headers": "Authorization: Basic YWRtaW46aW1waW5qc3Zs\n",
"url": "http://{{BASE_URL}}/itemsense/authentication/v1/validateToken/{TOKEN}",
"preRequestScript": "",
"pathVariables": {},
"method": "POST",
"data": [],
"dataMode": "raw",
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1464023270480,
"name": "Token - Validate",
"description": "<div id=\"validate-token\"></div>\nUsed internally by Itemsense, this method is used to ensure that the token supplied is valid.\n\n### HTTP Request\n`GET http://{BASE_URL}/itemsense/authentication/v1/validateToken/{TOKEN}`\n\n",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"rawModeData": "{\n \"token\": \"\"\n}"
},
{
"id": "3d703adc-cdfa-0a67-f7fa-89ef1bd405b1",
"headers": "Authorization: Basic YWRtaW46aW1waW5qc3Zs\n",
"url": " http://{{BASE_URL}}/itemsense/authentication/v1/revokeToken",
"preRequestScript": "",
"pathVariables": {},
"method": "PUT",
"data": [],
"dataMode": "raw",
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1464023278796,
"name": "Token - Revoke",
"description": "<div id=\"revoke-token\"></div>\nThis method is used to revoke a specific authentication token.\n\n### HTTP Request\n\n`PUT http://{BASE_URL}/itemsense/authentication/v1/revokeToken`\n",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"rawModeData": "{\n \"token\": \"\"\n}"
},
{
"id": "44c099c8-d4b9-e5e7-7973-6afb0d189266",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/control/v1/currentZoneMap/clear/{FACILITY_NAME}",
"pathVariables": {},
"preRequestScript": null,
"method": "DELETE",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"data": null,
"dataMode": "params",
"name": "Current Zone Map - Clear",
"description": "<div id=\"zone-maps-clear-current\"></div>\nThis method clears any selection for Current Zone Map.\n\n`DELETE http://BASE_URL/itemsense/control/v1/currentZoneMap/clear/{FACILITY_NAME}`\n\nParameter | Type | Description\n--------- | ------- | -----------\nFACILITY_NAME<br/><small>(optional, <b>except</b> if using multiple facilities)</small> | String | The name of the facility for which to clear the current Zone Map.\n",
"descriptionFormat": "html",
"time": 1463430589454,
"version": 2,
"responses": [],
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"folder": "59f1fa56-216e-f328-a8fa-3d7fff389f26"
},
{
"id": "483f9e35-a86b-7a88-814a-f1fcbfc8ae84",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/control/v1/currentZoneMap/show/{FACILITY_NAME}",
"preRequestScript": null,
"pathVariables": {},
"method": "GET",
"data": null,
"dataMode": "params",
"version": 2,
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"time": 1463430096572,
"name": "Current Zone Map - Show",
"description": "<div id=\"zone-maps-get-current\"></div>\n\nThis method is used to retrieve the Current Zone Map.\n\n`GET http://BASE_URL/itemsense/control/v1/currentZoneMap/show/{FACILITY_NAME}`\n\nParameter | Type | Description\n--------- | ------- | -----------\nFACILITY_NAME<br/><small>(optional, <b>except</b> if using multiple facilities)</small> | String | The name of the facility for which to retrieve the current Zone Map.\n\n",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"responses": [],
"folder": "59f1fa56-216e-f328-a8fa-3d7fff389f26"
},
{
"id": "4a95be85-55a8-57d0-0c98-50428e02ac24",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/recipes/destroy/{recipeName}",
"pathVariables": {},
"preRequestScript": null,
"method": "DELETE",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"data": null,
"dataMode": "params",
"name": "Recipe - Delete",
"description": "<div id=\"recipes-delete\"></div>\nThis method is used to delete a Recipe\n\n### HTTP Request\n`DELETE http://BASE_URL/itemsense/configuration/v1/recipes/destroy/{RECIPE_NAME}`\n\n### Parameters\nParameter | Type | Description\n--------- | ------- | -----------\nRECIPE_NAME | String | The name of the Recipe to be deleted\n",
"descriptionFormat": "html",
"time": 1463500621080,
"version": 2,
"responses": [],
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"folder": "9e49329f-e8a0-5249-e7c7-41902f599933"
},
{
"id": "4c0052bc-1437-4a11-8fef-827abbcb74dc",
"headers": "Authorization: Basic YWRtaW46aW1waW5qc3Zs\n",
"url": "http://{{BASE_URL}}/itemsense/control/v1/jobs/stop/{JOB_ID}",
"preRequestScript": "",
"pathVariables": {},
"method": "POST",
"data": [],
"dataMode": "raw",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1464023019552,
"name": "Job - Stop",
"description": "<div id=\"jobs-stop\"></div>\nThis method is used to stop a job.\n\n### HTTP Request\n`POST http://BASE_URL/itemsense/control/v1/jobs/stop/{JOB_ID}`\n\n### Parameters\nParameter | Type | Description\n--------- | ------- | -----------\nJOB_ID | String | The unique identifier for the job that you wish to stop execution of\n",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"responses": [],
"rawModeData": ""
},
{
"id": "4e2419d6-5abf-ef78-2589-702dfafcefbc",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/zoneMaps/show",
"pathVariables": {},
"preRequestScript": null,
"method": "GET",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"data": null,
"dataMode": "params",
"name": "Zone Maps - Show All",
"description": "<div id=\"zone-maps-get-all\"></div>\nThis method is used to retrieve all of the Zone Maps\n\n### HTTP Request\n`GET http://BASE_URL/itemsense/configuration/v1/zoneMaps/show`\n",
"descriptionFormat": "html",
"time": 1463421454711,
"version": 2,
"responses": [],
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"folder": "59f1fa56-216e-f328-a8fa-3d7fff389f26"
},
{
"id": "52bda3c3-0060-cdb2-3cad-4ab5967a8393",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/facilities/show/{{facilityName}}",
"pathVariables": {},
"preRequestScript": null,
"method": "GET",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"data": null,
"dataMode": "params",
"name": "Facility - Show ",
"description": "<div id=\"facilities-get\"></div>\nThis method is used to retrieve a specific Facility.\n\n### HTTP Request\n`GET http://BASE_URL/itemsense/configuration/v1/facilities/show/{FACILITY_NAME}`\n\nParameter | Type | Description\n--------- | ------- | -----------\nFACILITY_NAME | String | Name of the Facility to be retrieved\n\n",
"descriptionFormat": "html",
"time": 1463004553319,
"version": 2,
"responses": [],
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"folder": "a8e41d9b-85d8-66c1-1a0f-dd536550e13c"
},
{
"id": "5e9f5c47-e5dc-ef54-fbc6-eb42e9ca63a7",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/facilities/destroy/{FACILITY_NAME}",
"preRequestScript": null,
"pathVariables": {},
"method": "DELETE",
"data": [],
"dataMode": "raw",
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"time": 1464022725462,
"name": "Facility - Delete",
"description": "<div id=\"facilities-delete\"></div>\nThis method is used to delete a Facility.\n\n### HTTP Request\n`DELETE http://BASE_URL/itemsense/configuration/v1/facilities/destroy/{FACILITY_NAME}`\n\n### Parameters\nParameter | Type | Description\n--------- | ------- | -----------\nFACILITY_NAME | String | Name of the Facility to be deleted\n",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"rawModeData": ""
},
{
"id": "651f6456-c9d8-01b6-658e-273df70ec30a",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/readerDefinitions/show/{READER_DEFINITION_NAME}",
"pathVariables": {},
"preRequestScript": null,
"method": "GET",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"data": null,
"dataMode": "params",
"name": "Reader Definition - Show",
"description": "<div id=\"reader-definitions-get\"></div>\n\nThis method is used to retrieve a specific Reader Definition.\n\n### HTTP Request\n`GET http://BASE_URL/itemsense/configuration/v1/readerDefinitions/show/{READER_DEFINITION_NAME}`\n",
"descriptionFormat": "html",
"time": 1463499915457,
"version": 2,
"responses": [],
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"folder": "708517f7-b1b4-cdd6-3b11-e1fbf4b3a1dd"
},
{
"id": "653396db-2b10-4ea8-8c3c-5d805ccde7d3",
"headers": "Authorization: Basic YWRtaW46aW1waW5qc3Zs\n",
"url": "http://{{BASE_URL}}/itemsense/data/v1/items/show/history",
"pathVariables": {},
"preRequestScript": "",
"method": "GET",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"data": [],
"dataMode": "raw",
"name": "Items - Show History",
"description": "<div id=\"items-history\"></div>\nThis method is used to query the history of Items. A historic record for an item is created each time an Item transitions from one zone to another. The query parameters below are all optional.\n\n\n###HTTP Request\n`GET http://BASE_URL/itemsense/data/v1/items/show/history`\n\n\n### Parameters\nParameter | Type | Description\n--------- | ------- | -----------\nepcPrefix <br/><small>(optional)</small>| String | A hexadecimal string representing an EPC prefix of an item. Only the items with EPCs that start with this prefix will be returned.\nfromZone <br/><small>(optional)</small>| String | A string zone identifier, such as \"Men's Department\". This parameter identifies the zone that the item moved out of.\ntoZone <br/><small>(optional)</small>| String | A string zone identifier, such as \"Men's Department\". This parameter identifies the zone that the item moved into.\nfromTime <br/><small>(optional)</small>| String | Events which occurred on or after this time will be returned. Represented in [ISO 8601 format.](http://www.iso.org/iso/home/standards/iso8601.htm).\ntoTime <br/><small>(optional)</small>| String | Events which occurred before this time will be returned. Represented in [ISO 8601 format.](http://www.iso.org/iso/home/standards/iso8601.htm).\nzoneTransitionsOnly <br/><small>(optional)</small>| Boolean | This flag determines whether to return only history entries for zone transitions (set to true), or all records (set to false).\nminDistanceMoved <br/><small>(optional)</small> | Double | The minimum distance a tag had to move in order to order to be returned.\nepcFormat <br/><small>(optional)</small>| Enum | Format of the EPC string. Defaults to raw hex strings if this parameter is not specified. All the options except DEFAULT and RAW will return only results with valid encoding. DEFAULT option gives the default format for the encoding. If the EPC is not encoded correctly, then the RAW format is used. Options: <ul><li>PURE_ID</li><li>TAG</li><li>RAW</li><li>UPC12</li><li>DEFAULT</li></ul>\npageSize <br/><small>(optional)</small>| Integer | The number of records to return per query (max of 1000)\npageMarker <br/><small>(optional)</small>| String | A string indicating which page of results to return. A new marker is returned after each query and can be used to fetch subsequent pages. When using a page marker, the other query parameters must be the same as those used in the previous query.\nalwaysIncludePageMarker <br/><small>(optional)</small>| Boolean | A flag to always include a page marker, even if there are no additional pages of records available. When paired with the nextPageMarker field, this flag is beneficial for re-querying the same filtered data set at a later time, and expecting to only see the newest records. The default value for this flag is false. If enabled, the response will contain a “moreHistoryAvailable” key with a boolean value indicating whether there are additional pages of records available.\n\n\n<aside class=\"info\">Make sure each of the query parameters has been URL encoded. Some properties, such as pageMarker, may not work as expected without being encoded.</aside>\n",
"descriptionFormat": "html",
"time": 1463505863031,
"version": 2,
"responses": [],
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"folder": "f8550f3e-e60b-4a00-a9b8-12a650dc6f1e",
"rawModeData": ""
},
{
"id": "6814fc1f-b77a-fb28-6636-aea3a5f939ac",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/control/v1/currentZoneMap/select/{ZONE_MAP_NAME}",
"pathVariables": {},
"preRequestScript": null,
"method": "POST",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"data": null,
"dataMode": "params",
"name": "Current Zone Map - Update",
"description": "<div id=\"zone-maps-update-current\"></div>\n\nThis method is used to update the Current selected Zone Map.\n\n`POST http://BASE_URL/itemsense/control/v1/currentZoneMap/select/{ZONE_MAP_NAME}`\n\nParameter | Type | Description\n--------- | ------- | -----------\nZONE_MAP_NAME | String | Name of the Zone Map to be retrieved\n\n<aside class=\"success\">\nIf a zone map is modified that has been defined and applied as the currentZoneMap, then it will be re-applied with the modifications.\n\n</aside>\n",
"descriptionFormat": "html",
"time": 1463430210479,
"version": 2,
"responses": [],
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"folder": "59f1fa56-216e-f328-a8fa-3d7fff389f26"
},
{
"folder": "b793ccd8-d11f-081f-2cc2-c040ffb84cc0",
"id": "6bde2b9c-2bab-0bbd-3d1b-39e7b9635d17",
"name": "Token - Revoke All For User",
"dataMode": "raw",
"data": [],
"rawModeData": "",
"descriptionFormat": null,
"description": "<div id=\"revoke-token\"></div>\nThis method is used to revoke all tokens for a specific user\n\n### HTTP Request\n`PUT http://{BASE_URL}/itemsense/authentication/v1/revokeToken/{USER_NAME}`\n",
"headers": "Authorization: Basic YWRtaW46aW1waW5qc3Zs\n",
"method": "PUT",
"pathVariables": null,
"url": "http://{{BASE_URL}}/itemsense/authentication/v1/revokeToken/{USER_NAME}",
"preRequestScript": "",
"tests": "",
"currentHelper": null,
"helperAttributes": null,
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43"
},
{
"id": "6ec5ef94-21dc-4300-1c00-3d3f3e8927f3",
"headers": "Authorization: Basic YWRtaW46aW1waW5qc3Zs\n",
"url": "http://{{BASE_URL}}/itemsense/data/v1/items/show",
"pathVariables": {},
"preRequestScript": "",
"method": "GET",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"data": [],
"dataMode": "raw",
"name": "Items - Show",
"description": "<div id=\"items-get\"></div>\nThis method is used to query Items. The query parameters below are all optional.\n\n\n\n### HTTP Request\n`GET http://BASE_URL/itemsense/data/v1/items/show`\n\n\n\n### Parameters\nParameter | Type | Description\n--------- | ------- | -----------\nepcPrefix <br/><small>(optional)</small>| String | A hexadecimal string representing an EPC prefix of an item. Only the items with EPCs that start with this prefix will be returned\nzoneNames <br/><small>(optional)</small>| String | A comma-separated list of zone names. Only items in these zones will be returned\nfacility <br/><small>(optional)</small>| String | A string indicating the name of a facility. Only items in this facility will be returned\npresenceConfidence <br/><small>(optional)</small>| Enum | A confidence level Only items with this presence confidence level will be returned. Options: <ul><li>HIGH</li><li>LOW</li>\nfromTime <br/><small>(optional)</small>| String | Items which were last updated on or after this time will be returned. Represented in [ISO 8601 format.](http://www.iso.org/iso/home/standards/iso8601.htm)\ntoTime <br/><small>(optional)</small>| String | Items which were updated before this time will be returned. Represented in [ISO 8601 format.](http://www.iso.org/iso/home/standards/iso8601.htm)\nepcFormat <br/><small>(optional)</small>| Enum | Format of the EPC string. Defaults to raw hex strings if this parameter is not specified. All the options except DEFAULT and RAW will return only results with valid encoding. DEFAULT option gives the default format for the encoding. If the EPC is not encoded correctly, then the RAW format is used. Options: <ul><li>PURE_ID</li><li>TAG</li><li>RAW</li><li>UPC12</li><li>DEFAULT</li></ul>\npageMarker <br/><small>(optional)</small>| String | A string indicating which page of results to return. A new marker is returned after each query and can be used to fetch subsequent pages. When using a page marker, the other query parameters must be the same as those used in the previous query.\npageSize <br/><small>(optional)</small>| Integer | The number of records to return per query (Max of 1000)\n\n<aside class=\"info\">Make sure each of the query parameters has been URL encoded. Some properties, such as pageMarker, may not work as expected without being encoded.</aside>\n\n",
"descriptionFormat": "html",
"time": 1463505843220,
"version": 2,
"responses": [],
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"folder": "f8550f3e-e60b-4a00-a9b8-12a650dc6f1e",
"rawModeData": ""
},
{
"id": "6f67ae1c-b847-c50a-66e2-7a0a32f4bc33",
"headers": "Authorization: Basic YWRtaW46aW1waW5qc3Zs\n",
"url": "http://{{BASE_URL}}/itemsense/control/v1/jobs/show/{JOB_ID}",
"pathVariables": {},
"preRequestScript": "",
"method": "GET",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"data": [],
"dataMode": "raw",
"name": "Job - Show",
"description": "<div id=\"jobs-get\"></div>\nThis method retrieves a specific Job and its status\n\n### HTTP Request\n`GET http://BASE_URL/itemsense/control/v1/jobs/show/{JOB_ID}`\n\n### Parameters\nParameter | Type | Description\n--------- | ------- | -----------\nJOB_ID | String | The unique identifier for the job that you wish to retrieve\n",
"descriptionFormat": "html",
"time": 1463501560360,
"version": 2,
"responses": [],
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"folder": "6b1a63ca-f2c3-0b75-1510-da7314f9f1c7",
"rawModeData": ""
},
{
"id": "731d6399-9957-a1fc-a8da-1aa4cb7c7453",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/readerConfigurations/create",
"preRequestScript": null,
"pathVariables": {},
"method": "POST",
"data": [],
"dataMode": "raw",
"version": 2,
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"time": 1464023128155,
"name": "Reader Configuration - Create",
"description": "<div id=\"reader-configurations-create\"></div>\n\n\nThis method is used to create a Reader Configuration\n\n### HTTP Request\n`POST http://BASE_URL/itemsense/configuration/v1/readerConfigurations/create`\n\n### Request Body\nProperty | Type | Description\n--------- | ------- | -----------\nname | String | The name associated to a specific Reader Configuration. This name will be used as the identifier for retrieving, updating, and deleting a Reader Configuration\noperation | Enum | The operation mode for the current reader configuration. This allows recipes to be defined that explicitly include reader configurations where the reader is told to “Do Nothing”. The options are: <ul> <li>NORMAL</li><li>DO_NOTHING</li></ul>\nconfiguration | [Reader Configuration Details](http://developer.impinj.com/itemsense/docs/api/#reader-configuration-details) | The details of the Reader Configuration\n",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"responses": [],
"rawModeData": "{\n \"name\": \"\",\n \"operation\": \"Operation\",\n \"configuration\": {\n \"readerMode\": \"ReaderMode\",\n \"searchMode\": \"SearchMode\",\n \"session\": 0,\n \"tagPopulationEstimate\": 0,\n \"transmitPowerInDbm\": 0,\n \"antennaDwellTimeInMs\": 0,\n \"tagNak\": false,\n \"polarization\": false,\n \"antennas\": [\n \"int\"\n ],\n \"filter\": {\n \"memoryBank\": 0,\n \"pointer\": 0,\n \"tagMask\": \"\"\n },\n \"channelConfig\": {\n \"channelIndex\": 0,\n \"txFrequenciesInMhz\": [\n 0\n ]\n },\n \"reportConfig\": {\n \"tidIncluded\": false,\n \"peakRssiIncluded\": false,\n \"phaseAngleIncluded\": false,\n \"dopplerFrequencyIncluded\": false,\n \"channelIncluded\": false\n }\n }\n}"
},
{
"id": "7e570562-68c9-6779-d6ec-f1c477044eab",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/zoneMaps/createOrReplace",
"preRequestScript": null,
"pathVariables": {},
"method": "PUT",
"data": [],
"dataMode": "raw",
"version": 2,
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"time": 1464023325448,
"name": "Zone Maps - Create or Replace",
"description": "<div id=\"zone-maps-create-or-replace\"></div>\nThis method is used to create or replace a Zone Map.\n\n### HTTP Request\n`PUT http://BASE_URL/itemsense/configuration/v1/zoneMaps/createOrReplace`\n\n### Request Body\n\nProperty | Type | Description\n--------- | ------- | -----------\nname | String | The name associated to a specific Zone Map. This name will be used as the identifier for retrieving, updating, and deleting a Zone Map. It will also be used for setting the Current Zone Map.\nfacility<br/><small>(optional, <b>except</b> if using multiple facilities)</small> | String | The name of the facility which the Zone Map will be associated with.\nzones | Array of [Zones](http://developer.impinj.com/itemsense/docs/api/#zones) | A collection of zones that define the geographic coordinates for each zone in the monitored space. Zone definitions cannot overlap.",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"responses": [],
"rawModeData": "{\n \"name\": \"\",\n \"facility\": \"\",\n \"zones\": [\n {\n \"name\": \"\",\n \"floor\": \"\",\n \"points\": [\n {\n \"x\": 0,\n \"y\": 0,\n \"z\": 0\n }\n ]\n }\n ]\n}"
},
{
"id": "80d9d685-9ad5-30dc-05dd-b123d9b86df9",
"headers": "Authorization: Basic YWRtaW46aW1waW5qc3Zs\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/users/destroy/{USER_NAME}",
"preRequestScript": "",
"pathVariables": {},
"method": "DELETE",
"data": [],
"dataMode": "raw",
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1463506040075,
"name": "User - Delete",
"description": "<div id=\"users-delete\"></div>\nThis method is used to delete a user.\n\n### Http Request\n`DELETE http://BASE_URL/itemsense/configuration/v1/destroy/{USER_NAME}`\n\n### Parameters\n\nParameter | Type | Description\n--------- | ------- | -----------\nUSER_NAME | String | The username of the user to delete\n",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"folder": "66a9927a-8bf4-81a0-f1dd-5c8a3a0db76b",
"rawModeData": ""
},
{
"folder": "b793ccd8-d11f-081f-2cc2-c040ffb84cc0",
"id": "80da84b2-65ec-08d6-3ecd-47c5cbab95d1",
"name": "Token - Get",
"dataMode": "params",
"data": [],
"rawModeData": null,
"descriptionFormat": null,
"description": "<div id=\"get-a-token\"></div>\nIn order to begin using the token-based authentication mechanism, you must first get a token. This call requires you supply your Basic Auth credentials in order to validate the account.\n\n### HTTP Request\n\n`GET http://{BASE_URL}/itemsense/authentication/v1/token`\n",
"headers": "Authorization: Basic YWRtaW46aW1waW5qc3Zs\n",
"method": "GET",
"pathVariables": null,
"url": "http://{{BASE_URL}}/itemsense/authentication/v1/token",
"preRequestScript": "",
"tests": "",
"currentHelper": null,
"helperAttributes": null,
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43"
},
{
"id": "83a4829b-61a6-6455-f91d-cbee5007ca38",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/readerDefinitions/createOrReplace",
"preRequestScript": null,
"pathVariables": {},
"method": "PUT",
"data": [],
"dataMode": "raw",
"version": 2,
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"time": 1464023194737,
"name": "Reader Definition - Create or Replace",
"description": "This method is used to create or replace a reader definition.\n\n### HTTP Request\n`PUT http://BASE_URL/itemsense/configuration/v1/readerDefinitions/createOrReplace`\n\n### Request Body\nParameter | Type | Description\n--------- | ------- | -----------\nname | String | The name associated to a specific Reader Definition. This name will be used as the identifier for retrieving, updating, and deleting a Reader Definition. If not provided, will default to the address.\naddress | String | The hostname or IP address of the target RAIN RFID Reader\nfacility<br/><small>(optional, <b>except</b> if using multiple facilities)</small> | String | The name of the facility where the reader is located\nType | Enum | The specific type of RFID reader that this definition is for. The options are: <ul><li>'XARRAY'</li> <li>'SPEEDWAY'</li></ul>\nplacement <br/><small>(optional)</small>| [Placement Configuration](http://developer.impinj.com/itemsense/docs/api/#placement-configuration) | The Placement Configuration for the reader (primarily used by xArray readers)\nreaderZone <br/><small>(optional)</small>| string | Used only for Spot Readers (not xArray's), this is the name for the zone where a Spot Reader is configured. This zone name will be designated for each of the Spot Reader's antennas, if the antennaZone field is not utilized.\nantennaZones <br/><small>(optional)</small> | Map<int, string> | Used only for Spot Readers (not xArray's), this field designates a zone name for each individual antenna attached to a Spot Reader.\n",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"responses": [],
"rawModeData": "{\n \"readerZone\": \"\",\n \"antennaZones\": \"Map[int,string]\",\n \"serialNumber\": \"\",\n \"facility\": \"\",\n \"agentIdentifier\": \"\",\n \"connectionType\": \"ConnectionType\",\n \"placement\": {\n \"x\": 0,\n \"y\": 0,\n \"z\": 0,\n \"yaw\": 0,\n \"pitch\": 0,\n \"roll\": 0,\n \"floor\": \"\"\n },\n \"address\": \"\",\n \"name\": \"\",\n \"type\": \"ReaderType\"\n}"
},
{
"id": "88d7e30b-2763-22d3-83e0-dda1f0b53731",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/recipes/show",
"pathVariables": {},
"preRequestScript": null,
"method": "GET",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"data": null,
"dataMode": "params",
"name": "Recipes - Show All",
"description": "<div id=\"recipes-get-all\"></div>\n\nThis method is used to retrieve all of the Recipes\n\n`GET http://BASE_URL/itemsense/configuration/v1/recipes/show`\n",
"descriptionFormat": "html",
"time": 1463500664412,
"version": 2,
"responses": [],
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"folder": "9e49329f-e8a0-5249-e7c7-41902f599933"
},
{
"id": "94400a39-06ac-d07f-7cc0-3e856e89677a",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/zoneMaps/destroy",
"pathVariables": {},
"preRequestScript": null,
"method": "DELETE",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"data": null,
"dataMode": "params",
"name": "Zone Maps - Delete",
"description": "<div id=\"zone-maps-delete\"></div>\nThis method is used to delete a Zone Map.\n\n### HTTP Request\n`DELETE http://BASE_URL/itemsense/configuration/v1/zoneMaps/destroy/{ZONE_MAP_NAME}`\n\n### Parameters\nParameter | Type | Description\n--------- | ------- | -----------\nZONE_MAP_NAME | String | Name of the Zone Map to be deleted\n",
"descriptionFormat": "html",
"time": 1463421884464,
"version": 2,
"responses": [],
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"folder": "59f1fa56-216e-f328-a8fa-3d7fff389f26"
},
{
"folder": "66a9927a-8bf4-81a0-f1dd-5c8a3a0db76b",
"id": "aee4fd06-8e49-c66f-29fb-ba475badc474",
"name": "User - Create or Replace",
"dataMode": "raw",
"data": [],
"rawModeData": "{\n \"name\": \"\",\n \"password\": \"\",\n \"roles\": [\n \"\"\n ]\n}",
"descriptionFormat": null,
"description": "<div id=\"users-create-or-replace\"></div>\nThis method is used to create a new user or replace an existing one.\n\n### Http Request\n`PUT http://BASE_URL/itemsense/configuration/v1/users/createOrReplace`\n\n### Request Body\n\n\nParameter | Type | Description\n--------- | ------- | -----------\nname | String | Username of the user.\npassword <br/><small>(optional)</small> | String | Password for the user. Optional during updates.\nroles | Array | List of roles for the user.\n",
"headers": "Authorization: Basic YWRtaW46aW1waW5qc3Zs\n",
"method": "PUT",
"pathVariables": null,
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/users/createOrReplace",
"preRequestScript": "",
"tests": "",
"currentHelper": null,
"helperAttributes": null,
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43"
},
{
"id": "b02d7b80-9bfd-8d05-8fc6-28abd71aa85f",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/recipes/createOrReplace",
"preRequestScript": null,
"pathVariables": {},
"method": "PUT",
"data": [],
"dataMode": "raw",
"version": 2,
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"time": 1464023234137,
"name": "Recipe - Create or Replace",
"description": "<div id=\"recipes-create-or-replace\"></div>\nThis method is used to create or replace a Recipe.\n\n\n### HTTP Request\n`PUT http://BASE_URL/itemsense/configuration/v1/recipes/createOrReplace`\n\n### Request Body\nParameter | Type | Description\n--------- | ------- | -----------\nname | String | The name associated to a specific Recipe. This name will be used as the identifier for retrieving, updating, and deleting a Recipe.\nreaderConfigurationName | String | The name of a ReaderConfiguration entry for the recipe to use for all readers defined by the readerDefinitions API, or to identify the default ReaderConfiguration to use if a readerConfigurations list is not defined.\nreaderConfigurations | Ordered Key:Value List | A list of reader hostnames (Key) and the readerConfigurationName (Value) to use with each reader. E.g.: <pre class=\"json table-code\">{<br/> \"xarray-11-22-33.impinj.com\":\"Example_ReaderConfiguration\",<br/> \"xarray-44-55-66.impinj.com\":\"Another_ReaderConfiguration\" <br/>} </pre>\npresencePipelineEnabled <br/><small>(optional)</small>| Boolean | Flag used to enable or disable ItemSense's ability to detect the absence of tags. This should be set to true if you are using a readerConfiguration that configures the readers to use the DUAL_TARGET search mode and false if the SINGLE_TARGET search mode is used.\nlocationReportingEnabled <br/><small>(optional)</small>| Boolean | Flag used to enable or disable ItemSense's location based algorithm, which is used for calculating an RFID tag's location. By default location reporting is enabled, but should be disabled when using the GATEWAY zone model.\nzoneModel <br/><small>(optional)</small>| Enum | Declares whether to use the geographically-declared zone map or the zones declared by antennas for Gateway Readers. If not specified, defaults to 'GEOGRAPHIC'. The Options are:<ul><li>GEOGRAPHIC : Uses zones declared by the current Zone Map</li><li>GATEWAY: Uses the zones declared by antennas for Spot Readers</li>\nminimumMovementInMeters <br/><small>(optional)</small>| Number | Minimum distance (in meters) that a tag must move before it is updated in the Item's database\nlocationUpdateIntervalInSeconds <br/><small>(optional)</small> | Number | Minimum amount of time that has past before persisting an update to the Item's database\nhistoryWindowSizeInCycles <br/><small>(optional)</small> | Number | The number of cycles worth of data to cache\ncomputeWindowSizeInCycles <br/><small>(optional)</small>| Number | The frequency of calculation updates, expressed in cycle counts\ncomputeWindowTimeInSeconds <br/><small>(optional)</small>| Number | The frequency of calculation updates, expressed in time\nlocationAggregationModel | Enum | The mode in which to aggregate location-based data <br/> Options are: <ul><li>BY_TIME</li><li>BY_CYCLES</li></ul>\n\n",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"responses": [],
"rawModeData": "{\n \"name\": \"\",\n \"readerConfigurationName\": \"\",\n \"readerConfigurations\": \"Map[string,string]\",\n \"presencePipelineEnabled\": false,\n \"locationReportingEnabled\": false,\n \"zoneModel\": \"ZoneModel\",\n \"minimumMovementInMeters\": 0,\n \"locationUpdateIntervalInSeconds\": 0,\n \"historyWindowSizeInCycles\": 0,\n \"computeWindowSizeInCycles\": 0,\n \"computeWindowTimeInSeconds\": 0,\n \"agentComputeWindow\": 0,\n \"agentUpdateInterval\": 0,\n \"locationAggegationModel\": \"LocationAggegationModel\"\n}"
},
{
"id": "c3ceed74-6047-f514-686d-949e79b3f17e",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/facilities/show",
"preRequestScript": null,
"pathVariables": {},
"method": "GET",
"data": null,
"dataMode": "params",
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"time": 1463004528122,
"name": "Facility - Show All",
"description": "<div id=\"facilities-get-all\"></div>\nThis method is used to retrieve all of the facilities\n\n### HTTP Request\n`GET http://BASE_URL/itemsense/configuration/v1/facilities/show`\n",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"responses": [],
"folder": "a8e41d9b-85d8-66c1-1a0f-dd536550e13c"
},
{
"id": "c5c3e580-11e3-6985-a5af-c0923cda05bf",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/facilities/create",
"preRequestScript": null,
"pathVariables": {},
"method": "POST",
"data": [],
"dataMode": "raw",
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"time": 1464022695411,
"name": "Facility - Create",
"description": "## Create\n<div id=\"facilities-create\"></div>\nThis method is used to create a new Facility\n\n### HTTP Request\n`POST http://BASE_URL/itemsense/configuration/v1/facilities/create`\n\n### Request Body\n\nProperty | Type | Description\n--------- | ------- | -----------\nname | String | The name associated to a Facility. This name will be used as the identifier for retrieving, updating, and deleting a Facility. It will also be used as the primary identifier for a Facility in other API calls, where required.\n",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"rawModeData": "{\n \"name\": \"\"\n}"
},
{
"id": "c9e68900-79a5-0701-6a72-d66ef6f89088",
"headers": "Authorization: Basic YWRtaW46aW1waW5qc3Zs\n",
"url": "http://{{BASE_URL}}/itemsense/control/v1/jobs/start",
"preRequestScript": "",
"pathVariables": {},
"method": "POST",
"data": [],
"dataMode": "raw",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1464022867863,
"name": "Job - Start",
"description": "<div id=\"jobs-start\"></div>\n\nThis method is used to start a job.\n\n### HTTP Request\n`POST http://BASE_URL/itemsense/control/v1/jobs/start`\n\n### Request Body\nProperty | Type | Description\n--------- | ------- | -----------\nrecipeName | String | The name of the recipe that will be used for the monitoring session of this job\nfacility<br/><small>(optional, <b>except</b> if using multiple facilities)</small> | String | The name of the facility which the job will be run in\ndurationSeconds | Integer | The number of seconds for which ItemSense should execute this job\nplaybackLoggingEnabled * <br/><small>(optional)</small>| Boolean | When enabled, this flag creates a log file of tag reports received from the RFID reader\npresenceLoggingEnabled * <br/><small>(optional)</small>| Boolean | When enabled, this flag creates a log file of tag-based presence calculation data\nstartDelay <br/><small>(optional)</small> | String | An ISO 8601 duration for which to delay the job's start. If not specified, defaults to 3 minutes\nreportToDatabaseEnabled <br/><small>(optional)</small> | Boolean | Flag for determining if the job should relay tags read into the Items database. Defaults to true\nreportToMessageQueueEnabled <br/><small>(optional)</small> | Boolean | Flag for determining if the job should report configured queue events. Defaults to true\nreportToFileEnabled * <br/><small>(optional)</small>| Boolean | Flag used logging tag movement to a file. Defaults to false\n\n<aside class=\"info\">* These properties should only be used when debugging</aside>\n\n",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"responses": [],
"rawModeData": "{\n \"recipeName\": \"\",\n \"durationSeconds\": 0,\n \"playbackLoggingEnabled\": false,\n \"presenceLoggingEnabled\": false,\n \"startDelay\": \"\",\n \"reportToDatabaseEnabled\": false,\n \"reportToMessageQueueEnabled\": false,\n \"reportToFileEnabled\": false,\n \"facility\": \"\"\n}"
},
{
"id": "caa5321e-7897-22f4-71e9-f43a63ab5911",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/recipes/create",
"preRequestScript": null,
"pathVariables": {},
"method": "POST",
"data": [],
"dataMode": "raw",
"version": 2,
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"time": 1464023227207,
"name": "Recipe - Create",
"description": "This method is used to create a Recipe.\n\n\n### HTTP Request\n`POST http://BASE_URL/itemsense/configuration/v1/recipes/create`\n\n### Request Body\nParameter | Type | Description\n--------- | ------- | -----------\nname | String | The name associated to a specific Recipe. This name will be used as the identifier for retrieving, updating, and deleting a Recipe.\nreaderConfigurationName | String | The name of a ReaderConfiguration entry for the recipe to use for all readers defined by the readerDefinitions API, or to identify the default ReaderConfiguration to use if a readerConfigurations list is not defined.\nreaderConfigurations | Ordered Key Value List | A list of reader hostnames (Key) and the readerConfigurationName (Value) to use with each reader.<br/> E.g. <pre class=\"json\">{<br/> \"xarray-11-22-33.impinj.com\":\"Example_ReaderConfiguration\",<br/> \"xarray-44-55-66.impinj.com\":\"Another_ReaderConfiguration\" <br/>} </pre>\npresencePipelineEnabled <br/><small>(optional)</small>| Boolean | Flag used to enable or disable ItemSense's ability to detect the absence of tags. This should be set to true if you are using a readerConfiguration that configures the readers to use the DUAL_TARGET search mode and false if the SINGLE_TARGET search mode is used.\nlocationReportingEnabled <br/><small>(optional)</small>| Boolean | Flag used to enable or disable ItemSense's location based algorithm, which is used for calculating an RFID tag's location. By default location reporting is enabled, but should be disabled when using the GATEWAY zone model.\nzoneModel <br/><small>(optional)</small>| Enum | Declares whether to use the geographically-declared zone map or the zones declared by antennas for Gateway Readers. If not specified, defaults to 'GEOGRAPHIC'. The Options are:<ul><li>GEOGRAPHIC : Uses zones declared by the current Zone Map</li><li>GATEWAY: Uses the zones declared by antennas for Spot Readers</li>\nminimumMovementInMeters <br/><small>(optional)</small>| Number | Minimum distance (in meters) that a tag must move before it is updated in the Item's database\nlocationUpdateIntervalInSeconds <br/><small>(optional)</small> | Number | Minimum amount of time that has past before persisting an update to the Item's database\nhistoryWindowSizeInCycles <br/><small>(optional)</small> | Number | The number of cycles worth of data to cache\ncomputeWindowSizeInCycles <br/><small>(optional)</small>| Number | The frequency of calculation updates, expressed in cycle counts\ncomputeWindowTimeInSeconds <br/><small>(optional)</small>| Number | The frequency of calculation updates, expressed in time\nlocationAggregationModel | Enum | The mode in which to aggregate location-based data<br/> Options are: <ul><li>BY_TIME</li><li>BY_CYCLES</li></ul>\n\n",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"responses": [],
"rawModeData": "{\n \"name\": \"\",\n \"readerConfigurationName\": \"\",\n \"readerConfigurations\": \"Map[string,string]\",\n \"presencePipelineEnabled\": false,\n \"locationReportingEnabled\": false,\n \"zoneModel\": \"ZoneModel\",\n \"minimumMovementInMeters\": 0,\n \"locationUpdateIntervalInSeconds\": 0,\n \"historyWindowSizeInCycles\": 0,\n \"computeWindowSizeInCycles\": 0,\n \"computeWindowTimeInSeconds\": 0,\n \"agentComputeWindow\": 0,\n \"agentUpdateInterval\": 0,\n \"locationAggegationModel\": \"LocationAggegationModel\"\n}"
},
{
"id": "d1135d48-550f-f1d1-2094-068785cd61fb",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/readerDefinitions/destroy/{readerName}",
"pathVariables": {},
"preRequestScript": null,
"method": "DELETE",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"data": null,
"dataMode": "params",
"name": "Reader Definition - Delete",
"description": "<div id=\"reader-definitions-delete\"></div>\nThis method is used to delete a Reader Definition.\n\n### HTTP Request\n`DELETE http://BASE_URL/itemsense/configuration/v1/readerDefinitions/destroy/{READER_DEFINITION_NAME}`\n\n",
"descriptionFormat": "html",
"time": 1463498912973,
"version": 2,
"responses": [],
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"folder": "708517f7-b1b4-cdd6-3b11-e1fbf4b3a1dd"
},
{
"id": "d384ca3b-a6af-3dcb-1c9b-2978874c59aa",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/recipes/show/{recipeName}",
"pathVariables": {},
"preRequestScript": null,
"method": "GET",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"data": null,
"dataMode": "params",
"name": "Recipe - Show",
"description": "This method is used to retrieve a specific Recipe\n\n`GET http://BASE_URL/itemsense/configuration/v1/recipes/show/{RECIPE_NAME}`\n### Parameters\nParameter | Type | Description\n--------- | ------- | -----------\nRECIPE_NAME | String | The name of the Recipe to be deleted\n",
"descriptionFormat": "html",
"time": 1463500644259,
"version": 2,
"responses": [],
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"folder": "9e49329f-e8a0-5249-e7c7-41902f599933"
},
{
"id": "d9b89992-976f-1b01-ae4a-c80d5b9822af",
"headers": "Authorization: Basic YWRtaW46aW1waW5qc3Zs\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/users/show/{USER_NAME}",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "raw",
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1463506050031,
"name": "User - Get",
"description": "<div id=\"users-get\"></div>\nThis method retrieves a specific user.\n\n### Http Request\n`GET http://BASE_URL/itemsense/configuration/v1/show/{USER_NAME}`\n\n### Parameters\n\nParameter | Type | Description\n--------- | ------- | -----------\nUSER_NAME | String | The username of the user to retrieve\n",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"folder": "66a9927a-8bf4-81a0-f1dd-5c8a3a0db76b",
"rawModeData": ""
},
{
"id": "dd09a9f1-536f-cae4-1d37-d946f81cea4e",
"headers": "Authorization: Basic YWRtaW46aW1waW5qc3Zs\n",
"url": "http://{{BASE_URL}}/itemsense/data/v1/items/queues",
"preRequestScript": "",
"pathVariables": {},
"method": "PUT",
"data": [],
"dataMode": "raw",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1464023024593,
"name": "Message Queue - Configure",
"description": "<div id=\"message-queues-configure\"></div>\nThis method is used to configure a Message Queue\n\nEach parameter in the request body acts as a filtered item for that specific queue. If multiple parameters are present in the request body, queue messages will only be created if all filtered parameters are matched.\n\n### HTTP Request\n`PUT http://BASE_URL/itemsense/data/v1/items/queues`\n\n### Request Body\nProperty | Type | Description\n--------- | ------- | -----------\nfromZone <br/><small>(optional)</small> | String | The name of the zone to monitor for tag exit events\ntoZone <br/><small>(optional)</small> | String | The name of the zone to monitor for tag entry events\nepc <br/><small>(optional)</small>| String | The EPC value of a tag, or tags, to generate a queue event for in raw, pure, or tag URI format\ndistance <br/><small>(optional)</small>| Number | The minimum distance a tag must move before a queue event (or message) is created\nzoneTransitionsOnly <br/><small>(optional)</small>| Boolean | Flag to only create queue events for tags that have transitioned between zones. Default value is true.\n",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"responses": [],
"rawModeData": "{\n \"distance\": ,\n \"fromZone\": ,\n \"toZone\": \"\",\n \"epc\": \"\",\n \"zoneTransitionsOnly\": \n}"
},
{
"folder": "66a9927a-8bf4-81a0-f1dd-5c8a3a0db76b",
"id": "e0987de2-c710-e2ec-8ab1-39b990618a88",
"name": "User - Create",
"dataMode": "raw",
"data": [],
"rawModeData": "{\n \"name\": \"\",\n \"password\": \"\",\n \"roles\": [\n \"\"\n ]\n}",
"descriptionFormat": null,
"description": "\nThis method creates a user.\n\n### HTTP Request\n\n`POST http://BASE_URL/itemsense/configuration/v1/users/create`\n\n### Request Body\n\n\nParameter | Type | Description\n--------- | ------- | -----------\nname | String | Username of the user.\npassword | String | Password for the user.\nroles | Array | List of roles for the user.\n",
"headers": "Authorization: Basic YWRtaW46aW1waW5qc3Zs\n",
"method": "POST",
"pathVariables": null,
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/users/create",
"preRequestScript": "",
"tests": "",
"currentHelper": null,
"helperAttributes": null,
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43"
},
{
"id": "f0c3355a-82b2-a303-8f94-4230b9959f38",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/zoneMaps/create",
"preRequestScript": null,
"pathVariables": {},
"method": "POST",
"data": [],
"dataMode": "raw",
"version": 2,
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"time": 1464023320772,
"name": "Zone Maps - Create",
"description": "<div id=\"zone-maps-create\"></div>\nThis method is used to create a new Zone Map.\n\n### HTTP Request\n`POST http://BASE_URL/itemsense/configuration/v1/zoneMaps/create`\n\n### Request Body\n\nProperty | Type | Description\n--------- | ------- | -----------\nname | String | The name associated to a specific Zone Map. This name will be used as the identifier for retrieving, updating, and deleting a Zone Map. It will also be used for setting the Current Zone Map.\nfacility<br/><small>(optional, <b>except</b> if using multiple facilities)</small> | String | The name of the facility which the Zone Map will be associated with.\nzones | Array of [Zones](http://developer.impinj.com/itemsense/docs/api/#zones) | A collection of zones that define the geographic coordinates for each zone in the monitored space. Zone definitions cannot overlap.\n",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"responses": [],
"rawModeData": "{\n \"name\": \"\",\n \"facility\": \"\",\n \"zones\": [\n {\n \"name\": \"\",\n \"floor\": \"\",\n \"points\": [\n {\n \"x\": 0,\n \"y\": 0,\n \"z\": 0\n }\n ]\n }\n ]\n}"
},
{
"id": "f46ca3c5-03f4-6009-f85c-8b1f58708cbe",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/readerConfigurations/show/{readerConfigurationName}",
"pathVariables": {},
"preRequestScript": null,
"method": "GET",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"data": null,
"dataMode": "params",
"name": "Reader Configuration - Show",
"description": "<div id=\"reader-configurations-get\"></div>\nThis method is used to retrieve a specific Reader Configuration\n\n### HTTP Request\n`GET http://BASE_URL/itemsense/configuration/v1/readerConfigurations/show/{READER_CONFIGURATION_NAME}`\n\n### Parameters\nParameter | Type | Description\n--------- | ------- | -----------\nREADER_CONFIGURATION_NAME | String | The name of the Reader Configuration to be deleted\n",
"descriptionFormat": "html",
"time": 1463500300274,
"version": 2,
"responses": [],
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"folder": "85712c32-0841-b86a-764c-01675b923166"
},
{
"id": "f59b7980-3e59-7c22-6377-1c5813b8b530",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/readerConfigurations/show",
"pathVariables": {},
"preRequestScript": null,
"method": "GET",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"data": null,
"dataMode": "params",
"name": "Reader Configuration - Show All",
"description": "<div id=\"reader-configurations-get-all\"></div>\nThis method is used to retrieve all of the Reader Configurations\n\n### HTTP Request\n`GET http://BASE_URL/itemsense/configuration/v1/readerConfigurations/show`\n",
"descriptionFormat": "html",
"time": 1463500321417,
"version": 2,
"responses": [],
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"folder": "85712c32-0841-b86a-764c-01675b923166"
},
{
"id": "fafff9ef-5df8-e077-b81d-5769abcbae03",
"headers": "Authorization: Basic YWRtaW46YWRtaW5kZWZhdWx0\n",
"url": "http://{{BASE_URL}}/itemsense/configuration/v1/zoneMaps/show/{ZONE_MAP_NAME}",
"pathVariables": {},
"preRequestScript": null,
"method": "GET",
"collectionId": "0102d4fd-00f5-18c7-b0dd-cc1884c22e43",
"data": null,
"dataMode": "params",
"name": "Zone Maps - Show",
"description": "<div id=\"zone-maps-get\"></div>\nThis method is used to retrieve a specific Zone Map.\n\n### HTTP Request\n`GET http://BASE_URL/itemsense/configuration/v1/zoneMaps/show/{ZONE_MAP_NAME}`\n\nParameter | Type | Description\n--------- | ------- | -----------\nZONE_MAP_NAME | String | Name of the Zone Map to be retrieved\n",
"descriptionFormat": "html",
"time": 1463420780535,
"version": 2,
"responses": [],
"tests": null,
"currentHelper": "normal",
"helperAttributes": {},
"folder": "59f1fa56-216e-f328-a8fa-3d7fff389f26"
},
{