Get Quote Status
This Domain will server for requests regarding quote status.
Get Quote Status
POSTRetrieves the quote statuses configurations.
Request Paramters
string domain |
Value should be getquotestatus |
Required |
string action |
Value should be getquotestatus |
Required |
object data |
Empty object. | Required |
Sample Request Body
{
domain: "getquotestatus",
action: "getquotestatus",
"data": {}
}
Response Paramters
string status |
This indicate the status of the response. success is the expected value. |
string message |
This explains the reson for status. |
list data |
This contain result data list of the API call. |
string id |
The ID of the quote status. |
string name |
The name of the quote status. |
string bg_color |
The background color of the quote status. |
string tx_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"
},
]
}
}