-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathah-openapi.yaml
13522 lines (13509 loc) · 626 KB
/
ah-openapi.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.0
info:
title: Albert Heijn
version: 1.0.0
servers:
- url: https://api.ah.nl
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
schemas:
LocalDateTime:
type: string
pattern: '^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}$'
example: '2023-03-17T17:00:00'
DeliveryStateInformation:
type: object
properties:
orderId:
type: integer
state:
type: string
enum:
- ORDERED
- IN_PREPARATION
- OUT_FOR_DELIVERY
- DELIVERED
deliveryType:
type: string
enum:
- DELIVERY
message:
type: string
messageContainsDeliveryEta:
type: boolean
startEstimatedTimeArrival:
$ref: '#/components/schemas/LocalDateTime'
endEstimatedTimeArrival:
$ref: '#/components/schemas/LocalDateTime'
security:
- bearerAuth: []
tags:
- name: Airmiles
description: The Dutch one - airmiles.nl
- name: Authentication
description: '"Do you know who I am?"'
- name: Bonus
description: API calls that relate to 'Bonus' discounts
- name: Bonus > Bonusbox
- name: Receipts
description: Information about previous visits
- name: Premium membership
description: AH Premium membership related calls
- name: Purchase stamps
description: Information about purchase stamps program (koopzegels)
- name: Stamps
description: Information about loyalty programs
- name: AH to go
description: AH To Go (often seen at train stations) have their own loyalty program
- name: Shoppinglist
description: Do CRUD operations on your shopping list
- name: Track and Trace
description: Keep track of the state of delivery
paths:
/mobile-services/stamps/v1/airmiles/balances:
get:
tags:
- Airmiles
summary: Get Airmiles balance
description: Retrieve your Airmiles balance
responses:
'200':
description: OK
headers:
Content-Type:
schema:
type: string
example: application/json
Vary:
schema:
type: string
example: Access-Control-Request-Headers
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-XSS-Protection:
schema:
type: string
example: 1; mode=block
X-Frame-Options:
schema:
type: string
example: DENY
X-Correlation-Id:
schema:
type: string
example: dbe91d75-26f7-47de-af02-7c3114638f04
Content-Length:
schema:
type: integer
example: '70'
Expires:
schema:
type: string
example: Sat, 09 Jul 2022 19:08:47 GMT
Cache-Control:
schema:
type: string
example: max-age=0, no-cache, no-store
Pragma:
schema:
type: string
example: no-cache
Date:
schema:
type: string
example: Sat, 09 Jul 2022 19:08:47 GMT
Connection:
schema:
type: string
example: keep-alive
Strict-Transport-Security:
schema:
type: string
example: max-age=31536000 ; includeSubDomains
Set-Cookie:
schema:
type: string
example: >-
bm_sv=D666C07601F4F3122B675A515050EDA6~YAAQlvBuaGXxysaBAQAAsEhd5BCEAwBcozGaUQf9s6E2UbKJigODbul+puoaKXHsxKGD4IKUzNPXlYf5XvjF2OEvnPvuDlYBjpoa2c4Ok3v9fISZFCMMzTSlEoMoeIXCV71s4QK7uklDmOnljjl9jpqephXVouxbo7eIfEyFIS6mDoYuI9eLMQty7gN7yReVqiPSmA7K0tVJU5KLiauYKA3KCg/xKYoScCNF6EHtBBaJDbBVUGECHjWAOylyYz1a~1;
Domain=.api.ah.nl; Path=/; Expires=Sat, 09 Jul 2022 19:45:08
GMT; Max-Age=2181; Secure
content:
application/json:
schema:
type: object
example:
campaignId: 1000002
balance: 123
url: https://mijnahmiles.ah.nl
'404':
description: Not Found
headers:
Content-Type:
schema:
type: string
example: application/json
Vary:
schema:
type: string
example: Access-Control-Request-Headers
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-XSS-Protection:
schema:
type: string
example: 1; mode=block
X-Frame-Options:
schema:
type: string
example: DENY
X-Correlation-Id:
schema:
type: string
example: 3ef99755-dbbd-473b-94ed-dd3aed550df6
Content-Length:
schema:
type: integer
example: '162'
Expires:
schema:
type: string
example: Sat, 09 Jul 2022 19:08:13 GMT
Cache-Control:
schema:
type: string
example: max-age=0, no-cache, no-store
Pragma:
schema:
type: string
example: no-cache
Date:
schema:
type: string
example: Sat, 09 Jul 2022 19:08:13 GMT
Connection:
schema:
type: string
example: keep-alive
Set-Cookie:
schema:
type: string
example: >-
bm_sv=D666C07601F4F3122B675A515050EDA6~YAAQlvBuaDHtysaBAQAA2MFc5BDGlXxsAgDvsoW9UW9XHoXvDTnMj+HnbA+CmnfwZh4ATnwE5J0L/ABOCdY6Co3UH+Lb5+R44VjWfF7eJj2Qouhw/aUjXbJPNCJn2P/AKxpp/RLH8IQ+YDfkBTv7MpgDZRuVBxBb+8nL+Ye4vXl34g9MEtLqZqbBj5uxkoU+EjxWkNcFOBM4940sOzUXNOXyfRnqbCtVekXGx4/ubRaIWAlJN0SKioW22xex+aJw~1;
Domain=.api.ah.nl; Path=/; Expires=Sat, 09 Jul 2022 19:45:08
GMT; Max-Age=2215; Secure
Strict-Transport-Security:
schema:
type: string
example: max-age=31536000 ; includeSubDomains
content:
application/json:
schema:
type: object
example:
status: 404
message: Member does not have an Air Miles card
correlationId: 3ef99755-dbbd-473b-94ed-dd3aed550df6
timestamp: '2022-07-09T19:08:13.138300Z'
/mobile-auth/v1/auth/token/refresh:
post:
tags:
- Authentication
summary: Refresh token
description: >-
Retrieve the initial refresh token with a MiTM session on your phone,
Android emulator or other means.
requestBody:
content:
application/json:
schema:
type: object
example:
refreshToken: '{refresh_token}'
clientId: appie
responses:
'200':
description: Successful response
content:
application/json: {}
/mobile-services/bonuspage/v1/choose-and-activate:
get:
tags:
- Bonus > Bonusbox
summary: Bonusbox
description: Retrieve bonusbox offers for given date.
parameters:
- name: bonusStartDate
in: query
schema:
type: string
description: Date should be a Monday
example: '2022-07-04'
responses:
'200':
description: OK
headers:
Content-Type:
schema:
type: string
example: application/json
Vary:
schema:
type: string
example: Accept-Encoding
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-XSS-Protection:
schema:
type: string
example: 1; mode=block
X-Frame-Options:
schema:
type: string
example: DENY
X-Correlation-Id:
schema:
type: string
example: a1fc7a59-2104-4b3f-bc49-cb86848c903e
Content-Encoding:
schema:
type: string
example: gzip
Expires:
schema:
type: string
example: Sat, 09 Jul 2022 18:38:57 GMT
Cache-Control:
schema:
type: string
example: max-age=0, no-cache, no-store
Pragma:
schema:
type: string
example: no-cache
Date:
schema:
type: string
example: Sat, 09 Jul 2022 18:38:57 GMT
Content-Length:
schema:
type: integer
example: '3039'
Strict-Transport-Security:
schema:
type: string
example: max-age=31536000 ; includeSubDomains
Set-Cookie:
schema:
type: string
example: >-
bm_sv=D666C07601F4F3122B675A515050EDA6~YAAQlvBuaCP2yMaBAQAAd/dB5BBWLrhMeuAoomJg7JH9L7kbnUIFXN/m8aw4iT5rSQiwx5yoyYEqdMO7sS9x1h9xTLmvxnR+/eJWZXUTv7TmaDxsZvTS9O5Y/D/0sirezU1g4iwqbUW0mFHU4Bs5YBv+yc+70rF4PHQS9Qi2o/jM/kQIwkLjeGy4YSOAA2z5Pe2/7GWc7TWrAQG/f2vSOLyAeWiD/eK+89jMb2TMtTDVIS+QTrtS6kHmS52MJR4F~1;
Domain=.api.ah.nl; Path=/; Expires=Sat, 09 Jul 2022 19:45:08
GMT; Max-Age=3971; Secure
Connection:
schema:
type: string
example: keep-alive
content:
application/json:
schema:
type: object
example:
sectionType: PO
sectionDescription: Kies en Activeer Bonus
bonusGroupOrProducts:
- bonusGroup:
id: '495107'
offerId: 926549
offerStartDate: '2022-07-04'
segmentId: 495107
segmentDescription: Alle Andrélon, Dove, Axe en Rexona
bonusStartDate: '2022-07-04'
bonusEndDate: '2022-07-10'
bonusType: PO
promotionType: PERSONAL
segmentType: BBOX
subtitle: + 2 handdoek spaarzegels
discountDescription: 4 VOOR 10.00
images:
- width: 200
height: 200
url: >-
https://static.ah.nl/mam/bonus/AHMAM_PRD566201?rendition=200px&fileType=binary
- width: 708
height: 708
url: >-
https://static.ah.nl/mam/bonus/AHMAM_PRD566201?rendition=708px&fileType=binary
category: Drogisterij
future: false
shopType: AH
salesUnitSize: 4 verpakkingen naar keuze
exampleFromPrice: 18.36
exampleForPrice: 10
exampleHasListPrice: false
isStapelBonus: false
extraDescriptions:
- + 2 extra Handdoekzegels
activationStatus: ACTIVATED
- bonusGroup:
id: '335282'
offerId: 866463
offerStartDate: '2022-07-04'
segmentId: 335282
segmentDescription: Alle Go-Tan kokosmelk en santen
bonusStartDate: '2022-07-04'
bonusEndDate: '2022-07-10'
bonusType: PO
promotionType: PERSONAL
segmentType: BBOX
discountDescription: 15% KORTING
images:
- width: 200
height: 200
url: >-
https://static.ah.nl/dam/product/AHI_43545239363539383636?revLabel=1&rendition=200x200_JPG_Q85&fileType=binary
- width: 400
height: 400
url: >-
https://static.ah.nl/dam/product/AHI_43545239363539383636?revLabel=1&rendition=400x400_JPG_Q85&fileType=binary
- width: 800
height: 800
url: >-
https://static.ah.nl/dam/product/AHI_43545239363539383636?revLabel=1&rendition=800x800_JPG_Q90&fileType=binary
category: Extra online aanbiedingen
future: false
shopType: AH
salesUnitSize: Per verpakking
exampleFromPrice: 2.19
exampleForPrice: 1.86
exampleHasListPrice: false
isStapelBonus: false
extraDescriptions: []
activationStatus: ACTIVATED
- bonusGroup:
id: '482459'
offerId: 922071
offerStartDate: '2022-07-04'
segmentId: 482459
segmentDescription: Alle Wasa zuurdesem 210-235 gram
bonusStartDate: '2022-07-04'
bonusEndDate: '2022-07-10'
bonusType: PO
promotionType: PERSONAL
segmentType: BBOX
discountDescription: 2e HALVE PRIJS
images:
- width: 200
height: 200
url: >-
https://static.ah.nl/dam/product/AHI_43545239353533303939?revLabel=2&rendition=200x200_JPG_Q85&fileType=binary
- width: 400
height: 400
url: >-
https://static.ah.nl/dam/product/AHI_43545239353533303939?revLabel=2&rendition=400x400_JPG_Q85&fileType=binary
- width: 800
height: 800
url: >-
https://static.ah.nl/dam/product/AHI_43545239353533303939?revLabel=2&rendition=800x800_JPG_Q90&fileType=binary
category: Extra online aanbiedingen
future: false
shopType: AH
salesUnitSize: 2 verpakkingen
exampleFromPrice: 3.18
exampleForPrice: 2.39
exampleHasListPrice: false
isStapelBonus: false
extraDescriptions: []
activationStatus: ACTIVATED
- bonusGroup:
id: '490465'
offerId: 925130
offerStartDate: '2022-07-04'
segmentId: 490465
segmentDescription: Alle Bella Napoli
bonusStartDate: '2022-07-04'
bonusEndDate: '2022-07-10'
bonusType: PO
promotionType: PERSONAL
segmentType: BBOX
discountDescription: 2 VOOR 7.00
images:
- width: 200
height: 200
url: >-
https://static.ah.nl/dam/product/AHI_43545239373231343933?revLabel=3&rendition=200x200_JPG_Q85&fileType=binary
- width: 400
height: 400
url: >-
https://static.ah.nl/dam/product/AHI_43545239373231343933?revLabel=3&rendition=400x400_JPG_Q85&fileType=binary
- width: 800
height: 800
url: >-
https://static.ah.nl/dam/product/AHI_43545239373231343933?revLabel=3&rendition=800x800_JPG_Q90&fileType=binary
category: Extra online aanbiedingen
future: false
shopType: AH
salesUnitSize: 2 verpakkingen
exampleFromPrice: 8.58
exampleForPrice: 7
exampleHasListPrice: false
isStapelBonus: false
extraDescriptions: []
activationStatus: ACTIVATABLE
- product:
webshopId: 162461
hqId: 521355
title: AH Biologische sjalotten
brand: AH Biologisch
isSample: false
salesUnitSize: Net 250 gram
unitPriceDescription: normale prijs per kg €6.36
images:
- width: 200
height: 200
url: >-
https://static.ah.nl/dam/product/AHI_434d50313434323630?revLabel=4&rendition=200x200_JPG_Q85&fileType=binary
- width: 400
height: 400
url: >-
https://static.ah.nl/dam/product/AHI_434d50313434323630?revLabel=4&rendition=400x400_JPG_Q85&fileType=binary
- width: 800
height: 800
url: >-
https://static.ah.nl/dam/product/AHI_434d50313434323630?revLabel=4&rendition=800x800_JPG_Q90&fileType=binary
segmentId: '355378'
bonusSegmentId: 355378
offerId: 885592
offerStartDate: '2022-07-04'
activationStatus: ACTIVATABLE
bonusSegmentDescription: AH Biologische sjalotten
extraDescriptions: []
discountType: PO
promotionType: PERSONAL
segmentType: BBOX
isInfiniteBonus: false
bonusMechanism: 20% KORTING
bonusStartDate: '2022-07-04'
bonusEndDate: '2022-07-10'
priceBeforeBonus: 1.59
hasListPrice: false
currentPrice: 1.27
isBonusPrice: true
isStapelBonus: false
isBonus: true
shopType: AH
orderAvailabilityStatus: IN_ASSORTMENT
availableOnline: true
isOrderable: true
mainCategory: Aardappel, groente, fruit
subCategory: Sjalotten
subCategoryId: 1524
propertyIcons:
- lokaal
- biologisch
properties:
sp_include_intolerance_geen_melk:
- Geen melk
sp_include_intolerance_geen_kreeftachtigen:
- Geen kreeftachtigen (schaaldieren)
sp_include_intolerance_geen_soja:
- Geen soja
sp_include_intolerance_geen_vis:
- Geen vis
sp_include_dieet_biologisch:
- Biologisch
sp_include_intolerance_geen_lupine:
- Geen lupine
sp_kenmerk:
- biologisch
sp_include_intolerance_geen_pindas:
- Geen pinda's
np_lokaal:
- nederland
sp_include_intolerance_geen_mosterd:
- Geen mosterd
sp_include_intolerance_geen_lactose:
- Geen lactose
nutriscore:
- A
sp_include_intolerance_geen_sulfiet:
- Geen sulfiet
da_salted_or_not_salted:
- Ongezouten
sp_include_intolerance_geen_sesam:
- Geen sesam
sp_include_dieet_laag_vet:
- Laag vet
sp_include_dieet_laag_zout:
- Laag zout
np_puureerlij:
- puur en eerlijk
da_free_of_sugar:
- Nee
da_store_department:
- Near Food
sp_include_intolerance_geen_schelpdieren:
- Geen schelpdieren (schaaldieren)
sp_exclude_dieet_halal:
- Halal
sp_exclude_dieet_laag_suiker:
- Laag suiker
sp_include_intolerance_geen_eieren:
- Geen eieren
sp_include_intolerance_geen_noten:
- Geen noten
np_vorm:
- heel
np_biologisch:
- biologisch
sp_include_intolerance_geen_selderij:
- Geen selderij
sp_include_intolerance_geen_gluten:
- Geen gluten
isPreviouslyBought: false
nix18: false
descriptionHighlights: >-
<p>Sjalot heeft een zeer aromatische smaak die fijner is
dan de gele ui. Zowel rauw als gebakken een heerlijke
smaakmaker bij elk gerecht.</p><p><ul><li>Smaak: De
sjalot heeft een zeer aromatische smaak die fijner is
dan de gele ui.</li><li>Bewaren: Op een koele donkere
plek buiten de koelkast.</li><li>Gezondheid: 100%
Biologisch.</li></ul></p>
descriptionFull: ''
- product:
webshopId: 238974
hqId: 831606
title: AH Tijm 15 gram
brand: AH
isSample: false
salesUnitSize: Verpakking 15 gram
unitPriceDescription: normale prijs per kg €79.33
images:
- width: 200
height: 200
url: >-
https://static.ah.nl/dam/product/AHI_43545239383833393535?revLabel=1&rendition=200x200_JPG_Q85&fileType=binary
- width: 400
height: 400
url: >-
https://static.ah.nl/dam/product/AHI_43545239383833393535?revLabel=1&rendition=400x400_JPG_Q85&fileType=binary
- width: 800
height: 800
url: >-
https://static.ah.nl/dam/product/AHI_43545239383833393535?revLabel=1&rendition=800x800_JPG_Q90&fileType=binary
segmentId: '356972'
bonusSegmentId: 356972
offerId: 886190
offerStartDate: '2022-07-04'
activationStatus: ACTIVATABLE
bonusSegmentDescription: AH Tijm 15 gram
extraDescriptions: []
discountType: PO
promotionType: PERSONAL
segmentType: BBOX
isInfiniteBonus: false
bonusMechanism: 15% KORTING
bonusStartDate: '2022-07-04'
bonusEndDate: '2022-07-10'
priceBeforeBonus: 1.19
hasListPrice: false
currentPrice: 1.01
isBonusPrice: true
isStapelBonus: false
isBonus: true
shopType: AH
orderAvailabilityStatus: IN_ASSORTMENT
availableOnline: true
isOrderable: true
mainCategory: Aardappel, groente, fruit
subCategory: Tijm (vers)
subCategoryId: 7701
propertyIcons:
- lokaal
properties:
sp_include_intolerance_geen_melk:
- Geen melk
sp_include_intolerance_geen_kreeftachtigen:
- Geen kreeftachtigen (schaaldieren)
sp_include_intolerance_geen_soja:
- Geen soja
sp_include_intolerance_geen_vis:
- Geen vis
sp_include_dieet_laag_suiker:
- Laag suiker
da_taste:
- Tijm
sp_include_intolerance_geen_lupine:
- Geen lupine
sp_include_intolerance_geen_pindas:
- Geen pinda's
np_lokaal:
- nederland
sp_include_intolerance_geen_mosterd:
- Geen mosterd
sp_include_intolerance_geen_lactose:
- Geen lactose
nutriscore:
- A
sp_include_intolerance_geen_sulfiet:
- Geen sulfiet
sp_include_intolerance_geen_sesam:
- Geen sesam
sp_include_dieet_laag_vet:
- Laag vet
sp_include_dieet_laag_zout:
- Laag zout
da_free_of_sugar:
- Ja
da_store_department:
- Vers
sp_exclude_dieet_biologisch:
- Biologisch
sp_include_intolerance_geen_schelpdieren:
- Geen schelpdieren (schaaldieren)
sp_exclude_dieet_halal:
- Halal
sp_include_intolerance_geen_eieren:
- Geen eieren
sp_include_intolerance_geen_noten:
- Geen noten
da_accreditation:
- NATUUR_BOER
sp_include_intolerance_geen_selderij:
- Geen selderij
sp_include_intolerance_geen_gluten:
- Geen gluten
isPreviouslyBought: false
nix18: false
descriptionHighlights: >-
<p>AH Tijm voor een mediterrane smaak. Heerlijk om toe
te voegen aan soepen en sauzen.</p><p><ul><li>Een echte
smaakmaker bij aubergines en champignons</li><li>Bewaren
thuis: in de koelkast</li><li>Ook lekker in combinatie
met o.a. tomaat, komkommer, aubergine en
paprika</li></ul></p>
descriptionFull: >-
<p> Was de takjes tijm. Rits de blaadjes eraf en voeg
deze toe tijdens de bereiding van een gerecht. </p>
<p>Tijm is een kruid dat vooral te vinden is in Oost-Azië en rond het Middellandse Zeegebied. Vanwege de aromatische geur wordt tijm ook in de zeepindustrie gebruikt. Omdat tijm thymol bevat, een stof die goed is voor de luchtwegen, zie je het daarnaast ook wel eens in hoestdrankjes.</p>
- bonusGroup:
id: '320040'
offerId: 856414
offerStartDate: '2022-07-04'
segmentId: 320040
segmentDescription: Fizzy Peachtree
bonusStartDate: '2022-07-04'
bonusEndDate: '2022-07-10'
bonusType: PO
promotionType: PERSONAL
segmentType: BBOX
discountDescription: 20% KORTING
images:
- width: 200
height: 200
url: >-
https://static.ah.nl/dam/product/AHI_43545239353733363738?revLabel=3&rendition=200x200_JPG_Q85&fileType=binary
- width: 400
height: 400
url: >-
https://static.ah.nl/dam/product/AHI_43545239353733363738?revLabel=3&rendition=400x400_JPG_Q85&fileType=binary
- width: 800
height: 800
url: >-
https://static.ah.nl/dam/product/AHI_43545239353733363738?revLabel=3&rendition=800x800_JPG_Q90&fileType=binary
category: Extra online aanbiedingen
future: false
shopType: AH
salesUnitSize: Blikje 0.25 liter
exampleFromPrice: 2.09
exampleForPrice: 1.67
exampleHasListPrice: false
isStapelBonus: false
extraDescriptions: []
activationStatus: ACTIVATABLE
- product:
webshopId: 482840
hqId: 737551
title: AH Excellent primeur aardappelen
brand: AH Excellent
isSample: false
salesUnitSize: Zak 1 kiloZak 1 kilo
unitPriceDescription: normale prijs per kg €2.19
images:
- width: 200
height: 200
url: >-
https://static.ah.nl/dam/product/AHI_43545239363730343031?revLabel=1&rendition=200x200_JPG_Q85&fileType=binary
- width: 400
height: 400
url: >-
https://static.ah.nl/dam/product/AHI_43545239363730343031?revLabel=1&rendition=400x400_JPG_Q85&fileType=binary
- width: 800
height: 800
url: >-
https://static.ah.nl/dam/product/AHI_43545239363730343031?revLabel=1&rendition=800x800_JPG_Q90&fileType=binary
segmentId: '355554'
bonusSegmentId: 355554
offerId: 885680
offerStartDate: '2022-07-04'
activationStatus: ACTIVATABLE
bonusSegmentDescription: AH Excellent primeur aardappelen
extraDescriptions: []
discountType: PO
promotionType: PERSONAL
segmentType: BBOX
isInfiniteBonus: false
bonusMechanism: 20% KORTING
bonusStartDate: '2022-07-04'
bonusEndDate: '2022-07-10'
priceBeforeBonus: 2.19
hasListPrice: false
currentPrice: 1.75
isBonusPrice: true
isStapelBonus: false
isBonus: true
shopType: AH
orderAvailabilityStatus: IN_ASSORTMENT
availableOnline: true
isOrderable: true
mainCategory: Aardappel, groente, fruit
subCategory: Primeur aardappel - vastkokend
subCategoryId: 5276
propertyIcons:
- lokaal
properties:
sp_include_intolerance_geen_melk:
- Geen melk
sp_include_intolerance_geen_kreeftachtigen:
- Geen kreeftachtigen (schaaldieren)
sp_include_intolerance_geen_soja:
- Geen soja
sp_include_intolerance_geen_vis:
- Geen vis
sp_include_dieet_laag_suiker:
- Laag suiker
sp_include_intolerance_geen_lupine:
- Geen lupine
sp_include_intolerance_geen_pindas:
- Geen pinda's
np_lokaal:
- nederland
da_a_type_of_preparation_cookware:
- Koekenpan
- Magnetron
- Oven
- Pan
sp_include_intolerance_geen_mosterd:
- Geen mosterd
sp_include_intolerance_geen_lactose:
- Geen lactose
nutriscore:
- A
sp_include_intolerance_geen_sulfiet:
- Geen sulfiet
da_salted_or_not_salted:
- Ongezouten
sp_include_intolerance_geen_sesam:
- Geen sesam
sp_include_dieet_laag_vet:
- Laag vet
sp_include_dieet_laag_zout:
- Laag zout
da_free_of_sugar:
- Nee
da_store_department:
- Vers
sp_exclude_dieet_biologisch:
- Biologisch
sp_include_intolerance_geen_schelpdieren:
- Geen schelpdieren (schaaldieren)
sp_exclude_dieet_halal:
- Halal
sp_include_intolerance_geen_eieren:
- Geen eieren
sp_include_intolerance_geen_noten:
- Geen noten
da_accreditation:
- NATUUR_BOER
sp_include_intolerance_geen_selderij:
- Geen selderij
sp_include_intolerance_geen_gluten:
- Geen gluten
isPreviouslyBought: false
nix18: false
descriptionHighlights: >-
<p>Nieuwe oogst ditta of nicola aardappel met een dunne,
gele schil. Ze zijn lang en ovaal en hebben een romige,
iets nootachtige smaak en stevige bite.</p><p><ul><li>Om
te koken, te bakken of te gebruiken in
ovenschotels</li><li>Bron van vitamine b6 en
c</li><li>Bewaar de aardappelen op een koele, donkere en
droge plek</li></ul></p>
descriptionFull: ''
- bonusGroup:
id: '325367'
offerId: 860209
offerStartDate: '2022-07-04'
segmentId: 325367
segmentDescription: Alle Nocilla
bonusStartDate: '2022-07-04'
bonusEndDate: '2022-07-10'
bonusType: PO
promotionType: PERSONAL
segmentType: BBOX
discountDescription: 2e HALVE PRIJS
images:
- width: 200
height: 200
url: >-
https://static.ah.nl/dam/product/AHI_43545239363636393036?revLabel=1&rendition=200x200_JPG_Q85&fileType=binary
- width: 400
height: 400
url: >-
https://static.ah.nl/dam/product/AHI_43545239363636393036?revLabel=1&rendition=400x400_JPG_Q85&fileType=binary
- width: 800
height: 800
url: >-
https://static.ah.nl/dam/product/AHI_43545239363636393036?revLabel=1&rendition=800x800_JPG_Q90&fileType=binary
category: Extra online aanbiedingen
future: false
shopType: AH
salesUnitSize: 2 potten naar keuze
exampleFromPrice: 5.98
exampleForPrice: 4.49
exampleHasListPrice: false
isStapelBonus: false
extraDescriptions: []
activationStatus: ACTIVATABLE
- bonusGroup:
id: '320923'
offerId: 856882
offerStartDate: '2022-07-04'
segmentId: 320923
segmentDescription: Alle Adobe
bonusStartDate: '2022-07-04'
bonusEndDate: '2022-07-10'
bonusType: PO
promotionType: PERSONAL
segmentType: BBOX
discountDescription: 1.50 KORTING
images:
- width: 200
height: 200
url: >-
https://static.ah.nl/dam/product/AHI_434d50313936303131?revLabel=5&rendition=200x200_JPG_Q85&fileType=binary
- width: 400
height: 400
url: >-
https://static.ah.nl/dam/product/AHI_434d50313936303131?revLabel=5&rendition=400x400_JPG_Q85&fileType=binary
- width: 800
height: 800
url: >-
https://static.ah.nl/dam/product/AHI_434d50313936303131?revLabel=5&rendition=800x800_JPG_Q90&fileType=binary
category: Extra online aanbiedingen
future: false
shopType: AH
salesUnitSize: Fles 0.75 liter
exampleFromPrice: 6.65
exampleForPrice: 5.15
exampleHasListPrice: false
isStapelBonus: false
extraDescriptions: []
activationStatus: ACTIVATABLE
sectionImage: []
maxActivations: 5
/mobile-services/bonuspage/v1/activate/{offerId}:
patch:
tags:
- Bonus > Bonusbox
summary: Activate item
requestBody:
content:
application/x-www-form-urlencoded:
schema:
properties:
segmentId:
type: string
example: '{segmentId}'
startDate:
type: string
example: '2022-07-04'
parameters:
- name: Content-Type
in: header
schema:
type: string
example: application/x-www-form-urlencoded; charset=utf-8
- name: offerId
in: path
schema:
type: string
required: true
responses:
'200':
description: OK
headers:
Content-Type:
schema:
type: string
example: application/json
Vary:
schema:
type: string
example: Accept-Encoding
X-Content-Type-Options:
schema:
type: string
example: nosniff
X-XSS-Protection:
schema:
type: string
example: 1; mode=block
X-Frame-Options:
schema:
type: string
example: DENY
X-Correlation-Id:
schema:
type: string
example: 2a6f6338-c072-4ec5-9db1-0b7d22228d3b
Content-Encoding:
schema:
type: string
example: gzip
Expires:
schema:
type: string
example: Sat, 09 Jul 2022 18:37:19 GMT
Cache-Control:
schema:
type: string
example: max-age=0, no-cache, no-store
Pragma:
schema:
type: string
example: no-cache
Date:
schema:
type: string
example: Sat, 09 Jul 2022 18:37:19 GMT
Content-Length: