{
	"info": {
		"_postman_id": "asset-checklist-api-2026",
		"name": "Asset Checklist API",
		"description": "API endpoints for managing asset-specific checklists in the Maintenance system.\n\nThis collection allows you to:\n- Attach checklists to specific assets\n- View asset-specific checklists\n- View all applicable checklists (inherited + asset-specific)\n- Update and remove asset checklists\n- Sync multiple checklists at once",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
	},
	"variable": [
		{
			"key": "BASE_URL",
			"value": "http://127.0.0.1:8001/api/v1",
			"type": "string"
		},
		{
			"key": "TOKEN",
			"value": "",
			"type": "string"
		},
		{
			"key": "ASSET_ID",
			"value": "1",
			"type": "string"
		},
		{
			"key": "CHECKLIST_ID",
			"value": "1",
			"type": "string"
		},
		{
			"key": "PROJECT_ID",
			"value": "1",
			"type": "string"
		}
	],
	"item": [
		{
			"name": "1. Get Asset-Specific Checklists",
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Accept",
						"value": "application/json",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{TOKEN}}",
						"type": "text"
					}
				],
				"url": {
					"raw": "{{BASE_URL}}/maintenance/assets/{{ASSET_ID}}/checklists",
					"host": [
						"{{BASE_URL}}"
					],
					"path": [
						"maintenance",
						"assets",
						"{{ASSET_ID}}",
						"checklists"
					]
				},
				"description": "Get only the checklists that are specifically attached to this asset.\n\nDoes NOT include:\n- Checklists inherited from asset type\n- Checklists inherited from parent asset types\n\nOnly returns asset-specific additional checklists."
			},
			"response": [
				{
					"name": "Success Response",
					"originalRequest": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{BASE_URL}}/maintenance/assets/{{ASSET_ID}}/checklists",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"maintenance",
								"assets",
								"{{ASSET_ID}}",
								"checklists"
							]
						}
					},
					"status": "OK",
					"code": 200,
					"_postman_previewlanguage": "json",
					"header": [],
					"cookie": [],
					"body": "{\n    \"success\": true,\n    \"message\": \"Asset-specific checklists retrieved successfully\",\n    \"data\": [\n        {\n            \"id\": 25,\n            \"title\": \"Custom Safety Inspection\",\n            \"description\": \"Special safety checks for this unit\",\n            \"maintenance_project_id\": 5,\n            \"maintenance_asset_type_id\": null,\n            \"is_active\": true,\n            \"pivot\": {\n                \"maintenance_asset_id\": 15,\n                \"maintenance_visit_checklist_id\": 25,\n                \"is_required\": true,\n                \"notes\": \"This checklist is specific to this asset\",\n                \"created_by\": 1,\n                \"created_at\": \"2026-01-27T10:00:00.000000Z\",\n                \"updated_at\": \"2026-01-27T10:00:00.000000Z\"\n            }\n        }\n    ]\n}"
				}
			]
		},
		{
			"name": "2. Get All Applicable Checklists",
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Accept",
						"value": "application/json",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{TOKEN}}",
						"type": "text"
					}
				],
				"url": {
					"raw": "{{BASE_URL}}/maintenance/assets/{{ASSET_ID}}/checklists/all?project_id={{PROJECT_ID}}",
					"host": [
						"{{BASE_URL}}"
					],
					"path": [
						"maintenance",
						"assets",
						"{{ASSET_ID}}",
						"checklists",
						"all"
					],
					"query": [
						{
							"key": "project_id",
							"value": "{{PROJECT_ID}}",
							"description": "Optional: Filter by project ID"
						}
					]
				},
				"description": "Get ALL applicable checklists for this asset:\n- Checklists from asset type\n- Checklists inherited from parent asset types\n- Asset-specific additional checklists\n\nOptional query parameter:\n- project_id: Filter checklists by project"
			},
			"response": [
				{
					"name": "Success Response",
					"originalRequest": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{BASE_URL}}/maintenance/assets/{{ASSET_ID}}/checklists/all?project_id={{PROJECT_ID}}",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"maintenance",
								"assets",
								"{{ASSET_ID}}",
								"checklists",
								"all"
							],
							"query": [
								{
									"key": "project_id",
									"value": "{{PROJECT_ID}}"
								}
							]
						}
					},
					"status": "OK",
					"code": 200,
					"_postman_previewlanguage": "json",
					"header": [],
					"cookie": [],
					"body": "{\n    \"success\": true,\n    \"message\": \"All applicable checklists retrieved successfully\",\n    \"data\": [\n        {\n            \"id\": 10,\n            \"title\": \"Monthly Equipment Inspection\",\n            \"description\": \"Standard monthly inspection\",\n            \"maintenance_asset_type_id\": 5,\n            \"source\": \"asset_type\"\n        },\n        {\n            \"id\": 12,\n            \"title\": \"Quarterly Maintenance\",\n            \"description\": \"Quarterly checks\",\n            \"maintenance_asset_type_id\": 3,\n            \"source\": \"parent_asset_type\"\n        },\n        {\n            \"id\": 25,\n            \"title\": \"Custom Safety Inspection\",\n            \"description\": \"Asset-specific checks\",\n            \"source\": \"asset_specific\",\n            \"pivot\": {\n                \"is_required\": true,\n                \"notes\": \"Special requirements\"\n            }\n        }\n    ]\n}"
				}
			]
		},
		{
			"name": "3. Attach Checklist to Asset",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Accept",
						"value": "application/json",
						"type": "text"
					},
					{
						"key": "Content-Type",
						"value": "application/json",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{TOKEN}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n    \"maintenance_visit_checklist_id\": 25,\n    \"is_required\": true,\n    \"notes\": \"This checklist is specific to this high-risk asset\"\n}",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "{{BASE_URL}}/maintenance/assets/{{ASSET_ID}}/checklists",
					"host": [
						"{{BASE_URL}}"
					],
					"path": [
						"maintenance",
						"assets",
						"{{ASSET_ID}}",
						"checklists"
					]
				},
				"description": "Attach a checklist to a specific asset.\n\nRequired:\n- maintenance_visit_checklist_id: The ID of the checklist to attach\n\nOptional:\n- is_required: Whether this checklist is required (default: true)\n- notes: Additional notes about this checklist assignment (max 1000 chars)"
			},
			"response": [
				{
					"name": "Success Response",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"maintenance_visit_checklist_id\": 25,\n    \"is_required\": true,\n    \"notes\": \"This checklist is specific to this high-risk asset\"\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{BASE_URL}}/maintenance/assets/{{ASSET_ID}}/checklists",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"maintenance",
								"assets",
								"{{ASSET_ID}}",
								"checklists"
							]
						}
					},
					"status": "Created",
					"code": 201,
					"_postman_previewlanguage": "json",
					"header": [],
					"cookie": [],
					"body": "{\n    \"success\": true,\n    \"message\": \"تم إضافة قائمة التحقق إلى الأصل بنجاح / Checklist attached to asset successfully\",\n    \"data\": {\n        \"asset_id\": 15,\n        \"checklists\": [\n            {\n                \"id\": 25,\n                \"title\": \"Custom Safety Inspection\",\n                \"description\": \"Special safety checks\",\n                \"pivot\": {\n                    \"maintenance_asset_id\": 15,\n                    \"maintenance_visit_checklist_id\": 25,\n                    \"is_required\": true,\n                    \"notes\": \"This checklist is specific to this high-risk asset\",\n                    \"created_by\": 1,\n                    \"created_at\": \"2026-01-27T10:00:00.000000Z\",\n                    \"updated_at\": \"2026-01-27T10:00:00.000000Z\"\n                }\n            }\n        ]\n    }\n}"
				},
				{
					"name": "Error - Already Attached",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"maintenance_visit_checklist_id\": 25,\n    \"is_required\": true\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{BASE_URL}}/maintenance/assets/{{ASSET_ID}}/checklists",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"maintenance",
								"assets",
								"{{ASSET_ID}}",
								"checklists"
							]
						}
					},
					"status": "Unprocessable Entity",
					"code": 422,
					"_postman_previewlanguage": "json",
					"header": [],
					"cookie": [],
					"body": "{\n    \"success\": false,\n    \"message\": \"Failed to attach checklist to asset: هذه القائمة مرفقة بالفعل بهذا الأصل / This checklist is already attached to this asset\"\n}"
				},
				{
					"name": "Error - Validation Failed",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"maintenance_visit_checklist_id\": 999999\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{BASE_URL}}/maintenance/assets/{{ASSET_ID}}/checklists",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"maintenance",
								"assets",
								"{{ASSET_ID}}",
								"checklists"
							]
						}
					},
					"status": "Unprocessable Entity",
					"code": 422,
					"_postman_previewlanguage": "json",
					"header": [],
					"cookie": [],
					"body": "{\n    \"success\": false,\n    \"message\": \"The selected maintenance visit checklist id is invalid.\"\n}"
				}
			]
		},
		{
			"name": "4. Update Asset Checklist",
			"request": {
				"method": "PUT",
				"header": [
					{
						"key": "Accept",
						"value": "application/json",
						"type": "text"
					},
					{
						"key": "Content-Type",
						"value": "application/json",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{TOKEN}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n    \"is_required\": false,\n    \"notes\": \"Updated notes - this checklist is now optional\"\n}",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "{{BASE_URL}}/maintenance/assets/{{ASSET_ID}}/checklists/{{CHECKLIST_ID}}",
					"host": [
						"{{BASE_URL}}"
					],
					"path": [
						"maintenance",
						"assets",
						"{{ASSET_ID}}",
						"checklists",
						"{{CHECKLIST_ID}}"
					]
				},
				"description": "Update the pivot data for an asset-checklist relationship.\n\nYou can update:\n- is_required: Change whether the checklist is required\n- notes: Update the notes for this specific assignment"
			},
			"response": [
				{
					"name": "Success Response",
					"originalRequest": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"is_required\": false,\n    \"notes\": \"Updated notes - this checklist is now optional\"\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{BASE_URL}}/maintenance/assets/{{ASSET_ID}}/checklists/{{CHECKLIST_ID}}",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"maintenance",
								"assets",
								"{{ASSET_ID}}",
								"checklists",
								"{{CHECKLIST_ID}}"
							]
						}
					},
					"status": "OK",
					"code": 200,
					"_postman_previewlanguage": "json",
					"header": [],
					"cookie": [],
					"body": "{\n    \"success\": true,\n    \"message\": \"تم تحديث قائمة التحقق بنجاح / Asset checklist updated successfully\",\n    \"data\": {\n        \"asset_id\": 15,\n        \"checklists\": [\n            {\n                \"id\": 25,\n                \"title\": \"Custom Safety Inspection\",\n                \"pivot\": {\n                    \"is_required\": false,\n                    \"notes\": \"Updated notes - this checklist is now optional\",\n                    \"updated_at\": \"2026-01-27T11:00:00.000000Z\"\n                }\n            }\n        ]\n    }\n}"
				}
			]
		},
		{
			"name": "5. Remove Checklist from Asset",
			"request": {
				"method": "DELETE",
				"header": [
					{
						"key": "Accept",
						"value": "application/json",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{TOKEN}}",
						"type": "text"
					}
				],
				"url": {
					"raw": "{{BASE_URL}}/maintenance/assets/{{ASSET_ID}}/checklists/{{CHECKLIST_ID}}",
					"host": [
						"{{BASE_URL}}"
					],
					"path": [
						"maintenance",
						"assets",
						"{{ASSET_ID}}",
						"checklists",
						"{{CHECKLIST_ID}}"
					]
				},
				"description": "Detach a checklist from a specific asset.\n\nThis only removes the asset-specific assignment. The checklist itself is not deleted and can still be used by the asset type or other assets."
			},
			"response": [
				{
					"name": "Success Response",
					"originalRequest": {
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "{{BASE_URL}}/maintenance/assets/{{ASSET_ID}}/checklists/{{CHECKLIST_ID}}",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"maintenance",
								"assets",
								"{{ASSET_ID}}",
								"checklists",
								"{{CHECKLIST_ID}}"
							]
						}
					},
					"status": "OK",
					"code": 200,
					"_postman_previewlanguage": "json",
					"header": [],
					"cookie": [],
					"body": "{\n    \"success\": true,\n    \"message\": \"تم إزالة قائمة التحقق من الأصل بنجاح / Checklist detached from asset successfully\",\n    \"data\": null\n}"
				},
				{
					"name": "Error - Not Attached",
					"originalRequest": {
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "{{BASE_URL}}/maintenance/assets/{{ASSET_ID}}/checklists/{{CHECKLIST_ID}}",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"maintenance",
								"assets",
								"{{ASSET_ID}}",
								"checklists",
								"{{CHECKLIST_ID}}"
							]
						}
					},
					"status": "Unprocessable Entity",
					"code": 422,
					"_postman_previewlanguage": "json",
					"header": [],
					"cookie": [],
					"body": "{\n    \"success\": false,\n    \"message\": \"Failed to detach checklist from asset: هذه القائمة غير مرفقة بهذا الأصل / This checklist is not attached to this asset\"\n}"
				}
			]
		},
		{
			"name": "6. Sync Asset Checklists",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Accept",
						"value": "application/json",
						"type": "text"
					},
					{
						"key": "Content-Type",
						"value": "application/json",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{TOKEN}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n    \"checklists\": [\n        {\n            \"id\": 25,\n            \"is_required\": true,\n            \"notes\": \"First checklist - required\"\n        },\n        {\n            \"id\": 30,\n            \"is_required\": false,\n            \"notes\": \"Second checklist - optional\"\n        },\n        {\n            \"id\": 35,\n            \"is_required\": true,\n            \"notes\": \"Third checklist - required\"\n        }\n    ]\n}",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "{{BASE_URL}}/maintenance/assets/{{ASSET_ID}}/checklists/sync",
					"host": [
						"{{BASE_URL}}"
					],
					"path": [
						"maintenance",
						"assets",
						"{{ASSET_ID}}",
						"checklists",
						"sync"
					]
				},
				"description": "Sync (replace) all asset-specific checklists with the provided list.\n\nThis will:\n- Remove any existing asset-specific checklists not in the list\n- Add new checklists from the list\n- Update existing checklists with new pivot data\n\nUseful for bulk operations when you want to set the exact list of asset checklists."
			},
			"response": [
				{
					"name": "Success Response",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"checklists\": [\n        {\n            \"id\": 25,\n            \"is_required\": true,\n            \"notes\": \"First checklist\"\n        },\n        {\n            \"id\": 30,\n            \"is_required\": false,\n            \"notes\": \"Second checklist\"\n        }\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{BASE_URL}}/maintenance/assets/{{ASSET_ID}}/checklists/sync",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"maintenance",
								"assets",
								"{{ASSET_ID}}",
								"checklists",
								"sync"
							]
						}
					},
					"status": "OK",
					"code": 200,
					"_postman_previewlanguage": "json",
					"header": [],
					"cookie": [],
					"body": "{\n    \"success\": true,\n    \"message\": \"تم مزامنة قوائم التحقق بنجاح / Asset checklists synchronized successfully\",\n    \"data\": {\n        \"asset_id\": 15,\n        \"checklists\": [\n            {\n                \"id\": 25,\n                \"title\": \"Custom Safety Inspection\",\n                \"pivot\": {\n                    \"is_required\": true,\n                    \"notes\": \"First checklist\"\n                }\n            },\n            {\n                \"id\": 30,\n                \"title\": \"Equipment Calibration\",\n                \"pivot\": {\n                    \"is_required\": false,\n                    \"notes\": \"Second checklist\"\n                }\n            }\n        ]\n    }\n}"
				}
			]
		},
		{
			"name": "7. View Checklist Responses (Visit)",
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Accept",
						"value": "application/json",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{TOKEN}}",
						"type": "text"
					}
				],
				"url": {
					"raw": "{{BASE_URL}}/maintenance/visits/:visitId/checklist",
					"host": [
						"{{BASE_URL}}"
					],
					"path": [
						"maintenance",
						"visits",
						":visitId",
						"checklist"
					],
					"variable": [
						{
							"key": "visitId",
							"value": "1",
							"description": "Visit ID"
						}
					]
				},
				"description": "View all checklist responses for a visit.\n\nThis includes responses to:\n- Asset type checklists\n- Parent asset type checklists\n- Asset-specific checklists"
			},
			"response": [
				{
					"name": "Success Response",
					"originalRequest": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{BASE_URL}}/maintenance/visits/:visitId/checklist",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"maintenance",
								"visits",
								":visitId",
								"checklist"
							],
							"variable": [
								{
									"key": "visitId",
									"value": "1"
								}
							]
						}
					},
					"status": "OK",
					"code": 200,
					"_postman_previewlanguage": "json",
					"header": [],
					"cookie": [],
					"body": "{\n    \"success\": true,\n    \"message\": \"إجابات قائمة التحقق\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"maintenance_visit_id\": 5,\n            \"maintenance_checklist_item_id\": 10,\n            \"item\": {\n                \"id\": 10,\n                \"question_text\": \"Is the equipment functioning properly?\",\n                \"question_type\": \"yes_no\",\n                \"is_required\": true,\n                \"checklist\": {\n                    \"id\": 2,\n                    \"title\": \"Monthly Equipment Inspection\"\n                }\n            },\n            \"response_value\": \"yes\",\n            \"notes\": \"All systems operational\",\n            \"is_compliant\": true\n        }\n    ]\n}"
				}
			]
		},
		{
			"name": "8. Create Report (With Validation)",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Accept",
						"value": "application/json",
						"type": "text"
					},
					{
						"key": "Content-Type",
						"value": "application/json",
						"type": "text"
					},
					{
						"key": "Authorization",
						"value": "Bearer {{TOKEN}}",
						"type": "text"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n    \"maintenance_visit_id\": 5,\n    \"status\": \"awaiting_approval\",\n    \"work_performed\": \"Completed all maintenance tasks and inspections\",\n    \"findings\": \"All systems operating within normal parameters\",\n    \"recommendations\": \"Continue regular maintenance schedule\",\n    \"checklist_responses\": [\n        {\n            \"maintenance_checklist_item_id\": 10,\n            \"response_value\": \"yes\",\n            \"notes\": \"Equipment functioning properly\",\n            \"is_compliant\": true\n        },\n        {\n            \"maintenance_checklist_item_id\": 25,\n            \"response_value\": \"yes\",\n            \"notes\": \"Safety checks passed\",\n            \"is_compliant\": true\n        }\n    ]\n}",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "{{BASE_URL}}/maintenance/reports",
					"host": [
						"{{BASE_URL}}"
					],
					"path": [
						"maintenance",
						"reports"
					]
				},
				"description": "Create a maintenance visit report.\n\nWhen status is 'awaiting_approval' or 'completed', the system will validate that ALL required checklist items are answered, including:\n- Asset type checklists\n- Parent asset type checklists\n- Asset-specific checklists (NEW!)\n\nIf any required items are missing, the request will fail with a 422 error."
			},
			"response": [
				{
					"name": "Success Response",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"maintenance_visit_id\": 5,\n    \"status\": \"awaiting_approval\",\n    \"work_performed\": \"Completed maintenance\",\n    \"checklist_responses\": [\n        {\n            \"maintenance_checklist_item_id\": 10,\n            \"response_value\": \"yes\"\n        }\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{BASE_URL}}/maintenance/reports",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"maintenance",
								"reports"
							]
						}
					},
					"status": "Created",
					"code": 201,
					"_postman_previewlanguage": "json",
					"header": [],
					"cookie": [],
					"body": "{\n    \"success\": true,\n    \"message\": \"Report created successfully\",\n    \"data\": {\n        \"id\": 1,\n        \"maintenance_visit_id\": 5,\n        \"status\": \"awaiting_approval\",\n        \"work_performed\": \"Completed maintenance\"\n    }\n}"
				},
				{
					"name": "Error - Missing Required Checklists",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"maintenance_visit_id\": 5,\n    \"status\": \"awaiting_approval\",\n    \"work_performed\": \"Completed maintenance\"\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{BASE_URL}}/maintenance/reports",
							"host": [
								"{{BASE_URL}}"
							],
							"path": [
								"maintenance",
								"reports"
							]
						}
					},
					"status": "Unprocessable Entity",
					"code": 422,
					"_postman_previewlanguage": "json",
					"header": [],
					"cookie": [],
					"body": "{\n    \"success\": false,\n    \"message\": \"Failed to create report: لا يمكن إرسال التقرير. يرجى إكمال جميع عناصر قائمة التحقق المطلوبة: Is the equipment functioning properly?, Check oil levels, Custom safety inspection\"\n}"
				}
			]
		}
	],
	"auth": {
		"type": "bearer",
		"bearer": [
			{
				"key": "token",
				"value": "{{TOKEN}}",
				"type": "string"
			}
		]
	},
	"event": [
		{
			"listen": "prerequest",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		},
		{
			"listen": "test",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		}
	]
}
