Product & Offers by ID

Version 1.0.5
download iconDownload spec

Endpoint

GET
https://partner.att.com/omni-svcs/v1/offers/{offerId}

Retrieve product offers by ID.

arrowRequest

Header Parameters

    Path Parameters

      Query Parameters

        Body Parameters

        Responses

        Returns list of product offerings matching the offer ID. If no offerings are found, an empty list is returned.

        arrowBody

        application/json
          • [
            {
          • }
            ]

        REQUEST

        1
        2
        3
        curl --request GET \
             --url 'https://partner.att.com/omni-svcs/v1/offers/string?channel=string' \
             --header 'accept: application/json'

        RESPONSE

        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
        [
          {
            "id": "ibbndl_prod12300337_prod8580387_rwd-40800001_rwd-32300005_prod8960401",
            "name": "AT&T Internet 1000",
            "localizedName": "AT&T Internet 1000",
            "description": "1 GIG speed + unlimited internet data",
            "productOfferingType": "BB_Offer",
            "productOfferingTypeGroup": "BBOffer",
            "category": [
              {
                "id": "cat_02ee151b-6fce-4987-ba4a-34d1dcd2634b",
                "name": "BB_Plans"
              }
            ],
            "bundledProductOffering": [
              {
                "id": "prod12300337",
                "name": "AT&T Internet 1000",
                "localizedName": "AT&T Internet 1000",
                "description": "1 GIG speed + unlimited internet data",
                "productOfferingType": "BB_Plan",
                "productOfferingTypeGroup": "BBPlan",
                "bundledProductOfferingOption": [
                  {
                    "numberRelOfferDefault": 1,
                    "productOfferingPrice": [
                      {
                        "name": "AT&T Internet 1000 Price",
                        "priceType": "RC",
                        "recurringChargePeriod": "month",
                        "recurringChargePeriodLength": 1,
                        "role": "Price",
                        "price": {
                          "dutyFreeAmount": {
                            "unit": "USD",
                            "value": 90
                          }
                        },
                        "finalPrice": {
                          "dutyFreeAmount": {
                            "unit": "USD",
                            "value": 80
                          },
                          "marketingAmount": {
                            "unit": "USD",
                            "value": 80
                          }
                        },
                        "priceAlteration": [
                          {
                            "name": "Discount",
                            "priceType": "RC",
                            "chargeType": "credit",
                            "immediatePromotionId": "62900028",
                            "price": {
                              "dutyFreeAmount": {
                                "unit": "USD",
                                "value": 10
                              }
                            }
                          }
                        ],
                        "taxIncluded": "Excluded"
                      }
                    ]
                  }
                ]
              },
              {
                "id": "prod8580387",
                "name": "Includes unlimited internet data",
                "localizedName": "Includes unlimited internet data",
                "description": "Includes unlimited internet data",
                "productOfferingType": "BB_UsageAllowance",
                "productOfferingTypeGroup": "BBUsageAllowance",
                "bundledProductOfferingOption": [
                  {
                    "numberRelOfferDefault": 1,
                    "productOfferingPrice": [
                      {
                        "name": "Includes unlimited internet data Price",
                        "priceType": "RC",
                        "recurringChargePeriod": "month",
                        "recurringChargePeriodLength": 1,
                        "role": "Price",
                        "price": {
                          "dutyFreeAmount": {
                            "unit": "USD",
                            "value": 0
                          }
                        },
                        "finalPrice": {
                          "dutyFreeAmount": {
                            "unit": "USD",
                            "value": 0
                          }
                        },
                        "taxIncluded": "Excluded"
                      }
                    ]
                  }
                ]
              },
              {
                "id": "rwd-40800001",
                "name": "Switch and we'll pay your cancellation fee in full.",
                "localizedName": "Switch and we'll pay your cancellation fee in full.",
                "description": "<p><b>Switcher Reward Card Offer: Subj to change and may be discontinued at any time. </b>Available only to new residential customers who switch from their current provider to AT&amp;T Fiber (300 or higher) plan. Customer must provide valid proof of previous internet provider&#8217;s Early Termination (ETF) charge dated no more than 60 calendar days prior to AT&amp;T Fiber order. <b>Reward Card Value: </b>Amount based on customer&#8217;s actual ETF from previous rounded up to the nearest $10 increment. Offer excludes taxes, service fees, return equip fees, or ETF incurred on services bundled with previous provider. </p>\r\n<p><b>Reward Card Redemption:</b> Will be sent email or letter w/ redemption info. Redemption required w/in 75 days from reward notification email or mail date. Card delivered w/in 3-4 weeks after redemption to customers who maintain &amp; pay for qualifying service through reward fulfillment. Card expires at month-end 6 mos after issuance. For Cardholder Agreement, go to <a href=\"https://rewardcenter.att.com/\" target=\"https://rewardcenter.att.com\">rewardcenter.att.com</a>. Card issued by The Bancorp Bank N.A., Member FDIC, pursuant to a license from Visa U.S.A. Inc. and can be used everywhere Visa debit cards are accepted in the United States, District of Columbia, US Virgin Islands, and Puerto Rico. No cash access. The Bancorp Bank N.A. does not endorse or sponsor and is not affiliated in any way with any product or service offered by AT&amp;T. </p>\r\n<p><b>Offers may not be combined with certain other promotional offers on the same services and may be modified or discontinued at any time without notice. Other conditions may apply to all offers.</b></p>",
                "productOfferingType": "BB_Reward",
                "productOfferingTypeGroup": "BBReward",
                "bundledProductOfferingOption": [
                  {
                    "numberRelOfferDefault": 1,
                    "productOfferingPrice": [
                      {
                        "name": "Switch and we'll pay your cancellation fee in full. Price",
                        "priceType": "OTR",
                        "role": "Price",
                        "price": {
                          "dutyFreeAmount": {
                            "unit": "USD",
                            "value": 0
                          }
                        },
                        "finalPrice": {
                          "dutyFreeAmount": {
                            "unit": "USD",
                            "value": 0
                          }
                        },
                        "taxIncluded": "Excluded"
                      }
                    ]
                  }
                ]
              },
              {
                "id": "rwd-32300005",
                "name": "$150 reward card for ordering internet online.",
                "localizedName": "$150 reward card for ordering internet online.",
                "description": "<p><b><u>REWARD CARD OFFERS </u>Online only at att.com. </b>For new residential customers purchasing an AT&amp;T Fiber plan (300 or higher). Residents of select multi-dwelling units not eligible. </p>\r\n<p><b>Up to $150 Reward Card: Subj to change and may be discontinued at any time. $50 </b>with Internet 300; <b>$100</b> with Internet 500; <b>$150 </b>with Internet 1000 or higher plan. </p>\r\n<p><b>Redemption: </b> </p>\r\n<p>Watch your mailbox! </p> <ul> <li>You will be sent an email or letter with redemption instructions for each card offer, if applicable.   </li> </ul> <ul> <li>Please allow up to 6 weeks from the time you activate your qualifying service. </li> </ul><p>Redemption required w/in 75 days from reward notification mail or email date. </p>  <ul> <li>Card(s) delivered w/in 3-4 weeks after redemption to customers who maintain &amp; pay for qualifying service through reward fulfillment. </li> </ul> <ul> <li>Card(s) expires at month-end 6 months after issuance. </li> </ul><p>For Cardholder Agreement, go to <a href=\"https://rewardcenter.att.com/\" target=\"https://rewardcenter.att.com\">rewardcenter.att.com</a>. AT&amp;T Visa Reward Card is issued by The Bancorp Bank   pursuant to a license from Visa U.S.A. Inc. and can be used everywhere Visa debit cards are accepted in the United States, District of Columbia, US Virgin Islands, and Puerto Rico.  No cash access. The Bancorp Bank does not endorse or sponsor and is not affiliated in any way with any product or service offered by AT&amp;T. </p>",
                "productOfferingType": "BB_Reward",
                "productOfferingTypeGroup": "BBReward",
                "bundledProductOfferingOption": [
                  {
                    "numberRelOfferDefault": 1,
                    "productOfferingPrice": [
                      {
                        "name": "$150 reward card for ordering internet online. Price",
                        "priceType": "OTR",
                        "role": "Price",
                        "price": {
                          "dutyFreeAmount": {
                            "unit": "USD",
                            "value": 150
                          }
                        },
                        "finalPrice": {
                          "dutyFreeAmount": {
                            "unit": "USD",
                            "value": 150
                          }
                        },
                        "taxIncluded": "Excluded"
                      }
                    ]
                  }
                ]
              }
            ],
            "productOfferingCharacteristic": [
              {
                "name": "displayName",
                "localizedName": "displayName",
                "valueType": "String",
                "value": [
                  {
                    "value": "Internet",
                    "localizedValue": "Internet",
                    "default": false
                  }
                ]
              },
              {
                "name": "offerDetails",
                "localizedName": "offerDetails",
                "valueType": "String",
                "value": [
                  {
                    "value": " <p>Geographic and service restrictions apply to AT&amp;T Internet services. Not all speeds available in all areas.</p><br><p><u></u></p><br><p><u>Internet plans (768K to 75M)</u></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet plans 768K-75M for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. After 12 mos., then-prevailing rate applies unless canceled before the end of 12 months. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount. <b>Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;Data Allowance:</b> $10 charge applies for each additional 50GB (up to $100/mo). Unlimited data allowance may also be purchased separately for an add&#8217;l $30/mo. For more info, go to <u>att.com/internet-usage</u>.</p><br><p><b></b></p><br><p><b>&#8224;&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. Actual customer speeds are not guaranteed and may vary based on several factors. For more information, go to <u>att.com/speed101</u>.</p><br><p><u></u></p><br><p><u>Internet 100</u></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 100 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. After 12 mos., then-prevailing rate applies unless canceled before the end of 12 months. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount<b>. Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><u></u></p><br><p><u>Internet 300, 500, &amp; 1000</u></p><br><p><b></b></p><br><p><b>Limited availability. May not be available in your area.</b></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 300, Internet 500, and Internet 1000 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount. <b>Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply<b>. Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. 1 GIG speeds available to new customers with the latest router (&#8220;BGW320&#8221;) and recommended setup. Actual customer speeds may vary based on a number of factors and are not guaranteed. For more information, go to <u>att.com/speed101</u>.</p><br><p><u></u></p><br><p><u>Internet 2000 &amp; 5000</u></p><br><p><b></b></p><br><p><b>Limited availability. May not be available in your area.</b></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 2000 and Internet 5000 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount<b>. Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. Actual customer speeds may vary based on a number of factors and are not guaranteed. For 5 GIG speed, single device wired speed maximum 4.7Gbps. For more information, go to <u>att.com/speed101</u>.</p><br><br><p>Offers may not be combined with certain other promotional offers on the same services and may be modified or discontinued at any time without notice. Other conditions apply to all offers.</p><br><br><p>&copy;2022 AT&amp;T Intellectual Property. AT&amp;T and the AT&amp;T logo are trademarks of AT&amp;T Intellectual Property.</p>",
                    "localizedValue": " <p>Geographic and service restrictions apply to AT&amp;T Internet services. Not all speeds available in all areas.</p><br><p><u></u></p><br><p><u>Internet plans (768K to 75M)</u></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet plans 768K-75M for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. After 12 mos., then-prevailing rate applies unless canceled before the end of 12 months. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount. <b>Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;Data Allowance:</b> $10 charge applies for each additional 50GB (up to $100/mo). Unlimited data allowance may also be purchased separately for an add&#8217;l $30/mo. For more info, go to <u>att.com/internet-usage</u>.</p><br><p><b></b></p><br><p><b>&#8224;&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. Actual customer speeds are not guaranteed and may vary based on several factors. For more information, go to <u>att.com/speed101</u>.</p><br><p><u></u></p><br><p><u>Internet 100</u></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 100 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. After 12 mos., then-prevailing rate applies unless canceled before the end of 12 months. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount<b>. Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><u></u></p><br><p><u>Internet 300, 500, &amp; 1000</u></p><br><p><b></b></p><br><p><b>Limited availability. May not be available in your area.</b></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 300, Internet 500, and Internet 1000 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount. <b>Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply<b>. Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. 1 GIG speeds available to new customers with the latest router (&#8220;BGW320&#8221;) and recommended setup. Actual customer speeds may vary based on a number of factors and are not guaranteed. For more information, go to <u>att.com/speed101</u>.</p><br><p><u></u></p><br><p><u>Internet 2000 &amp; 5000</u></p><br><p><b></b></p><br><p><b>Limited availability. May not be available in your area.</b></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 2000 and Internet 5000 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount<b>. Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. Actual customer speeds may vary based on a number of factors and are not guaranteed. For 5 GIG speed, single device wired speed maximum 4.7Gbps. For more information, go to <u>att.com/speed101</u>.</p><br><br><p>Offers may not be combined with certain other promotional offers on the same services and may be modified or discontinued at any time without notice. Other conditions apply to all offers.</p><br><br><p>&copy;2022 AT&amp;T Intellectual Property. AT&amp;T and the AT&amp;T logo are trademarks of AT&amp;T Intellectual Property.</p>",
                    "default": false
                  }
                ]
              },
              {
                "name": "description",
                "localizedName": "description",
                "valueType": "String",
                "value": [
                  {
                    "value": " <p>Geographic and service restrictions apply to AT&amp;T Internet services. Not all speeds available in all areas.</p><br><p><u></u></p><br><p><u>Internet plans (768K to 75M)</u></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet plans 768K-75M for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. After 12 mos., then-prevailing rate applies unless canceled before the end of 12 months. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount. <b>Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;Data Allowance:</b> $10 charge applies for each additional 50GB (up to $100/mo). Unlimited data allowance may also be purchased separately for an add&#8217;l $30/mo. For more info, go to <u>att.com/internet-usage</u>.</p><br><p><b></b></p><br><p><b>&#8224;&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. Actual customer speeds are not guaranteed and may vary based on several factors. For more information, go to <u>att.com/speed101</u>.</p><br><p><u></u></p><br><p><u>Internet 100</u></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 100 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. After 12 mos., then-prevailing rate applies unless canceled before the end of 12 months. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount<b>. Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><u></u></p><br><p><u>Internet 300, 500, &amp; 1000</u></p><br><p><b></b></p><br><p><b>Limited availability. May not be available in your area.</b></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 300, Internet 500, and Internet 1000 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount. <b>Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply<b>. Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. 1 GIG speeds available to new customers with the latest router (&#8220;BGW320&#8221;) and recommended setup. Actual customer speeds may vary based on a number of factors and are not guaranteed. For more information, go to <u>att.com/speed101</u>.</p><br><p><u></u></p><br><p><u>Internet 2000 &amp; 5000</u></p><br><p><b></b></p><br><p><b>Limited availability. May not be available in your area.</b></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 2000 and Internet 5000 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount<b>. Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. Actual customer speeds may vary based on a number of factors and are not guaranteed. For 5 GIG speed, single device wired speed maximum 4.7Gbps. For more information, go to <u>att.com/speed101</u>.</p><br><br><p>Offers may not be combined with certain other promotional offers on the same services and may be modified or discontinued at any time without notice. Other conditions apply to all offers.</p><br><br><p>&copy;2022 AT&amp;T Intellectual Property. AT&amp;T and the AT&amp;T logo are trademarks of AT&amp;T Intellectual Property.</p>",
                    "localizedValue": " <p>Geographic and service restrictions apply to AT&amp;T Internet services. Not all speeds available in all areas.</p><br><p><u></u></p><br><p><u>Internet plans (768K to 75M)</u></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet plans 768K-75M for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. After 12 mos., then-prevailing rate applies unless canceled before the end of 12 months. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount. <b>Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;Data Allowance:</b> $10 charge applies for each additional 50GB (up to $100/mo). Unlimited data allowance may also be purchased separately for an add&#8217;l $30/mo. For more info, go to <u>att.com/internet-usage</u>.</p><br><p><b></b></p><br><p><b>&#8224;&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. Actual customer speeds are not guaranteed and may vary based on several factors. For more information, go to <u>att.com/speed101</u>.</p><br><p><u></u></p><br><p><u>Internet 100</u></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 100 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. After 12 mos., then-prevailing rate applies unless canceled before the end of 12 months. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount<b>. Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><u></u></p><br><p><u>Internet 300, 500, &amp; 1000</u></p><br><p><b></b></p><br><p><b>Limited availability. May not be available in your area.</b></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 300, Internet 500, and Internet 1000 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount. <b>Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply<b>. Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. 1 GIG speeds available to new customers with the latest router (&#8220;BGW320&#8221;) and recommended setup. Actual customer speeds may vary based on a number of factors and are not guaranteed. For more information, go to <u>att.com/speed101</u>.</p><br><p><u></u></p><br><p><u>Internet 2000 &amp; 5000</u></p><br><p><b></b></p><br><p><b>Limited availability. May not be available in your area.</b></p><br><p><b></b></p><br><p><b>INTERNET OFFER: Subj. to change and may be discontinued at any time.</b> Price for Internet 2000 and Internet 5000 for residential customers and is after $5/mo. AutoPay &amp; paperless billing discount. <b>AutoPay &amp; Paperless Billing Discount:</b> Discount off the monthly rate when account is active and enrolled in both. Pay full plan cost until discount starts within 2 bill periods. Must maintain AutoPay and paperless billing and valid email address to continue discount<b>. Taxes &amp; Fees:</b> Up to $99 installation fee may apply, plus tax where applicable. Monthly cost recovery surcharges, which are not government-required, apply in TX, OH and NV. Taxes also apply. For one-time AT&amp;T transactional fees, see <u>att.com/fees</u> for details. Credit restrictions apply. <b>Pricing subject to change.</b> Subj. to Internet Terms of Service at <u>att.com/internet-terms</u>.</p><br><p><b></b></p><br><p><b>&#8224;Internet speed claims</b> represent maximum network service capability speeds and based on wired connection to gateway. Actual customer speeds may vary based on a number of factors and are not guaranteed. For 5 GIG speed, single device wired speed maximum 4.7Gbps. For more information, go to <u>att.com/speed101</u>.</p><br><br><p>Offers may not be combined with certain other promotional offers on the same services and may be modified or discontinued at any time without notice. Other conditions apply to all offers.</p><br><br><p>&copy;2022 AT&amp;T Intellectual Property. AT&amp;T and the AT&amp;T logo are trademarks of AT&amp;T Intellectual Property.</p>",
                    "default": false
                  }
                ]
              },
              {
                "name": "rank",
                "localizedName": "rank",
                "valueType": "String",
                "value": [
                  {
                    "value": "1",
                    "localizedValue": "1",
                    "default": false
                  }
                ]
              },
              {
                "name": "fraoBenefitApplied",
                "localizedName": "fraoBenefitApplied",
                "valueType": "String",
                "value": [
                  {
                    "value": "false",
                    "localizedValue": "false",
                    "default": false
                  }
                ]
              },
              {
                "name": "privateOfferApplied",
                "localizedName": "privateOfferApplied",
                "valueType": "String",
                "value": [
                  {
                    "value": "false",
                    "localizedValue": "false",
                    "default": false
                  }
                ]
              },
              {
                "name": "gigaSpeed",
                "localizedName": "gigaSpeed",
                "valueType": "String",
                "value": [
                  {
                    "value": "true",
                    "localizedValue": "true",
                    "default": false
                  }
                ]
              },
              {
                "name": "longDescription",
                "localizedName": "longDescription",
                "valueType": "String",
                "value": [
                  {
                    "value": "AT&T High Speed Internet 1000",
                    "localizedValue": "AT&T High Speed Internet 1000",
                    "default": false
                  }
                ]
              },
              {
                "name": "pricePlanCode",
                "localizedName": "pricePlanCode",
                "valueType": "String",
                "value": [
                  {
                    "value": "88541733",
                    "localizedValue": "88541733",
                    "default": false
                  }
                ]
              },
              {
                "name": "hsiaSwimlane",
                "localizedName": "hsiaSwimlane",
                "valueType": "String",
                "value": [
                  {
                    "value": "29",
                    "localizedValue": "29",
                    "default": false
                  }
                ]
              },
              {
                "name": "shortDisplayName",
                "localizedName": "shortDisplayName",
                "valueType": "String",
                "value": [
                  {
                    "value": "AT&T FIBER — INTERNET 1000",
                    "localizedValue": "AT&T FIBER — INTERNET 1000",
                    "default": false
                  }
                ]
              },
              {
                "name": "broadbandTier",
                "localizedName": "broadbandTier",
                "valueType": "String",
                "value": [
                  {
                    "value": "4",
                    "localizedValue": "4",
                    "default": false
                  }
                ]
              },
              {
                "name": "omsProductCode",
                "localizedName": "omsProductCode",
                "valueType": "String",
                "value": [
                  {
                    "value": "Hsia1000g",
                    "localizedValue": "Hsia1000g",
                    "default": false
                  }
                ]
              },
              {
                "name": "speedType",
                "localizedName": "speedType",
                "valueType": "String",
                "value": [
                  {
                    "value": "NA",
                    "localizedValue": "NA",
                    "default": false
                  }
                ]
              },
              {
                "name": "hboMaxIncluded",
                "localizedName": "hboMaxIncluded",
                "valueType": "String",
                "value": [
                  {
                    "value": "false",
                    "localizedValue": "false",
                    "default": false
                  }
                ]
              },
              {
                "name": "isEnrichedFiber",
                "localizedName": "isEnrichedFiber",
                "valueType": "String",
                "value": [
                  {
                    "value": "false",
                    "localizedValue": "false",
                    "default": false
                  }
                ]
              },
              {
                "name": "isCurrentPlan",
                "localizedName": "isCurrentPlan",
                "valueType": "String",
                "value": [
                  {
                    "value": "false",
                    "localizedValue": "false",
                    "default": false
                  }
                ]
              },
              {
                "name": "downloadSpeed",
                "localizedName": "downloadSpeed",
                "valueType": "String",
                "value": [
                  {
                    "value": "1000 Mbps",
                    "localizedValue": "1000 Mbps",
                    "default": false
                  }
                ]
              },
              {
                "name": "uploadSpeed",
                "localizedName": "uploadSpeed",
                "valueType": "String",
                "value": [
                  {
                    "value": "3 Mbps",
                    "localizedValue": "3 Mbps",
                    "default": false
                  }
                ]
              },
              {
                "name": "features",
                "localizedName": "features",
                "valueType": "String",
                "value": [
                  {
                    "value": "<strong>Average load times</strong> </br> <ul> <li><strong>YouTube, </strong>2MB, 0.02 sec.<li><strong>MP3, </strong>5MB, 0.04 sec.<li><strong>Video, </strong>4GB, 39 secs</ul>",
                    "localizedValue": "<strong>Average load times</strong> </br> <ul> <li><strong>YouTube, </strong>2MB, 0.02 sec.<li><strong>MP3, </strong>5MB, 0.04 sec.<li><strong>Video, </strong>4GB, 39 secs</ul>",
                    "default": false
                  }
                ]
              },
              {
                "name": "Benefits",
                "localizedName": "Benefits",
                "valueType": "String",
                "value": [
                  {
                    "value": "<li>Unleash the full potential of your smart home</li><li>Seamlessly connect with others and share extra-large files in seconds</li><li>Super-fast 1 GIG upload and download speeds</li>",
                    "localizedValue": "<li>Unleash the full potential of your smart home</li><li>Seamlessly connect with others and share extra-large files in seconds</li><li>Super-fast 1 GIG upload and download speeds</li>",
                    "default": false
                  }
                ]
              },
              {
                "name": "BBFootPrint",
                "localizedName": "BBFootPrint",
                "valueType": "String",
                "value": [
                  {
                    "value": "FiberKitOptional",
                    "localizedValue": "FiberKitOptional"
                  }
                ]
              },
              {
                "name": "unlimitedIPUsage",
                "localizedName": "unlimitedIPUsage",
                "valueType": "String",
                "value": [
                  {
                    "value": "true",
                    "localizedValue": "true",
                    "default": false
                  }
                ]
              },
              {
                "name": "baseIpUsageItem_shortDisplayName",
                "localizedName": "baseIpUsageItem_shortDisplayName",
                "valueType": "String",
                "value": [
                  {
                    "value": "Includes unlimited internet data",
                    "localizedValue": "Includes unlimited internet data",
                    "default": false
                  }
                ]
              },
              {
                "name": "overageBucket_ratePerBucket",
                "localizedName": "overageBucket_ratePerBucket",
                "valueType": "String",
                "value": [
                  {
                    "value": "10",
                    "localizedValue": "10",
                    "default": false
                  }
                ]
              },
              {
                "name": "overageBucket_maxChargePerBillCycle",
                "localizedName": "overageBucket_maxChargePerBillCycle",
                "valueType": "String",
                "value": [
                  {
                    "value": "100",
                    "localizedValue": "100",
                    "default": false
                  }
                ]
              },
              {
                "name": "overageBucket_bucketSize",
                "localizedName": "overageBucket_bucketSize",
                "valueType": "String",
                "value": [
                  {
                    "value": "50GB",
                    "localizedValue": "50GB",
                    "default": false
                  }
                ]
              },
              {
                "name": "usageAllowance",
                "localizedName": "usageAllowance",
                "valueType": "String",
                "value": [
                  {
                    "value": "999999 GB",
                    "localizedValue": "999999 GB",
                    "default": false
                  }
                ]
              },
              {
                "name": "usageType",
                "localizedName": "usageType",
                "valueType": "String",
                "value": [
                  {
                    "value": "base",
                    "localizedValue": "base",
                    "default": false
                  }
                ]
              },
              {
                "name": "displayRanking",
                "localizedName": "displayRanking",
                "valueType": "String",
                "value": [
                  {
                    "value": "0",
                    "localizedValue": "0",
                    "default": false
                  }
                ],
                "productSpecification": {
                  "id": "rwd-40800001"
                }
              },
              {
                "name": "displayRanking",
                "localizedName": "displayRanking",
                "valueType": "String",
                "value": [
                  {
                    "value": "0",
                    "localizedValue": "0",
                    "default": false
                  }
                ],
                "productSpecification": {
                  "id": "rwd-32300005"
                }
              },
              {
                "name": "isSelfInstallEligible",
                "localizedName": "isSelfInstallEligible",
                "valueType": "String",
                "value": [
                  {
                    "value": "true",
                    "localizedValue": "true",
                    "default": false
                  }
                ],
                "productSpecification": {
                  "id": "prod8960401"
                }
              }
            ],
            "immediatePromotion": [
              {
                "id": "62900028",
                "status": "add",
                "promotion": {
                  "id": "wrlnpr-62900028",
                  "name": "Price includes $10/mo. discount when you sign up for paperless billing and AutoPay with a bank account. Or $5/mo. with a debit card.",
                  "description": "Price includes $10/mo. discount when you sign up for paperless billing and AutoPay with a bank account. Or $5/mo. with a debit card.",
                  "type": "discount",
                  "applyPolicy": "automatic",
                  "promotionCharacteristics": [
                    {
                      "name": "duration",
                      "value": "999"
                    },
                    {
                      "name": "isAccessPromo",
                      "value": "false"
                    },
                    {
                      "name": "isSmbAioPromo",
                      "value": "false"
                    },
                    {
                      "name": "useForPriceCalculation",
                      "value": "true"
                    },
                    {
                      "name": "shortDisplayName",
                      "value": "Price includes $10/mo. discount when you sign up for paperless billing and AutoPay with a bank account. Or $5/mo. with a debit card."
                    },
                    {
                      "name": "displayRanking",
                      "value": "7"
                    },
                    {
                      "name": "promotionCode",
                      "value": "IS2281"
                    },
                    {
                      "name": "tenderTypes",
                      "value": "ACH"
                    },
                    {
                      "name": "isDefaultTenderTypePromo",
                      "value": "true"
                    },
                    {
                      "name": "promotionType",
                      "value": "flatamountoff"
                    },
                    {
                      "name": "saleType",
                      "value": "supplemental"
                    },
                    {
                      "name": "promotionCycle",
                      "value": "monthly"
                    },
                    {
                      "name": "promotionRolledUpDisplayInd",
                      "value": "Yes"
                    },
                    {
                      "name": "freePromoInd",
                      "value": "No"
                    }
                  ]
                }
              }
            ],
            "productOfferingRelationship": [
              {
                "id": "rel_94fe0227-ab56-45c2-b124-5fd49d570142",
                "name": "Broadband_commercial_relation",
                "relationshipType": "commercialRelation",
                "role": "addOn"
              }
            ],
            "productOfferingTotalPrice": [
              {
                "priceType": "RC",
                "recurringChargePeriod": "month",
                "recurringChargePeriodLength": 1,
                "price": {
                  "dutyFreeAmount": {
                    "unit": "USD",
                    "value": 90
                  }
                },
                "finalPrice": {
                  "dutyFreeAmount": {
                    "unit": "USD",
                    "value": 80
                  }
                },
                "priceAlteration": [
                  {
                    "name": "Discount",
                    "priceType": "RC",
                    "chargeType": "credit",
                    "price": {
                      "dutyFreeAmount": {
                        "unit": "USD",
                        "value": 10
                      }
                    }
                  }
                ],
                "taxIncluded": "Excluded"
              },
              {
                "priceType": "OTR",
                "price": {
                  "dutyFreeAmount": {
                    "unit": "USD",
                    "value": 150
                  }
                },
                "finalPrice": {
                  "dutyFreeAmount": {
                    "unit": "USD",
                    "value": 150
                  }
                },
                "priceAlteration": [],
                "taxIncluded": "Excluded"
              },
              {
                "name": "Easy self-setup kit Price",
                "priceType": "OC",
                "role": "Price",
                "price": {
                  "dutyFreeAmount": {
                    "unit": "USD",
                    "value": 0
                  }
                },
                "finalPrice": {
                  "dutyFreeAmount": {
                    "unit": "USD",
                    "value": 0
                  }
                },
                "priceAlteration": [],
                "taxIncluded": "Excluded"
              }
            ],
            "bundledProductOfferingGroupOption": [
              {
                "groupOptionId": "ibbndl_install_grp_prod8960401",
                "bundledProductOffering": [
                  {
                    "id": "prod8960401",
                    "name": "Easy self-setup kit",
                    "localizedName": "Easy self-setup kit",
                    "href": "/msapi/productoffer/discovery/v1/product-offers/prod8960401?channel=SelfService",
                    "description": "Internet Installation Fee",
                    "productOfferingType": "BB_Installation",
                    "productOfferingTypeGroup": "BBInstallation",
                    "bundledProductOfferingOption": [
                      {
                        "numberRelOfferDefault": 1,
                        "productOfferingPrice": [
                          {
                            "name": "Easy self-setup kit Price",
                            "priceType": "OC",
                            "role": "Price",
                            "price": {
                              "dutyFreeAmount": {
                                "unit": "USD",
                                "value": 0
                              }
                            },
                            "finalPrice": {
                              "dutyFreeAmount": {
                                "unit": "USD",
                                "value": 0
                              }
                            },
                            "priceAlteration": [],
                            "taxIncluded": "Excluded"
                          }
                        ]
                      }
                    ]
                  }
                ]
              }
            ]
          }
        ]