{
    "info": {
        "_postman_id": "tanel-admin-api-v1",
        "name": "Tanel — Admin API",
        "description": "Admin API collection for Tanel.\n\n**Base URL:** `{{base_url}}`\n**Auth:** Bearer `{{admin_token}}` (Sanctum)\n\n## Response structure (ResponseTrait)\n```json\n{\n  \"key\": \"success|fail\",\n  \"msg\": \"...\",\n  \"code\": 200,\n  \"response_status\": { \"error\": false, \"validation_errors\": [] },\n  \"data\": {}\n}\n```\n\nRun **Auth → Login** first to auto-save `admin_token`.",
        "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
    },
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "token",
                "value": "{{admin_token}}",
                "type": "string"
            }
        ]
    },
    "variable": [
        {
            "key": "base_url",
            "value": "http://localhost:8000/api/v1/admin"
        },
        {
            "key": "admin_token",
            "value": ""
        }
    ],
    "item": [
        {
            "name": "Auth",
            "item": [
                {
                    "name": "Login",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/auth/login",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "auth",
                                "login"
                            ]
                        },
                        "description": "Public — returns token in `data.token`. Auto-saves `admin_token`.",
                        "auth": {
                            "type": "noauth"
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"email\": \"admin@example.com\",\n    \"password\": \"password\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": [
                        {
                            "name": "200 Success",
                            "status": "200 Success",
                            "code": 200,
                            "_postman_previewlanguage": "json",
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"key\": \"success\",\n    \"msg\": \"Logged in successfully.\",\n    \"code\": 200,\n    \"response_status\": {\n        \"error\": false,\n        \"validation_errors\": []\n    },\n    \"data\": {\n        \"admin\": {\n            \"id\": 1,\n            \"name\": \"Super Admin\",\n            \"email\": \"admin@example.com\"\n        },\n        \"token\": \"1|sanctum-token-here\"\n    }\n}"
                        }
                    ],
                    "event": [
                        {
                            "listen": "test",
                            "script": {
                                "type": "text/javascript",
                                "exec": [
                                    "if (pm.response.code === 200) {",
                                    "    const json = pm.response.json();",
                                    "    const token = json?.data?.token;",
                                    "    if (token) {",
                                    "        pm.collectionVariables.set('admin_token', token);",
                                    "        console.log('admin_token saved');",
                                    "    }",
                                    "}"
                                ]
                            }
                        }
                    ]
                },
                {
                    "name": "Logout",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/auth/logout",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "auth",
                                "logout"
                            ]
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "name": "200 Success",
                            "status": "200 Success",
                            "code": 200,
                            "_postman_previewlanguage": "json",
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"key\": \"success\",\n    \"msg\": \"Logged out successfully.\",\n    \"code\": 200,\n    \"response_status\": {\n        \"error\": false,\n        \"validation_errors\": []\n    },\n    \"data\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Me",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/auth/me",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "auth",
                                "me"
                            ]
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "name": "200 Success",
                            "status": "200 Success",
                            "code": 200,
                            "_postman_previewlanguage": "json",
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"key\": \"success\",\n    \"msg\": \"Data retrieved successfully.\",\n    \"code\": 200,\n    \"response_status\": {\n        \"error\": false,\n        \"validation_errors\": []\n    },\n    \"data\": {\n        \"id\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Update Profile",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/auth/profile",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "auth",
                                "profile"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Super Admin\",\n    \"email\": \"admin@example.com\",\n    \"country_code\": \"+966\",\n    \"phone\": \"501234567\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update Password",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/auth/password",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "auth",
                                "password"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"current_password\": \"password\",\n    \"password\": \"newpassword\",\n    \"password_confirmation\": \"newpassword\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": []
                }
            ],
            "description": "Authentication & profile — no permission middleware required."
        },
        {
            "name": "Dashboard",
            "item": [
                {
                    "name": "Index",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/dashboard",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "dashboard"
                            ]
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "name": "200 Success",
                            "status": "200 Success",
                            "code": 200,
                            "_postman_previewlanguage": "json",
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"key\": \"success\",\n    \"msg\": \"Data retrieved successfully.\",\n    \"code\": 200,\n    \"response_status\": {\n        \"error\": false,\n        \"validation_errors\": []\n    },\n    \"data\": {\n        \"id\": 1\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Revenue Chart",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/dashboard/revenue-chart",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "dashboard",
                                "revenue-chart"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Upcoming Events",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/dashboard/upcoming-events",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "dashboard",
                                "upcoming-events"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                }
            ],
            "description": "Permission: `dashboard`"
        },
        {
            "name": "Admins",
            "item": [
                {
                    "name": "List",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/admins",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "admins"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number"
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Items per page"
                                },
                                {
                                    "key": "filters[keyword]",
                                    "value": "",
                                    "description": "Search keyword",
                                    "disabled": true
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "name": "200 Paginated",
                            "status": "200 Paginated",
                            "code": 200,
                            "_postman_previewlanguage": "json",
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"key\": \"success\",\n    \"msg\": \"Data retrieved successfully.\",\n    \"code\": 200,\n    \"response_status\": {\n        \"error\": false,\n        \"validation_errors\": []\n    },\n    \"data\": {\n        \"items\": [],\n        \"pagination\": {\n            \"total\": 0,\n            \"per_page\": 15,\n            \"current_page\": 1,\n            \"last_page\": 1,\n            \"from\": null,\n            \"to\": null\n        }\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Create",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/admins",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "admins"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Supervisor One\",\n    \"email\": \"supervisor@example.com\",\n    \"password\": \"secret12\",\n    \"role\": \"admin\",\n    \"is_active\": true,\n    \"country_code\": \"+966\",\n    \"phone\": \"501234567\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "201 Created",
                            "code": 201,
                            "_postman_previewlanguage": "json",
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"key\": \"success\",\n    \"msg\": \"Data retrieved successfully.\",\n    \"code\": 200,\n    \"response_status\": {\n        \"error\": false,\n        \"validation_errors\": []\n    },\n    \"data\": {\n        \"id\": 1\n    }\n}"
                        },
                        {
                            "name": "422 Validation",
                            "status": "422 Validation",
                            "code": 422,
                            "_postman_previewlanguage": "json",
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"key\": \"fail\",\n    \"msg\": \"Validation error.\",\n    \"code\": 422,\n    \"response_status\": {\n        \"error\": true,\n        \"validation_errors\": {\n            \"email\": [\n                \"The email field is required.\"\n            ]\n        }\n    },\n    \"data\": null\n}"
                        }
                    ]
                },
                {
                    "name": "Show",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/admins/{{admin_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "admins",
                                "{{admin_id}}"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/admins/{{admin_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "admins",
                                "{{admin_id}}"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Supervisor One\",\n    \"email\": \"supervisor@example.com\",\n    \"role\": \"admin\",\n    \"is_active\": true,\n    \"country_code\": \"+966\",\n    \"phone\": \"501234567\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/admins/{{admin_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "admins",
                                "{{admin_id}}"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Toggle Block",
                    "request": {
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/admins/{{admin_id}}/toggle-block",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "admins",
                                "{{admin_id}}",
                                "toggle-block"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                }
            ],
            "description": "Permission: `admins`, `add-admin`, etc."
        },
        {
            "name": "Roles & Permissions",
            "item": [
                {
                    "name": "List Roles",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/roles",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "roles"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number"
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Items per page"
                                },
                                {
                                    "key": "filters[keyword]",
                                    "value": "",
                                    "description": "Search keyword",
                                    "disabled": true
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Create Role",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/roles",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "roles"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"editor\",\n    \"name_json\": {\n        \"en\": \"Editor\",\n        \"ar\": \"محرر\"\n    },\n    \"permissions\": [\n        \"clients\",\n        \"events\"\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": []
                },
                {
                    "name": "Show Role",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/roles/{{role_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "roles",
                                "{{role_id}}"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update Role",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/roles/{{role_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "roles",
                                "{{role_id}}"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"editor\",\n    \"permissions\": [\n        \"clients\"\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete Role",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/roles/{{role_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "roles",
                                "{{role_id}}"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "List Permissions",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/permissions",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "permissions"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Clients",
            "item": [
                {
                    "name": "List",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/clients",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "clients"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number"
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Items per page"
                                },
                                {
                                    "key": "filters[keyword]",
                                    "value": "",
                                    "description": "Search keyword",
                                    "disabled": true
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "name": "200 Paginated",
                            "status": "200 Paginated",
                            "code": 200,
                            "_postman_previewlanguage": "json",
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"key\": \"success\",\n    \"msg\": \"Data retrieved successfully.\",\n    \"code\": 200,\n    \"response_status\": {\n        \"error\": false,\n        \"validation_errors\": []\n    },\n    \"data\": {\n        \"items\": [],\n        \"pagination\": {\n            \"total\": 0,\n            \"per_page\": 15,\n            \"current_page\": 1,\n            \"last_page\": 1,\n            \"from\": null,\n            \"to\": null\n        }\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Create",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/clients",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "clients"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Abdulrahman Al Saud\",\n    \"country_code\": \"+966\",\n    \"phone\": \"501234567\",\n    \"email\": \"client@example.com\",\n    \"notes\": \"VIP client\",\n    \"country_id\": 1\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": []
                },
                {
                    "name": "Show",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/clients/{{client_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "clients",
                                "{{client_id}}"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/clients/{{client_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "clients",
                                "{{client_id}}"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Abdulrahman Al Saud\",\n    \"country_code\": \"+966\",\n    \"phone\": \"501234567\",\n    \"email\": \"client@example.com\",\n    \"notes\": \"Updated notes\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/clients/{{client_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "clients",
                                "{{client_id}}"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Events",
            "item": [
                {
                    "name": "List",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/events",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "events"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number"
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Items per page"
                                },
                                {
                                    "key": "filters[keyword]",
                                    "value": "",
                                    "description": "Search by reference or event name",
                                    "disabled": true
                                },
                                {
                                    "key": "filters[event_date_min]",
                                    "value": "",
                                    "description": "Date from (Y-m-d)",
                                    "disabled": true
                                },
                                {
                                    "key": "filters[event_date_max]",
                                    "value": "",
                                    "description": "Date to (Y-m-d)",
                                    "disabled": true
                                },
                                {
                                    "key": "filters[guest_count_range]",
                                    "value": "0-100",
                                    "description": "0-100 | 101-500 | 501-1000 | 1000+",
                                    "disabled": true
                                },
                                {
                                    "key": "filters[status]",
                                    "value": "unpaid",
                                    "description": "unpaid | cancelled | paid | installments | completed | pending",
                                    "disabled": true
                                },
                                {
                                    "key": "filters[is_paid]",
                                    "value": "0",
                                    "description": "1 = paid, 0 = unpaid",
                                    "disabled": true
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Create",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/events",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "events"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"client_id\": 1,\n    \"event_date\": \"2026-12-01\",\n    \"event_time\": \"18:00\",\n    \"hall_name\": \"Grand Hall\",\n    \"location_url\": \"https://maps.google.com/?q=Grand+Hall\",\n    \"whatsapp_message\": \"Welcome to our event!\",\n    \"total_cost\": 15000,\n    \"is_paid\": true,\n    \"payment_type\": \"single\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": []
                },
                {
                    "name": "Show",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/events/{{event_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "events",
                                "{{event_id}}"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/events/{{event_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "events",
                                "{{event_id}}"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"hall_name\": \"Updated Hall\",\n    \"status\": \"pending\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update Payment Status",
                    "request": {
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/events/{{event_id}}/payment-status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "events",
                                "{{event_id}}",
                                "payment-status"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"status\": \"installments\",\n    \"first_installment_amount\": 7500,\n    \"second_installment_amount\": 7500,\n    \"second_installment_due_date\": \"2026-12-15\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/events/{{event_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "events",
                                "{{event_id}}"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Guests",
                    "item": [
                        {
                            "name": "List Guests",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/events/{{event_id}}/guests",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "events",
                                        "{{event_id}}",
                                        "guests"
                                    ],
                                    "query": [
                                        {
                                            "key": "page",
                                            "value": "1",
                                            "description": "Page number"
                                        },
                                        {
                                            "key": "per_page",
                                            "value": "15",
                                            "description": "Items per page"
                                        },
                                        {
                                            "key": "filters[keyword]",
                                            "value": "",
                                            "description": "Search keyword",
                                            "disabled": true
                                        }
                                    ]
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Add Guest",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/events/{{event_id}}/guests",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "events",
                                        "{{event_id}}",
                                        "guests"
                                    ]
                                },
                                "description": "",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Guest Name\",\n    \"phone\": \"501111111\",\n    \"country_code\": \"+966\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Import Guests",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/events/{{event_id}}/guests/import",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "events",
                                        "{{event_id}}",
                                        "guests",
                                        "import"
                                    ]
                                },
                                "description": "",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "file",
                                            "type": "file",
                                            "value": "",
                                            "description": "CSV/Excel file"
                                        }
                                    ]
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Show Guest",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/events/{{event_id}}/guests/{{guest_id}}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "events",
                                        "{{event_id}}",
                                        "guests",
                                        "{{guest_id}}"
                                    ]
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Update Guest",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/events/{{event_id}}/guests/{{guest_id}}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "events",
                                        "{{event_id}}",
                                        "guests",
                                        "{{guest_id}}"
                                    ]
                                },
                                "description": "",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"Updated Guest\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Delete Guest",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/events/{{event_id}}/guests/{{guest_id}}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "events",
                                        "{{event_id}}",
                                        "guests",
                                        "{{guest_id}}"
                                    ]
                                },
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Transactions",
                    "item": [
                        {
                            "name": "List Transactions",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/events/{{event_id}}/transactions",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "events",
                                        "{{event_id}}",
                                        "transactions"
                                    ]
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Add Transaction",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/events/{{event_id}}/transactions",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "events",
                                        "{{event_id}}",
                                        "transactions"
                                    ]
                                },
                                "description": "",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"amount\": 5000,\n    \"type\": \"payment\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Show Transaction",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/events/{{event_id}}/transactions/{{transaction_id}}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "events",
                                        "{{event_id}}",
                                        "transactions",
                                        "{{transaction_id}}"
                                    ]
                                },
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                }
            ]
        },
        {
            "name": "Invitations",
            "item": [
                {
                    "name": "List",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/invitations",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "invitations"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number"
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Items per page"
                                },
                                {
                                    "key": "filters[keyword]",
                                    "value": "",
                                    "description": "Search keyword",
                                    "disabled": true
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Create",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/invitations",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "invitations"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "event_id",
                                    "type": "text",
                                    "value": "1"
                                },
                                {
                                    "key": "logic_type",
                                    "type": "text",
                                    "value": "strict_action"
                                },
                                {
                                    "key": "deadline_date",
                                    "type": "text",
                                    "value": "2026-11-25"
                                },
                                {
                                    "key": "deadline_time",
                                    "type": "text",
                                    "value": "18:00"
                                },
                                {
                                    "key": "design",
                                    "type": "file",
                                    "value": "",
                                    "description": "png, jpg, jpeg, pdf — max 10MB"
                                }
                            ]
                        }
                    },
                    "response": []
                },
                {
                    "name": "Show",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/invitations/{{invitation_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "invitations",
                                "{{invitation_id}}"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/invitations/{{invitation_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "invitations",
                                "{{invitation_id}}"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "logic_type",
                                    "type": "text",
                                    "value": "default_accept"
                                },
                                {
                                    "key": "deadline_date",
                                    "type": "text",
                                    "value": "2026-11-25"
                                },
                                {
                                    "key": "deadline_time",
                                    "type": "text",
                                    "value": "20:00"
                                }
                            ]
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/invitations/{{invitation_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "invitations",
                                "{{invitation_id}}"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Send",
                    "request": {
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/invitations/{{invitation_id}}/send",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "invitations",
                                "{{invitation_id}}",
                                "send"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Services",
            "item": [
                {
                    "name": "List",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/services",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "services"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number"
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Items per page"
                                },
                                {
                                    "key": "filters[keyword]",
                                    "value": "",
                                    "description": "Search keyword",
                                    "disabled": true
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Create",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/services",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "services"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "name_ar",
                                    "type": "text",
                                    "value": "تصوير"
                                },
                                {
                                    "key": "name_en",
                                    "type": "text",
                                    "value": "Photography"
                                },
                                {
                                    "key": "description_ar",
                                    "type": "text",
                                    "value": "خدمة تصوير احترافية"
                                },
                                {
                                    "key": "description_en",
                                    "type": "text",
                                    "value": "Professional photography"
                                },
                                {
                                    "key": "status",
                                    "type": "text",
                                    "value": "1"
                                },
                                {
                                    "key": "sort_order",
                                    "type": "text",
                                    "value": "0"
                                },
                                {
                                    "key": "image",
                                    "type": "file",
                                    "value": "",
                                    "description": "jpeg, png, jpg, webp — max 2MB"
                                }
                            ]
                        }
                    },
                    "response": []
                },
                {
                    "name": "Show",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/services/{{service_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "services",
                                "{{service_id}}"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/services/{{service_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "services",
                                "{{service_id}}"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "name_ar",
                                    "type": "text",
                                    "value": "تصوير"
                                },
                                {
                                    "key": "name_en",
                                    "type": "text",
                                    "value": "Photography"
                                },
                                {
                                    "key": "description_ar",
                                    "type": "text",
                                    "value": "وصف محدث"
                                },
                                {
                                    "key": "description_en",
                                    "type": "text",
                                    "value": "Updated description"
                                }
                            ]
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/services/{{service_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "services",
                                "{{service_id}}"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Toggle Status",
                    "request": {
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/services/{{service_id}}/toggle-status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "services",
                                "{{service_id}}",
                                "toggle-status"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Options",
                    "item": [
                        {
                            "name": "List Options",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/services/{{service_id}}/options",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "services",
                                        "{{service_id}}",
                                        "options"
                                    ]
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Create Option",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/services/{{service_id}}/options",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "services",
                                        "{{service_id}}",
                                        "options"
                                    ]
                                },
                                "description": "",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name_ar\": \"اللون\",\n    \"name_en\": \"Color\",\n    \"type\": \"color\",\n    \"is_required\": true,\n    \"sort\": 0,\n    \"values\": [\n        {\n            \"value_ar\": \"أحمر\",\n            \"value_en\": \"Red\",\n            \"color_hex\": \"#FF0000\",\n            \"sort\": 0\n        }\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Reorder Options",
                            "request": {
                                "method": "PATCH",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/services/{{service_id}}/options/reorder",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "services",
                                        "{{service_id}}",
                                        "options",
                                        "reorder"
                                    ]
                                },
                                "description": "",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"sort\": 0\n        },\n        {\n            \"id\": 2,\n            \"sort\": 1\n        }\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Show Option",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/services/{{service_id}}/options/{{option_id}}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "services",
                                        "{{service_id}}",
                                        "options",
                                        "{{option_id}}"
                                    ]
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Update Option",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/services/{{service_id}}/options/{{option_id}}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "services",
                                        "{{service_id}}",
                                        "options",
                                        "{{option_id}}"
                                    ]
                                },
                                "description": "",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name_ar\": \"اللون\",\n    \"name_en\": \"Color\",\n    \"is_required\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Delete Option",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/services/{{service_id}}/options/{{option_id}}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "services",
                                        "{{service_id}}",
                                        "options",
                                        "{{option_id}}"
                                    ]
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Values",
                            "item": [
                                {
                                    "name": "List Values",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/services/{{service_id}}/options/{{option_id}}/values",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "services",
                                                "{{service_id}}",
                                                "options",
                                                "{{option_id}}",
                                                "values"
                                            ]
                                        },
                                        "description": ""
                                    },
                                    "response": []
                                },
                                {
                                    "name": "Create Value",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/services/{{service_id}}/options/{{option_id}}/values",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "services",
                                                "{{service_id}}",
                                                "options",
                                                "{{option_id}}",
                                                "values"
                                            ]
                                        },
                                        "description": "",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"value_ar\": \"أزرق\",\n    \"value_en\": \"Blue\",\n    \"color_hex\": \"#0000FF\",\n    \"sort\": 1\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    },
                                    "response": []
                                },
                                {
                                    "name": "Reorder Values",
                                    "request": {
                                        "method": "PATCH",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/services/{{service_id}}/options/{{option_id}}/values/reorder",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "services",
                                                "{{service_id}}",
                                                "options",
                                                "{{option_id}}",
                                                "values",
                                                "reorder"
                                            ]
                                        },
                                        "description": "",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"sort\": 0\n        },\n        {\n            \"id\": 2,\n            \"sort\": 1\n        }\n    ]\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    },
                                    "response": []
                                },
                                {
                                    "name": "Update Value",
                                    "request": {
                                        "method": "PUT",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/services/{{service_id}}/options/{{option_id}}/values/{{value_id}}",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "services",
                                                "{{service_id}}",
                                                "options",
                                                "{{option_id}}",
                                                "values",
                                                "{{value_id}}"
                                            ]
                                        },
                                        "description": "",
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"value_ar\": \"أزرق\",\n    \"value_en\": \"Blue\",\n    \"color_hex\": \"#0000FF\"\n}",
                                            "options": {
                                                "raw": {
                                                    "language": "json"
                                                }
                                            }
                                        }
                                    },
                                    "response": []
                                },
                                {
                                    "name": "Delete Value",
                                    "request": {
                                        "method": "DELETE",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/services/{{service_id}}/options/{{option_id}}/values/{{value_id}}",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "services",
                                                "{{service_id}}",
                                                "options",
                                                "{{option_id}}",
                                                "values",
                                                "{{value_id}}"
                                            ]
                                        },
                                        "description": ""
                                    },
                                    "response": []
                                }
                            ]
                        }
                    ]
                }
            ]
        },
        {
            "name": "Employees",
            "item": [
                {
                    "name": "List",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/employees",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "employees"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number"
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Items per page"
                                },
                                {
                                    "key": "filters[keyword]",
                                    "value": "",
                                    "description": "Search keyword",
                                    "disabled": true
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Create",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/employees",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "employees"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Field Staff\",\n    \"username\": \"staff01\",\n    \"password\": \"password123\",\n    \"country_code\": \"+966\",\n    \"phone\": \"509876543\",\n    \"is_active\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": []
                },
                {
                    "name": "Show",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/employees/{{employee_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "employees",
                                "{{employee_id}}"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/employees/{{employee_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "employees",
                                "{{employee_id}}"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Field Staff Updated\",\n    \"is_active\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/employees/{{employee_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "employees",
                                "{{employee_id}}"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Toggle Active",
                    "request": {
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/employees/{{employee_id}}/toggle-active",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "employees",
                                "{{employee_id}}",
                                "toggle-active"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Sync Events",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/employees/{{employee_id}}/events",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "employees",
                                "{{employee_id}}",
                                "events"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"event_ids\": [\n        1,\n        2,\n        3\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Finance",
            "item": [
                {
                    "name": "List",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/financial-records",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "financial-records"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number"
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Items per page"
                                },
                                {
                                    "key": "filters[keyword]",
                                    "value": "",
                                    "description": "Search keyword",
                                    "disabled": true
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Show",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/financial-records/{{financial_record_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "financial-records",
                                "{{financial_record_id}}"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Download PDF",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/financial-records/{{financial_record_id}}/pdf",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "financial-records",
                                "{{financial_record_id}}",
                                "pdf"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Manual Settle",
                    "request": {
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/financial-records/{{financial_record_id}}/settle",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "financial-records",
                                "{{financial_record_id}}",
                                "settle"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Service Orders",
            "item": [
                {
                    "name": "List",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/service-orders",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "service-orders"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number"
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Items per page"
                                },
                                {
                                    "key": "filters[keyword]",
                                    "value": "",
                                    "description": "Search keyword",
                                    "disabled": true
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Create",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/service-orders",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "service-orders"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"client_id\": 1,\n    \"event_date\": \"2026-12-15\",\n    \"event_time\": \"19:00\",\n    \"hall_name\": \"Royal Hall\",\n    \"location_url\": \"https://maps.google.com/?q=Royal+Hall\",\n    \"notes\": \"Special setup required\",\n    \"status\": \"upcoming\",\n    \"payment_status\": \"unpaid\",\n    \"items\": [\n        {\n            \"service_id\": 1,\n            \"price\": 2500,\n            \"notes\": \"Photography package\",\n            \"employees\": [\n                {\n                    \"employee_id\": 1\n                }\n            ],\n            \"options\": [\n                {\n                    \"service_option_id\": 1,\n                    \"service_option_value_id\": 1\n                }\n            ]\n        }\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": []
                },
                {
                    "name": "Show",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/service-orders/{{service_order_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "service-orders",
                                "{{service_order_id}}"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/service-orders/{{service_order_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "service-orders",
                                "{{service_order_id}}"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"client_id\": 1,\n    \"event_date\": \"2026-12-15\",\n    \"event_time\": \"19:00\",\n    \"hall_name\": \"Royal Hall\",\n    \"status\": \"ongoing\",\n    \"payment_status\": \"paid\",\n    \"items\": [\n        {\n            \"service_id\": 1,\n            \"price\": 2500,\n            \"options\": [],\n            \"employees\": []\n        }\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/service-orders/{{service_order_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "service-orders",
                                "{{service_order_id}}"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Service Requests",
            "item": [
                {
                    "name": "List",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/service-requests",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "service-requests"
                            ],
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number"
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Items per page"
                                },
                                {
                                    "key": "filters[keyword]",
                                    "value": "",
                                    "description": "Search keyword",
                                    "disabled": true
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Show",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/service-requests/{{service_request_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "service-requests",
                                "{{service_request_id}}"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/service-requests/{{service_request_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "service-requests",
                                "{{service_request_id}}"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"status\": \"contacted\",\n    \"notes\": \"Called client back\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/service-requests/{{service_request_id}}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "service-requests",
                                "{{service_request_id}}"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Landing Page",
            "item": [
                {
                    "name": "Get All Sections",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/landing-page",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "landing-page"
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update Hero",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/landing-page/hero",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "landing-page",
                                "hero"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "title_ar",
                                    "type": "text",
                                    "value": "تنظيم فعالياتك باحتراف"
                                },
                                {
                                    "key": "title_en",
                                    "type": "text",
                                    "value": "Plan Your Events Professionally"
                                },
                                {
                                    "key": "subtitle_ar",
                                    "type": "text",
                                    "value": "منصة متكاملة"
                                },
                                {
                                    "key": "subtitle_en",
                                    "type": "text",
                                    "value": "All-in-one platform"
                                },
                                {
                                    "key": "primary_cta_label_ar",
                                    "type": "text",
                                    "value": "ابدأ الآن"
                                },
                                {
                                    "key": "primary_cta_label_en",
                                    "type": "text",
                                    "value": "Get Started"
                                },
                                {
                                    "key": "primary_cta_url",
                                    "type": "text",
                                    "value": "https://tanel.com/book"
                                },
                                {
                                    "key": "image",
                                    "type": "file",
                                    "value": "",
                                    "description": "Hero image — optional"
                                }
                            ]
                        }
                    },
                    "response": []
                },
                {
                    "name": "Features",
                    "item": [
                        {
                            "name": "List",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/features",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "features"
                                    ]
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Create",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/features",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "features"
                                    ]
                                },
                                "description": "",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "title_ar",
                                            "type": "text",
                                            "value": "إدارة الضيوف"
                                        },
                                        {
                                            "key": "title_en",
                                            "type": "text",
                                            "value": "Guest Management"
                                        },
                                        {
                                            "key": "description_ar",
                                            "type": "text",
                                            "value": "تتبع الحضور بسهولة"
                                        },
                                        {
                                            "key": "description_en",
                                            "type": "text",
                                            "value": "Track attendance easily"
                                        },
                                        {
                                            "key": "status",
                                            "type": "text",
                                            "value": "1"
                                        },
                                        {
                                            "key": "sort",
                                            "type": "text",
                                            "value": "0"
                                        },
                                        {
                                            "key": "icon",
                                            "type": "file",
                                            "value": "",
                                            "description": ""
                                        }
                                    ]
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Reorder",
                            "request": {
                                "method": "PATCH",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/features/reorder",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "features",
                                        "reorder"
                                    ]
                                },
                                "description": "",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"sort\": 0\n        },\n        {\n            \"id\": 2,\n            \"sort\": 1\n        }\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Update",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/features/{{feature_id}}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "features",
                                        "{{feature_id}}"
                                    ]
                                },
                                "description": "",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "title_ar",
                                            "type": "text",
                                            "value": "عنوان"
                                        },
                                        {
                                            "key": "title_en",
                                            "type": "text",
                                            "value": "Title"
                                        },
                                        {
                                            "key": "description_ar",
                                            "type": "text",
                                            "value": "وصف"
                                        },
                                        {
                                            "key": "description_en",
                                            "type": "text",
                                            "value": "Description"
                                        }
                                    ]
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Delete",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/features/{{feature_id}}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "features",
                                        "{{feature_id}}"
                                    ]
                                },
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "How It Works",
                    "item": [
                        {
                            "name": "List",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/how-it-works",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "how-it-works"
                                    ]
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Create",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/how-it-works",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "how-it-works"
                                    ]
                                },
                                "description": "",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "title_ar",
                                            "type": "text",
                                            "value": "الخطوة 1"
                                        },
                                        {
                                            "key": "title_en",
                                            "type": "text",
                                            "value": "Step 1"
                                        },
                                        {
                                            "key": "description_ar",
                                            "type": "text",
                                            "value": "سجّل حسابك"
                                        },
                                        {
                                            "key": "description_en",
                                            "type": "text",
                                            "value": "Register your account"
                                        },
                                        {
                                            "key": "icon",
                                            "type": "file",
                                            "value": "",
                                            "description": ""
                                        }
                                    ]
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Reorder",
                            "request": {
                                "method": "PATCH",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/how-it-works/reorder",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "how-it-works",
                                        "reorder"
                                    ]
                                },
                                "description": "",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"sort\": 0\n        },\n        {\n            \"id\": 2,\n            \"sort\": 1\n        }\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Update",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/how-it-works/{{step_id}}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "how-it-works",
                                        "{{step_id}}"
                                    ]
                                },
                                "description": "",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "title_ar",
                                            "type": "text",
                                            "value": "الخطوة 1"
                                        },
                                        {
                                            "key": "title_en",
                                            "type": "text",
                                            "value": "Step 1"
                                        }
                                    ]
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Delete",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/how-it-works/{{step_id}}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "how-it-works",
                                        "{{step_id}}"
                                    ]
                                },
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Sections",
                    "item": [
                        {
                            "name": "List Headings",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/sections",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "sections"
                                    ]
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Update Heading",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/sections/{{section_key}}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "sections",
                                        "{{section_key}}"
                                    ]
                                },
                                "description": "section_key: how_it_works | features | portfolio | booking | contact",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"title_ar\": \"معرض الأعمال\",\n    \"title_en\": \"Portfolio\",\n    \"subtitle_ar\": \"أعمالنا\",\n    \"subtitle_en\": \"Our work\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Update Footer",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/landing-page/footer",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "landing-page",
                                "footer"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"brand_name_ar\": \"تانيل\",\n    \"brand_name_en\": \"Tanel\",\n    \"tagline_ar\": \"تنظيم فعاليات\",\n    \"tagline_en\": \"Event Management\",\n    \"description_ar\": \"وصف الشركة\",\n    \"description_en\": \"Company description\",\n    \"about_url\": \"https://tanel.com/about\",\n    \"privacy_url\": \"https://tanel.com/privacy\",\n    \"terms_url\": \"https://tanel.com/terms\",\n    \"copyright\": \"© 2026 Tanel\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": []
                },
                {
                    "name": "Event Types",
                    "item": [
                        {
                            "name": "List",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/event-types",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "event-types"
                                    ]
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Create",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/event-types",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "event-types"
                                    ]
                                },
                                "description": "",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name_ar\": \"أعراس\",\n    \"name_en\": \"Weddings\",\n    \"status\": true,\n    \"sort\": 0\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Reorder",
                            "request": {
                                "method": "PATCH",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/event-types/reorder",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "event-types",
                                        "reorder"
                                    ]
                                },
                                "description": "",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"sort\": 0\n        },\n        {\n            \"id\": 2,\n            \"sort\": 1\n        }\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Update",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/event-types/{{event_type_id}}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "event-types",
                                        "{{event_type_id}}"
                                    ]
                                },
                                "description": "",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name_ar\": \"أعراس\",\n    \"name_en\": \"Weddings\"\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Delete",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/event-types/{{event_type_id}}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "event-types",
                                        "{{event_type_id}}"
                                    ]
                                },
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Portfolio",
                    "item": [
                        {
                            "name": "List",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/portfolio",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "portfolio"
                                    ]
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Create",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/portfolio",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "portfolio"
                                    ]
                                },
                                "description": "",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "name_ar",
                                            "type": "text",
                                            "value": "حفل زفاف"
                                        },
                                        {
                                            "key": "name_en",
                                            "type": "text",
                                            "value": "Wedding Event"
                                        },
                                        {
                                            "key": "status",
                                            "type": "text",
                                            "value": "1"
                                        },
                                        {
                                            "key": "sort",
                                            "type": "text",
                                            "value": "0"
                                        },
                                        {
                                            "key": "image",
                                            "type": "file",
                                            "value": "",
                                            "description": ""
                                        }
                                    ]
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Reorder",
                            "request": {
                                "method": "PATCH",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/portfolio/reorder",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "portfolio",
                                        "reorder"
                                    ]
                                },
                                "description": "",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"sort\": 0\n        },\n        {\n            \"id\": 2,\n            \"sort\": 1\n        }\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Update",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/portfolio/{{portfolio_id}}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "portfolio",
                                        "{{portfolio_id}}"
                                    ]
                                },
                                "description": "",
                                "body": {
                                    "mode": "formdata",
                                    "formdata": [
                                        {
                                            "key": "name_ar",
                                            "type": "text",
                                            "value": "حفل"
                                        },
                                        {
                                            "key": "name_en",
                                            "type": "text",
                                            "value": "Event"
                                        }
                                    ]
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Delete",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/portfolio/{{portfolio_id}}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "portfolio",
                                        "{{portfolio_id}}"
                                    ]
                                },
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                },
                {
                    "name": "Update Contact",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}/landing-page/contact",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "landing-page",
                                "contact"
                            ]
                        },
                        "description": "",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"whatsapp\": \"+96599887766\",\n    \"office_address_ar\": \"الكويت، السالمية\",\n    \"office_address_en\": \"Salmiya, Kuwait\",\n    \"google_maps_url\": \"https://maps.google.com/?q=Salmiya\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    },
                    "response": []
                },
                {
                    "name": "Social Links",
                    "item": [
                        {
                            "name": "List",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/social-links",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "social-links"
                                    ]
                                },
                                "description": ""
                            },
                            "response": []
                        },
                        {
                            "name": "Create",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/social-links",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "social-links"
                                    ]
                                },
                                "description": "",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"platform\": \"instagram\",\n    \"url\": \"https://instagram.com/tanel\",\n    \"label_ar\": \"إنستغرام\",\n    \"label_en\": \"Instagram\",\n    \"status\": true,\n    \"sort\": 0\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Reorder",
                            "request": {
                                "method": "PATCH",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/social-links/reorder",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "social-links",
                                        "reorder"
                                    ]
                                },
                                "description": "",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"items\": [\n        {\n            \"id\": 1,\n            \"sort\": 0\n        },\n        {\n            \"id\": 2,\n            \"sort\": 1\n        }\n    ]\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Update",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/social-links/{{link_id}}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "social-links",
                                        "{{link_id}}"
                                    ]
                                },
                                "description": "",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"url\": \"https://instagram.com/tanel\",\n    \"status\": true\n}",
                                    "options": {
                                        "raw": {
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "response": []
                        },
                        {
                            "name": "Delete",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/landing-page/social-links/{{link_id}}",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "landing-page",
                                        "social-links",
                                        "{{link_id}}"
                                    ]
                                },
                                "description": ""
                            },
                            "response": []
                        }
                    ]
                }
            ],
            "description": "CMS — bilingual fields accept flat `*_ar` / `*_en` keys."
        }
    ]
}
