Retrieve All Terms and Conditions

Endpoint

POST
https://sales-internal-api-test-e2.az.3pc.att.com/msapi/salesapi/sales-business-process-layer-papi-test3/v1/terms

This operation will retrieve all the static and dynamic terms and conditions. Terms can be generated for a short version, long version or both depending on the requestVersion will be provided in the request payload.

arrowSecurity

http

Enter the username and password here for authorization.
scheme:basic
arrowRequest

Header Parameters

      Body Parameters

      Responses

      Success

      arrowBody

      application/json

      REQUEST

      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      curl --request POST \
           --url https://sales-internal-api-test-e2.az.3pc.att.com/msapi/salesapi/sales-business-process-layer-papi-test3/v1/terms \
           --header 'accept: application/json;charset=utf-8' \
           --header 'content-type: application/json' \
           --header 'idpctx-uuid: 557409171' \
           --header 'idpxtc-appname: string' \
           --data '
      {
        "cartId": "54fe6910-a3b5-11ec-8413-55f2803bf7a91",
        "channel": {
          "id": "SelfService",
          "name": "SelfService",
          "role": "Customer"
        }
      }
      '

      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
      {
        "agreements": [
          {
            "name": "ECONSENT",
            "extensions": [
              {
                "name": "ContentType",
                "value": "Static"
              },
              {
                "name": "termsForm",
                "value": "L"
              },
              {
                "name": "type",
                "value": "ECONSENT"
              },
              {
                "name": "title",
                "value": "Consent to Electronic Delivery of Disclosures"
              },
              {
                "name": "consentText",
                "value": "I have read and agree to the Consent to Electronic Delivery of Disclosures and Communications"
              },
              {
                "name": "category",
                "value": "BSSE-WBB"
              },
              {
                "name": "subCategory",
                "value": "GENERAL"
              },
              {
                "name": "contentUrl",
                "value": "/idpassets/archive-legal/fragment/legal/prod/lpc/terms/electronicCommunicationsConsent/v5/electronicCommunicationsConsent.cmsfeed.js"
              },
              {
                "name": "contentVersion",
                "value": "v5"
              },
              {
                "name": "systemOfRecord",
                "value": "LPC"
              },
              {
                "name": "termsandConditionsKey",
                "value": "ECONSENT"
              },
              {
                "name": "contentCategory",
                "value": "TnC"
              },
              {
                "name": "ackRequired",
                "value": "O"
              }
            ],
            "resource": [
              {
                "id": "billing_account_id",
                "type": "BillingAccount"
              }
            ]
          },
          {
            "name": "CSA",
            "extensions": [
              {
                "name": "ContentType",
                "value": "Static"
              },
              {
                "name": "type",
                "value": "CSA"
              },
              {
                "name": "title",
                "value": "AT&T Consumer Service Agreement"
              },
              {
                "name": "consentText",
                "value": "I have read and agree to the AT&T Consumer Service Agreement and the included provisions for binding individual arbitration."
              },
              {
                "name": "category",
                "value": "BSSE-WBB"
              },
              {
                "name": "subCategory",
                "value": "GENERAL"
              },
              {
                "name": "contentUrl",
                "value": "/idpassets/archive-legal/fragment/legal/prod/lpc/terms/consumerServiceAgreement/v5/consumerServiceAgreement.cmsfeed.js"
              },
              {
                "name": "contentVersion",
                "value": "v5"
              },
              {
                "name": "systemOfRecord",
                "value": "LPC"
              },
              {
                "name": "termsandConditionsKey",
                "value": "CSA"
              },
              {
                "name": "contentCategory",
                "value": "TnC"
              },
              {
                "name": "ackRequired",
                "value": "O"
              }
            ],
            "resource": [
              {
                "id": "billing_account_id",
                "type": "BillingAccount"
              }
            ]
          },
          {
            "name": "PAPERLESS_DISCLOSURE",
            "extensions": [
              {
                "name": "ContentType",
                "value": "Static"
              },
              {
                "name": "type",
                "value": "PAPERLESS_DISCLOSURE"
              },
              {
                "name": "title",
                "value": "Paperless Bill and Bill Notice Disclosures - General Form"
              },
              {
                "name": "consentText",
                "value": "<empty/>"
              },
              {
                "name": "category",
                "value": "BSSE-WBB"
              },
              {
                "name": "subCategory",
                "value": "GENERAL"
              },
              {
                "name": "contentUrl",
                "value": "/idpassets/archive-legal/fragment/legal/prod/lpc/terms/exhibitV/v1/exhibitV.cmsfeed.js"
              },
              {
                "name": "contentVersion",
                "value": "v1"
              },
              {
                "name": "systemOfRecord",
                "value": "LPC"
              },
              {
                "name": "termsandConditionsKey",
                "value": "PAPERLESS_DISCLOSURE"
              },
              {
                "name": "contentCategory",
                "value": "Disclosure"
              },
              {
                "name": "ackRequired",
                "value": "O"
              }
            ],
            "resource": [
              {
                "id": "billing_account_id",
                "type": "BillingAccount"
              }
            ]
          },
          {
            "name": "ReadAloud_CREDT_DISCLOSR",
            "extensions": [
              {
                "name": "ContentType",
                "value": "Static"
              },
              {
                "name": "type",
                "value": "ReadAloud_CREDT_DISCLOSR"
              },
              {
                "name": "title",
                "value": "Credit Disclosure"
              },
              {
                "name": "readAloudText",
                "value": "Let's review your credit. Don't worry, we'll do a soft credit inquiry which means it won't hurt your credit score.<br/> - We'll use your info only to qualify you for service with us.<br/>- Based on your credit, we may ask for a pre-payment today."
              },
              {
                "name": "category",
                "value": "BSSE-WBB"
              },
              {
                "name": "contentVersion",
                "value": "v1"
              },
              {
                "name": "systemOfRecord",
                "value": "CMS"
              },
              {
                "name": "termsandConditionsKey",
                "value": "ReadAloud_CREDT_DISCLOSR"
              },
              {
                "name": "contentCategory",
                "value": "Disclosure"
              },
              {
                "name": "associatedComponent",
                "value": "CreditInfo"
              },
              {
                "name": "ackRequired",
                "value": "Y"
              }
            ],
            "resource": [
              {
                "id": "billing_account_id",
                "type": "BillingAccount"
              }
            ]
          },
          {
            "name": "ReadAloud_SHIPPING",
            "extensions": [
              {
                "name": "ContentType",
                "value": "Static"
              },
              {
                "name": "type",
                "value": "ReadAloud_SHIPPING"
              },
              {
                "name": "title",
                "value": "Shipping Read Aloud"
              },
              {
                "name": "readAloudText",
                "value": "We are shipping your equipment and will email your tracking details.<br/><br/>Install your new WBB at your convenience using the QR code on your box, the Smart Home Manager application, or by locating the self installation instructions available at att.com/userguides."
              },
              {
                "name": "category",
                "value": "BSSE-WBB"
              },
              {
                "name": "contentVersion",
                "value": "v1"
              },
              {
                "name": "systemOfRecord",
                "value": "CMS"
              },
              {
                "name": "termsandConditionsKey",
                "value": "ReadAloud_SHIPPING"
              },
              {
                "name": "contentCategory",
                "value": "Read_Aloud"
              },
              {
                "name": "associatedComponent",
                "value": "FulfillmentOptions"
              },
              {
                "name": "ackRequired",
                "value": "Y"
              }
            ],
            "resource": [
              {
                "id": "billing_account_id",
                "type": "BillingAccount"
              }
            ]
          },
          {
            "name": "ReadAloud_NEW_CUSTOMER",
            "extensions": [
              {
                "name": "ContentType",
                "value": "Static"
              },
              {
                "name": "type",
                "value": "ReadAloud_NEW_CUSTOMER"
              },
              {
                "name": "title",
                "value": "New Customer Read Aloud"
              },
              {
                "name": "readAloudText",
                "value": "Keep an eye out for the email we sent you to help you setup your new ID and password. That email will include a link to your terms and conditions that you need to review and accept. Both of these actions are required before you can active your new WBB."
              },
              {
                "name": "category",
                "value": "BSSE-WBB"
              },
              {
                "name": "contentVersion",
                "value": "v1"
              },
              {
                "name": "systemOfRecord",
                "value": "CMS"
              },
              {
                "name": "termsandConditionsKey",
                "value": "ReadAloud_NEW_CUSTOMER"
              },
              {
                "name": "contentCategory",
                "value": "Read_Aloud"
              },
              {
                "name": "associatedComponent",
                "value": "Terms"
              },
              {
                "name": "ackRequired",
                "value": "Y"
              }
            ],
            "resource": [
              {
                "id": "billing_account_id",
                "type": "BillingAccount"
              }
            ]
          },
          {
            "name": "ReadAloud_AUTOPAY_E-BILL",
            "extensions": [
              {
                "name": "ContentType",
                "value": "Static"
              },
              {
                "name": "type",
                "value": "ReadAloud_AUTOPAY_E-BILL"
              },
              {
                "name": "title",
                "value": "Auto Bill Payment and Paperless Disclosure"
              },
              {
                "name": "readAloudText",
                "value": "Let's set up your AutoPay. It's required for this service, along with paperless billing. AutoPay means that we'll store and use the payment info you provide to automatically charge you each month on the date shown on your bill. We'll also use it to charge any amounts you owe when services end. <br/><br/>AutoPay will begin once you set up your equipment."
              },
              {
                "name": "category",
                "value": "BSSE-WBB"
              },
              {
                "name": "contentVersion",
                "value": "v1"
              },
              {
                "name": "systemOfRecord",
                "value": "CMS"
              },
              {
                "name": "termsandConditionsKey",
                "value": "ReadAloud_AUTOPAY_E-BILL"
              },
              {
                "name": "contentCategory",
                "value": "Disclosure"
              },
              {
                "name": "associatedComponent",
                "value": "payment"
              },
              {
                "name": "ackRequired",
                "value": "Y"
              }
            ],
            "resource": [
              {
                "id": "billing_account_id",
                "type": "BillingAccount"
              }
            ]
          },
          {
            "name": "WBBTC",
            "extensions": [
              {
                "name": "ContentType",
                "value": "Static"
              },
              {
                "name": "type",
                "value": "WBBTC"
              },
              {
                "name": "title",
                "value": "wbbtc"
              },
              {
                "name": "category",
                "value": "BSSE-WBB"
              },
              {
                "name": "subCategory",
                "value": "PRODUCTORDERITEM"
              },
              {
                "name": "contentUrl",
                "value": "/msapi/idp-content-orchestration/v1/idpcms/services/acctmgmt/tnc/wbbtc"
              },
              {
                "name": "contentVersion",
                "value": "v1"
              },
              {
                "name": "productOfferId",
                "value": "0de8cea7-1d0e-421e-8d7f-8c01b32a173a"
              },
              {
                "name": "externalTnCKey",
                "value": "WBBTC"
              },
              {
                "name": "systemOfRecord",
                "value": "CMS"
              },
              {
                "name": "termsandConditionsKey",
                "value": "WBBTC"
              }
            ],
            "resource": [
              {
                "id": "0f0c9c89-0e59-4fd0-8670-36919c1100c6",
                "type": "productOrderItem"
              }
            ]
          },
          {
            "name": "WBBDISC",
            "extensions": [
              {
                "name": "ContentType",
                "value": "Static"
              },
              {
                "name": "type",
                "value": "WBBDISC"
              },
              {
                "name": "title",
                "value": "wbbdisc"
              },
              {
                "name": "category",
                "value": "BSSE-WBB"
              },
              {
                "name": "subCategory",
                "value": "PRODUCTORDERITEM"
              },
              {
                "name": "contentUrl",
                "value": "/msapi/idp-content-orchestration/v1/idpcms/services/acctmgmt/tnc/wbbdisc"
              },
              {
                "name": "contentVersion",
                "value": "v1"
              },
              {
                "name": "productOfferId",
                "value": "0de8cea7-1d0e-421e-8d7f-8c01b32a173a"
              },
              {
                "name": "externalTnCKey",
                "value": "WBBDISC"
              },
              {
                "name": "systemOfRecord",
                "value": "CMS"
              },
              {
                "name": "termsandConditionsKey",
                "value": "WBBDISC"
              }
            ],
            "resource": [
              {
                "id": "0f0c9c89-0e59-4fd0-8670-36919c1100c6",
                "type": "productOrderItem"
              }
            ]
          },
          {
            "name": "AE",
            "extensions": [
              {
                "name": "ContentType",
                "value": "Static"
              },
              {
                "name": "type",
                "value": "AE"
              },
              {
                "name": "title",
                "value": "AutoPay Authorization"
              },
              {
                "name": "category",
                "value": "BSSE-WBB"
              },
              {
                "name": "subCategory",
                "value": "PAYMENT"
              },
              {
                "name": "contentUrl",
                "value": "/msapi/termsandconditions/v1/fetchTermsContent/autopay"
              },
              {
                "name": "tncId",
                "value": "284"
              },
              {
                "name": "tncKey",
                "value": "OL_AE_20210824_T"
              },
              {
                "name": "systemOfRecord",
                "value": "SMART_PAYMENTS"
              },
              {
                "name": "termsandConditionsKey",
                "value": "AE"
              },
              {
                "name": "contentCategory",
                "value": "TnC"
              },
              {
                "name": "ackRequired",
                "value": "O"
              }
            ],
            "resource": [
              {
                "id": "billing_account_id",
                "type": "BillingAccount"
              }
            ]
          }
        ]
      }