Retrieves Future Bill Estimates by ID

Version 4.0.0
download iconDownload spec

Endpoint

GET
undefined/msapi/sales/shopping-cart/v1/carts/{cart-id}/future-bills

This operation retrieves a list of Future Bills entity.

arrowRequest

Path Parameters

    Header Parameters

        Body Parameters

        Responses

        Success

        arrowBody

        application/json

        REQUEST

        1
        2
        3
        curl --request GET \
             --url https://example.com/msapi/sales/shopping-cart/v1/carts/string/future-bills \
             --header 'accept: application/json;charset=utf-8'

        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
        {
          "futurebills": [
            {
              "annualCost": 0,
              "additionalCharges": 0,
              "bundlePrice": 0,
              "marketingAmount": 0,
              "finalPrice": 0,
              "description": "string",
              "discounts": [
                {
                  "price": 0,
                  "description": "string",
                  "duration": 0,
                  "promotionId": "string",
                  "promotionRolledUpDisplayInd": "string",
                  "promotionCycle": "string"
                }
              ],
              "installmentCharge": 0,
              "installmentChannelCharge": 0,
              "monthTitleLength": 0,
              "oneTimeCost": 0,
              "sortOrder": 0,
              "subTotal": 0,
              "totalCount": 0
            }
          ]
        }