Sponsoring

cart.json

The contents of your retail shopping cart as well as basic information like total value (in PV, BV and cost). When signing up as a promoter, you are required to select a kit. There are seperate rules for displaying and modifying the kit so it is broken out into it's own array.

method: GET

secured: true

url: /v1/promote/cart.json

If sucessfull you will see a response like this:

{
    "TotalPrice": "$447.00",
    "TotalQuantity": 2,
    "TodaysQuantity": 2,
    "AutoShipQuantity": 1,
    "CanCheckout": true,
    "Notice": null,
    "Kit": [
        {
            "SKU": "8100",
            "Title": "Basic",
            "Subtitle": "Promoter Registration",
            "Image": "http://s3.amazonaws.com/static.gnld.com/us/product/8100/landingpage_m.png",
            "TodaysOrderPrice": "$19.00",
            "AutoshipPrice": "$19.00",
            "TodaysQuantity": 1,
            "AutoShipQuantity": 0,
            "Pv": 0,
            "Price": "$19.00",
            "Adjustable": false
        },
        {
            "SKU": "8108",
            "Title": "Business Builder Kit",
            "Subtitle": "",
            "Image": "http://s3.amazonaws.com/static.gnld.com/us/product/8108/landingpage_m.png",
            "TodaysOrderPrice": "$346.00",
            "AutoshipPrice": "$346.00",
            "TodaysQuantity": 1,
            "AutoShipQuantity": 0,
            "Pv": 257,
            "Price": "$346.00",
            "Adjustable": false
        }
    ],
    "Items": [
        {
            "SKU": "8100",
            "Title": "Basic",
            "Subtitle": "Promoter Registration",
            "Image": "http://s3.amazonaws.com/static.gnld.com/us/product/8100/landingpage_m.png",
            "TodaysOrderPrice": "$19.00",
            "AutoshipPrice": "$19.00",
            "TodaysQuantity": 1,
            "AutoShipQuantity": 0,
            "Pv": 0,
            "Price": "$19.00",
            "Adjustable": false
        },
        {
            "SKU": "8108",
            "Title": "Business Builder Kit",
            "Subtitle": "",
            "Image": "http://s3.amazonaws.com/static.gnld.com/us/product/8108/landingpage_m.png",
            "TodaysOrderPrice": "$346.00",
            "AutoshipPrice": "$346.00",
            "TodaysQuantity": 1,
            "AutoShipQuantity": 0,
            "Pv": 257,
            "Price": "$346.00",
            "Adjustable": false
        },
        {
            "SKU": "3010",
            "Title": "Tre' Nutritional Essence",
            "Subtitle": "32 fluid oz. (950 mL)",
            "Image": "http://s3.amazonaws.com/static.gnld.com/us/product/3010/landingpage_m.png",
            "TodaysOrderPrice": "$94.40",
            "AutoshipPrice": "$82.00",
            "TodaysQuantity": 2,
            "AutoShipQuantity": 2,
            "Pv": 72,
            "Price": "$82.00",
            "Adjustable": true
        }
    ],
    "success": true,
    "error": null
}

If you are bulding a cart with a promoter kit there is a minimum PV requiremnt of 100 PV. It is possible (if you have only the Basic Promoter Kit that you won't have enough PV to qualify) this is what such a cart will look like.

{
    "TotalPrice": "$90.00",
    "TotalQuantity": 2,
    "TodaysQuantity": 2,
    "AutoShipQuantity": 1,
    "CanCheckout": false,
    "Notice": "Your shopping cart only has 36 PV for today's order. New Club Distributors must start with a minimum 100 PV order. Please include additional products so that your order totals at least 100 PV.",
    "Kit": [
        {
            "SKU": "8100",
            "Title": "Basic",
            "Subtitle": "Promoter Registration",
            "Image": "http://s3.amazonaws.com/static.gnld.com/us/product/8100/landingpage_m.png",
            "TodaysOrderPrice": "$0.00",
            "AutoshipPrice": "$49.00",
            "TodaysQuantity": 1,
            "AutoShipQuantity": 0,
            "Pv": 0,
            "Price": "$49.00",
            "Adjustable": false
        }
    ],
    "Items": [
        {
            "SKU": "3010",
            "Title": "Tre' Nutritional Essence",
            "Subtitle": "32 fluid oz. (950 mL)",
            "Image": "http://s3.amazonaws.com/static.gnld.com/us/product/3010/landingpage_m.png",
            "TodaysOrderPrice": "$47.20",
            "AutoshipPrice": "$41.00",
            "TodaysQuantity": 1,
            "AutoShipQuantity": 1,
            "Pv": 36,
            "Price": "$41.00",
            "Adjustable": true
        },
        {
            "SKU": "8100",
            "Title": "Basic",
            "Subtitle": "Promoter Registration",
            "Image": "http://s3.amazonaws.com/static.gnld.com/us/product/8100/landingpage_m.png",
            "TodaysOrderPrice": "$0.00",
            "AutoshipPrice": "$49.00",
            "TodaysQuantity": 1,
            "AutoShipQuantity": 0,
            "Pv": 0,
            "Price": "$49.00",
            "Adjustable": false
        }
    ],
    "success": true,
    "error": null
}