cURL
curl --request GET \ --url https://api.boxpilote.fr/api/public/v1/quotes/{id} \ --header 'Authorization: Bearer <token>'
{ "id": "<string>", "created_at": "2023-11-07T05:31:56Z", "quote_number": "<string>", "customer_id": "<string>", "total_amount": 123, "sub_total_amount": 123, "expiration_date": "<string>", "status": "<string>", "sent_email": true, "payment_method": "<string>", "payment_terms": "<string>", "deposit": 123, "type": "<string>", "contract_id": "<string>", "is_archived": true, "billing_period": 123, "refusal_reason": "<string>", "customer": { "name": "<string>", "phone": "<string>", "email": "<string>" }, "quote_items": [ { "id": "<string>", "quote_id": "<string>", "item_type": "<string>", "description": "<string>", "quantity": 123, "amount_ht": 123, "total_ht": 123, "unit": "<string>", "unit_id": "<string>", "product_id": "<string>", "size": 123, "discount_duration": 123, "zone_id": "<string>", "is_option": true, "order": 123, "surface_id": "<string>", "one_time": true, "type": "<string>", "discountType": "<string>", "discountValue": 123, "discountAmount": 123 } ] }
Gets a single quote by ID with full details including customer and quote items.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Quote ID
Quote details
Full quote details for single quote response
Show child attributes