Delete a quotation
DELETE/v1/quotes/:quote
Delete a single quotation.
Request
Path Parameters
quote stringrequired
A unique identifier of the quote. By default, this is the quote's ID. When used with the using_ref
query parameter, the 'ref' of the quote is supplied, if available.
Query Parameters
using_ref integer
Possible values: [1
, 0
]
Used to indicate that the 'quote' path parameter is a ref (or an ID).
Responses
- 200
- 404
OK
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "Quote deleted successfully"
}
Not Found
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "Quote not found"
}
Loading...