{
	"info": {
		"_postman_id": "5c11b20f-bdb9-4599-901a-8d4d0d9a27c7",
		"name": "Supply Quotations API Collection",
		"description": "Complete API collection for Supplier Quotes and Supply Quotations management",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "50681087"
	},
	"item": [
		{
			"name": "Supplier Quotes",
			"item": [
				{
					"name": "List All Supplier Quotes",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{access_token}}",
								"type": "text"
							},
							{
								"key": "Accept",
								"value": "application/json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{BASE_URL}}/supply/quotes?per_page=15&page=1",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"supply",
								"quotes"
							],
							"query": [
								{
									"key": "per_page",
									"value": "15"
								},
								{
									"key": "page",
									"value": "1"
								}
							]
						},
						"description": "Get list of all supplier quotes with pagination"
					},
					"response": [
						{
							"name": "List All Supplier Quotes - Success",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Authorization",
										"value": "Bearer token",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"url": {
									"raw": "http://localhost:8000/api/v1/supply/quotes",
									"protocol": "http",
									"host": [
										"localhost"
									],
									"port": "8000",
									"path": [
										"api",
										"v1",
										"supply",
										"quotes"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "Text",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n  \"success\": true,\n  \"message\": \"Supplier quotes retrieved successfully\",\n  \"data\": {\n    \"data\": [\n      {\n        \"id\": 1,\n        \"supply_order_item_id\": 1,\n        \"supplier_id\": 1,\n        \"quote_number\": \"QT-2025-001\",\n        \"unit_price\": 25.50,\n        \"total_price\": 2550.00,\n        \"currency\": \"USD\",\n        \"validity_date\": \"2025-12-31\",\n        \"delivery_time_days\": 7,\n        \"terms\": \"Net 30\",\n        \"is_selected\": true,\n        \"status\": \"approved\",\n        \"notes\": \"Best price available\",\n        \"created_at\": \"2025-12-21T10:30:00.000000Z\",\n        \"updated_at\": \"2025-12-21T10:30:00.000000Z\",\n        \"deleted_at\": null\n      },\n      {\n        \"id\": 2,\n        \"supply_order_item_id\": 1,\n        \"supplier_id\": 2,\n        \"quote_number\": \"QT-2025-002\",\n        \"unit_price\": 26.00,\n        \"total_price\": 2600.00,\n        \"currency\": \"USD\",\n        \"validity_date\": \"2025-12-31\",\n        \"delivery_time_days\": 5,\n        \"terms\": \"Net 45\",\n        \"is_selected\": false,\n        \"status\": \"pending\",\n        \"notes\": \"Faster delivery available\",\n        \"created_at\": \"2025-12-21T10:35:00.000000Z\",\n        \"updated_at\": \"2025-12-21T10:35:00.000000Z\",\n        \"deleted_at\": null\n      }\n    ],\n    \"links\": {\n      \"first\": \"http://localhost:8000/api/v1/supply/quotes?page=1\",\n      \"last\": \"http://localhost:8000/api/v1/supply/quotes?page=1\",\n      \"prev\": null,\n      \"next\": null\n    },\n    \"meta\": {\n      \"current_page\": 1,\n      \"from\": 1,\n      \"last_page\": 1,\n      \"path\": \"http://localhost:8000/api/v1/supply/quotes\",\n      \"per_page\": 15,\n      \"to\": 2,\n      \"total\": 2\n    }\n  },\n  \"status_code\": 200\n}\n"
						}
					]
				},
				{
					"name": "Get Supplier Quote by ID",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{access_token}}",
								"type": "text"
							},
							{
								"key": "Accept",
								"value": "application/json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{BASE_URL}}/supply/quotes/1",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"supply",
								"quotes",
								"1"
							]
						},
						"description": "Get a specific supplier quote by ID"
					},
					"response": [
						{
							"name": "Get Supplier Quote - Success",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Authorization",
										"value": "Bearer token",
										"type": "text"
									}
								],
								"url": {
									"raw": "http://localhost:8000/api/v1/supply/quotes/1",
									"protocol": "http",
									"host": [
										"localhost"
									],
									"port": "8000",
									"path": [
										"api",
										"v1",
										"supply",
										"quotes",
										"1"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "Text",
							"header": [],
							"cookie": [],
							"body": "{\n  \"success\": true,\n  \"message\": \"Supplier quote retrieved successfully\",\n  \"data\": {\n    \"id\": 1,\n    \"supply_order_item_id\": 1,\n    \"supplier_id\": 1,\n    \"quote_number\": \"QT-2025-001\",\n    \"unit_price\": 25.50,\n    \"total_price\": 2550.00,\n    \"currency\": \"USD\",\n    \"validity_date\": \"2025-12-31\",\n    \"delivery_time_days\": 7,\n    \"terms\": \"Net 30\",\n    \"is_selected\": true,\n    \"status\": \"approved\",\n    \"notes\": \"Best price available\",\n    \"created_at\": \"2025-12-21T10:30:00.000000Z\",\n    \"updated_at\": \"2025-12-21T10:30:00.000000Z\",\n    \"deleted_at\": null\n  },\n  \"status_code\": 200\n}\n"
						},
						{
							"name": "Get Supplier Quote - Not Found",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Authorization",
										"value": "Bearer token",
										"type": "text"
									}
								],
								"url": {
									"raw": "http://localhost:8000/api/v1/supply/quotes/999",
									"protocol": "http",
									"host": [
										"localhost"
									],
									"port": "8000",
									"path": [
										"api",
										"v1",
										"supply",
										"quotes",
										"999"
									]
								}
							},
							"status": "Not Found",
							"code": 404,
							"_postman_previewlanguage": "Text",
							"header": [],
							"cookie": [],
							"body": "{\n  \"success\": false,\n  \"message\": \"No query results found for model [App\\\\Domains\\\\Supply\\\\SubDomains\\\\Quotations\\\\Models\\\\SupplierQuote]\",\n  \"status_code\": 404\n}\n"
						}
					]
				},
				{
					"name": "Create Supplier Quote",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{access_token}}",
								"type": "text"
							},
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							},
							{
								"key": "Accept",
								"value": "application/json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"quote_number\": \"QUOTE-2025-00rer1\",\n  \"supply_order_item_id\": 1,\n  \"supplier_id\": 1,\n  \"agent_id\": 1,\n  \"unit_price\": 50.00,\n  \"quantity\": 100,\n  \"total_price\": 5000.00,\n  \"currency\": \"USD\",\n  \"lead_time_days\": 30,\n  \"is_selected\": false,\n  \"valid_until\": \"2025-03-31\",\n  \"notes\": \"Volume discount available for orders > 500 units\"\n}"
						},
						"url": {
							"raw": "{{BASE_URL}}/supply/quotes",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"supply",
								"quotes"
							]
						},
						"description": "Create a new supplier quote"
					},
					"response": [
						{
							"name": "Create Supplier Quote - Success",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Authorization",
										"value": "Bearer token",
										"type": "text"
									},
									{
										"key": "Content-Type",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"supply_order_item_id\": 1,\n  \"supplier_id\": 2,\n  \"quote_number\": \"QT-2025-003\",\n  \"unit_price\": 24.99\n}"
								},
								"url": {
									"raw": "http://localhost:8000/api/v1/supply/quotes",
									"protocol": "http",
									"host": [
										"localhost"
									],
									"port": "8000",
									"path": [
										"api",
										"v1",
										"supply",
										"quotes"
									]
								}
							},
							"status": "Created",
							"code": 201,
							"_postman_previewlanguage": "Text",
							"header": [],
							"cookie": [],
							"body": "{\n  \"success\": true,\n  \"message\": \"Supplier quote created successfully\",\n  \"data\": {\n    \"id\": 3,\n    \"supply_order_item_id\": 1,\n    \"supplier_id\": 2,\n    \"quote_number\": \"QT-2025-003\",\n    \"unit_price\": 24.99,\n    \"total_price\": 2499.00,\n    \"currency\": \"USD\",\n    \"validity_date\": \"2025-12-31\",\n    \"delivery_time_days\": 10,\n    \"terms\": \"Net 30\",\n    \"is_selected\": false,\n    \"status\": \"pending\",\n    \"notes\": \"Competitive pricing\",\n    \"created_at\": \"2025-12-21T14:20:00.000000Z\",\n    \"updated_at\": \"2025-12-21T14:20:00.000000Z\",\n    \"deleted_at\": null\n  },\n  \"status_code\": 201\n}\n"
						}
					]
				},
				{
					"name": "Update Supplier Quote",
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{access_token}}",
								"type": "text"
							},
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							},
							{
								"key": "Accept",
								"value": "application/json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"quote_number\": \"QUOTE-2025-001qw\",\n  \"supply_order_item_id\": 1,\n  \"supplier_id\": 1,\n  \"agent_id\": 1,\n  \"unit_price\": 502.00,\n  \"quantity\": 100,\n  \"total_price\": 5000.00,\n  \"currency\": \"USD\",\n  \"lead_time_days\": 30,\n  \"is_selected\": false,\n  \"valid_until\": \"2025-03-31\",\n  \"notes\": \"Volume discount available for orders > 500 units\"\n}"
						},
						"url": {
							"raw": "{{BASE_URL}}/supply/quotes/1",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"supply",
								"quotes",
								"1"
							]
						},
						"description": "Update an existing supplier quote"
					},
					"response": [
						{
							"name": "Update Supplier Quote - Success",
							"originalRequest": {
								"method": "PUT",
								"header": [
									{
										"key": "Authorization",
										"value": "Bearer token",
										"type": "text"
									},
									{
										"key": "Content-Type",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"unit_price\": 25.99,\n  \"is_selected\": true\n}"
								},
								"url": {
									"raw": "http://localhost:8000/api/v1/supply/quotes/1",
									"protocol": "http",
									"host": [
										"localhost"
									],
									"port": "8000",
									"path": [
										"api",
										"v1",
										"supply",
										"quotes",
										"1"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "Text",
							"header": [],
							"cookie": [],
							"body": "{\n  \"success\": true,\n  \"message\": \"Supplier quote updated successfully\",\n  \"data\": {\n    \"id\": 1,\n    \"supply_order_item_id\": 1,\n    \"supplier_id\": 1,\n    \"quote_number\": \"QT-2025-001\",\n    \"unit_price\": 25.99,\n    \"total_price\": 2599.00,\n    \"currency\": \"USD\",\n    \"validity_date\": \"2025-12-31\",\n    \"delivery_time_days\": 7,\n    \"terms\": \"Net 30\",\n    \"is_selected\": true,\n    \"status\": \"approved\",\n    \"notes\": \"Updated pricing - approved by manager\",\n    \"created_at\": \"2025-12-21T10:30:00.000000Z\",\n    \"updated_at\": \"2025-12-21T14:25:00.000000Z\",\n    \"deleted_at\": null\n  },\n  \"status_code\": 200\n}\n"
						}
					]
				},
				{
					"name": "Delete Supplier Quote",
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{access_token}}",
								"type": "text"
							},
							{
								"key": "Accept",
								"value": "application/json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{BASE_URL}}/supply/quotes/1",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"supply",
								"quotes",
								"1"
							]
						},
						"description": "Delete a supplier quote (soft delete)"
					},
					"response": [
						{
							"name": "Delete Supplier Quote - Success",
							"originalRequest": {
								"method": "DELETE",
								"header": [
									{
										"key": "Authorization",
										"value": "Bearer token",
										"type": "text"
									}
								],
								"url": {
									"raw": "http://localhost:8000/api/v1/supply/quotes/1",
									"protocol": "http",
									"host": [
										"localhost"
									],
									"port": "8000",
									"path": [
										"api",
										"v1",
										"supply",
										"quotes",
										"1"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "Text",
							"header": [],
							"cookie": [],
							"body": "{\n  \"success\": true,\n  \"message\": \"Supplier quote deleted successfully\",\n  \"data\": null,\n  \"status_code\": 200\n}\n"
						}
					]
				},
				{
					"name": "Restore Supplier Quote",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{access_token}}",
								"type": "text"
							},
							{
								"key": "Accept",
								"value": "application/json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{BASE_URL}}/supply/quotes/1/restore",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"supply",
								"quotes",
								"1",
								"restore"
							]
						},
						"description": "Restore a soft-deleted supplier quote"
					},
					"response": [
						{
							"name": "Restore Supplier Quote - Success",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Authorization",
										"value": "Bearer token",
										"type": "text"
									}
								],
								"url": {
									"raw": "http://localhost:8000/api/v1/supply/quotes/1/restore",
									"protocol": "http",
									"host": [
										"localhost"
									],
									"port": "8000",
									"path": [
										"api",
										"v1",
										"supply",
										"quotes",
										"1",
										"restore"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "Text",
							"header": [],
							"cookie": [],
							"body": "{\n  \"success\": true,\n  \"message\": \"Supplier quote restored successfully\",\n  \"data\": {\n    \"id\": 1,\n    \"supply_order_item_id\": 1,\n    \"supplier_id\": 1,\n    \"quote_number\": \"QT-2025-001\",\n    \"unit_price\": 25.99,\n    \"total_price\": 2599.00,\n    \"currency\": \"USD\",\n    \"validity_date\": \"2025-12-31\",\n    \"delivery_time_days\": 7,\n    \"terms\": \"Net 30\",\n    \"is_selected\": true,\n    \"status\": \"approved\",\n    \"notes\": \"Updated pricing - approved by manager\",\n    \"created_at\": \"2025-12-21T10:30:00.000000Z\",\n    \"updated_at\": \"2025-12-21T14:25:00.000000Z\",\n    \"deleted_at\": null\n  },\n  \"status_code\": 200\n}\n"
						}
					]
				}
			],
			"description": "Manage supplier quotes for supply order items"
		},
		{
			"name": "Supply Quotations",
			"item": [
				{
					"name": "List All Supply Quotations",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{access_token}}",
								"type": "text"
							},
							{
								"key": "Accept",
								"value": "application/json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{BASE_URL}}/supply/quotations?per_page=15&page=1",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"supply",
								"quotations"
							],
							"query": [
								{
									"key": "per_page",
									"value": "15"
								},
								{
									"key": "page",
									"value": "1"
								}
							]
						},
						"description": "Get list of all supply quotations with pagination"
					},
					"response": [
						{
							"name": "List All Supply Quotations - Success",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Authorization",
										"value": "Bearer token",
										"type": "text"
									},
									{
										"key": "Accept",
										"value": "application/json",
										"type": "text"
									}
								],
								"url": {
									"raw": "http://localhost:8000/api/v1/supply/quotations",
									"protocol": "http",
									"host": [
										"localhost"
									],
									"port": "8000",
									"path": [
										"api",
										"v1",
										"supply",
										"quotations"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "Text",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n  \"success\": true,\n  \"message\": \"Supply quotations retrieved successfully\",\n  \"data\": {\n    \"data\": [\n      {\n        \"id\": 1,\n        \"supply_order_id\": 1,\n        \"quotation_number\": \"RFQ-2025-001\",\n        \"reference_number\": \"PO-REF-001\",\n        \"status\": \"pending\",\n        \"total_amount\": 5000.00,\n        \"currency\": \"USD\",\n        \"validity_date\": \"2025-12-31\",\n        \"expected_delivery_date\": \"2026-01-15\",\n        \"terms_and_conditions\": \"Payment Net 30, Delivery FOB\",\n        \"notes\": \"Initial quotation request\",\n        \"created_at\": \"2025-12-21T10:30:00.000000Z\",\n        \"updated_at\": \"2025-12-21T10:30:00.000000Z\",\n        \"deleted_at\": null\n      },\n      {\n        \"id\": 2,\n        \"supply_order_id\": 2,\n        \"quotation_number\": \"RFQ-2025-002\",\n        \"reference_number\": \"PO-REF-002\",\n        \"status\": \"approved\",\n        \"total_amount\": 7500.00,\n        \"currency\": \"USD\",\n        \"validity_date\": \"2025-12-31\",\n        \"expected_delivery_date\": \"2026-01-20\",\n        \"terms_and_conditions\": \"Payment Net 45, Delivery FOB\",\n        \"notes\": \"Approved by management\",\n        \"created_at\": \"2025-12-21T11:00:00.000000Z\",\n        \"updated_at\": \"2025-12-21T12:00:00.000000Z\",\n        \"deleted_at\": null\n      }\n    ],\n    \"links\": {\n      \"first\": \"http://localhost:8000/api/v1/supply/quotations?page=1\",\n      \"last\": \"http://localhost:8000/api/v1/supply/quotations?page=1\",\n      \"prev\": null,\n      \"next\": null\n    },\n    \"meta\": {\n      \"current_page\": 1,\n      \"from\": 1,\n      \"last_page\": 1,\n      \"path\": \"http://localhost:8000/api/v1/supply/quotations\",\n      \"per_page\": 15,\n      \"to\": 2,\n      \"total\": 2\n    }\n  },\n  \"status_code\": 200\n}\n"
						}
					]
				},
				{
					"name": "Get Supply Quotation by ID",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{access_token}}",
								"type": "text"
							},
							{
								"key": "Accept",
								"value": "application/json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{BASE_URL}}/supply/quotations/1",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"supply",
								"quotations",
								"1"
							]
						},
						"description": "Get a specific supply quotation by ID"
					},
					"response": [
						{
							"name": "Get Supply Quotation - Success",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Authorization",
										"value": "Bearer token",
										"type": "text"
									}
								],
								"url": {
									"raw": "http://localhost:8000/api/v1/supply/quotations/1",
									"protocol": "http",
									"host": [
										"localhost"
									],
									"port": "8000",
									"path": [
										"api",
										"v1",
										"supply",
										"quotations",
										"1"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "Text",
							"header": [],
							"cookie": [],
							"body": "{\n  \"success\": true,\n  \"message\": \"Supply quotation retrieved successfully\",\n  \"data\": {\n    \"id\": 1,\n    \"supply_order_id\": 1,\n    \"quotation_number\": \"RFQ-2025-001\",\n    \"reference_number\": \"PO-REF-001\",\n    \"status\": \"pending\",\n    \"total_amount\": 5000.00,\n    \"currency\": \"USD\",\n    \"validity_date\": \"2025-12-31\",\n    \"expected_delivery_date\": \"2026-01-15\",\n    \"terms_and_conditions\": \"Payment Net 30, Delivery FOB\",\n    \"notes\": \"Initial quotation request\",\n    \"created_at\": \"2025-12-21T10:30:00.000000Z\",\n    \"updated_at\": \"2025-12-21T10:30:00.000000Z\",\n    \"deleted_at\": null\n  },\n  \"status_code\": 200\n}\n"
						},
						{
							"name": "Get Supply Quotation - Not Found",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Authorization",
										"value": "Bearer token",
										"type": "text"
									}
								],
								"url": {
									"raw": "http://localhost:8000/api/v1/supply/quotations/999",
									"protocol": "http",
									"host": [
										"localhost"
									],
									"port": "8000",
									"path": [
										"api",
										"v1",
										"supply",
										"quotations",
										"999"
									]
								}
							},
							"status": "Not Found",
							"code": 404,
							"_postman_previewlanguage": "Text",
							"header": [],
							"cookie": [],
							"body": "{\n  \"success\": false,\n  \"message\": \"No query results found for model [App\\\\Domains\\\\Supply\\\\SubDomains\\\\Quotations\\\\Models\\\\SupplyQuotation]\",\n  \"status_code\": 404\n}\n"
						}
					]
				},
				{
					"name": "Create Supply Quotation",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{access_token}}",
								"type": "text"
							},
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							},
							{
								"key": "Accept",
								"value": "application/json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"quotation_number\": \"RFQ-2025-001\",\n  \"supply_order_id\": 1,\n  \"customer_id\": 1,\n  \"status\": \"draft\",\n  \"subtotal\": 5000.00,\n  \"tax_amount\": 500.00,\n  \"discount_amount\": 250.00,\n  \"total_amount\": 5250.00,\n  \"valid_until\": \"2025-03-31\",\n  \"notes\": \"Subject to stock availability. Payment terms: 30 days net. Delivery: FOB destination.\"\n}"
						},
						"url": {
							"raw": "{{BASE_URL}}/supply/quotations",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"supply",
								"quotations"
							]
						},
						"description": "Create a new supply quotation"
					},
					"response": [
						{
							"name": "Create Supply Quotation - Success",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Authorization",
										"value": "Bearer token",
										"type": "text"
									},
									{
										"key": "Content-Type",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"supply_order_id\": 3,\n  \"quotation_number\": \"RFQ-2025-003\",\n  \"status\": \"pending\",\n  \"total_amount\": 6000.00\n}"
								},
								"url": {
									"raw": "http://localhost:8000/api/v1/supply/quotations",
									"protocol": "http",
									"host": [
										"localhost"
									],
									"port": "8000",
									"path": [
										"api",
										"v1",
										"supply",
										"quotations"
									]
								}
							},
							"status": "Created",
							"code": 201,
							"_postman_previewlanguage": "Text",
							"header": [],
							"cookie": [],
							"body": "{\n  \"success\": true,\n  \"message\": \"Supply quotation created successfully\",\n  \"data\": {\n    \"id\": 3,\n    \"supply_order_id\": 3,\n    \"quotation_number\": \"RFQ-2025-003\",\n    \"reference_number\": \"PO-REF-003\",\n    \"status\": \"pending\",\n    \"total_amount\": 6000.00,\n    \"currency\": \"USD\",\n    \"validity_date\": \"2025-12-31\",\n    \"expected_delivery_date\": \"2026-01-10\",\n    \"terms_and_conditions\": \"Payment Net 30, Free Shipping\",\n    \"notes\": \"New quotation for order 3\",\n    \"created_at\": \"2025-12-21T15:00:00.000000Z\",\n    \"updated_at\": \"2025-12-21T15:00:00.000000Z\",\n    \"deleted_at\": null\n  },\n  \"status_code\": 201\n}\n"
						}
					]
				},
				{
					"name": "Update Supply Quotation",
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{access_token}}",
								"type": "text"
							},
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							},
							{
								"key": "Accept",
								"value": "application/json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"quotation_number\": \"RFQ-2025-001wq\",\n  \"supply_order_id\": 1,\n  \"customer_id\": 1,\n  \"status\": \"draft\",\n  \"subtotal\": 5000.00,\n  \"tax_amount\": 500.00,\n  \"discount_amount\": 250.00,\n  \"total_amount\": 5250.00,\n  \"valid_until\": \"2025-03-31\",\n  \"notes\": \"Subject to stock availability. Payment terms: 30 days net. Delivery: FOB destination.\"\n}"
						},
						"url": {
							"raw": "{{BASE_URL}}/supply/quotations/1",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"supply",
								"quotations",
								"1"
							]
						},
						"description": "Update an existing supply quotation"
					},
					"response": [
						{
							"name": "Update Supply Quotation - Success",
							"originalRequest": {
								"method": "PUT",
								"header": [
									{
										"key": "Authorization",
										"value": "Bearer token",
										"type": "text"
									},
									{
										"key": "Content-Type",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"status\": \"approved\",\n  \"total_amount\": 4900.00\n}"
								},
								"url": {
									"raw": "http://localhost:8000/api/v1/supply/quotations/1",
									"protocol": "http",
									"host": [
										"localhost"
									],
									"port": "8000",
									"path": [
										"api",
										"v1",
										"supply",
										"quotations",
										"1"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "Text",
							"header": [],
							"cookie": [],
							"body": "{\n  \"success\": true,\n  \"message\": \"Supply quotation updated successfully\",\n  \"data\": {\n    \"id\": 1,\n    \"supply_order_id\": 1,\n    \"quotation_number\": \"RFQ-2025-001\",\n    \"reference_number\": \"PO-REF-001\",\n    \"status\": \"approved\",\n    \"total_amount\": 4900.00,\n    \"currency\": \"USD\",\n    \"validity_date\": \"2025-12-31\",\n    \"expected_delivery_date\": \"2026-01-15\",\n    \"terms_and_conditions\": \"Payment Net 30, Delivery FOB\",\n    \"notes\": \"Approved with 2% discount\",\n    \"created_at\": \"2025-12-21T10:30:00.000000Z\",\n    \"updated_at\": \"2025-12-21T15:15:00.000000Z\",\n    \"deleted_at\": null\n  },\n  \"status_code\": 200\n}\n"
						}
					]
				},
				{
					"name": "Delete Supply Quotation",
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{access_token}}",
								"type": "text"
							},
							{
								"key": "Accept",
								"value": "application/json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{BASE_URL}}/supply/quotations/1",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"supply",
								"quotations",
								"1"
							]
						},
						"description": "Delete a supply quotation (soft delete)"
					},
					"response": [
						{
							"name": "Delete Supply Quotation - Success",
							"originalRequest": {
								"method": "DELETE",
								"header": [
									{
										"key": "Authorization",
										"value": "Bearer token",
										"type": "text"
									}
								],
								"url": {
									"raw": "http://localhost:8000/api/v1/supply/quotations/1",
									"protocol": "http",
									"host": [
										"localhost"
									],
									"port": "8000",
									"path": [
										"api",
										"v1",
										"supply",
										"quotations",
										"1"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "Text",
							"header": [],
							"cookie": [],
							"body": "{\n  \"success\": true,\n  \"message\": \"Supply quotation deleted successfully\",\n  \"data\": null,\n  \"status_code\": 200\n}\n"
						}
					]
				},
				{
					"name": "Restore Supply Quotation",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer {{access_token}}",
								"type": "text"
							},
							{
								"key": "Accept",
								"value": "application/json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{BASE_URL}}/supply/quotations/1/restore",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"supply",
								"quotations",
								"1",
								"restore"
							]
						},
						"description": "Restore a soft-deleted supply quotation"
					},
					"response": [
						{
							"name": "Restore Supply Quotation - Success",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Authorization",
										"value": "Bearer token",
										"type": "text"
									}
								],
								"url": {
									"raw": "http://localhost:8000/api/v1/supply/quotations/1/restore",
									"protocol": "http",
									"host": [
										"localhost"
									],
									"port": "8000",
									"path": [
										"api",
										"v1",
										"supply",
										"quotations",
										"1",
										"restore"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "Text",
							"header": [],
							"cookie": [],
							"body": "{\n  \"success\": true,\n  \"message\": \"Supply quotation restored successfully\",\n  \"data\": {\n    \"id\": 1,\n    \"supply_order_id\": 1,\n    \"quotation_number\": \"RFQ-2025-001\",\n    \"reference_number\": \"PO-REF-001\",\n    \"status\": \"approved\",\n    \"total_amount\": 4900.00,\n    \"currency\": \"USD\",\n    \"validity_date\": \"2025-12-31\",\n    \"expected_delivery_date\": \"2026-01-15\",\n    \"terms_and_conditions\": \"Payment Net 30, Delivery FOB\",\n    \"notes\": \"Approved with 2% discount\",\n    \"created_at\": \"2025-12-21T10:30:00.000000Z\",\n    \"updated_at\": \"2025-12-21T15:15:00.000000Z\",\n    \"deleted_at\": null\n  },\n  \"status_code\": 200\n}\n"
						}
					]
				}
			],
			"description": "Manage supply quotations for supply orders"
		}
	],
	"variable": [
		{
			"key": "BASE_URL",
			"value": "http://localhost:8000/api/v1",
			"type": "string"
		},
		{
			"key": "access_token",
			"value": "your_access_token_here",
			"type": "string"
		}
	]
}