Get Quote by ID

Returns a quote by ID

image-png-Mar-22-2024-01-25-37-4158-PM /quotes/{quote_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}
          }
      }
      ]
    }
  ]
}