Returns a list of Quotes

https://api.oauth.pabau.com/{api_key}/quotes
Request
Query Parameters: | |
api_key * | |
per_page | (int) Number of records per page. Default 20, maximum 50 |
page | (int) Page number. If not provided will return the first fetched |
order | ASC or DESC. Default DESC |
Response sample
application/json
{
"success":true,
"quotes":[
{
"details":{
"id":3,
"issue_date":"10-24-2024",
"url":"",
"created_date":"2024-10-28 14:48:43",
"expiration_date":"2024-10-31 15:46:52.000",
"quote_name":"Test Quote",
"location":{
"id":11428,
"name":"New Location"
},
"quote_owner":"John Doe",
"template":{
"id":1,
"name":"Test Template"
},
"date_signed":"2024-10-30 15:46:52.000",
"email_sent_date":"2024-10-31 15:46:52.000",
"has_downloaded":0,
"status": "draft"
},
"appointment":{
"appointment_date":"2023-08-17",
"service":{
"id":2881291,
"name":"Service Name"
}
"appointment_with":"Emma F"
},
"biller":{
"name":"Alice Burton",
"id":1111
},
"items":[
{
"item_name": "Item Name",
"item_type": "service",
"unit_price": "1500.00",
"discount": {
"name": "staff",
"amount": "-20.00"
},
"tax": {
"name": "Tax",
"amount": "20.00"
},
"item_net": 0,
"quantity": 1,
"biller": {
"name": "Jane Doe,
"id": 3
}
]
}
]
}
}
}