Getting the Reseller Pricing

Getting the Reseller Pricing

Description

Gets the Reseller Slab Pricing.

Parameters

Name Data Type Required / Optional Description
auth-userid Integer Required Authentication Parameter
api-key or auth-password String Required Authentication Parameter
reseller-id Integer Optional Reseller ID of the Reseller whose Slab Pricing has to be retrieved. By default, Pricing of the current user will be retrieved.

HTTP Method

GET

Example Test URL Request

https://test.httpapi.com/api/products/reseller-price.json?auth-userid=0&api-key;=key

Response

Returns a hash map with the Slab based Selling Price for the specified Reseller or the Reseller whose authorization details are used. The response structure will be:

Domain Names (TLDs)
        "productkey":
        {
                "slab-order":
                {
                        "pricing":
                        {
                                "action-name":
                                {
                                        "tenure-in-years":"price"
                                }
                        }
                        "category":
                        {
                                "slab-category":
                                {
                                        "name":"category-name",
                                        "quantity":"category-quantity"
                                }
                        }
                }
        }

Example:

        "domcno":
        {
                "0":
                {
                        "pricing":
                        {
                                "addtransferdomain":
                                {
                                        "1":"0.0"
                                },
                                "restoredomain":
                                {
                                        "1":"0.0"
                                },
                                "addnewdomain":
                                {
                                        "1":"0.0"
                                },
                                "renewdomain":
                                {
                                        "1":"0.0"
                                }
                        },
                        "category":
                        {
                                "category2":
                                {
                                        "name":"receipts",
                                        "quantity":"0.0"
                                },
                                "category1":
                                {
                                        "name":"hosting",
                                        "quantity":"0.0"
                                }
                        }
                }
        }