- APIs
- API Reference
- Quotes
-
Overview
-
API Reference
- Appointment
- Quotes
- Invoices
- Payments
- Clients
- Client Forms
- Client Documents
- Client Notes
- Client Alerts
- Client Allergies
- Client Communications
- Leads
- Services
- Products
- Packages
- Schedules
- Marketing Sources
- Resources
- Settings
- Tax
- Locations
- Users
- Discounts
- Gift Vouchers
- Labels
- Rooms
- Equipment
- Reports
- Cancellation Policy
- Medical Conditions
- Drugs
- Forms
-
Timesheets
-
Webhooks
Get Quote by ID
Returns a quote by ID

https://api.oauth.pabau.com/{api_key}/quotes/{quote_id}
Request
Query Parameters: | |
api_key * | |
quote_id * | System ID of the quote |
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,
"total": 1,
"quotes": [
{
"details": {
"id": 12345,
"date": "",
"url": "{cdn_url}"
},
"biller": {
"name": "{biller_name}",
"id": {biller_id}
},
"items": [
{
"item_name": {item_name}",
"item_type": "service",
"amount": "50.00",
"quantity": 1,
"biller": {
"name": "{biller_name}",
"id": {biller_id}
}
}
]
}
]
}