Empoweing blinds industry

Did You Know?

Get Quote Status

This Domain will server for requests regarding quote status.

Get Quote Status

POSTRetrieves the quote statuses configurations.

Request Paramters
stringdomain Value should be getquotestatus Required
stringaction Value should be getquotestatus Required
objectdata Empty object. Required
Sample Request Body
            
            {
                domain: "getquotestatus",
                action: "getquotestatus",
                "data": {}
            }
            
        
Response Paramters
stringstatus This indicate the status of the response. success is the expected value.
stringmessage This explains the reson for status.
listdata This contain result data list of the API call.
stringid The ID of the quote status.
stringname The name of the quote status.
stringbg_color The background color of the quote status.
stringtx_color The text color of the quote status.
Sample Response
            
            {
                status: "success",
                data: {
                    status: "success",
                    message: "Quote status Read",
                    data: [
                        9: {
                            id: "9",
                            name: "Consultation Booked",
                            bg_color: "#ff0000",
                            tx_color: "#ffffff"
                        },
                        10: {
                            id: "10",
                            name: "Quote Sent",
                            bg_color: "#fbb034",
                            tx_color: "#000000"
                        },
                    ]
                }
            }
            
        
API END POINTS