{
    "info": {
        "name": "Laravel",
        "description": "API Documentation",
        "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
    },
    "item": [
        {
            "name": "v1",
            "item": [
                {
                    "name": "auth",
                    "item": [
                        {
                            "name": "login",
                            "item": [
                                {
                                    "name": "[POST] api/v1/auth/login",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/auth/login",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "auth",
                                                "login"
                                            ]
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"email\": \"johndoe@example.com\",\n    \"password\": \"Password@123\"\n}",
                                            "options": []
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "profile",
                            "item": [
                                {
                                    "name": "[GET] api/v1/auth/profile",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/auth/profile",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "auth",
                                                "profile"
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "logout",
                            "item": [
                                {
                                    "name": "[POST] api/v1/auth/logout",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/auth/logout",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "auth",
                                                "logout"
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "create-user",
                            "item": [
                                {
                                    "name": "[POST] api/v1/auth/create-user",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/auth/create-user",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "auth",
                                                "create-user"
                                            ]
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"name\": \"John Doe\",\n    \"email\": \"johndoe@example.com\",\n    \"is_editor\": false,\n    \"password\": \"Password@123\",\n    \"role_id\": \"9a0fcd5b-486d-4952-b883-70335e3962bb\",\n    \"profile_image\": \"sample_text\",\n    \"bio\": \"This is a sample bio.\"\n}",
                                            "options": []
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "get-user",
                            "item": [
                                {
                                    "name": "[GET] api/v1/auth/get-user/{id}",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/auth/get-user/:id",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "auth",
                                                "get-user",
                                                ":id"
                                            ],
                                            "variable": []
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "update-user",
                            "item": [
                                {
                                    "name": "[POST] api/v1/auth/update-user/{id}",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/auth/update-user/:id",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "auth",
                                                "update-user",
                                                ":id"
                                            ],
                                            "variable": []
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"name\": \"John Doe\",\n    \"email\": \"johndoe@example.com\",\n    \"password\": \"Password@123\",\n    \"role_id\": \"9a0fcd5b-486d-4952-b883-70335e3962bb\",\n    \"profile_image\": \"sample_text\",\n    \"bio\": \"This is a sample bio.\",\n    \"status\": 1,\n    \"is_editor\": false\n}",
                                            "options": []
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "user-delete",
                            "item": [
                                {
                                    "name": "[DELETE] api/v1/auth/user-delete/{id}",
                                    "request": {
                                        "method": "DELETE",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/auth/user-delete/:id",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "auth",
                                                "user-delete",
                                                ":id"
                                            ],
                                            "variable": []
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "get-all-user",
                            "item": [
                                {
                                    "name": "[GET] api/v1/auth/get-all-user",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/auth/get-all-user",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "auth",
                                                "get-all-user"
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "change-password",
                            "item": [
                                {
                                    "name": "[POST] api/v1/auth/change-password",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/auth/change-password",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "auth",
                                                "change-password"
                                            ]
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"current_password\": \"Password@123\",\n    \"new_password\": \"NewPassword@123\"\n}",
                                            "options": []
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "admin-reset-password",
                            "item": [
                                {
                                    "name": "[POST] api/v1/auth/admin-reset-password",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/auth/admin-reset-password",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "auth",
                                                "admin-reset-password"
                                            ]
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"email\": \"johndoe@example.com\",\n    \"password\": \"Password@123\"\n}",
                                            "options": []
                                        }
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "article-category",
                    "item": [
                        {
                            "name": "frontend",
                            "item": [
                                {
                                    "name": "[GET] api/v1/article-category/frontend",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/article-category/frontend",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "article-category",
                                                "frontend"
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "[GET] api/v1/article-category/{id}",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/article-category/:id",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "article-category",
                                        ":id"
                                    ],
                                    "variable": []
                                }
                            }
                        },
                        {
                            "name": "[GET] api/v1/article-category",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/article-category",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "article-category"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"page\": 7,\n    \"per_page\": 92,\n    \"search\": \"sample_text\",\n    \"status\": 1,\n    \"is_featured\": 1,\n    \"show_on_homepage\": 1,\n    \"sort_by\": \"sample_text\",\n    \"order_by\": \"sample_text\"\n}",
                                    "options": []
                                }
                            }
                        },
                        {
                            "name": "create",
                            "item": [
                                {
                                    "name": "[POST] api/v1/article-category/create",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/article-category/create",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "article-category",
                                                "create"
                                            ]
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"name\": \"John Doe\",\n    \"slug\": \"sample_text\",\n    \"description\": \"sample_text\",\n    \"short_description\": \"sample_text\",\n    \"icon\": \"sample_text\",\n    \"color\": \"sample_text\",\n    \"badge\": \"sample_text\",\n    \"sort_order\": 0,\n    \"editor\": \"sample_text\",\n    \"is_featured\": 1,\n    \"show_on_homepage\": 1,\n    \"status\": 0,\n    \"meta_title\": \"sample_text\",\n    \"meta_description\": \"sample_text\",\n    \"meta_keywords\": \"sample_text\"\n}",
                                            "options": []
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "[PUT] api/v1/article-category/{id}",
                            "request": {
                                "method": "PUT",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/article-category/:id",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "article-category",
                                        ":id"
                                    ],
                                    "variable": []
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"name\": \"John Doe\",\n    \"slug\": \"sample_text\",\n    \"description\": \"sample_text\",\n    \"short_description\": \"sample_text\",\n    \"icon\": \"sample_text\",\n    \"color\": \"sample_text\",\n    \"badge\": \"sample_text\",\n    \"sort_order\": 5,\n    \"editor\": \"sample_text\",\n    \"is_featured\": 0,\n    \"show_on_homepage\": 0,\n    \"status\": 1,\n    \"meta_title\": \"sample_text\",\n    \"meta_description\": \"sample_text\",\n    \"meta_keywords\": \"sample_text\"\n}",
                                    "options": []
                                }
                            }
                        },
                        {
                            "name": "[DELETE] api/v1/article-category/{id}",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/article-category/:id",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "article-category",
                                        ":id"
                                    ],
                                    "variable": []
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "article",
                    "item": [
                        {
                            "name": "getArticleById",
                            "item": [
                                {
                                    "name": "[GET] api/v1/article/getArticleById/{id}",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/article/getArticleById/:id",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "article",
                                                "getArticleById",
                                                ":id"
                                            ],
                                            "variable": []
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "[GET] api/v1/article",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/article",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "article"
                                    ]
                                }
                            }
                        },
                        {
                            "name": "breaking-news",
                            "item": [
                                {
                                    "name": "[GET] api/v1/article/breaking-news",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/article/breaking-news",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "article",
                                                "breaking-news"
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "create",
                            "item": [
                                {
                                    "name": "[POST] api/v1/article/create",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/article/create",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "article",
                                                "create"
                                            ]
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"headline\": \"sample_text\",\n    \"slug\": \"sample_text\",\n    \"excerpt\": \"sample_text\",\n    \"content\": \"sample_text\",\n    \"category_id\": \"sample_text\",\n    \"author_id\": \"sample_text\",\n    \"featured_image\": \"sample_text\",\n    \"thumbnail\": \"sample_text\",\n    \"gallery\": [\n        []\n    ],\n    \"video_url\": \"sample_text\",\n    \"pdf_url\": \"sample_text\",\n    \"status\": \"sample_text\",\n    \"published_at\": \"sample_text\",\n    \"scheduled_at\": \"sample_text\",\n    \"is_breaking\": 0,\n    \"is_featured\": 0,\n    \"show_on_homepage\": 1,\n    \"status_active\": 1,\n    \"country\": \"sample_text\",\n    \"state\": \"sample_text\",\n    \"city\": \"sample_text\",\n    \"location\": \"sample_text\",\n    \"tags\": [\n        []\n    ],\n    \"meta_title\": \"sample_text\",\n    \"meta_description\": \"sample_text\",\n    \"meta_keywords\": \"sample_text\"\n}",
                                            "options": []
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "update",
                            "item": [
                                {
                                    "name": "[POST] api/v1/article/update/{id}",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/article/update/:id",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "article",
                                                "update",
                                                ":id"
                                            ],
                                            "variable": []
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"headline\": \"sample_text\",\n    \"slug\": \"sample_text\",\n    \"excerpt\": \"sample_text\",\n    \"content\": \"sample_text\",\n    \"category_id\": \"sample_text\",\n    \"author_id\": \"sample_text\",\n    \"featured_image\": \"sample_text\",\n    \"thumbnail\": \"sample_text\",\n    \"gallery\": [\n        []\n    ],\n    \"video_url\": \"sample_text\",\n    \"pdf_url\": \"sample_text\",\n    \"status\": \"sample_text\",\n    \"published_at\": \"sample_text\",\n    \"scheduled_at\": \"sample_text\",\n    \"is_breaking\": 1,\n    \"is_featured\": 0,\n    \"show_on_homepage\": 1,\n    \"status_active\": 1,\n    \"country\": \"sample_text\",\n    \"state\": \"sample_text\",\n    \"city\": \"sample_text\",\n    \"location\": \"sample_text\",\n    \"tags\": [\n        []\n    ],\n    \"meta_title\": \"sample_text\",\n    \"meta_description\": \"sample_text\",\n    \"meta_keywords\": \"sample_text\"\n}",
                                            "options": []
                                        }
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "article-delete",
                    "item": [
                        {
                            "name": "[DELETE] api/v1/article-delete/{id}",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/article-delete/:id",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "article-delete",
                                        ":id"
                                    ],
                                    "variable": []
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "epaper",
                    "item": [
                        {
                            "name": "today",
                            "item": [
                                {
                                    "name": "[GET] api/v1/epaper/today",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/epaper/today",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "epaper",
                                                "today"
                                            ]
                                        }
                                    }
                                }
                            ]
                        },
                        {
                            "name": "[GET] api/v1/epaper/{id}",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/epaper/:id",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "epaper",
                                        ":id"
                                    ],
                                    "variable": []
                                }
                            }
                        },
                        {
                            "name": "[GET] api/v1/epaper",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/epaper",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "epaper"
                                    ]
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "epaper-frontend",
                    "item": [
                        {
                            "name": "[GET] api/v1/epaper-frontend",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/epaper-frontend",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "epaper-frontend"
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[GET] api/v1/epaper-frontend/{slug}",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/epaper-frontend/:slug",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "epaper-frontend",
                                        ":slug"
                                    ],
                                    "variable": []
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "epaper-create",
                    "item": [
                        {
                            "name": "[POST] api/v1/epaper-create",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/epaper-create",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "epaper-create"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"title\": \"sample_text\",\n    \"slug\": \"sample_text\",\n    \"edition\": \"sample_text\",\n    \"language\": \"sample_text\",\n    \"publish_date\": \"sample_text\",\n    \"issue_number\": \"sample_text\",\n    \"cover_image\": \"sample_text\",\n    \"pdf_file\": \"sample_text\",\n    \"total_pages\": 6,\n    \"price\": 12,\n    \"is_premium\": 0,\n    \"download_enabled\": 1,\n    \"share_url\": \"sample_text\",\n    \"status\": \"sample_text\",\n    \"scheduled_at\": \"sample_text\",\n    \"is_featured\": 1,\n    \"is_active\": 0,\n    \"meta_title\": \"sample_text\",\n    \"meta_description\": \"sample_text\",\n    \"meta_keywords\": \"sample_text\",\n    \"created_by\": \"sample_text\",\n    \"updated_by\": \"sample_text\"\n}",
                                    "options": []
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "epaper-update",
                    "item": [
                        {
                            "name": "[POST] api/v1/epaper-update/{id}",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/epaper-update/:id",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "epaper-update",
                                        ":id"
                                    ],
                                    "variable": []
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"title\": \"sample_text\",\n    \"slug\": \"sample_text\",\n    \"edition\": \"sample_text\",\n    \"language\": \"sample_text\",\n    \"publish_date\": \"sample_text\",\n    \"issue_number\": \"sample_text\",\n    \"cover_image\": \"sample_text\",\n    \"pdf_file\": \"sample_text\",\n    \"total_pages\": 3,\n    \"price\": 62,\n    \"is_premium\": 1,\n    \"download_enabled\": 1,\n    \"share_url\": \"sample_text\",\n    \"status\": \"sample_text\",\n    \"scheduled_at\": \"sample_text\",\n    \"is_featured\": 0,\n    \"is_active\": 0,\n    \"meta_title\": \"sample_text\",\n    \"meta_description\": \"sample_text\",\n    \"meta_keywords\": \"sample_text\",\n    \"updated_by\": \"sample_text\"\n}",
                                    "options": []
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "epaper-delete",
                    "item": [
                        {
                            "name": "[DELETE] api/v1/epaper-delete/{id}",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/epaper-delete/:id",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "epaper-delete",
                                        ":id"
                                    ],
                                    "variable": []
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "get-contact",
                    "item": [
                        {
                            "name": "[GET] api/v1/get-contact/{id}",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/get-contact/:id",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "get-contact",
                                        ":id"
                                    ],
                                    "variable": []
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "create-contact",
                    "item": [
                        {
                            "name": "[POST] api/v1/create-contact",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/create-contact",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "create-contact"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"email\": \"johndoe@example.com\",\n    \"alternate_email\": \"user22@example.com\",\n    \"phone\": \"sample_text\",\n    \"alternate_phone\": \"sample_text\",\n    \"address\": \"sample_text\",\n    \"city\": \"sample_text\",\n    \"state\": \"sample_text\",\n    \"country\": \"sample_text\",\n    \"pincode\": \"sample_text\",\n    \"latitude\": \"sample_text\",\n    \"longitude\": \"sample_text\",\n    \"google_map_url\": \"sample_text\",\n    \"facebook_url\": \"sample_text\",\n    \"instagram_url\": \"sample_text\",\n    \"youtube_url\": \"sample_text\",\n    \"linkedin_url\": \"sample_text\",\n    \"twitter_url\": \"sample_text\",\n    \"whatsapp_url\": \"sample_text\",\n    \"telegram_url\": \"sample_text\",\n    \"company_name\": \"sample_text\",\n    \"website_url\": \"sample_text\",\n    \"support_email\": \"user44@example.com\",\n    \"support_phone\": \"sample_text\",\n    \"working_days\": \"sample_text\",\n    \"opening_time\": \"sample_text\",\n    \"closing_time\": \"sample_text\",\n    \"description\": \"sample_text\",\n    \"contact_person\": \"sample_text\",\n    \"is_active\": 1\n}",
                                    "options": []
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "update-contact",
                    "item": [
                        {
                            "name": "[POST] api/v1/update-contact/{id}",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/update-contact/:id",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "update-contact",
                                        ":id"
                                    ],
                                    "variable": []
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"email\": \"johndoe@example.com\",\n    \"alternate_email\": \"user31@example.com\",\n    \"phone\": \"sample_text\",\n    \"alternate_phone\": \"sample_text\",\n    \"address\": \"sample_text\",\n    \"city\": \"sample_text\",\n    \"state\": \"sample_text\",\n    \"country\": \"sample_text\",\n    \"pincode\": \"sample_text\",\n    \"latitude\": \"sample_text\",\n    \"longitude\": \"sample_text\",\n    \"google_map_url\": \"sample_text\",\n    \"facebook_url\": \"sample_text\",\n    \"instagram_url\": \"sample_text\",\n    \"youtube_url\": \"sample_text\",\n    \"linkedin_url\": \"sample_text\",\n    \"twitter_url\": \"sample_text\",\n    \"whatsapp_url\": \"sample_text\",\n    \"telegram_url\": \"sample_text\",\n    \"company_name\": \"sample_text\",\n    \"website_url\": \"sample_text\",\n    \"support_email\": \"user15@example.com\",\n    \"support_phone\": \"sample_text\",\n    \"working_days\": \"sample_text\",\n    \"opening_time\": \"sample_text\",\n    \"closing_time\": \"sample_text\",\n    \"description\": \"sample_text\",\n    \"contact_person\": \"sample_text\",\n    \"is_active\": 1\n}",
                                    "options": []
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "create-feedback",
                    "item": [
                        {
                            "name": "[POST] api/v1/create-feedback",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/create-feedback",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "create-feedback"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"full_name\": \"sample_text\",\n    \"email\": \"johndoe@example.com\",\n    \"subject\": \"sample_text\",\n    \"message\": \"sample_text\"\n}",
                                    "options": []
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "get-all-feedback",
                    "item": [
                        {
                            "name": "[GET] api/v1/get-all-feedback",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/get-all-feedback",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "get-all-feedback"
                                    ]
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "get-feedback",
                    "item": [
                        {
                            "name": "[GET] api/v1/get-feedback/{id}",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/get-feedback/:id",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "get-feedback",
                                        ":id"
                                    ],
                                    "variable": []
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "delete-feedback",
                    "item": [
                        {
                            "name": "[DELETE] api/v1/delete-feedback/{id}",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/delete-feedback/:id",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "delete-feedback",
                                        ":id"
                                    ],
                                    "variable": []
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "create-role",
                    "item": [
                        {
                            "name": "[POST] api/v1/create-role",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/create-role",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "create-role"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"role\": \"sample_text\",\n    \"role_name\": \"sample_text\",\n    \"description\": \"sample_text\",\n    \"active\": 1\n}",
                                    "options": []
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "update-role",
                    "item": [
                        {
                            "name": "[POST] api/v1/update-role/{id}",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/update-role/:id",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "update-role",
                                        ":id"
                                    ],
                                    "variable": []
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"role\": \"sample_text\",\n    \"role_name\": \"sample_text\",\n    \"description\": \"sample_text\",\n    \"active\": 1\n}",
                                    "options": []
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "roles",
                    "item": [
                        {
                            "name": "[GET] api/v1/roles/{id}",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/roles/:id",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "roles",
                                        ":id"
                                    ],
                                    "variable": []
                                }
                            }
                        },
                        {
                            "name": "[GET] api/v1/roles",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/roles",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "roles"
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[DELETE] api/v1/roles/{id}",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/roles/:id",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "roles",
                                        ":id"
                                    ],
                                    "variable": []
                                }
                            }
                        },
                        {
                            "name": "permissions",
                            "item": [
                                {
                                    "name": "[POST] api/v1/roles/{roleId}/permissions",
                                    "request": {
                                        "method": "POST",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/roles/:roleId/permissions",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "roles",
                                                ":roleId",
                                                "permissions"
                                            ],
                                            "variable": []
                                        },
                                        "body": {
                                            "mode": "raw",
                                            "raw": "{\n    \"permission_ids\": [\n        []\n    ]\n}",
                                            "options": []
                                        }
                                    }
                                },
                                {
                                    "name": "[GET] api/v1/roles/{roleId}/permissions",
                                    "request": {
                                        "method": "GET",
                                        "header": [
                                            {
                                                "key": "Accept",
                                                "value": "application/json",
                                                "type": "text"
                                            },
                                            {
                                                "key": "Content-Type",
                                                "value": "application/json",
                                                "type": "text"
                                            }
                                        ],
                                        "url": {
                                            "raw": "{{base_url}}/api/v1/roles/:roleId/permissions",
                                            "host": [
                                                "{{base_url}}"
                                            ],
                                            "path": [
                                                "api",
                                                "v1",
                                                "roles",
                                                ":roleId",
                                                "permissions"
                                            ],
                                            "variable": []
                                        }
                                    }
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "create-permission",
                    "item": [
                        {
                            "name": "[POST] api/v1/create-permission",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/create-permission",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "create-permission"
                                    ]
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"module\": \"sample_text\",\n    \"permission\": \"sample_text\",\n    \"permission_name\": \"sample_text\",\n    \"description\": \"sample_text\",\n    \"active\": 0\n}",
                                    "options": []
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "update-permission",
                    "item": [
                        {
                            "name": "[POST] api/v1/update-permission/{id}",
                            "request": {
                                "method": "POST",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/update-permission/:id",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "update-permission",
                                        ":id"
                                    ],
                                    "variable": []
                                },
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n    \"module\": \"sample_text\",\n    \"permission\": \"sample_text\",\n    \"permission_name\": \"sample_text\",\n    \"description\": \"sample_text\",\n    \"active\": 1\n}",
                                    "options": []
                                }
                            }
                        }
                    ]
                },
                {
                    "name": "permissions",
                    "item": [
                        {
                            "name": "[GET] api/v1/permissions/{id}",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/permissions/:id",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "permissions",
                                        ":id"
                                    ],
                                    "variable": []
                                }
                            }
                        },
                        {
                            "name": "[GET] api/v1/permissions",
                            "request": {
                                "method": "GET",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/permissions",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "permissions"
                                    ]
                                }
                            }
                        },
                        {
                            "name": "[DELETE] api/v1/permissions/{id}",
                            "request": {
                                "method": "DELETE",
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json",
                                        "type": "text"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json",
                                        "type": "text"
                                    }
                                ],
                                "url": {
                                    "raw": "{{base_url}}/api/v1/permissions/:id",
                                    "host": [
                                        "{{base_url}}"
                                    ],
                                    "path": [
                                        "api",
                                        "v1",
                                        "permissions",
                                        ":id"
                                    ],
                                    "variable": []
                                }
                            }
                        }
                    ]
                }
            ]
        }
    ],
    "variable": [
        {
            "key": "base_url",
            "value": "https://api.suvigya.in/"
        }
    ]
}