forked from Acumatica/Help-and-Training-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
REST.postman_collection.json
657 lines (657 loc) · 111 KB
/
REST.postman_collection.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
{
"info": {
"_postman_id": "501b10bf-3d50-4b84-a839-1de02df7b858",
"name": "MyBIIntegrationREST",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Part 1: Client Application Configuration",
"item": [
{
"name": "Lesson 1.1: Signing In to Acumatica ERP",
"request": {
"method": "POST",
"header": [
{
"key": "Accept",
"type": "text",
"value": "application/json"
},
{
"key": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"name\": \"admin\",\r\n \"password\": \"123\",\r\n \"tenant\": \"MyStore\",\r\n \"branch\": \"MYSTORE\"\r\n}"
},
"url": {
"raw": "http://localhost/MyStoreInstance/entity/auth/login",
"protocol": "http",
"host": [
"localhost"
],
"path": [
"MyStoreInstance",
"entity",
"auth",
"login"
]
}
},
"response": [
{
"name": "Lesson 1.1: Signing in to Acumatica ERP",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Accept",
"type": "text",
"value": "application/json"
},
{
"key": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"name\": \"admin\",\r\n \"password\": \"123\",\r\n \"tenant\": \"MyStore\",\r\n \"branch\": \"MYSTORE\"\r\n}"
},
"url": {
"raw": "http://localhost/MyStoreInstance/entity/auth/login",
"protocol": "http",
"host": [
"localhost"
],
"path": [
"MyStoreInstance",
"entity",
"auth",
"login"
]
}
},
"status": "No Content",
"code": 204,
"_postman_previewlanguage": "plain",
"header": [
{
"key": "Cache-Control",
"value": "private"
},
{
"key": "Set-Cookie",
"value": "ASP.NET_SessionId=nhonb20fipjpji5pvdf3b5vu; path=/; HttpOnly; SameSite=Lax"
},
{
"key": "Set-Cookie",
"value": "UserBranch=82; path=/"
},
{
"key": "Set-Cookie",
"value": "Locale=Culture=en-US&TimeZone=GMTP0300M; expires=Sat, 27-Feb-2021 14:10:10 GMT; path=/"
},
{
"key": "Set-Cookie",
"value": ".ASPXAUTH=4A3B448F0CA8BB26EBF079A9CC3D4B7B7D585D31D9C416449B9AA06CC45944C9351BCDB7FE4FEE38375E55F2BF960952E9F9167AF0FD2F3C316FA822C276841CCAE0A764AF3070A63E403B453926B5F6BA356B4DBB225A567A9118B7C1D15B600636D124B4108DD5AAEBBA4E8EC15DEEBA90304F; path=/; HttpOnly"
},
{
"key": "Set-Cookie",
"value": "ASP.NET_SessionId=nhonb20fipjpji5pvdf3b5vu; path=/; HttpOnly; SameSite=Lax"
},
{
"key": "Set-Cookie",
"value": "UserBranch=82; path=/"
},
{
"key": "Set-Cookie",
"value": "Locale=Culture=en-US&TimeZone=GMTP0300M; expires=Sat, 27-Feb-2021 14:10:10 GMT; path=/"
},
{
"key": "Set-Cookie",
"value": ".ASPXAUTH=4A3B448F0CA8BB26EBF079A9CC3D4B7B7D585D31D9C416449B9AA06CC45944C9351BCDB7FE4FEE38375E55F2BF960952E9F9167AF0FD2F3C316FA822C276841CCAE0A764AF3070A63E403B453926B5F6BA356B4DBB225A567A9118B7C1D15B600636D124B4108DD5AAEBBA4E8EC15DEEBA90304F; path=/; HttpOnly"
},
{
"key": "Set-Cookie",
"value": "requestid=C34018A62898D39D11EB76A9FA8E5CC7; path=/"
},
{
"key": "Set-Cookie",
"value": "requeststat=+st:3693+sc:~/entity/auth/login+start:637497726067192587+tg:; path=/"
},
{
"key": "Date",
"value": "Wed, 24 Feb 2021 14:10:36 GMT"
}
],
"cookie": [],
"body": null
}
]
},
{
"name": "Lesson 1.1: Signing Out from Acumatica ERP",
"request": {
"method": "POST",
"header": [
{
"key": "Accept",
"type": "text",
"value": "application/json"
},
{
"key": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "http://localhost/MyStoreInstance/entity/auth/logout",
"protocol": "http",
"host": [
"localhost"
],
"path": [
"MyStoreInstance",
"entity",
"auth",
"logout"
]
}
},
"response": [
{
"name": "Lesson 1.1: Signing out from Acumatica ERP",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Accept",
"type": "text",
"value": "application/json"
},
{
"key": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "http://localhost/MyStoreInstance/entity/auth/logout",
"protocol": "http",
"host": [
"localhost"
],
"path": [
"MyStoreInstance",
"entity",
"auth",
"logout"
]
}
},
"status": "No Content",
"code": 204,
"_postman_previewlanguage": "plain",
"header": [
{
"key": "Cache-Control",
"value": "private"
},
{
"key": "Set-Cookie",
"value": ".ASPXAUTH=; expires=Mon, 11-Oct-1999 20:00:00 GMT; path=/; HttpOnly"
},
{
"key": "Set-Cookie",
"value": "ASP.NET_SessionId=; expires=Tue, 18-Feb-2020 13:04:44 GMT; path=/"
},
{
"key": "Set-Cookie",
"value": ".ASPXAUTH=; expires=Mon, 11-Oct-1999 20:00:00 GMT; path=/; HttpOnly"
},
{
"key": "Set-Cookie",
"value": "ASP.NET_SessionId=; expires=Tue, 18-Feb-2020 13:04:44 GMT; path=/"
},
{
"key": "Set-Cookie",
"value": "Locale=TimeZone=GMTP0300M&Culture=en-US; path=/"
},
{
"key": "Set-Cookie",
"value": "UserBranch=82; path=/"
},
{
"key": "Set-Cookie",
"value": "requestid=C34018A62898D39D11EB71E9DDD6AB04; path=/"
},
{
"key": "Set-Cookie",
"value": "requeststat=+st:397+sc:~/entity/auth/logout+start:637492502838083972+tg:; path=/"
},
{
"key": "Date",
"value": "Thu, 18 Feb 2021 13:04:44 GMT"
}
],
"cookie": [],
"body": null
}
]
}
]
},
{
"name": "Part 2: Initial Data Retrieval",
"item": [
{
"name": "Lesson 2.1: Retrieving the List of Customers with Contacts",
"request": {
"method": "GET",
"header": [
{
"key": "Accept",
"type": "text",
"value": "application/json"
},
{
"key": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"url": {
"raw": "http://localhost/MyStoreInstance/entity/Default/20.200.001/Customer?$expand=MainContact,MainContact/Address&$select=CustomerID,CustomerName,CustomerClass,MainContact/Email,MainContact/Phone1,MainContact/Address/AddressLine1,MainContact/Address/AddressLine2,MainContact/Address/City,MainContact/Address/State,MainContact/Address/PostalCode",
"protocol": "http",
"host": [
"localhost"
],
"path": [
"MyStoreInstance",
"entity",
"Default",
"20.200.001",
"Customer"
],
"query": [
{
"key": "$expand",
"value": "MainContact,MainContact/Address"
},
{
"key": "$select",
"value": "CustomerID,CustomerName,CustomerClass,MainContact/Email,MainContact/Phone1,MainContact/Address/AddressLine1,MainContact/Address/AddressLine2,MainContact/Address/City,MainContact/Address/State,MainContact/Address/PostalCode"
}
]
}
},
"response": [
{
"name": "Lesson 2.1: Retrieving the List of Customers with Contacts",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Accept",
"type": "text",
"value": "application/json"
},
{
"key": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"url": {
"raw": "http://localhost/MyStoreInstance/entity/Default/20.200.001/Customer?$expand=MainContact,MainContact/Address&$select=CustomerID,CustomerName,CustomerClass,MainContact/Email,MainContact/Phone1,MainContact/Address/AddressLine1,MainContact/Address/AddressLine2,MainContact/Address/City,MainContact/Address/State,MainContact/Address/PostalCode",
"protocol": "http",
"host": [
"localhost"
],
"path": [
"MyStoreInstance",
"entity",
"Default",
"20.200.001",
"Customer"
],
"query": [
{
"key": "$expand",
"value": "MainContact,MainContact/Address"
},
{
"key": "$select",
"value": "CustomerID,CustomerName,CustomerClass,MainContact/Email,MainContact/Phone1,MainContact/Address/AddressLine1,MainContact/Address/AddressLine2,MainContact/Address/City,MainContact/Address/State,MainContact/Address/PostalCode"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Cache-Control",
"value": "private"
},
{
"key": "Content-Type",
"value": "application/json; charset=utf-8"
},
{
"key": "Set-Cookie",
"value": "Locale=TimeZone=GMTP0300M&Culture=en-US; path=/"
},
{
"key": "Set-Cookie",
"value": "UserBranch=82; path=/"
},
{
"key": "Date",
"value": "Thu, 18 Feb 2021 17:22:05 GMT"
},
{
"key": "Content-Length",
"value": "37786"
}
],
"cookie": [],
"body": "[\n {\n \"id\": \"e43d3c1c-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 1,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000001\"\n },\n \"CustomerName\": {\n \"value\": \"Jersey Central Office Equip\"\n },\n \"MainContact\": {\n \"id\": \"853a2ed9-aad8-4486-84f4-7cc676ea3d97\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"e5c9baf2-6e43-450f-80f1-c55823d74d6f\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"1 De Villiers & Harrison St, 11-th Flr.\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Johannesburg\"\n },\n \"PostalCode\": {},\n \"State\": {},\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 283-0414\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"f03d3c1c-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 2,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000002\"\n },\n \"CustomerName\": {\n \"value\": \"Microchip Restaurant\"\n },\n \"MainContact\": {\n \"id\": \"e959012d-3c9b-4c85-88db-0ba7cd516bd5\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"22b673c5-9ce5-4eb6-b888-5fbb25ac21fe\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"1 Kalisa Way\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Paramus\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NJ\"\n },\n \"custom\": {}\n },\n \"Email\": {},\n \"Phone1\": {\n \"value\": \"+1 (777) 459-4255\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"fc3d3c1c-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 3,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000003\"\n },\n \"CustomerName\": {\n \"value\": \"Jevy Computers\"\n },\n \"MainContact\": {\n \"id\": \"5eb74231-bdef-45a6-bba5-bbe2d7547566\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"f38e2250-0906-4cda-a782-84aeab42a57a\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"1000 Pennsylvania Ave\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"San Francisco\"\n },\n \"PostalCode\": {\n \"value\": \"94107-3479\"\n },\n \"State\": {\n \"value\": \"CA\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 380-0089\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"083e3c1c-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 4,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000004\"\n },\n \"CustomerName\": {\n \"value\": \"KRK Consulting Service\"\n },\n \"MainContact\": {\n \"id\": \"43eb5d0d-4d67-46f7-8c9e-86f3d9464ceb\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"c90945a5-b7a2-430e-ba4e-d6d4c25c4a8d\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"1 Penn Plz\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"New York\"\n },\n \"PostalCode\": {\n \"value\": \"10119\"\n },\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 829-6988\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"143e3c1c-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 5,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000005\"\n },\n \"CustomerName\": {\n \"value\": \"Wright Corner\"\n },\n \"MainContact\": {\n \"id\": \"f17e8601-39fd-411e-9e2c-8b9f34fd7792\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"1829be1d-c15e-4987-ae1b-85e2a04bab24\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"1 W 89TH St\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"New York\"\n },\n \"PostalCode\": {\n \"value\": \"10024\"\n },\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 513-9166\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"203e3c1c-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 6,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000006\"\n },\n \"CustomerName\": {\n \"value\": \"NETCAFE NY\"\n },\n \"MainContact\": {\n \"id\": \"c52c637c-1647-4765-8954-8d68c07212d1\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"35d66d04-da42-41fa-8c9a-1d87fd673db0\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"1011 High Ridge Rd\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Stamford\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"CT\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 673-7392\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"2c3e3c1c-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 7,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000007\"\n },\n \"CustomerName\": {\n \"value\": \"Bestype Image\"\n },\n \"MainContact\": {\n \"id\": \"61413d93-3f0a-41b0-a489-691f02dfe81c\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"c4920e4b-a809-44af-9156-e399699b8024\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"105 Cecil St\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Singapore\"\n },\n \"PostalCode\": {},\n \"State\": {},\n \"custom\": {}\n },\n \"Email\": {},\n \"Phone1\": {\n \"value\": \"+1 (777) 966-6886\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"383e3c1c-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 8,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000008\"\n },\n \"CustomerName\": {\n \"value\": \"Digitech Printers\"\n },\n \"MainContact\": {\n \"id\": \"6bc55be7-a39d-4a17-9b41-b860f7901bcf\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"de2030b6-c0e9-4245-9a16-79f76be139a2\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"11 Chiswick Park\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Cape town\"\n },\n \"PostalCode\": {},\n \"State\": {},\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 623-6150\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"443e3c1c-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 9,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000009\"\n },\n \"CustomerName\": {\n \"value\": \"Precision Photos\"\n },\n \"MainContact\": {\n \"id\": \"14d136b7-7c70-4fd3-8004-85f59f5bb830\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"821edaca-86b5-4c56-9622-85977455eae7\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"11 US Air Terminal Ste 1413\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Flushing\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {},\n \"Phone1\": {\n \"value\": \"+1 (777) 302-2756\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"75fce62d-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 10,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000013\"\n },\n \"CustomerName\": {\n \"value\": \"WFAN Radio\"\n },\n \"MainContact\": {\n \"id\": \"b9aa55bd-a73e-4e07-9746-07b9e3c10f34\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"5562d1e8-24db-436e-9188-b48af23ae7a2\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"1188-1210, Wellstock Street\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"London\"\n },\n \"PostalCode\": {},\n \"State\": {},\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 754-7690\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"a5fce62d-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 11,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000017\"\n },\n \"CustomerName\": {\n \"value\": \"New York Cares\"\n },\n \"MainContact\": {\n \"id\": \"e5c7f98a-d1d9-46ff-98f2-b11131276cf0\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"338404ee-40a4-440c-be53-575aac96818b\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"1201 Airport Fwy Ste 170\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Euless\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"TX\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 243-5004\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"dc18f53a-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 12,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000020\"\n },\n \"CustomerName\": {\n \"value\": \"Institute of Culinary Education, The\"\n },\n \"MainContact\": {\n \"id\": \"6a30b22e-4e08-41c0-acd2-2f35f3dd6428\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"c464a81a-5263-4565-af95-583e0af8f993\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"123 any street\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Any City\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"DC\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 961-2433\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"0019f53a-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 13,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000023\"\n },\n \"CustomerName\": {\n \"value\": \"New York International Beauty School Ltd\"\n },\n \"MainContact\": {\n \"id\": \"d701f66c-16f9-47c4-b7db-1af53010ddf7\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"54eea57f-a898-464c-a615-3d1ab575aae1\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"12447, The Green\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Richmond\"\n },\n \"PostalCode\": {},\n \"State\": {},\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 868-7171\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"0c19f53a-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 14,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000024\"\n },\n \"CustomerName\": {\n \"value\": \"Alphabetland School Center\"\n },\n \"MainContact\": {\n \"id\": \"bfff0313-9149-4e54-a5f6-9177cf1ba617\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"2ee46806-2838-4285-a4a6-aa1d6001bb66\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"1255 Bay St\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Staten Island\"\n },\n \"PostalCode\": {\n \"value\": \"10305-3111\"\n },\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 826-9338\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"1819f53a-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 15,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000025\"\n },\n \"CustomerName\": {\n \"value\": \"Winston Personnel\"\n },\n \"MainContact\": {\n \"id\": \"30fbbbb1-8c6b-4f0b-b9b4-8ae7f3b8a166\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"9a4e5eb1-8b4b-45d6-a7e3-12614a1d9c11\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"12603 Kitsap Way\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Bremerton\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"WA\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 554-5530\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"2419f53a-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 16,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000026\"\n },\n \"CustomerName\": {\n \"value\": \"Active Staffing Service\"\n },\n \"MainContact\": {\n \"id\": \"b64e5db6-9ac8-4edd-948a-52b7a55290ca\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"6ecde679-456d-4f6e-befa-5341bb0a4206\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"1300 Flushing Ave\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Brooklyn\"\n },\n \"PostalCode\": {\n \"value\": \"11237-2303\"\n },\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 244-6544\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"183a8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 17,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000027\"\n },\n \"CustomerName\": {\n \"value\": \"Personnel Express\"\n },\n \"MainContact\": {\n \"id\": \"444eb2ce-c9a5-4227-8c58-aa2ded5de7cf\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"2367ab5a-7ff3-482d-add9-4e6e0a9f0ce2\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"1317 3RD Ave Ste 100\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"New York\"\n },\n \"PostalCode\": {\n \"value\": \"10021\"\n },\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 818-9030\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"243a8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 18,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000028\"\n },\n \"CustomerName\": {\n \"value\": \"N R Westport LLC\"\n },\n \"MainContact\": {\n \"id\": \"192166fe-d1af-4a4c-ba5c-4b672124aad4\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"07223ba5-e1d7-4894-8259-a87698d0b771\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"132 Tibbits Ave\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"White Plains\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 345-1352\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"543a8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 19,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000032\"\n },\n \"CustomerName\": {\n \"value\": \"NEP Personnel Unit\"\n },\n \"MainContact\": {\n \"id\": \"4ad81d52-1111-46ab-b858-f901e8f1bd19\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"58cd73fb-8ba5-45ee-9182-18fce94e1aec\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"1441 Broadway\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"New York\"\n },\n \"PostalCode\": {\n \"value\": \"10018\"\n },\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 446-3073\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"783a8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 20,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000035\"\n },\n \"CustomerName\": {\n \"value\": \"Cocciatari Pizza\"\n },\n \"MainContact\": {\n \"id\": \"8accb894-ca12-4a3a-a189-b5a87c9ef8a6\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"3c8132d6-c3a0-4b86-8444-2a268ce03f8f\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"15213 SW Durham Road\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Tigerd\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"OR\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 623-5001\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"843a8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 21,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000036\"\n },\n \"CustomerName\": {\n \"value\": \"Chocolate By Design Incorporated\"\n },\n \"MainContact\": {\n \"id\": \"673bf4f3-7feb-41a1-bd68-651e1c615e22\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"ea107fb9-5df7-4b3f-a89c-de7443ff6263\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"1542 55TH Ave\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"New York\"\n },\n \"PostalCode\": {\n \"value\": \"11219\"\n },\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 737-0034\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"903a8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 22,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000037\"\n },\n \"CustomerName\": {\n \"value\": \"Marlin Office Beverage Service\"\n },\n \"MainContact\": {\n \"id\": \"f6683585-3bb3-4ffe-8ded-4110e3a736bf\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"1fd84fae-9e7b-4496-9a53-8ef97c5f13ee\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"1551 Kittle Rd\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Chappaqua\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (212) 673-3166\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"9c3a8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 23,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000038\"\n },\n \"CustomerName\": {\n \"value\": \"Antun's of Westchester\"\n },\n \"MainContact\": {\n \"id\": \"a1a1261a-84da-4a3f-bc55-8e8253d3b98f\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"92291497-48b8-4d41-94df-ee9433227c53\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"156-534 Broadway\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Fair Lawn\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NJ\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 592-5260\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"a83a8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 24,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000039\"\n },\n \"CustomerName\": {\n \"value\": \"Crabtree Kittle House Inn\"\n },\n \"MainContact\": {\n \"id\": \"912d52cb-1c9a-48b9-b9d1-07facd276a8c\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"e59558b8-bcd7-4866-9160-7f2da7b7428c\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"1604 Broadway\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"New York\"\n },\n \"PostalCode\": {\n \"value\": \"10019\"\n },\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 666-8044\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"d83a8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 25,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000043\"\n },\n \"CustomerName\": {\n \"value\": \"Premiere Dermatology and Surgery\"\n },\n \"MainContact\": {\n \"id\": \"d85940eb-3b92-4626-8c8e-021f0a80eebc\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"685070c8-bb8c-4eaf-8a5c-c448e6bb06c3\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"17575 Newbridge Rd\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"North Bellmore\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {},\n \"Phone1\": {\n \"value\": \"+1 (777) 344-2450\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"e43a8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 26,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000044\"\n },\n \"CustomerName\": {\n \"value\": \"Rich Vision\"\n },\n \"MainContact\": {\n \"id\": \"6a0dfca0-2380-4ff7-b66f-9729b2d95133\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"db350f59-4e93-468f-b25f-e9d090760a13\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"178-01 Hillside Ave Jamaica Estates\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Boston\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 325-3400\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"143b8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 27,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000048\"\n },\n \"CustomerName\": {\n \"value\": \"Safe Credit Union\"\n },\n \"MainContact\": {\n \"id\": \"55a02c69-ad4b-4cff-a04d-568bd762a9a0\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"9876701e-fecb-4143-aacb-ce4baf24f7ae\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"19 W 45th St\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"New york\"\n },\n \"PostalCode\": {\n \"value\": \"10036\"\n },\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 934-7533\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"383b8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 28,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000051\"\n },\n \"CustomerName\": {\n \"value\": \"Brass Key Bar\"\n },\n \"MainContact\": {\n \"id\": \"19ddd272-104c-4d92-a12f-8438abca0094\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"d80418ce-8471-418a-b89a-d5ac7d4e2d4c\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"2030 Ave Of The Americas\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"New York\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 898-0326\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"443b8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 29,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000052\"\n },\n \"CustomerName\": {\n \"value\": \"Streamray Incorporated\"\n },\n \"MainContact\": {\n \"id\": \"18a90e4f-6f2d-47b3-89cb-af61f06fb6a2\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"ea8ad7a5-2373-4f7f-89b2-2904eab3c5fa\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"210 Canal St Ste 312\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"New York\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 307-5243\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"503b8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 30,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000053\"\n },\n \"CustomerName\": {\n \"value\": \"Silver Springs Water\"\n },\n \"MainContact\": {\n \"id\": \"5ff38f83-d291-4aed-a441-107e2223d449\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"2bca7001-6323-405d-be8d-3a3c798238ad\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"212W 23rd St\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"New York\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (702) 897-4854\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"5c3b8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 31,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000054\"\n },\n \"CustomerName\": {\n \"value\": \"Logical Information Solutions\"\n },\n \"MainContact\": {\n \"id\": \"94f3acf8-7c31-4ee3-8194-51ccfe182288\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"34f951a6-f8ad-4ef6-b115-96c1008ce2fe\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"21831 Queens Blvd Ste 610\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Flushing\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 837-2455\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"8c3b8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 32,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000058\"\n },\n \"CustomerName\": {\n \"value\": \"Westin Galleria Houston\"\n },\n \"MainContact\": {\n \"id\": \"f5fa7e7b-df56-477a-aa28-a0f121c89ac2\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"79b816ca-bd21-41ab-be7b-0a8a85ce991c\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"2234 East 14th Street\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"New York\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 839-5636\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"983b8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 33,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000059\"\n },\n \"CustomerName\": {\n \"value\": \"Boulder Couriers Denver\"\n },\n \"MainContact\": {\n \"id\": \"1cfd1407-0c95-45ef-ac22-f7ec2110831c\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"72cec10e-1131-4913-9056-0c01572f826e\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"2256 Avenue Of The Americas\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"New York\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 571-5719\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"c83b8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 34,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000063\"\n },\n \"CustomerName\": {\n \"value\": \"LaserWorks, The\"\n },\n \"MainContact\": {\n \"id\": \"f7fa3cb1-ec52-484d-bbcf-9495b3c3551b\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"7c1120d6-6826-4412-8f41-1a714e616b46\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"2335 Allgood Rd Ste 53\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Marietta\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"GA\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 421-1574\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"d43b8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 35,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000064\"\n },\n \"CustomerName\": {\n \"value\": \"Etelligent Solutions\"\n },\n \"MainContact\": {\n \"id\": \"0fab2bb0-f636-4f42-af32-0bbea2867153\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"b0a5f289-725f-47f8-a0d4-d623e29e82e4\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"234 W 429th St\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"New York\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 985-3853\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"e03b8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 36,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000065\"\n },\n \"CustomerName\": {\n \"value\": \"Data Recovery Services\"\n },\n \"MainContact\": {\n \"id\": \"7ad9f4e2-6047-4679-9237-c8290472912b\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"af0b2090-5c8c-469b-9ceb-d17c632bc86c\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"23410 Ramp Way\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Sacramento\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"CA\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+44 (2211) 2470074\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"ec3b8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 37,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000066\"\n },\n \"CustomerName\": {\n \"value\": \"HD Technical Services Limited\"\n },\n \"MainContact\": {\n \"id\": \"4961b98c-c1c8-4798-adf7-e31cd8fbc8f0\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"fa7afeea-1041-43ef-8e5e-e50075625476\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"2342 S Macarthur Blvd\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Coppell\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"TX\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+44 (2211) 8620299\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"f83b8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 38,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000067\"\n },\n \"CustomerName\": {\n \"value\": \"Portmeirion Hotel Int.\"\n },\n \"MainContact\": {\n \"id\": \"3fff1d2d-21ee-4533-82b0-d7dda6f688f8\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"7f113852-44dc-45f1-a91a-8d697bd934f0\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"23441 Hampshire Gate,\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Oakville\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"ON\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+44 (2211) 0272115\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"043c8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 39,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000068\"\n },\n \"CustomerName\": {\n \"value\": \"Mak System France\"\n },\n \"MainContact\": {\n \"id\": \"8c82bf1e-9481-4ef1-821c-e8e1c0490842\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"c6adc5d3-c35f-459b-a1b6-7b88e55af4b7\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"23455 Pattullo\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Woodstock\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"ON\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+33 (777) 863-3454\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"103c8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 40,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000069\"\n },\n \"CustomerName\": {\n \"value\": \"Caribbean Secretary Online\"\n },\n \"MainContact\": {\n \"id\": \"5fc618d0-bc9c-4be0-910e-b1ac24f74c68\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"9841f2ce-0b0b-4930-9c85-8692ab7bfa5f\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"23940 Hillside Ave\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Jamaica\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+33 (777) 05 76 87 7\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"1c3c8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 41,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000070\"\n },\n \"CustomerName\": {\n \"value\": \"Nautilus Bar SABL\"\n },\n \"MainContact\": {\n \"id\": \"3a511e54-18ab-4665-aa36-da9affe8dbfb\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"64c75caa-fe60-45bf-9d3e-ac384d8827b3\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"247 W 37th St\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"New York\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+33 (777) 672-2505\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"283c8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 42,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000071\"\n },\n \"CustomerName\": {\n \"value\": \"ROTON IT-Service\"\n },\n \"MainContact\": {\n \"id\": \"2178393e-2560-43c4-8d4d-3f581bf87b3d\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"37cf806f-9937-44e9-9149-6b51332a3340\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"25 W 35th St\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"New York\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+ 49 (99111) 1450787\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"4c3c8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 43,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000074\"\n },\n \"CustomerName\": {\n \"value\": \"THE LEARNING CENTER OF TUSCANY\"\n },\n \"MainContact\": {\n \"id\": \"17206503-ecf2-47ef-a7f3-d51edf341142\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"d1d9ea88-fc38-47e4-94c4-c0d5dffae422\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"26 West 44th St\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"New York\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+39 (777) 0515035\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"583c8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 44,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000075\"\n },\n \"CustomerName\": {\n \"value\": \"MUSIC AREA\"\n },\n \"MainContact\": {\n \"id\": \"e942b938-c152-4ad5-8507-54ad3c3c68fa\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"25850d0e-342c-40d1-b193-b8b5ec4ef600\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"265 Callan Ave Ste 142\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"San Leandro\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"CA\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+39 (777) 0456756\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"643c8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 45,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000076\"\n },\n \"CustomerName\": {\n \"value\": \"CHENGDU RONGYI WATER PROCESSING\"\n },\n \"MainContact\": {\n \"id\": \"1c9a4c58-6fa0-4e33-bb4b-af6a9bd9be39\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"7461ceab-fa76-4e5e-999d-fbe29dad2ef7\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"266 W 47th St\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"New York\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+86 (7777) 6546776\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"703c8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 46,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000077\"\n },\n \"CustomerName\": {\n \"value\": \"DA CITY CONSTRUCT SUPERVISE TEAM\"\n },\n \"MainContact\": {\n \"id\": \"067541b2-736a-4aed-a2c5-f595f015fcdf\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"de1a8879-0818-4c4f-acd4-5998a001f414\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"267 W. 77th Street 45th Floor\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"New York\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+86 (7777) 7677376\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"7c3c8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 47,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000078\"\n },\n \"CustomerName\": {\n \"value\": \"AMRO Bank N.V.\"\n },\n \"MainContact\": {\n \"id\": \"f3371373-4c59-40fd-9012-53a807041426\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"b1636711-fa24-47fb-8935-ea26df2b5aa7\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"2734 Spring St.\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Elizabeth\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NJ\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+81 (777) 443-4657\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"883c8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 48,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000079\"\n },\n \"CustomerName\": {\n \"value\": \"Asahi Sun Tours\"\n },\n \"MainContact\": {\n \"id\": \"4502da53-ca4d-4aa8-b865-87f2635efd72\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"825a086b-acb4-4970-b5e1-8db04f17cf3f\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"293 Brighton 99th St\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Brooklyn\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+81 (777) 434-4679\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"943c8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 49,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000080\"\n },\n \"CustomerName\": {\n \"value\": \"Ajigasawa Prince Hotel\"\n },\n \"MainContact\": {\n \"id\": \"1d70f0fd-aa6e-4555-a3e5-1aa655214fb3\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"c4437c88-7ee4-43c8-80ae-78ef493c9645\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"29300 W Alabama St.\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Houston\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"TX\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+81 (777) 434-4234\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"a03c8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 50,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000081\"\n },\n \"CustomerName\": {\n \"value\": \"Artcages Co.\"\n },\n \"MainContact\": {\n \"id\": \"a99e7a9f-85b1-4e67-80f9-4386d26d63d9\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"0442a72e-fb2f-4173-812b-a98d24257a98\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"299 Nathaniel Place\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Englewood\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NJ\"\n },\n \"custom\": {}\n },\n \"Email\": {},\n \"Phone1\": {\n \"value\": \"+1 (777) 252-6488\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"b83c8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 51,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000083\"\n },\n \"CustomerName\": {\n \"value\": \"Kamm System France\"\n },\n \"MainContact\": {\n \"id\": \"cb525e57-f021-4fc8-b975-12b2f19033e5\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"763c163b-5d9c-444b-8945-78bb307550c0\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"300 Madison Avenue\"\n },\n \"AddressLine2\": {},\n \"City\": {},\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {},\n \"Phone1\": {\n \"value\": \"+33 (203) 863-3454\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"dc3c8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 52,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000086\"\n },\n \"CustomerName\": {\n \"value\": \"YY Studio\"\n },\n \"MainContact\": {\n \"id\": \"ed8b7090-ef82-42bc-aad6-c95f4fca5bee\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"6eeacfc5-5a1f-4aca-9e6a-c8a905783ed9\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"3245 Watchogue Rd\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"San Francisco\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"CA\"\n },\n \"custom\": {}\n },\n \"Email\": {},\n \"Phone1\": {},\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"e83c8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 53,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000087\"\n },\n \"CustomerName\": {\n \"value\": \"Westfield Co., Ltd\"\n },\n \"MainContact\": {\n \"id\": \"dff80fbf-54df-4f7a-8382-13b3e7e85744\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"80cad3ac-7e52-4a2e-a054-a22d73252779\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"325, Camden St,\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"North Shields\"\n },\n \"PostalCode\": {},\n \"State\": {},\n \"custom\": {}\n },\n \"Email\": {},\n \"Phone1\": {},\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"f43c8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 54,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000088\"\n },\n \"CustomerName\": {\n \"value\": \"BronzeKey Workshop\"\n },\n \"MainContact\": {\n \"id\": \"6e65a625-c985-4150-8129-7a223856f90d\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"c8fc9620-debb-428d-96b9-2d8f5bdb3d52\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"3265 Cité Floréal De Briant\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Fort de France\"\n },\n \"PostalCode\": {},\n \"State\": {},\n \"custom\": {}\n },\n \"Email\": {},\n \"Phone1\": {},\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"003d8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 55,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000089\"\n },\n \"CustomerName\": {\n \"value\": \"Glog Consulting\"\n },\n \"MainContact\": {\n \"id\": \"6bd0ce15-ab4b-4ab0-8586-cfc636b8f805\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"f4b22b3f-7628-4d2d-8448-93e6b8be056b\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"329 W 49th St\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"San Francisco\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"CA\"\n },\n \"custom\": {}\n },\n \"Email\": {},\n \"Phone1\": {},\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"0c3d8749-8765-e411-a267-e06995c86014\",\n \"rowNumber\": 56,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000090\"\n },\n \"CustomerName\": {\n \"value\": \"Digipter Svc\"\n },\n \"MainContact\": {\n \"id\": \"ba40dd14-7a80-4cd4-af85-2f45942a549d\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"b7ae3e94-4f56-473b-a5a2-9afdaf0c883b\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"33457 Clark Dr\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Henderson\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"NV\"\n },\n \"custom\": {}\n },\n \"Email\": {},\n \"Phone1\": {},\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"7514e371-8965-e411-a267-e06995c86014\",\n \"rowNumber\": 57,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000091\"\n },\n \"CustomerName\": {\n \"value\": \"Cognitive Solutions Co\"\n },\n \"MainContact\": {\n \"id\": \"78112277-1306-41fc-9025-70de04d2120c\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"93037f81-363e-499b-83ba-811fa8b41d08\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {},\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"San Francisco\"\n },\n \"PostalCode\": {},\n \"State\": {\n \"value\": \"CA\"\n },\n \"custom\": {}\n },\n \"Email\": {},\n \"Phone1\": {},\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"46e00511-d1d0-ea11-b832-00155d408001\",\n \"rowNumber\": 58,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000092\"\n },\n \"CustomerName\": {\n \"value\": \"USA Bartending School\"\n },\n \"MainContact\": {\n \"id\": \"7a8a4be1-9cd2-44ec-88f4-4f4102c56a3b\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"ca0829b2-633a-4b20-8852-42b1bc2a3777\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"201 Lower Notch Rd\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Little Falls\"\n },\n \"PostalCode\": {\n \"value\": \"07424\"\n },\n \"State\": {\n \"value\": \"NJ\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (908) 532-9522\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"335f013a-d5d0-ea11-b832-00155d408001\",\n \"rowNumber\": 59,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000093\"\n },\n \"CustomerName\": {\n \"value\": \"ABC Holdings Inc\"\n },\n \"MainContact\": {\n \"id\": \"83b8beca-381c-4411-9c59-96beb7ddc085\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"99fe8b20-65ea-4546-9f0d-efab7d7d9d59\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"65 Broadway\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"New York\"\n },\n \"PostalCode\": {\n \"value\": \"10006\"\n },\n \"State\": {\n \"value\": \"NY\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (212) 532-9522\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"d3010f4a-d7d0-ea11-b832-00155d408001\",\n \"rowNumber\": 60,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"INTLEU\"\n },\n \"CustomerID\": {\n \"value\": \"C000000094\"\n },\n \"CustomerName\": {\n \"value\": \"Nautilus Bar SABL\"\n },\n \"MainContact\": {\n \"id\": \"1d79317c-540d-40c1-af62-02a2221f5437\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"b4a5c936-d65f-4357-b5e3-268bb5d97c38\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"13 Rue de la Batellerie\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Dunkerque\"\n },\n \"PostalCode\": {\n \"value\": \"59140\"\n },\n \"State\": {},\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+33 (777) 672-2505\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"6913f235-d8d0-ea11-b832-00155d408001\",\n \"rowNumber\": 61,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"DEFAULT\"\n },\n \"CustomerID\": {\n \"value\": \"C000000095\"\n },\n \"CustomerName\": {\n \"value\": \"Cash Connection\"\n },\n \"MainContact\": {\n \"id\": \"63b72667-f0d2-4fcb-b428-39a8a796e030\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"78ae94c0-6b66-4f08-84d7-1a005b72f07d\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"8311 Jefferson Ave\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Detroit\"\n },\n \"PostalCode\": {\n \"value\": \"48214\"\n },\n \"State\": {\n \"value\": \"MI\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (313) 393-7101\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n },\n {\n \"id\": \"32a189a0-d9d0-ea11-b832-00155d408001\",\n \"rowNumber\": 62,\n \"note\": {\n \"value\": \"\"\n },\n \"CustomerClass\": {\n \"value\": \"INTLCA\"\n },\n \"CustomerID\": {\n \"value\": \"C000000096\"\n },\n \"CustomerName\": {\n \"value\": \"Compuresource, Ltd\"\n },\n \"MainContact\": {\n \"id\": \"e00805d1-79f5-4711-adc7-8e7529a61e8d\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Address\": {\n \"id\": \"276d4e85-3307-41b1-b730-3a73e895dc05\",\n \"rowNumber\": 1,\n \"note\": null,\n \"AddressLine1\": {\n \"value\": \"2525 Hampshire Gate #2b\"\n },\n \"AddressLine2\": {},\n \"City\": {\n \"value\": \"Oakville\"\n },\n \"PostalCode\": {\n \"value\": \"L6H 6C8\"\n },\n \"State\": {\n \"value\": \"ON\"\n },\n \"custom\": {}\n },\n \"Email\": {\n \"value\": \"[email protected]\"\n },\n \"Phone1\": {\n \"value\": \"+1 (777) 829-2664\"\n },\n \"custom\": {}\n },\n \"custom\": {}\n }\n]"
}
]
},
{
"name": "Lesson 2.2: Retrieving the Quantities of Stock Items",
"request": {
"method": "PUT",
"header": [
{
"key": "Accept",
"type": "text",
"value": "application/json"
},
{
"key": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\n}"
},
"url": {
"raw": "http://localhost/MyStoreInstance/entity/ItemAvailabilityData/0001/ItemAvailabilityDataInquiry?$expand=Results",
"protocol": "http",
"host": [
"localhost"
],
"path": [
"MyStoreInstance",
"entity",
"ItemAvailabilityData",
"0001",
"ItemAvailabilityDataInquiry"
],
"query": [
{
"key": "$expand",
"value": "Results"
}
]
}
},
"response": [
{
"name": "Lesson 2.2: Retrieving the Quantities of Stock Items",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Accept",
"type": "text",
"value": "application/json"
},
{
"key": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\n}"
},
"url": {
"raw": "http://localhost/MyStoreInstance/entity/ItemAvailabilityData/0001/ItemAvailabilityDataInquiry?$expand=Results",
"protocol": "http",
"host": [
"localhost"
],
"path": [
"MyStoreInstance",
"entity",
"ItemAvailabilityData",
"0001",
"ItemAvailabilityDataInquiry"
],
"query": [
{
"key": "$expand",
"value": "Results"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Cache-Control",
"value": "private"
},
{
"key": "Content-Type",
"value": "application/json; charset=utf-8"
},
{
"key": "Set-Cookie",
"value": "Locale=TimeZone=GMTP0300M&Culture=en-US; path=/"
},
{
"key": "Set-Cookie",
"value": "UserBranch=82; path=/"
},
{
"key": "Set-Cookie",
"value": "requestid=C34018A62898D39D11EB7619A64330B2; path=/"
},
{
"key": "Set-Cookie",
"value": "requeststat=+st:16177+sc:~/entity/itemavailabilitydata/0001/itemavailabilitydatainquiry+start:637497106110613298+tg:; path=/"
},
{
"key": "Date",
"value": "Tue, 23 Feb 2021 20:57:07 GMT"
},
{
"key": "Content-Length",
"value": "4023"
}
],
"cookie": [],
"body": "{\n \"id\": \"a913443e-35f6-419c-b4f7-08f15d6b66c7\",\n \"rowNumber\": 1,\n \"note\": null,\n \"InventoryID\": {},\n \"Results\": [\n {\n \"id\": \"a74489c8-17b9-4cc3-89a1-3e16ea227790\",\n \"rowNumber\": 1,\n \"note\": null,\n \"Description\": {\n \"value\": \"SIM card & contract\"\n },\n \"InventoryID\": {\n \"value\": \"SIMCARD\"\n },\n \"QtyAvailable\": {\n \"value\": 1000\n },\n \"QtyOnHand\": {\n \"value\": 1000\n },\n \"Selected\": {\n \"value\": false\n },\n \"Warehouse\": {\n \"value\": \"YOGI\"\n },\n \"custom\": {},\n \"files\": []\n },\n {\n \"id\": \"6aff380f-e52f-4c55-897a-ad0f283e0a79\",\n \"rowNumber\": 2,\n \"note\": null,\n \"Description\": {\n \"value\": \"Acer Laptop Computer\"\n },\n \"InventoryID\": {\n \"value\": \"AACOMPUT01\"\n },\n \"QtyAvailable\": {\n \"value\": 150\n },\n \"QtyOnHand\": {\n \"value\": 150\n },\n \"Selected\": {\n \"value\": false\n },\n \"Warehouse\": {\n \"value\": \"MAIN\"\n },\n \"custom\": {},\n \"files\": []\n },\n {\n \"id\": \"2e204e75-89d1-4515-81ae-77842fd614fe\",\n \"rowNumber\": 3,\n \"note\": null,\n \"Description\": {\n \"value\": \"Lego 500 piece set\"\n },\n \"InventoryID\": {\n \"value\": \"AALEGO500\"\n },\n \"QtyAvailable\": {\n \"value\": 1977\n },\n \"QtyOnHand\": {\n \"value\": 1999\n },\n \"Selected\": {\n \"value\": false\n },\n \"Warehouse\": {\n \"value\": \"MAIN\"\n },\n \"custom\": {},\n \"files\": []\n },\n {\n \"id\": \"9a9c0142-9efb-4653-b065-e5481ad29f47\",\n \"rowNumber\": 4,\n \"note\": null,\n \"Description\": {\n \"value\": \"Injection molding machine\"\n },\n \"InventoryID\": {\n \"value\": \"AAMACHINE1\"\n },\n \"QtyAvailable\": {\n \"value\": 127\n },\n \"QtyOnHand\": {\n \"value\": 130\n },\n \"Selected\": {\n \"value\": false\n },\n \"Warehouse\": {\n \"value\": \"MAIN\"\n },\n \"custom\": {},\n \"files\": []\n },\n {\n \"id\": \"d73057d2-af47-4e81-aeab-ad628b599b43\",\n \"rowNumber\": 5,\n \"note\": null,\n \"Description\": {\n \"value\": \"Char-Broil Classic 480\"\n },\n \"InventoryID\": {\n \"value\": \"CONGRILL\"\n },\n \"QtyAvailable\": {\n \"value\": 193\n },\n \"QtyOnHand\": {\n \"value\": 200\n },\n \"Selected\": {\n \"value\": false\n },\n \"Warehouse\": {\n \"value\": \"MAIN\"\n },\n \"custom\": {},\n \"files\": []\n },\n {\n \"id\": \"29ec2790-1c56-4c37-a7c6-bc518bc56787\",\n \"rowNumber\": 6,\n \"note\": null,\n \"Description\": {\n \"value\": \"Folding Picnic Table 6 Foot\"\n },\n \"InventoryID\": {\n \"value\": \"CONTABLE1\"\n },\n \"QtyAvailable\": {\n \"value\": 195\n },\n \"QtyOnHand\": {\n \"value\": 200\n },\n \"Selected\": {\n \"value\": false\n },\n \"Warehouse\": {\n \"value\": \"MAIN\"\n },\n \"custom\": {},\n \"files\": []\n },\n {\n \"id\": \"89540070-fe49-4d0d-bd05-423a2d09658c\",\n \"rowNumber\": 7,\n \"note\": null,\n \"Description\": {\n \"value\": \"Laptop 12''\"\n },\n \"InventoryID\": {\n \"value\": \"LAPTOP12\"\n },\n \"QtyAvailable\": {\n \"value\": 20\n },\n \"QtyOnHand\": {\n \"value\": 20\n },\n \"Selected\": {\n \"value\": false\n },\n \"Warehouse\": {\n \"value\": \"MAIN\"\n },\n \"custom\": {},\n \"files\": []\n },\n {\n \"id\": \"ba70c5e4-8c93-4338-ad31-a1eb4c5580fd\",\n \"rowNumber\": 8,\n \"note\": null,\n \"Description\": {\n \"value\": \"Laptop 14''\"\n },\n \"InventoryID\": {\n \"value\": \"LAPTOP14\"\n },\n \"QtyAvailable\": {\n \"value\": 20\n },\n \"QtyOnHand\": {\n \"value\": 20\n },\n \"Selected\": {\n \"value\": false\n },\n \"Warehouse\": {\n \"value\": \"MAIN\"\n },\n \"custom\": {},\n \"files\": []\n },\n {\n \"id\": \"41629fc8-193a-41aa-a2b4-8d4070f4be14\",\n \"rowNumber\": 9,\n \"note\": null,\n \"Description\": {\n \"value\": \"Computer mouse\"\n },\n \"InventoryID\": {\n \"value\": \"MOUSE\"\n },\n \"QtyAvailable\": {\n \"value\": 40\n },\n \"QtyOnHand\": {\n \"value\": 40\n },\n \"Selected\": {\n \"value\": false\n },\n \"Warehouse\": {\n \"value\": \"MAIN\"\n },\n \"custom\": {},\n \"files\": []\n },\n {\n \"id\": \"6f3c07c9-277b-45e1-bc71-75df11e1828e\",\n \"rowNumber\": 10,\n \"note\": null,\n \"Description\": {\n \"value\": \"Headset\"\n },\n \"InventoryID\": {\n \"value\": \"HEADSET\"\n },\n \"QtyAvailable\": {\n \"value\": 40\n },\n \"QtyOnHand\": {\n \"value\": 40\n },\n \"Selected\": {\n \"value\": false\n },\n \"Warehouse\": {\n \"value\": \"MAIN\"\n },\n \"custom\": {},\n \"files\": []\n },\n {\n \"id\": \"610b6f61-1bd6-4b01-8a63-4e5c7c1d483e\",\n \"rowNumber\": 11,\n \"note\": null,\n \"Description\": {\n \"value\": \"Computer keyboard\"\n },\n \"InventoryID\": {\n \"value\": \"KEYBOARD\"\n },\n \"QtyAvailable\": {\n \"value\": 40\n },\n \"QtyOnHand\": {\n \"value\": 40\n },\n \"Selected\": {\n \"value\": false\n },\n \"Warehouse\": {\n \"value\": \"MAIN\"\n },\n \"custom\": {},\n \"files\": []\n },\n {\n \"id\": \"ab53aba4-09a9-465e-b7c4-e86a5a410a8f\",\n \"rowNumber\": 12,\n \"note\": null,\n \"Description\": {\n \"value\": \"Monitor 26''\"\n },\n \"InventoryID\": {\n \"value\": \"MONITOR26\"\n },\n \"QtyAvailable\": {\n \"value\": 40\n },\n \"QtyOnHand\": {\n \"value\": 40\n },\n \"Selected\": {\n \"value\": false\n },\n \"Warehouse\": {\n \"value\": \"MAIN\"\n },\n \"custom\": {},\n \"files\": []\n },\n {\n \"id\": \"0bb89ed5-75ad-42a7-971e-72ef1f1bac4a\",\n \"rowNumber\": 13,\n \"note\": null,\n \"Description\": {\n \"value\": \"Leather case for laptops 12\\\"-15\\\"\"\n },\n \"InventoryID\": {\n \"value\": \"LEATHCASE\"\n },\n \"QtyAvailable\": {\n \"value\": 40\n },\n \"QtyOnHand\": {\n \"value\": 40\n },\n \"Selected\": {\n \"value\": false\n },\n \"Warehouse\": {\n \"value\": \"MAIN\"\n },\n \"custom\": {},\n \"files\": []\n }\n ],\n \"custom\": {},\n \"files\": []\n}"
}
]
}
]
},
{
"name": "Part 3: Retrieval of the Delta of Records",
"item": [
{
"name": "Lesson 3.1: Retrieving the List of Modified Stock Items",
"request": {
"method": "GET",
"header": [
{
"key": "Accept",
"type": "text",
"value": "application/json"
},
{
"key": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"url": {
"raw": "http://localhost/MyStoreInstance/entity/Default/20.200.001/StockItem?$select=InventoryID,Description,ItemClass,BaseUOM,WarehouseDetails/WarehouseID,WarehouseDetails/QtyOnHand&$filter=ItemStatus eq 'Active' and LastModified gt datetimeoffset'2019-11-14T00:00:00.000'&$expand=WarehouseDetails",
"protocol": "http",
"host": [
"localhost"
],
"path": [
"MyStoreInstance",
"entity",
"Default",
"20.200.001",
"StockItem"
],
"query": [
{
"key": "$select",
"value": "InventoryID,Description,ItemClass,BaseUOM,WarehouseDetails/WarehouseID,WarehouseDetails/QtyOnHand"
},
{
"key": "$filter",
"value": "ItemStatus eq 'Active' and LastModified gt datetimeoffset'2019-11-14T00:00:00.000'"
},
{
"key": "$expand",
"value": "WarehouseDetails"
}
]
}
},
"response": [
{
"name": "Lesson 3.1: Retrieving the List of Modified Stock Items",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Accept",
"type": "text",
"value": "application/json"
},
{
"key": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"url": {
"raw": "http://localhost/MyStoreInstance/entity/Default/20.200.001/StockItem?$select=InventoryID,Description,ItemClass,BaseUOM,WarehouseDetails/WarehouseID,WarehouseDetails/QtyOnHand&$filter=ItemStatus eq 'Active' and LastModified gt datetimeoffset'2019-11-14T00:00:00.000'&$expand=WarehouseDetails",
"protocol": "http",
"host": [
"localhost"
],
"path": [
"MyStoreInstance",
"entity",
"Default",
"20.200.001",
"StockItem"
],
"query": [
{
"key": "$select",
"value": "InventoryID,Description,ItemClass,BaseUOM,WarehouseDetails/WarehouseID,WarehouseDetails/QtyOnHand"
},
{
"key": "$filter",
"value": "ItemStatus eq 'Active' and LastModified gt datetimeoffset'2019-11-14T00:00:00.000'"
},
{
"key": "$expand",
"value": "WarehouseDetails"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Cache-Control",
"value": "private"
},
{
"key": "Content-Type",
"value": "application/json; charset=utf-8"
},
{
"key": "Set-Cookie",
"value": "Locale=TimeZone=GMTP0300M&Culture=en-US; path=/"
},
{
"key": "Set-Cookie",
"value": "UserBranch=82; path=/"
},
{
"key": "Date",
"value": "Tue, 23 Feb 2021 21:06:52 GMT"
},
{
"key": "Content-Length",
"value": "504"
}
],
"cookie": [],
"body": "[\n {\n \"id\": \"cae53ce0-1614-e511-9b82-c86000dddf0b\",\n \"rowNumber\": 1,\n \"note\": {\n \"value\": \"\"\n },\n \"BaseUOM\": {\n \"value\": \"PIECE\"\n },\n \"Description\": {\n \"value\": \"Lego, 500 piece set\"\n },\n \"InventoryID\": {\n \"value\": \"AALEGO500\"\n },\n \"ItemClass\": {\n \"value\": \"STOCKITEM\"\n },\n \"ItemStatus\": {\n \"value\": \"Active\"\n },\n \"LastModified\": {\n \"value\": \"2021-02-24T00:06:10.347+03:00\"\n },\n \"WarehouseDetails\": [\n {\n \"id\": \"80f56719-6e81-e511-80c0-00155d012302\",\n \"rowNumber\": 1,\n \"note\": {\n \"value\": \"\"\n },\n \"QtyOnHand\": {\n \"value\": 1999\n },\n \"WarehouseID\": {\n \"value\": \"MAIN\"\n },\n \"custom\": {}\n }\n ],\n \"custom\": {}\n }\n]"
}
]
}
]
}
],
"event": [
{
"listen": "prerequest",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
},
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
}
]
}