{
    "info": {
        "name": "User Portfolio API",
        "description": "Complete portfolio management system with projects, skills, experience, education, testimonials, and blog",
        "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
    },
    "item": [
        {
            "name": "\ud83d\udd10 Authentication",
            "description": "Authentication endpoints for user registration and login",
            "item": [
                {
                    "name": "Register",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Test User\",\n    \"email\": \"test@example.com\",\n    \"password\": \"password123\"\n}"
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/auth/register",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "auth",
                                "register"
                            ]
                        }
                    }
                },
                {
                    "name": "Login",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"email\": \"alex.mitchell@portfolio.dev\",\n    \"password\": \"password123\"\n}"
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/auth/login",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "auth",
                                "login"
                            ]
                        }
                    }
                }
            ]
        },
        {
            "name": "Blog",
            "description": "Personal blog posts and articles",
            "item": [
                {
                    "name": "Get All Blog",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/blog",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "blog"
                            ]
                        },
                        "description": "Retrieve a paginated list of all blog"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Alexandra Mitchell\",\n            \"title\": \"10 React Performance Optimization Tips\",\n            \"slug\": \"10-react-performance-tips\",\n            \"excerpt\": \"Learn how to make your React applications faster and more efficient with these proven optimization techniques.\",\n            \"content\": \"Performance is crucial for user experience. In this article, I share 10 practical tips for optimizing React applications...\",\n            \"featured_image\": \"https:\\/\\/picsum.photos\\/800\\/450?random=blog1\",\n            \"category\": \"Web Development\",\n            \"tags\": [\n                \"React\",\n                \"Performance\",\n                \"JavaScript\",\n                \"Optimization\"\n            ],\n            \"views\": 3421,\n            \"reading_time\": \"8 min read\",\n            \"published_at\": \"2024-01-10T09:00:00Z\"\n        },\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Alexandra Mitchell\",\n            \"title\": \"10 React Performance Optimization Tips\",\n            \"slug\": \"10-react-performance-tips\",\n            \"excerpt\": \"Learn how to make your React applications faster and more efficient with these proven optimization techniques.\",\n            \"content\": \"Performance is crucial for user experience. In this article, I share 10 practical tips for optimizing React applications...\",\n            \"featured_image\": \"https:\\/\\/picsum.photos\\/800\\/450?random=blog1\",\n            \"category\": \"Web Development\",\n            \"tags\": [\n                \"React\",\n                \"Performance\",\n                \"JavaScript\",\n                \"Optimization\"\n            ],\n            \"views\": 3421,\n            \"reading_time\": \"8 min read\",\n            \"published_at\": \"2024-01-10T09:00:00Z\"\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Blog by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/blog/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "blog",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single blog by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"title\": \"10 React Performance Optimization Tips\",\n    \"slug\": \"10-react-performance-tips\",\n    \"excerpt\": \"Learn how to make your React applications faster and more efficient with these proven optimization techniques.\",\n    \"content\": \"Performance is crucial for user experience. In this article, I share 10 practical tips for optimizing React applications...\",\n    \"featured_image\": \"https:\\/\\/picsum.photos\\/800\\/450?random=blog1\",\n    \"category\": \"Web Development\",\n    \"tags\": [\n        \"React\",\n        \"Performance\",\n        \"JavaScript\",\n        \"Optimization\"\n    ],\n    \"views\": 3421,\n    \"reading_time\": \"8 min read\",\n    \"published_at\": \"2024-01-10T09:00:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Create Blog",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"title\": \"10 React Performance Optimization Tips\",\n    \"slug\": \"10-react-performance-tips\",\n    \"excerpt\": \"Learn how to make your React applications faster and more efficient with these proven optimization techniques.\",\n    \"content\": \"Performance is crucial for user experience. In this article, I share 10 practical tips for optimizing React applications...\",\n    \"featured_image\": \"https:\\/\\/picsum.photos\\/800\\/450?random=blog1\",\n    \"category\": \"Web Development\",\n    \"tags\": [\n        \"React\",\n        \"Performance\",\n        \"JavaScript\",\n        \"Optimization\"\n    ],\n    \"views\": 3421,\n    \"reading_time\": \"8 min read\",\n    \"published_at\": \"2024-01-10T09:00:00Z\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/blog",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "blog"
                            ]
                        },
                        "description": "Create a new blog"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"title\": \"10 React Performance Optimization Tips\",\n    \"slug\": \"10-react-performance-tips\",\n    \"excerpt\": \"Learn how to make your React applications faster and more efficient with these proven optimization techniques.\",\n    \"content\": \"Performance is crucial for user experience. In this article, I share 10 practical tips for optimizing React applications...\",\n    \"featured_image\": \"https:\\/\\/picsum.photos\\/800\\/450?random=blog1\",\n    \"category\": \"Web Development\",\n    \"tags\": [\n        \"React\",\n        \"Performance\",\n        \"JavaScript\",\n        \"Optimization\"\n    ],\n    \"views\": 3421,\n    \"reading_time\": \"8 min read\",\n    \"published_at\": \"2024-01-10T09:00:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Update Blog",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"title\": \"10 React Performance Optimization Tips\",\n    \"slug\": \"10-react-performance-tips\",\n    \"excerpt\": \"Learn how to make your React applications faster and more efficient with these proven optimization techniques.\",\n    \"content\": \"Performance is crucial for user experience. In this article, I share 10 practical tips for optimizing React applications...\",\n    \"featured_image\": \"https:\\/\\/picsum.photos\\/800\\/450?random=blog1\",\n    \"category\": \"Web Development\",\n    \"tags\": [\n        \"React\",\n        \"Performance\",\n        \"JavaScript\",\n        \"Optimization\"\n    ],\n    \"views\": 3421,\n    \"reading_time\": \"8 min read\",\n    \"published_at\": \"2024-01-10T09:00:00Z\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/blog/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "blog",
                                "1"
                            ]
                        },
                        "description": "Update an existing blog"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"title\": \"10 React Performance Optimization Tips\",\n    \"slug\": \"10-react-performance-tips\",\n    \"excerpt\": \"Learn how to make your React applications faster and more efficient with these proven optimization techniques.\",\n    \"content\": \"Performance is crucial for user experience. In this article, I share 10 practical tips for optimizing React applications...\",\n    \"featured_image\": \"https:\\/\\/picsum.photos\\/800\\/450?random=blog1\",\n    \"category\": \"Web Development\",\n    \"tags\": [\n        \"React\",\n        \"Performance\",\n        \"JavaScript\",\n        \"Optimization\"\n    ],\n    \"views\": 3421,\n    \"reading_time\": \"8 min read\",\n    \"published_at\": \"2024-01-10T09:00:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Blog",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/blog/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "blog",
                                "1"
                            ]
                        },
                        "description": "Delete a blog by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Blog deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Certifications",
            "description": "Professional certifications and awards",
            "item": [
                {
                    "name": "Get All Certifications",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/certifications",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "certifications"
                            ]
                        },
                        "description": "Retrieve a paginated list of all certifications"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Alexandra Mitchell\",\n            \"name\": \"AWS Certified Solutions Architect - Professional\",\n            \"issuing_organization\": \"Amazon Web Services\",\n            \"organization_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=cert1\",\n            \"credential_id\": \"AWS-SAP-2023-001234\",\n            \"credential_url\": \"https:\\/\\/aws.amazon.com\\/verification\\/001234\",\n            \"issued_date\": \"2023-06-15\",\n            \"expiry_date\": \"2026-06-15\",\n            \"does_not_expire\": false\n        },\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Alexandra Mitchell\",\n            \"name\": \"AWS Certified Solutions Architect - Professional\",\n            \"issuing_organization\": \"Amazon Web Services\",\n            \"organization_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=cert1\",\n            \"credential_id\": \"AWS-SAP-2023-001234\",\n            \"credential_url\": \"https:\\/\\/aws.amazon.com\\/verification\\/001234\",\n            \"issued_date\": \"2023-06-15\",\n            \"expiry_date\": \"2026-06-15\",\n            \"does_not_expire\": false\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Certification by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/certifications/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "certifications",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single certification by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"name\": \"AWS Certified Solutions Architect - Professional\",\n    \"issuing_organization\": \"Amazon Web Services\",\n    \"organization_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=cert1\",\n    \"credential_id\": \"AWS-SAP-2023-001234\",\n    \"credential_url\": \"https:\\/\\/aws.amazon.com\\/verification\\/001234\",\n    \"issued_date\": \"2023-06-15\",\n    \"expiry_date\": \"2026-06-15\",\n    \"does_not_expire\": false\n}"
                        }
                    ]
                },
                {
                    "name": "Create Certification",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"name\": \"AWS Certified Solutions Architect - Professional\",\n    \"issuing_organization\": \"Amazon Web Services\",\n    \"organization_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=cert1\",\n    \"credential_id\": \"AWS-SAP-2023-001234\",\n    \"credential_url\": \"https:\\/\\/aws.amazon.com\\/verification\\/001234\",\n    \"issued_date\": \"2023-06-15\",\n    \"expiry_date\": \"2026-06-15\",\n    \"does_not_expire\": false\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/certifications",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "certifications"
                            ]
                        },
                        "description": "Create a new certification"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"name\": \"AWS Certified Solutions Architect - Professional\",\n    \"issuing_organization\": \"Amazon Web Services\",\n    \"organization_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=cert1\",\n    \"credential_id\": \"AWS-SAP-2023-001234\",\n    \"credential_url\": \"https:\\/\\/aws.amazon.com\\/verification\\/001234\",\n    \"issued_date\": \"2023-06-15\",\n    \"expiry_date\": \"2026-06-15\",\n    \"does_not_expire\": false\n}"
                        }
                    ]
                },
                {
                    "name": "Update Certification",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"name\": \"AWS Certified Solutions Architect - Professional\",\n    \"issuing_organization\": \"Amazon Web Services\",\n    \"organization_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=cert1\",\n    \"credential_id\": \"AWS-SAP-2023-001234\",\n    \"credential_url\": \"https:\\/\\/aws.amazon.com\\/verification\\/001234\",\n    \"issued_date\": \"2023-06-15\",\n    \"expiry_date\": \"2026-06-15\",\n    \"does_not_expire\": false\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/certifications/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "certifications",
                                "1"
                            ]
                        },
                        "description": "Update an existing certification"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"name\": \"AWS Certified Solutions Architect - Professional\",\n    \"issuing_organization\": \"Amazon Web Services\",\n    \"organization_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=cert1\",\n    \"credential_id\": \"AWS-SAP-2023-001234\",\n    \"credential_url\": \"https:\\/\\/aws.amazon.com\\/verification\\/001234\",\n    \"issued_date\": \"2023-06-15\",\n    \"expiry_date\": \"2026-06-15\",\n    \"does_not_expire\": false\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Certification",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/certifications/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "certifications",
                                "1"
                            ]
                        },
                        "description": "Delete a certification by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Certification deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Contact-messages",
            "description": "Contact form submissions",
            "item": [
                {
                    "name": "Get All Contact-messages",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/contact-messages",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "contact-messages"
                            ]
                        },
                        "description": "Retrieve a paginated list of all contact-messages"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"user_id\": 1,\n            \"portfolio_owner\": \"Alexandra Mitchell\",\n            \"sender_name\": \"John Smith\",\n            \"sender_email\": \"john.smith@company.com\",\n            \"sender_phone\": \"+1 (555) 111-2222\",\n            \"subject\": \"Project Inquiry\",\n            \"message\": \"Hi Alexandra, I came across your portfolio and I'm impressed by your work. We have a project that might be a great fit for your skills. Would you be available for a call next week?\",\n            \"is_read\": false,\n            \"created_at\": \"2024-01-25T14:30:00Z\"\n        },\n        {\n            \"user_id\": 1,\n            \"portfolio_owner\": \"Alexandra Mitchell\",\n            \"sender_name\": \"John Smith\",\n            \"sender_email\": \"john.smith@company.com\",\n            \"sender_phone\": \"+1 (555) 111-2222\",\n            \"subject\": \"Project Inquiry\",\n            \"message\": \"Hi Alexandra, I came across your portfolio and I'm impressed by your work. We have a project that might be a great fit for your skills. Would you be available for a call next week?\",\n            \"is_read\": false,\n            \"created_at\": \"2024-01-25T14:30:00Z\"\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Contact-message by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/contact-messages/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "contact-messages",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single contact-message by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"portfolio_owner\": \"Alexandra Mitchell\",\n    \"sender_name\": \"John Smith\",\n    \"sender_email\": \"john.smith@company.com\",\n    \"sender_phone\": \"+1 (555) 111-2222\",\n    \"subject\": \"Project Inquiry\",\n    \"message\": \"Hi Alexandra, I came across your portfolio and I'm impressed by your work. We have a project that might be a great fit for your skills. Would you be available for a call next week?\",\n    \"is_read\": false,\n    \"created_at\": \"2024-01-25T14:30:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Create Contact-message",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"portfolio_owner\": \"Alexandra Mitchell\",\n    \"sender_name\": \"John Smith\",\n    \"sender_email\": \"john.smith@company.com\",\n    \"sender_phone\": \"+1 (555) 111-2222\",\n    \"subject\": \"Project Inquiry\",\n    \"message\": \"Hi Alexandra, I came across your portfolio and I'm impressed by your work. We have a project that might be a great fit for your skills. Would you be available for a call next week?\",\n    \"is_read\": false\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/contact-messages",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "contact-messages"
                            ]
                        },
                        "description": "Create a new contact-message"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"portfolio_owner\": \"Alexandra Mitchell\",\n    \"sender_name\": \"John Smith\",\n    \"sender_email\": \"john.smith@company.com\",\n    \"sender_phone\": \"+1 (555) 111-2222\",\n    \"subject\": \"Project Inquiry\",\n    \"message\": \"Hi Alexandra, I came across your portfolio and I'm impressed by your work. We have a project that might be a great fit for your skills. Would you be available for a call next week?\",\n    \"is_read\": false,\n    \"created_at\": \"2024-01-25T14:30:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Update Contact-message",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"portfolio_owner\": \"Alexandra Mitchell\",\n    \"sender_name\": \"John Smith\",\n    \"sender_email\": \"john.smith@company.com\",\n    \"sender_phone\": \"+1 (555) 111-2222\",\n    \"subject\": \"Project Inquiry\",\n    \"message\": \"Hi Alexandra, I came across your portfolio and I'm impressed by your work. We have a project that might be a great fit for your skills. Would you be available for a call next week?\",\n    \"is_read\": false\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/contact-messages/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "contact-messages",
                                "1"
                            ]
                        },
                        "description": "Update an existing contact-message"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"portfolio_owner\": \"Alexandra Mitchell\",\n    \"sender_name\": \"John Smith\",\n    \"sender_email\": \"john.smith@company.com\",\n    \"sender_phone\": \"+1 (555) 111-2222\",\n    \"subject\": \"Project Inquiry\",\n    \"message\": \"Hi Alexandra, I came across your portfolio and I'm impressed by your work. We have a project that might be a great fit for your skills. Would you be available for a call next week?\",\n    \"is_read\": false,\n    \"created_at\": \"2024-01-25T14:30:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Contact-message",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/contact-messages/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "contact-messages",
                                "1"
                            ]
                        },
                        "description": "Delete a contact-message by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Contact-message deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Education",
            "description": "Educational background and qualifications",
            "item": [
                {
                    "name": "Get All Education",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/education",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "education"
                            ]
                        },
                        "description": "Retrieve a paginated list of all education"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Alexandra Mitchell\",\n            \"institution\": \"Stanford University\",\n            \"institution_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=uni1\",\n            \"degree\": \"Master of Science\",\n            \"field_of_study\": \"Computer Science\",\n            \"location\": \"Stanford, CA\",\n            \"start_date\": \"2014-09-01\",\n            \"end_date\": \"2016-06-15\",\n            \"gpa\": \"3.9\\/4.0\",\n            \"description\": \"Specialized in Human-Computer Interaction and Web Technologies. Thesis on \\\"Improving User Experience in Progressive Web Applications\\\".\",\n            \"achievements\": [\n                \"Dean's List all semesters\",\n                \"Graduate Research Assistant\",\n                \"Published 2 papers on web performance optimization\"\n            ]\n        },\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Alexandra Mitchell\",\n            \"institution\": \"Stanford University\",\n            \"institution_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=uni1\",\n            \"degree\": \"Master of Science\",\n            \"field_of_study\": \"Computer Science\",\n            \"location\": \"Stanford, CA\",\n            \"start_date\": \"2014-09-01\",\n            \"end_date\": \"2016-06-15\",\n            \"gpa\": \"3.9\\/4.0\",\n            \"description\": \"Specialized in Human-Computer Interaction and Web Technologies. Thesis on \\\"Improving User Experience in Progressive Web Applications\\\".\",\n            \"achievements\": [\n                \"Dean's List all semesters\",\n                \"Graduate Research Assistant\",\n                \"Published 2 papers on web performance optimization\"\n            ]\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Education by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/education/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "education",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single education by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"institution\": \"Stanford University\",\n    \"institution_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=uni1\",\n    \"degree\": \"Master of Science\",\n    \"field_of_study\": \"Computer Science\",\n    \"location\": \"Stanford, CA\",\n    \"start_date\": \"2014-09-01\",\n    \"end_date\": \"2016-06-15\",\n    \"gpa\": \"3.9\\/4.0\",\n    \"description\": \"Specialized in Human-Computer Interaction and Web Technologies. Thesis on \\\"Improving User Experience in Progressive Web Applications\\\".\",\n    \"achievements\": [\n        \"Dean's List all semesters\",\n        \"Graduate Research Assistant\",\n        \"Published 2 papers on web performance optimization\"\n    ]\n}"
                        }
                    ]
                },
                {
                    "name": "Create Education",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"institution\": \"Stanford University\",\n    \"institution_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=uni1\",\n    \"degree\": \"Master of Science\",\n    \"field_of_study\": \"Computer Science\",\n    \"location\": \"Stanford, CA\",\n    \"start_date\": \"2014-09-01\",\n    \"end_date\": \"2016-06-15\",\n    \"gpa\": \"3.9\\/4.0\",\n    \"description\": \"Specialized in Human-Computer Interaction and Web Technologies. Thesis on \\\"Improving User Experience in Progressive Web Applications\\\".\",\n    \"achievements\": [\n        \"Dean's List all semesters\",\n        \"Graduate Research Assistant\",\n        \"Published 2 papers on web performance optimization\"\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/education",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "education"
                            ]
                        },
                        "description": "Create a new education"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"institution\": \"Stanford University\",\n    \"institution_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=uni1\",\n    \"degree\": \"Master of Science\",\n    \"field_of_study\": \"Computer Science\",\n    \"location\": \"Stanford, CA\",\n    \"start_date\": \"2014-09-01\",\n    \"end_date\": \"2016-06-15\",\n    \"gpa\": \"3.9\\/4.0\",\n    \"description\": \"Specialized in Human-Computer Interaction and Web Technologies. Thesis on \\\"Improving User Experience in Progressive Web Applications\\\".\",\n    \"achievements\": [\n        \"Dean's List all semesters\",\n        \"Graduate Research Assistant\",\n        \"Published 2 papers on web performance optimization\"\n    ]\n}"
                        }
                    ]
                },
                {
                    "name": "Update Education",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"institution\": \"Stanford University\",\n    \"institution_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=uni1\",\n    \"degree\": \"Master of Science\",\n    \"field_of_study\": \"Computer Science\",\n    \"location\": \"Stanford, CA\",\n    \"start_date\": \"2014-09-01\",\n    \"end_date\": \"2016-06-15\",\n    \"gpa\": \"3.9\\/4.0\",\n    \"description\": \"Specialized in Human-Computer Interaction and Web Technologies. Thesis on \\\"Improving User Experience in Progressive Web Applications\\\".\",\n    \"achievements\": [\n        \"Dean's List all semesters\",\n        \"Graduate Research Assistant\",\n        \"Published 2 papers on web performance optimization\"\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/education/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "education",
                                "1"
                            ]
                        },
                        "description": "Update an existing education"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"institution\": \"Stanford University\",\n    \"institution_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=uni1\",\n    \"degree\": \"Master of Science\",\n    \"field_of_study\": \"Computer Science\",\n    \"location\": \"Stanford, CA\",\n    \"start_date\": \"2014-09-01\",\n    \"end_date\": \"2016-06-15\",\n    \"gpa\": \"3.9\\/4.0\",\n    \"description\": \"Specialized in Human-Computer Interaction and Web Technologies. Thesis on \\\"Improving User Experience in Progressive Web Applications\\\".\",\n    \"achievements\": [\n        \"Dean's List all semesters\",\n        \"Graduate Research Assistant\",\n        \"Published 2 papers on web performance optimization\"\n    ]\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Education",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/education/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "education",
                                "1"
                            ]
                        },
                        "description": "Delete a education by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Education deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Experience",
            "description": "Work experience and employment history",
            "item": [
                {
                    "name": "Get All Experience",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/experience",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "experience"
                            ]
                        },
                        "description": "Retrieve a paginated list of all experience"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Alexandra Mitchell\",\n            \"company\": \"TechCorp Solutions\",\n            \"company_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=comp1\",\n            \"position\": \"Senior Full-Stack Developer\",\n            \"location\": \"San Francisco, CA\",\n            \"employment_type\": \"Full-time\",\n            \"start_date\": \"2021-03-01\",\n            \"end_date\": null,\n            \"is_current\": true,\n            \"description\": \"Leading development of enterprise web applications and mentoring junior developers. Architecting scalable solutions using modern technologies.\",\n            \"achievements\": [\n                \"Led team of 5 developers in building a SaaS platform serving 50K+ users\",\n                \"Reduced application load time by 65% through optimization\",\n                \"Implemented CI\\/CD pipeline reducing deployment time by 80%\"\n            ],\n            \"technologies\": [\n                \"React\",\n                \"Node.js\",\n                \"TypeScript\",\n                \"PostgreSQL\",\n                \"AWS\",\n                \"Docker\"\n            ]\n        },\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Alexandra Mitchell\",\n            \"company\": \"TechCorp Solutions\",\n            \"company_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=comp1\",\n            \"position\": \"Senior Full-Stack Developer\",\n            \"location\": \"San Francisco, CA\",\n            \"employment_type\": \"Full-time\",\n            \"start_date\": \"2021-03-01\",\n            \"end_date\": null,\n            \"is_current\": true,\n            \"description\": \"Leading development of enterprise web applications and mentoring junior developers. Architecting scalable solutions using modern technologies.\",\n            \"achievements\": [\n                \"Led team of 5 developers in building a SaaS platform serving 50K+ users\",\n                \"Reduced application load time by 65% through optimization\",\n                \"Implemented CI\\/CD pipeline reducing deployment time by 80%\"\n            ],\n            \"technologies\": [\n                \"React\",\n                \"Node.js\",\n                \"TypeScript\",\n                \"PostgreSQL\",\n                \"AWS\",\n                \"Docker\"\n            ]\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Experience by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/experience/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "experience",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single experience by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"company\": \"TechCorp Solutions\",\n    \"company_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=comp1\",\n    \"position\": \"Senior Full-Stack Developer\",\n    \"location\": \"San Francisco, CA\",\n    \"employment_type\": \"Full-time\",\n    \"start_date\": \"2021-03-01\",\n    \"end_date\": null,\n    \"is_current\": true,\n    \"description\": \"Leading development of enterprise web applications and mentoring junior developers. Architecting scalable solutions using modern technologies.\",\n    \"achievements\": [\n        \"Led team of 5 developers in building a SaaS platform serving 50K+ users\",\n        \"Reduced application load time by 65% through optimization\",\n        \"Implemented CI\\/CD pipeline reducing deployment time by 80%\"\n    ],\n    \"technologies\": [\n        \"React\",\n        \"Node.js\",\n        \"TypeScript\",\n        \"PostgreSQL\",\n        \"AWS\",\n        \"Docker\"\n    ]\n}"
                        }
                    ]
                },
                {
                    "name": "Create Experience",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"company\": \"TechCorp Solutions\",\n    \"company_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=comp1\",\n    \"position\": \"Senior Full-Stack Developer\",\n    \"location\": \"San Francisco, CA\",\n    \"employment_type\": \"Full-time\",\n    \"start_date\": \"2021-03-01\",\n    \"end_date\": null,\n    \"is_current\": true,\n    \"description\": \"Leading development of enterprise web applications and mentoring junior developers. Architecting scalable solutions using modern technologies.\",\n    \"achievements\": [\n        \"Led team of 5 developers in building a SaaS platform serving 50K+ users\",\n        \"Reduced application load time by 65% through optimization\",\n        \"Implemented CI\\/CD pipeline reducing deployment time by 80%\"\n    ],\n    \"technologies\": [\n        \"React\",\n        \"Node.js\",\n        \"TypeScript\",\n        \"PostgreSQL\",\n        \"AWS\",\n        \"Docker\"\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/experience",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "experience"
                            ]
                        },
                        "description": "Create a new experience"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"company\": \"TechCorp Solutions\",\n    \"company_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=comp1\",\n    \"position\": \"Senior Full-Stack Developer\",\n    \"location\": \"San Francisco, CA\",\n    \"employment_type\": \"Full-time\",\n    \"start_date\": \"2021-03-01\",\n    \"end_date\": null,\n    \"is_current\": true,\n    \"description\": \"Leading development of enterprise web applications and mentoring junior developers. Architecting scalable solutions using modern technologies.\",\n    \"achievements\": [\n        \"Led team of 5 developers in building a SaaS platform serving 50K+ users\",\n        \"Reduced application load time by 65% through optimization\",\n        \"Implemented CI\\/CD pipeline reducing deployment time by 80%\"\n    ],\n    \"technologies\": [\n        \"React\",\n        \"Node.js\",\n        \"TypeScript\",\n        \"PostgreSQL\",\n        \"AWS\",\n        \"Docker\"\n    ]\n}"
                        }
                    ]
                },
                {
                    "name": "Update Experience",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"company\": \"TechCorp Solutions\",\n    \"company_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=comp1\",\n    \"position\": \"Senior Full-Stack Developer\",\n    \"location\": \"San Francisco, CA\",\n    \"employment_type\": \"Full-time\",\n    \"start_date\": \"2021-03-01\",\n    \"end_date\": null,\n    \"is_current\": true,\n    \"description\": \"Leading development of enterprise web applications and mentoring junior developers. Architecting scalable solutions using modern technologies.\",\n    \"achievements\": [\n        \"Led team of 5 developers in building a SaaS platform serving 50K+ users\",\n        \"Reduced application load time by 65% through optimization\",\n        \"Implemented CI\\/CD pipeline reducing deployment time by 80%\"\n    ],\n    \"technologies\": [\n        \"React\",\n        \"Node.js\",\n        \"TypeScript\",\n        \"PostgreSQL\",\n        \"AWS\",\n        \"Docker\"\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/experience/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "experience",
                                "1"
                            ]
                        },
                        "description": "Update an existing experience"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"company\": \"TechCorp Solutions\",\n    \"company_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=comp1\",\n    \"position\": \"Senior Full-Stack Developer\",\n    \"location\": \"San Francisco, CA\",\n    \"employment_type\": \"Full-time\",\n    \"start_date\": \"2021-03-01\",\n    \"end_date\": null,\n    \"is_current\": true,\n    \"description\": \"Leading development of enterprise web applications and mentoring junior developers. Architecting scalable solutions using modern technologies.\",\n    \"achievements\": [\n        \"Led team of 5 developers in building a SaaS platform serving 50K+ users\",\n        \"Reduced application load time by 65% through optimization\",\n        \"Implemented CI\\/CD pipeline reducing deployment time by 80%\"\n    ],\n    \"technologies\": [\n        \"React\",\n        \"Node.js\",\n        \"TypeScript\",\n        \"PostgreSQL\",\n        \"AWS\",\n        \"Docker\"\n    ]\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Experience",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/experience/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "experience",
                                "1"
                            ]
                        },
                        "description": "Delete a experience by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Experience deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Projects",
            "description": "Portfolio projects and work samples",
            "item": [
                {
                    "name": "Get All Projects",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/projects",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "projects"
                            ]
                        },
                        "description": "Retrieve a paginated list of all projects"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Alexandra Mitchell\",\n            \"title\": \"E-Commerce Platform Redesign\",\n            \"slug\": \"ecommerce-platform-redesign\",\n            \"description\": \"Complete redesign and development of a modern e-commerce platform serving 100K+ users\",\n            \"long_description\": \"Led the complete overhaul of a legacy e-commerce platform, implementing modern design principles and cutting-edge technologies. Improved page load times by 60% and increased conversion rates by 35%. Built with React, Next.js, and integrated with Stripe for payments.\",\n            \"category\": \"Web Development\",\n            \"tags\": [\n                \"React\",\n                \"Next.js\",\n                \"E-commerce\",\n                \"UI\\/UX\",\n                \"Stripe\"\n            ],\n            \"thumbnail\": \"https:\\/\\/picsum.photos\\/800\\/600?random=proj1\",\n            \"images\": [\n                \"https:\\/\\/picsum.photos\\/1200\\/800?random=proj1a\",\n                \"https:\\/\\/picsum.photos\\/1200\\/800?random=proj1b\",\n                \"https:\\/\\/picsum.photos\\/1200\\/800?random=proj1c\"\n            ],\n            \"demo_url\": \"https:\\/\\/demo-ecommerce.example.com\",\n            \"github_url\": \"https:\\/\\/github.com\\/alexmitchell\\/ecommerce-platform\",\n            \"technologies\": [\n                \"React\",\n                \"Next.js\",\n                \"TypeScript\",\n                \"Tailwind CSS\",\n                \"Node.js\",\n                \"PostgreSQL\",\n                \"Stripe\",\n                \"AWS\"\n            ],\n            \"client\": \"TechRetail Inc.\",\n            \"duration\": \"6 months\",\n            \"is_featured\": true,\n            \"views\": 2456,\n            \"likes\": 189,\n            \"completed_at\": \"2024-01-15\"\n        },\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Alexandra Mitchell\",\n            \"title\": \"E-Commerce Platform Redesign\",\n            \"slug\": \"ecommerce-platform-redesign\",\n            \"description\": \"Complete redesign and development of a modern e-commerce platform serving 100K+ users\",\n            \"long_description\": \"Led the complete overhaul of a legacy e-commerce platform, implementing modern design principles and cutting-edge technologies. Improved page load times by 60% and increased conversion rates by 35%. Built with React, Next.js, and integrated with Stripe for payments.\",\n            \"category\": \"Web Development\",\n            \"tags\": [\n                \"React\",\n                \"Next.js\",\n                \"E-commerce\",\n                \"UI\\/UX\",\n                \"Stripe\"\n            ],\n            \"thumbnail\": \"https:\\/\\/picsum.photos\\/800\\/600?random=proj1\",\n            \"images\": [\n                \"https:\\/\\/picsum.photos\\/1200\\/800?random=proj1a\",\n                \"https:\\/\\/picsum.photos\\/1200\\/800?random=proj1b\",\n                \"https:\\/\\/picsum.photos\\/1200\\/800?random=proj1c\"\n            ],\n            \"demo_url\": \"https:\\/\\/demo-ecommerce.example.com\",\n            \"github_url\": \"https:\\/\\/github.com\\/alexmitchell\\/ecommerce-platform\",\n            \"technologies\": [\n                \"React\",\n                \"Next.js\",\n                \"TypeScript\",\n                \"Tailwind CSS\",\n                \"Node.js\",\n                \"PostgreSQL\",\n                \"Stripe\",\n                \"AWS\"\n            ],\n            \"client\": \"TechRetail Inc.\",\n            \"duration\": \"6 months\",\n            \"is_featured\": true,\n            \"views\": 2456,\n            \"likes\": 189,\n            \"completed_at\": \"2024-01-15\"\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Project by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/projects/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "projects",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single project by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"title\": \"E-Commerce Platform Redesign\",\n    \"slug\": \"ecommerce-platform-redesign\",\n    \"description\": \"Complete redesign and development of a modern e-commerce platform serving 100K+ users\",\n    \"long_description\": \"Led the complete overhaul of a legacy e-commerce platform, implementing modern design principles and cutting-edge technologies. Improved page load times by 60% and increased conversion rates by 35%. Built with React, Next.js, and integrated with Stripe for payments.\",\n    \"category\": \"Web Development\",\n    \"tags\": [\n        \"React\",\n        \"Next.js\",\n        \"E-commerce\",\n        \"UI\\/UX\",\n        \"Stripe\"\n    ],\n    \"thumbnail\": \"https:\\/\\/picsum.photos\\/800\\/600?random=proj1\",\n    \"images\": [\n        \"https:\\/\\/picsum.photos\\/1200\\/800?random=proj1a\",\n        \"https:\\/\\/picsum.photos\\/1200\\/800?random=proj1b\",\n        \"https:\\/\\/picsum.photos\\/1200\\/800?random=proj1c\"\n    ],\n    \"demo_url\": \"https:\\/\\/demo-ecommerce.example.com\",\n    \"github_url\": \"https:\\/\\/github.com\\/alexmitchell\\/ecommerce-platform\",\n    \"technologies\": [\n        \"React\",\n        \"Next.js\",\n        \"TypeScript\",\n        \"Tailwind CSS\",\n        \"Node.js\",\n        \"PostgreSQL\",\n        \"Stripe\",\n        \"AWS\"\n    ],\n    \"client\": \"TechRetail Inc.\",\n    \"duration\": \"6 months\",\n    \"is_featured\": true,\n    \"views\": 2456,\n    \"likes\": 189,\n    \"completed_at\": \"2024-01-15\"\n}"
                        }
                    ]
                },
                {
                    "name": "Create Project",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"title\": \"E-Commerce Platform Redesign\",\n    \"slug\": \"ecommerce-platform-redesign\",\n    \"description\": \"Complete redesign and development of a modern e-commerce platform serving 100K+ users\",\n    \"long_description\": \"Led the complete overhaul of a legacy e-commerce platform, implementing modern design principles and cutting-edge technologies. Improved page load times by 60% and increased conversion rates by 35%. Built with React, Next.js, and integrated with Stripe for payments.\",\n    \"category\": \"Web Development\",\n    \"tags\": [\n        \"React\",\n        \"Next.js\",\n        \"E-commerce\",\n        \"UI\\/UX\",\n        \"Stripe\"\n    ],\n    \"thumbnail\": \"https:\\/\\/picsum.photos\\/800\\/600?random=proj1\",\n    \"images\": [\n        \"https:\\/\\/picsum.photos\\/1200\\/800?random=proj1a\",\n        \"https:\\/\\/picsum.photos\\/1200\\/800?random=proj1b\",\n        \"https:\\/\\/picsum.photos\\/1200\\/800?random=proj1c\"\n    ],\n    \"demo_url\": \"https:\\/\\/demo-ecommerce.example.com\",\n    \"github_url\": \"https:\\/\\/github.com\\/alexmitchell\\/ecommerce-platform\",\n    \"technologies\": [\n        \"React\",\n        \"Next.js\",\n        \"TypeScript\",\n        \"Tailwind CSS\",\n        \"Node.js\",\n        \"PostgreSQL\",\n        \"Stripe\",\n        \"AWS\"\n    ],\n    \"client\": \"TechRetail Inc.\",\n    \"duration\": \"6 months\",\n    \"is_featured\": true,\n    \"views\": 2456,\n    \"likes\": 189,\n    \"completed_at\": \"2024-01-15\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/projects",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "projects"
                            ]
                        },
                        "description": "Create a new project"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"title\": \"E-Commerce Platform Redesign\",\n    \"slug\": \"ecommerce-platform-redesign\",\n    \"description\": \"Complete redesign and development of a modern e-commerce platform serving 100K+ users\",\n    \"long_description\": \"Led the complete overhaul of a legacy e-commerce platform, implementing modern design principles and cutting-edge technologies. Improved page load times by 60% and increased conversion rates by 35%. Built with React, Next.js, and integrated with Stripe for payments.\",\n    \"category\": \"Web Development\",\n    \"tags\": [\n        \"React\",\n        \"Next.js\",\n        \"E-commerce\",\n        \"UI\\/UX\",\n        \"Stripe\"\n    ],\n    \"thumbnail\": \"https:\\/\\/picsum.photos\\/800\\/600?random=proj1\",\n    \"images\": [\n        \"https:\\/\\/picsum.photos\\/1200\\/800?random=proj1a\",\n        \"https:\\/\\/picsum.photos\\/1200\\/800?random=proj1b\",\n        \"https:\\/\\/picsum.photos\\/1200\\/800?random=proj1c\"\n    ],\n    \"demo_url\": \"https:\\/\\/demo-ecommerce.example.com\",\n    \"github_url\": \"https:\\/\\/github.com\\/alexmitchell\\/ecommerce-platform\",\n    \"technologies\": [\n        \"React\",\n        \"Next.js\",\n        \"TypeScript\",\n        \"Tailwind CSS\",\n        \"Node.js\",\n        \"PostgreSQL\",\n        \"Stripe\",\n        \"AWS\"\n    ],\n    \"client\": \"TechRetail Inc.\",\n    \"duration\": \"6 months\",\n    \"is_featured\": true,\n    \"views\": 2456,\n    \"likes\": 189,\n    \"completed_at\": \"2024-01-15\"\n}"
                        }
                    ]
                },
                {
                    "name": "Update Project",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"title\": \"E-Commerce Platform Redesign\",\n    \"slug\": \"ecommerce-platform-redesign\",\n    \"description\": \"Complete redesign and development of a modern e-commerce platform serving 100K+ users\",\n    \"long_description\": \"Led the complete overhaul of a legacy e-commerce platform, implementing modern design principles and cutting-edge technologies. Improved page load times by 60% and increased conversion rates by 35%. Built with React, Next.js, and integrated with Stripe for payments.\",\n    \"category\": \"Web Development\",\n    \"tags\": [\n        \"React\",\n        \"Next.js\",\n        \"E-commerce\",\n        \"UI\\/UX\",\n        \"Stripe\"\n    ],\n    \"thumbnail\": \"https:\\/\\/picsum.photos\\/800\\/600?random=proj1\",\n    \"images\": [\n        \"https:\\/\\/picsum.photos\\/1200\\/800?random=proj1a\",\n        \"https:\\/\\/picsum.photos\\/1200\\/800?random=proj1b\",\n        \"https:\\/\\/picsum.photos\\/1200\\/800?random=proj1c\"\n    ],\n    \"demo_url\": \"https:\\/\\/demo-ecommerce.example.com\",\n    \"github_url\": \"https:\\/\\/github.com\\/alexmitchell\\/ecommerce-platform\",\n    \"technologies\": [\n        \"React\",\n        \"Next.js\",\n        \"TypeScript\",\n        \"Tailwind CSS\",\n        \"Node.js\",\n        \"PostgreSQL\",\n        \"Stripe\",\n        \"AWS\"\n    ],\n    \"client\": \"TechRetail Inc.\",\n    \"duration\": \"6 months\",\n    \"is_featured\": true,\n    \"views\": 2456,\n    \"likes\": 189,\n    \"completed_at\": \"2024-01-15\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/projects/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "projects",
                                "1"
                            ]
                        },
                        "description": "Update an existing project"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"title\": \"E-Commerce Platform Redesign\",\n    \"slug\": \"ecommerce-platform-redesign\",\n    \"description\": \"Complete redesign and development of a modern e-commerce platform serving 100K+ users\",\n    \"long_description\": \"Led the complete overhaul of a legacy e-commerce platform, implementing modern design principles and cutting-edge technologies. Improved page load times by 60% and increased conversion rates by 35%. Built with React, Next.js, and integrated with Stripe for payments.\",\n    \"category\": \"Web Development\",\n    \"tags\": [\n        \"React\",\n        \"Next.js\",\n        \"E-commerce\",\n        \"UI\\/UX\",\n        \"Stripe\"\n    ],\n    \"thumbnail\": \"https:\\/\\/picsum.photos\\/800\\/600?random=proj1\",\n    \"images\": [\n        \"https:\\/\\/picsum.photos\\/1200\\/800?random=proj1a\",\n        \"https:\\/\\/picsum.photos\\/1200\\/800?random=proj1b\",\n        \"https:\\/\\/picsum.photos\\/1200\\/800?random=proj1c\"\n    ],\n    \"demo_url\": \"https:\\/\\/demo-ecommerce.example.com\",\n    \"github_url\": \"https:\\/\\/github.com\\/alexmitchell\\/ecommerce-platform\",\n    \"technologies\": [\n        \"React\",\n        \"Next.js\",\n        \"TypeScript\",\n        \"Tailwind CSS\",\n        \"Node.js\",\n        \"PostgreSQL\",\n        \"Stripe\",\n        \"AWS\"\n    ],\n    \"client\": \"TechRetail Inc.\",\n    \"duration\": \"6 months\",\n    \"is_featured\": true,\n    \"views\": 2456,\n    \"likes\": 189,\n    \"completed_at\": \"2024-01-15\"\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Project",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/projects/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "projects",
                                "1"
                            ]
                        },
                        "description": "Delete a project by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Project deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Skills",
            "description": "Technical and soft skills",
            "item": [
                {
                    "name": "Get All Skills",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/skills",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "skills"
                            ]
                        },
                        "description": "Retrieve a paginated list of all skills"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Alexandra Mitchell\",\n            \"name\": \"React\",\n            \"category\": \"Frontend\",\n            \"proficiency\": 95,\n            \"years_experience\": 6,\n            \"icon\": \"\\u269b\\ufe0f\"\n        },\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Alexandra Mitchell\",\n            \"name\": \"React\",\n            \"category\": \"Frontend\",\n            \"proficiency\": 95,\n            \"years_experience\": 6,\n            \"icon\": \"\\u269b\\ufe0f\"\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Skill by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/skills/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "skills",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single skill by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"name\": \"React\",\n    \"category\": \"Frontend\",\n    \"proficiency\": 95,\n    \"years_experience\": 6,\n    \"icon\": \"\\u269b\\ufe0f\"\n}"
                        }
                    ]
                },
                {
                    "name": "Create Skill",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"name\": \"React\",\n    \"category\": \"Frontend\",\n    \"proficiency\": 95,\n    \"years_experience\": 6,\n    \"icon\": \"\\u269b\\ufe0f\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/skills",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "skills"
                            ]
                        },
                        "description": "Create a new skill"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"name\": \"React\",\n    \"category\": \"Frontend\",\n    \"proficiency\": 95,\n    \"years_experience\": 6,\n    \"icon\": \"\\u269b\\ufe0f\"\n}"
                        }
                    ]
                },
                {
                    "name": "Update Skill",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"name\": \"React\",\n    \"category\": \"Frontend\",\n    \"proficiency\": 95,\n    \"years_experience\": 6,\n    \"icon\": \"\\u269b\\ufe0f\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/skills/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "skills",
                                "1"
                            ]
                        },
                        "description": "Update an existing skill"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"name\": \"React\",\n    \"category\": \"Frontend\",\n    \"proficiency\": 95,\n    \"years_experience\": 6,\n    \"icon\": \"\\u269b\\ufe0f\"\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Skill",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/skills/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "skills",
                                "1"
                            ]
                        },
                        "description": "Delete a skill by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Skill deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Testimonials",
            "description": "Client testimonials and reviews",
            "item": [
                {
                    "name": "Get All Testimonials",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/testimonials",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "testimonials"
                            ]
                        },
                        "description": "Retrieve a paginated list of all testimonials"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Alexandra Mitchell\",\n            \"client_name\": \"Sarah Johnson\",\n            \"client_position\": \"CEO\",\n            \"client_company\": \"TechRetail Inc.\",\n            \"client_avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=25\",\n            \"rating\": 5,\n            \"content\": \"Alexandra exceeded all our expectations. Her technical expertise and attention to detail transformed our e-commerce platform. Sales increased by 40% within the first month of launch. Highly recommended!\",\n            \"project_name\": \"E-Commerce Platform Redesign\",\n            \"created_at\": \"2024-01-20T10:30:00Z\"\n        },\n        {\n            \"user_id\": 1,\n            \"user_name\": \"Alexandra Mitchell\",\n            \"client_name\": \"Sarah Johnson\",\n            \"client_position\": \"CEO\",\n            \"client_company\": \"TechRetail Inc.\",\n            \"client_avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=25\",\n            \"rating\": 5,\n            \"content\": \"Alexandra exceeded all our expectations. Her technical expertise and attention to detail transformed our e-commerce platform. Sales increased by 40% within the first month of launch. Highly recommended!\",\n            \"project_name\": \"E-Commerce Platform Redesign\",\n            \"created_at\": \"2024-01-20T10:30:00Z\"\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Testimonial by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/testimonials/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "testimonials",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single testimonial by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"client_name\": \"Sarah Johnson\",\n    \"client_position\": \"CEO\",\n    \"client_company\": \"TechRetail Inc.\",\n    \"client_avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=25\",\n    \"rating\": 5,\n    \"content\": \"Alexandra exceeded all our expectations. Her technical expertise and attention to detail transformed our e-commerce platform. Sales increased by 40% within the first month of launch. Highly recommended!\",\n    \"project_name\": \"E-Commerce Platform Redesign\",\n    \"created_at\": \"2024-01-20T10:30:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Create Testimonial",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"client_name\": \"Sarah Johnson\",\n    \"client_position\": \"CEO\",\n    \"client_company\": \"TechRetail Inc.\",\n    \"client_avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=25\",\n    \"rating\": 5,\n    \"content\": \"Alexandra exceeded all our expectations. Her technical expertise and attention to detail transformed our e-commerce platform. Sales increased by 40% within the first month of launch. Highly recommended!\",\n    \"project_name\": \"E-Commerce Platform Redesign\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/testimonials",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "testimonials"
                            ]
                        },
                        "description": "Create a new testimonial"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"client_name\": \"Sarah Johnson\",\n    \"client_position\": \"CEO\",\n    \"client_company\": \"TechRetail Inc.\",\n    \"client_avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=25\",\n    \"rating\": 5,\n    \"content\": \"Alexandra exceeded all our expectations. Her technical expertise and attention to detail transformed our e-commerce platform. Sales increased by 40% within the first month of launch. Highly recommended!\",\n    \"project_name\": \"E-Commerce Platform Redesign\",\n    \"created_at\": \"2024-01-20T10:30:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Update Testimonial",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"client_name\": \"Sarah Johnson\",\n    \"client_position\": \"CEO\",\n    \"client_company\": \"TechRetail Inc.\",\n    \"client_avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=25\",\n    \"rating\": 5,\n    \"content\": \"Alexandra exceeded all our expectations. Her technical expertise and attention to detail transformed our e-commerce platform. Sales increased by 40% within the first month of launch. Highly recommended!\",\n    \"project_name\": \"E-Commerce Platform Redesign\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/testimonials/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "testimonials",
                                "1"
                            ]
                        },
                        "description": "Update an existing testimonial"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"Alexandra Mitchell\",\n    \"client_name\": \"Sarah Johnson\",\n    \"client_position\": \"CEO\",\n    \"client_company\": \"TechRetail Inc.\",\n    \"client_avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=25\",\n    \"rating\": 5,\n    \"content\": \"Alexandra exceeded all our expectations. Her technical expertise and attention to detail transformed our e-commerce platform. Sales increased by 40% within the first month of launch. Highly recommended!\",\n    \"project_name\": \"E-Commerce Platform Redesign\",\n    \"created_at\": \"2024-01-20T10:30:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Testimonial",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/testimonials/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "testimonials",
                                "1"
                            ]
                        },
                        "description": "Delete a testimonial by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Testimonial deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Users",
            "description": "Portfolio owners and their information",
            "item": [
                {
                    "name": "Get All Users",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/users",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "users"
                            ]
                        },
                        "description": "Retrieve a paginated list of all users"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"name\": \"Alexandra Mitchell\",\n            \"title\": \"Senior Full-Stack Developer & UI\\/UX Designer\",\n            \"bio\": \"Passionate full-stack developer with 8+ years of experience building scalable web applications. Specialized in React, Node.js, and cloud architecture. I love creating beautiful, user-centric digital experiences that solve real-world problems.\",\n            \"email\": \"alex.mitchell@portfolio.dev\",\n            \"password\": \"$2y$12$PW3rNnqVBS2c2eUvaxfMqOHKgzq4QrYDfVmd83VpLRLpNbkA7NjDC\",\n            \"api_token\": \"950937955711872fcdd9d7c7408e310689f40bb5fd669a0526599325c9d4da94\",\n            \"phone\": \"+1 (555) 123-4567\",\n            \"location\": \"San Francisco, CA, USA\",\n            \"avatar\": \"https:\\/\\/i.pravatar.cc\\/400?img=45\",\n            \"cover_image\": \"https:\\/\\/picsum.photos\\/1920\\/400?random=cover1\",\n            \"resume_url\": \"https:\\/\\/example.com\\/resume\\/alexandra-mitchell.pdf\",\n            \"years_experience\": 8,\n            \"projects_completed\": 47,\n            \"clients_served\": 23,\n            \"social_links\": {\n                \"github\": \"https:\\/\\/github.com\\/alexmitchell\",\n                \"linkedin\": \"https:\\/\\/linkedin.com\\/in\\/alexandra-mitchell\",\n                \"twitter\": \"https:\\/\\/twitter.com\\/alex_codes\",\n                \"dribbble\": \"https:\\/\\/dribbble.com\\/alexmitchell\"\n            },\n            \"availability\": \"Available for freelance\"\n        },\n        {\n            \"name\": \"Alexandra Mitchell\",\n            \"title\": \"Senior Full-Stack Developer & UI\\/UX Designer\",\n            \"bio\": \"Passionate full-stack developer with 8+ years of experience building scalable web applications. Specialized in React, Node.js, and cloud architecture. I love creating beautiful, user-centric digital experiences that solve real-world problems.\",\n            \"email\": \"alex.mitchell@portfolio.dev\",\n            \"password\": \"$2y$12$PW3rNnqVBS2c2eUvaxfMqOHKgzq4QrYDfVmd83VpLRLpNbkA7NjDC\",\n            \"api_token\": \"950937955711872fcdd9d7c7408e310689f40bb5fd669a0526599325c9d4da94\",\n            \"phone\": \"+1 (555) 123-4567\",\n            \"location\": \"San Francisco, CA, USA\",\n            \"avatar\": \"https:\\/\\/i.pravatar.cc\\/400?img=45\",\n            \"cover_image\": \"https:\\/\\/picsum.photos\\/1920\\/400?random=cover1\",\n            \"resume_url\": \"https:\\/\\/example.com\\/resume\\/alexandra-mitchell.pdf\",\n            \"years_experience\": 8,\n            \"projects_completed\": 47,\n            \"clients_served\": 23,\n            \"social_links\": {\n                \"github\": \"https:\\/\\/github.com\\/alexmitchell\",\n                \"linkedin\": \"https:\\/\\/linkedin.com\\/in\\/alexandra-mitchell\",\n                \"twitter\": \"https:\\/\\/twitter.com\\/alex_codes\",\n                \"dribbble\": \"https:\\/\\/dribbble.com\\/alexmitchell\"\n            },\n            \"availability\": \"Available for freelance\"\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get User by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/users/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "users",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single user by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Alexandra Mitchell\",\n    \"title\": \"Senior Full-Stack Developer & UI\\/UX Designer\",\n    \"bio\": \"Passionate full-stack developer with 8+ years of experience building scalable web applications. Specialized in React, Node.js, and cloud architecture. I love creating beautiful, user-centric digital experiences that solve real-world problems.\",\n    \"email\": \"alex.mitchell@portfolio.dev\",\n    \"password\": \"$2y$12$PW3rNnqVBS2c2eUvaxfMqOHKgzq4QrYDfVmd83VpLRLpNbkA7NjDC\",\n    \"api_token\": \"950937955711872fcdd9d7c7408e310689f40bb5fd669a0526599325c9d4da94\",\n    \"phone\": \"+1 (555) 123-4567\",\n    \"location\": \"San Francisco, CA, USA\",\n    \"avatar\": \"https:\\/\\/i.pravatar.cc\\/400?img=45\",\n    \"cover_image\": \"https:\\/\\/picsum.photos\\/1920\\/400?random=cover1\",\n    \"resume_url\": \"https:\\/\\/example.com\\/resume\\/alexandra-mitchell.pdf\",\n    \"years_experience\": 8,\n    \"projects_completed\": 47,\n    \"clients_served\": 23,\n    \"social_links\": {\n        \"github\": \"https:\\/\\/github.com\\/alexmitchell\",\n        \"linkedin\": \"https:\\/\\/linkedin.com\\/in\\/alexandra-mitchell\",\n        \"twitter\": \"https:\\/\\/twitter.com\\/alex_codes\",\n        \"dribbble\": \"https:\\/\\/dribbble.com\\/alexmitchell\"\n    },\n    \"availability\": \"Available for freelance\"\n}"
                        }
                    ]
                },
                {
                    "name": "Create User",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Alexandra Mitchell\",\n    \"title\": \"Senior Full-Stack Developer & UI\\/UX Designer\",\n    \"bio\": \"Passionate full-stack developer with 8+ years of experience building scalable web applications. Specialized in React, Node.js, and cloud architecture. I love creating beautiful, user-centric digital experiences that solve real-world problems.\",\n    \"email\": \"alex.mitchell@portfolio.dev\",\n    \"password\": \"$2y$12$PW3rNnqVBS2c2eUvaxfMqOHKgzq4QrYDfVmd83VpLRLpNbkA7NjDC\",\n    \"api_token\": \"950937955711872fcdd9d7c7408e310689f40bb5fd669a0526599325c9d4da94\",\n    \"phone\": \"+1 (555) 123-4567\",\n    \"location\": \"San Francisco, CA, USA\",\n    \"avatar\": \"https:\\/\\/i.pravatar.cc\\/400?img=45\",\n    \"cover_image\": \"https:\\/\\/picsum.photos\\/1920\\/400?random=cover1\",\n    \"resume_url\": \"https:\\/\\/example.com\\/resume\\/alexandra-mitchell.pdf\",\n    \"years_experience\": 8,\n    \"projects_completed\": 47,\n    \"clients_served\": 23,\n    \"social_links\": {\n        \"github\": \"https:\\/\\/github.com\\/alexmitchell\",\n        \"linkedin\": \"https:\\/\\/linkedin.com\\/in\\/alexandra-mitchell\",\n        \"twitter\": \"https:\\/\\/twitter.com\\/alex_codes\",\n        \"dribbble\": \"https:\\/\\/dribbble.com\\/alexmitchell\"\n    },\n    \"availability\": \"Available for freelance\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/users",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "users"
                            ]
                        },
                        "description": "Create a new user"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Alexandra Mitchell\",\n    \"title\": \"Senior Full-Stack Developer & UI\\/UX Designer\",\n    \"bio\": \"Passionate full-stack developer with 8+ years of experience building scalable web applications. Specialized in React, Node.js, and cloud architecture. I love creating beautiful, user-centric digital experiences that solve real-world problems.\",\n    \"email\": \"alex.mitchell@portfolio.dev\",\n    \"password\": \"$2y$12$PW3rNnqVBS2c2eUvaxfMqOHKgzq4QrYDfVmd83VpLRLpNbkA7NjDC\",\n    \"api_token\": \"950937955711872fcdd9d7c7408e310689f40bb5fd669a0526599325c9d4da94\",\n    \"phone\": \"+1 (555) 123-4567\",\n    \"location\": \"San Francisco, CA, USA\",\n    \"avatar\": \"https:\\/\\/i.pravatar.cc\\/400?img=45\",\n    \"cover_image\": \"https:\\/\\/picsum.photos\\/1920\\/400?random=cover1\",\n    \"resume_url\": \"https:\\/\\/example.com\\/resume\\/alexandra-mitchell.pdf\",\n    \"years_experience\": 8,\n    \"projects_completed\": 47,\n    \"clients_served\": 23,\n    \"social_links\": {\n        \"github\": \"https:\\/\\/github.com\\/alexmitchell\",\n        \"linkedin\": \"https:\\/\\/linkedin.com\\/in\\/alexandra-mitchell\",\n        \"twitter\": \"https:\\/\\/twitter.com\\/alex_codes\",\n        \"dribbble\": \"https:\\/\\/dribbble.com\\/alexmitchell\"\n    },\n    \"availability\": \"Available for freelance\"\n}"
                        }
                    ]
                },
                {
                    "name": "Update User",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Alexandra Mitchell\",\n    \"title\": \"Senior Full-Stack Developer & UI\\/UX Designer\",\n    \"bio\": \"Passionate full-stack developer with 8+ years of experience building scalable web applications. Specialized in React, Node.js, and cloud architecture. I love creating beautiful, user-centric digital experiences that solve real-world problems.\",\n    \"email\": \"alex.mitchell@portfolio.dev\",\n    \"password\": \"$2y$12$PW3rNnqVBS2c2eUvaxfMqOHKgzq4QrYDfVmd83VpLRLpNbkA7NjDC\",\n    \"api_token\": \"950937955711872fcdd9d7c7408e310689f40bb5fd669a0526599325c9d4da94\",\n    \"phone\": \"+1 (555) 123-4567\",\n    \"location\": \"San Francisco, CA, USA\",\n    \"avatar\": \"https:\\/\\/i.pravatar.cc\\/400?img=45\",\n    \"cover_image\": \"https:\\/\\/picsum.photos\\/1920\\/400?random=cover1\",\n    \"resume_url\": \"https:\\/\\/example.com\\/resume\\/alexandra-mitchell.pdf\",\n    \"years_experience\": 8,\n    \"projects_completed\": 47,\n    \"clients_served\": 23,\n    \"social_links\": {\n        \"github\": \"https:\\/\\/github.com\\/alexmitchell\",\n        \"linkedin\": \"https:\\/\\/linkedin.com\\/in\\/alexandra-mitchell\",\n        \"twitter\": \"https:\\/\\/twitter.com\\/alex_codes\",\n        \"dribbble\": \"https:\\/\\/dribbble.com\\/alexmitchell\"\n    },\n    \"availability\": \"Available for freelance\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/users/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "users",
                                "1"
                            ]
                        },
                        "description": "Update an existing user"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Alexandra Mitchell\",\n    \"title\": \"Senior Full-Stack Developer & UI\\/UX Designer\",\n    \"bio\": \"Passionate full-stack developer with 8+ years of experience building scalable web applications. Specialized in React, Node.js, and cloud architecture. I love creating beautiful, user-centric digital experiences that solve real-world problems.\",\n    \"email\": \"alex.mitchell@portfolio.dev\",\n    \"password\": \"$2y$12$PW3rNnqVBS2c2eUvaxfMqOHKgzq4QrYDfVmd83VpLRLpNbkA7NjDC\",\n    \"api_token\": \"950937955711872fcdd9d7c7408e310689f40bb5fd669a0526599325c9d4da94\",\n    \"phone\": \"+1 (555) 123-4567\",\n    \"location\": \"San Francisco, CA, USA\",\n    \"avatar\": \"https:\\/\\/i.pravatar.cc\\/400?img=45\",\n    \"cover_image\": \"https:\\/\\/picsum.photos\\/1920\\/400?random=cover1\",\n    \"resume_url\": \"https:\\/\\/example.com\\/resume\\/alexandra-mitchell.pdf\",\n    \"years_experience\": 8,\n    \"projects_completed\": 47,\n    \"clients_served\": 23,\n    \"social_links\": {\n        \"github\": \"https:\\/\\/github.com\\/alexmitchell\",\n        \"linkedin\": \"https:\\/\\/linkedin.com\\/in\\/alexandra-mitchell\",\n        \"twitter\": \"https:\\/\\/twitter.com\\/alex_codes\",\n        \"dribbble\": \"https:\\/\\/dribbble.com\\/alexmitchell\"\n    },\n    \"availability\": \"Available for freelance\"\n}"
                        }
                    ]
                },
                {
                    "name": "Delete User",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/portfolio/users/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "portfolio",
                                "users",
                                "1"
                            ]
                        },
                        "description": "Delete a user by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"User deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        }
    ],
    "variable": [
        {
            "key": "baseUrl",
            "value": "https://jsonvibe.com",
            "type": "string"
        },
        {
            "key": "token",
            "value": "950937955711872fcdd9d7c7408e310689f40bb5fd669a0526599325c9d4da94",
            "type": "string"
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "token",
                "value": "{{token}}",
                "type": "string"
            }
        ]
    }
}