{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "http:\/\/shofy.test"
        }
    ],
    "info": {
        "name": "Your App API Documentation",
        "_postman_id": "fc37fde0-ba68-4ede-afe6-357c73532af4",
        "description": "",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "Address",
            "description": "",
            "item": [
                {
                    "name": "Get list of address by customer",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/addresses",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/addresses"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create new address for customer",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/addresses",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/addresses"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"John Doe\",\"email\":\"john.doe@example.com\",\"phone\":\"0123456789\",\"country\":\"United States or US\",\"state\":\"California\",\"city\":\"Los Angeles\",\"address\":\"123 Main St\",\"is_default\":true,\"zip_code\":\"90001\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"error\": false,\n \"data\": {\n     \"id\": 1,\n     \"name\": \"John Doe\",\n     \"phone\": \"0123456789\",\n     \"email\": \"john.doe@example.com\",\n     \"country\": \"United States\",\n     \"state\": \"California\",\n     \"city\": \"Los Angeles\",\n     \"address\": \"123 Main St\",\n     \"zip_code\": \"90001\",\n     \"is_default\": true\n },\n \"message\": null\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update an address",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/addresses\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/addresses\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the address."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"John Doe\",\"email\":\"john.doe@example.com\",\"phone\":\"0123456789\",\"country\":\"United States or US\",\"state\":\"California\",\"city\":\"Los Angeles\",\"address\":\"123 Main St\",\"is_default\":true,\"zip_code\":\"90001\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"error\": false,\n \"data\": {\n     \"id\": 1,\n     \"name\": \"John Doe\",\n     \"phone\": \"0123456789\",\n     \"email\": \"john.doe@example.com\",\n     \"country\": \"United States\",\n     \"state\": \"California\",\n     \"city\": \"Los Angeles\",\n     \"address\": \"123 Main St\",\n     \"zip_code\": \"90001\",\n     \"is_default\": true\n },\n \"message\": null\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Delete an address",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/addresses\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/addresses\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the address."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"error\": false,\n \"data\": null,\n \"message\": \"Address deleted successfully\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get list of available countries",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/countries",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/countries"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"error\": false,\n  \"data\": [\n    {\n      \"name\": \"Vietnam\",\n      \"code\": \"VN\"\n    }\n  ],\n  \"message\": null\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Ads",
            "description": "",
            "item": [
                {
                    "name": "Get ads",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ads",
                            "query": [
                                {
                                    "key": "keys[0]",
                                    "value": "homepage-banner",
                                    "description": "Array of ad keys to filter by.",
                                    "disabled": false
                                },
                                {
                                    "key": "keys[1]",
                                    "value": "sidebar-banner",
                                    "description": "Array of ad keys to filter by.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/ads?keys[0]=homepage-banner&keys[1]=sidebar-banner"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"keys\":[\"homepage-banner\",\"sidebar-banner\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"error\":false,\"data\":[],\"message\":null}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Authentication",
            "description": "",
            "item": [
                {
                    "name": "Register",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/register",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/register"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"first_name\":\"John\",\"last_name\":\"Smith\",\"name\":\"consequatur\",\"email\":\"qkunze@example.com\",\"password\":\"O[2UZ5ij-e\\\/dl4m{o,\",\"phone\":\"consequatur\",\"password_confirmation\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"error\": false,\n\"data\": null,\n\"message\": \"Registered successfully! We emailed you to verify your account!\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n\"message\": \"The given data was invalid.\",\n\"errors\": {\n    \"name\": [\n        \"The name field is required.\"\n    ],\n    \"email\": [\n        \"The email field is required.\"\n    ],\n    \"password\": [\n        \"The password field is required.\"\n    ]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Login",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/login",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/login"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"qkunze@example.com\",\"password\":\"O[2UZ5ij-e\\\/dl4m{o,\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"error\": false,\n\"data\": {\n   \"token\": \"1|aF5s7p3xxx1lVL8hkSrPN72m4wPVpTvTs...\"\n},\n\"message\": null\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Check email existing or not",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/email\/check",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/email\/check"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"qkunze@example.com\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"error\": false,\n \"data\": {\n    \"exists\": true\n },\n \"message\": null\n }",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Forgot password",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/password\/forgot",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/password\/forgot"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"qkunze@example.com\"}"
                        },
                        "description": "Send a reset link to the given user.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Resend email verification",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/resend-verify-account-email",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/resend-verify-account-email"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"qkunze@example.com\"}"
                        },
                        "description": "Resend the email verification notification.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Logout",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/logout",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/logout"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Blog",
            "description": "",
            "item": [
                {
                    "name": "Search post",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/search",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/search"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"q\":\"consequatur\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"No results found, please try with different keywords.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List posts",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/posts",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/posts"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[{\"id\":1,\"name\":\"4 Expert Tips On How To Choose The Right Men\\u2019s Wallet\",\"slug\":\"4-expert-tips-on-how-to-choose-the-right-mens-wallet\",\"description\":\"Alice's, and they sat down at her as hard as it can talk: at any rate I'll never go THERE again!' said Alice to herself, 'to be going messages for a minute or two, which gave the Pigeon in a.\",\"image\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/blog\\\/post-6.jpg\",\"categories\":[{\"id\":5,\"name\":\"Organic Fruits\",\"slug\":\"organic-fruits\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/organic-fruits\",\"description\":\"Quae in praesentium quae dignissimos ratione et aliquid. Architecto maiores nisi quisquam consequuntur veniam sapiente. Voluptatum voluptates fugiat ut molestiae.\"}],\"tags\":[{\"id\":5,\"name\":\"Modern\",\"slug\":\"modern\",\"description\":null},{\"id\":7,\"name\":\"Vintage\",\"slug\":\"vintage\",\"description\":null}],\"created_at\":\"2025-06-25T01:43:37.000000Z\",\"updated_at\":\"2025-06-25T01:43:37.000000Z\"},{\"id\":2,\"name\":\"Sexy Clutches: How to Buy & Wear a Designer Clutch Bag\",\"slug\":\"sexy-clutches-how-to-buy-wear-a-designer-clutch-bag\",\"description\":\"Mock Turtle said: 'advance twice, set to work nibbling at the proposal. 'Then the Dormouse into the garden with one eye, How the Owl and the two creatures, who had got to go from here?' 'That.\",\"image\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/blog\\\/post-3.jpg\",\"categories\":[{\"id\":2,\"name\":\"Fashion\",\"slug\":\"fashion\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/fashion\",\"description\":\"Consequatur magni suscipit veniam labore optio modi minus. Cum neque rerum id natus non placeat rerum. Iure vel recusandae quia voluptatem omnis ratione tempora quia.\"},{\"id\":6,\"name\":\"Ecological\",\"slug\":\"ecological\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/ecological\",\"description\":\"Reprehenderit voluptas excepturi qui sunt. Consequatur quia consequatur consequuntur consequatur. Et adipisci error voluptatem vitae amet repellendus sit. Possimus omnis fugiat recusandae quod.\"}],\"tags\":[{\"id\":2,\"name\":\"Design\",\"slug\":\"design\",\"description\":null},{\"id\":6,\"name\":\"Nature\",\"slug\":\"nature\",\"description\":null},{\"id\":7,\"name\":\"Vintage\",\"slug\":\"vintage\",\"description\":null}],\"created_at\":\"2025-06-25T01:43:37.000000Z\",\"updated_at\":\"2025-06-25T01:43:37.000000Z\"},{\"id\":3,\"name\":\"The Top 2020 Handbag Trends to Know\",\"slug\":\"the-top-2020-handbag-trends-to-know\",\"description\":\"White Rabbit, 'and that's why. Pig!' She said it to be Involved in this way! Stop this moment, and fetch me a pair of gloves and the baby violently up and saying, 'Thank you, sir, for your.\",\"image\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/blog\\\/post-2.jpg\",\"categories\":[{\"id\":5,\"name\":\"Organic Fruits\",\"slug\":\"organic-fruits\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/organic-fruits\",\"description\":\"Quae in praesentium quae dignissimos ratione et aliquid. Architecto maiores nisi quisquam consequuntur veniam sapiente. Voluptatum voluptates fugiat ut molestiae.\"}],\"tags\":[{\"id\":2,\"name\":\"Design\",\"slug\":\"design\",\"description\":null},{\"id\":4,\"name\":\"Branding\",\"slug\":\"branding\",\"description\":null},{\"id\":7,\"name\":\"Vintage\",\"slug\":\"vintage\",\"description\":null}],\"created_at\":\"2025-06-25T01:43:37.000000Z\",\"updated_at\":\"2025-06-25T01:43:37.000000Z\"},{\"id\":4,\"name\":\"How to Match the Color of Your Handbag With an Outfit\",\"slug\":\"how-to-match-the-color-of-your-handbag-with-an-outfit\",\"description\":\"Alice could speak again. In a little girl she'll think me for asking! No, it'll never do to ask: perhaps I shall have to ask his neighbour to tell him. 'A nice muddle their slates'll be in a hurry.\",\"image\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/blog\\\/post-2.jpg\",\"categories\":[{\"id\":2,\"name\":\"Fashion\",\"slug\":\"fashion\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/fashion\",\"description\":\"Consequatur magni suscipit veniam labore optio modi minus. Cum neque rerum id natus non placeat rerum. Iure vel recusandae quia voluptatem omnis ratione tempora quia.\"},{\"id\":6,\"name\":\"Ecological\",\"slug\":\"ecological\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/ecological\",\"description\":\"Reprehenderit voluptas excepturi qui sunt. Consequatur quia consequatur consequuntur consequatur. Et adipisci error voluptatem vitae amet repellendus sit. Possimus omnis fugiat recusandae quod.\"}],\"tags\":[{\"id\":1,\"name\":\"General\",\"slug\":\"general\",\"description\":null},{\"id\":3,\"name\":\"Fashion\",\"slug\":\"fashion\",\"description\":null},{\"id\":7,\"name\":\"Vintage\",\"slug\":\"vintage\",\"description\":null}],\"created_at\":\"2025-06-25T01:43:37.000000Z\",\"updated_at\":\"2025-06-25T01:43:37.000000Z\"},{\"id\":5,\"name\":\"How to Care for Leather Bags\",\"slug\":\"how-to-care-for-leather-bags\",\"description\":\"She had not got into it), and handed them round as prizes. There was no label this time she heard a little of her sharp little chin. 'I've a right to grow larger again, and Alice called out as loud.\",\"image\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/blog\\\/post-5.jpg\",\"categories\":[{\"id\":1,\"name\":\"Crisp Bread & Cake\",\"slug\":\"crisp-bread-cake\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/crisp-bread-cake\",\"description\":\"Et magni blanditiis quos optio delectus animi possimus. Repudiandae expedita alias ipsam. Magnam quas ipsam autem ipsam.\"},{\"id\":6,\"name\":\"Ecological\",\"slug\":\"ecological\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/ecological\",\"description\":\"Reprehenderit voluptas excepturi qui sunt. Consequatur quia consequatur consequuntur consequatur. Et adipisci error voluptatem vitae amet repellendus sit. Possimus omnis fugiat recusandae quod.\"}],\"tags\":[{\"id\":4,\"name\":\"Branding\",\"slug\":\"branding\",\"description\":null},{\"id\":5,\"name\":\"Modern\",\"slug\":\"modern\",\"description\":null},{\"id\":8,\"name\":\"Sunglasses\",\"slug\":\"sunglasses\",\"description\":null}],\"created_at\":\"2025-06-25T01:43:37.000000Z\",\"updated_at\":\"2025-06-25T01:43:37.000000Z\"},{\"id\":6,\"name\":\"We're Crushing Hard on Summer's 10 Biggest Bag Trends\",\"slug\":\"were-crushing-hard-on-summers-10-biggest-bag-trends\",\"description\":\"Duchess began in a very respectful tone, but frowning and making faces at him as he could go. Alice took up the fan she was now only ten inches high, and her eyes to see that queer little toss of.\",\"image\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/blog\\\/post-10.jpg\",\"categories\":[{\"id\":4,\"name\":\"Commercial\",\"slug\":\"commercial\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/commercial\",\"description\":\"Optio incidunt delectus ut adipisci ea neque et aliquid. Alias iure ratione omnis consequatur. Dolor sequi natus sit iste aut.\"},{\"id\":6,\"name\":\"Ecological\",\"slug\":\"ecological\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/ecological\",\"description\":\"Reprehenderit voluptas excepturi qui sunt. Consequatur quia consequatur consequuntur consequatur. Et adipisci error voluptatem vitae amet repellendus sit. Possimus omnis fugiat recusandae quod.\"}],\"tags\":[{\"id\":6,\"name\":\"Nature\",\"slug\":\"nature\",\"description\":null},{\"id\":8,\"name\":\"Sunglasses\",\"slug\":\"sunglasses\",\"description\":null}],\"created_at\":\"2025-06-25T01:43:37.000000Z\",\"updated_at\":\"2025-06-25T01:43:37.000000Z\"},{\"id\":7,\"name\":\"Essential Qualities of Highly Successful Music\",\"slug\":\"essential-qualities-of-highly-successful-music\",\"description\":\"He looked at Two. Two began in a very short time the Mouse was speaking, so that her flamingo was gone across to the rose-tree, she went on for some time with great curiosity. 'Soles and eels, of.\",\"image\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/blog\\\/post-12.jpg\",\"categories\":[{\"id\":6,\"name\":\"Ecological\",\"slug\":\"ecological\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/ecological\",\"description\":\"Reprehenderit voluptas excepturi qui sunt. Consequatur quia consequatur consequuntur consequatur. Et adipisci error voluptatem vitae amet repellendus sit. Possimus omnis fugiat recusandae quod.\"}],\"tags\":[{\"id\":1,\"name\":\"General\",\"slug\":\"general\",\"description\":null},{\"id\":2,\"name\":\"Design\",\"slug\":\"design\",\"description\":null},{\"id\":7,\"name\":\"Vintage\",\"slug\":\"vintage\",\"description\":null}],\"created_at\":\"2025-06-25T01:43:37.000000Z\",\"updated_at\":\"2025-06-25T01:43:37.000000Z\"},{\"id\":8,\"name\":\"9 Things I Love About Shaving My Head\",\"slug\":\"9-things-i-love-about-shaving-my-head\",\"description\":\"White Rabbit; 'in fact, there's nothing written on the trumpet, and called out, 'First witness!' The first thing I've got to grow to my right size: the next moment she quite forgot you didn't like.\",\"image\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/blog\\\/post-6.jpg\",\"categories\":[{\"id\":2,\"name\":\"Fashion\",\"slug\":\"fashion\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/fashion\",\"description\":\"Consequatur magni suscipit veniam labore optio modi minus. Cum neque rerum id natus non placeat rerum. Iure vel recusandae quia voluptatem omnis ratione tempora quia.\"},{\"id\":3,\"name\":\"Electronic\",\"slug\":\"electronic\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/electronic\",\"description\":\"Culpa quia voluptas sint aut maiores minus debitis. Et dolor occaecati ullam qui. Perspiciatis natus rerum officia veniam cum odio molestias. Omnis laudantium ipsam ut voluptatum.\"}],\"tags\":[{\"id\":5,\"name\":\"Modern\",\"slug\":\"modern\",\"description\":null},{\"id\":8,\"name\":\"Sunglasses\",\"slug\":\"sunglasses\",\"description\":null}],\"created_at\":\"2025-06-25T01:43:37.000000Z\",\"updated_at\":\"2025-06-25T01:43:37.000000Z\"},{\"id\":9,\"name\":\"Why Teamwork Really Makes The Dream Work\",\"slug\":\"why-teamwork-really-makes-the-dream-work\",\"description\":\"I've kept her eyes immediately met those of a well--' 'What did they live at the cook, and a scroll of parchment in the world! Oh, my dear paws! Oh my dear paws! Oh my fur and whiskers! She'll get.\",\"image\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/blog\\\/post-1.jpg\",\"categories\":[{\"id\":1,\"name\":\"Crisp Bread & Cake\",\"slug\":\"crisp-bread-cake\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/crisp-bread-cake\",\"description\":\"Et magni blanditiis quos optio delectus animi possimus. Repudiandae expedita alias ipsam. Magnam quas ipsam autem ipsam.\"},{\"id\":5,\"name\":\"Organic Fruits\",\"slug\":\"organic-fruits\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/organic-fruits\",\"description\":\"Quae in praesentium quae dignissimos ratione et aliquid. Architecto maiores nisi quisquam consequuntur veniam sapiente. Voluptatum voluptates fugiat ut molestiae.\"}],\"tags\":[{\"id\":3,\"name\":\"Fashion\",\"slug\":\"fashion\",\"description\":null},{\"id\":4,\"name\":\"Branding\",\"slug\":\"branding\",\"description\":null},{\"id\":5,\"name\":\"Modern\",\"slug\":\"modern\",\"description\":null}],\"created_at\":\"2025-06-25T01:43:37.000000Z\",\"updated_at\":\"2025-06-25T01:43:37.000000Z\"},{\"id\":10,\"name\":\"The World Caters to Average People\",\"slug\":\"the-world-caters-to-average-people\",\"description\":\"Jack-in-the-box, and up I goes like a stalk out of its mouth open, gazing up into the air off all its feet at once, in a voice sometimes choked with sobs, to sing \\\"Twinkle, twinkle, little bat! How.\",\"image\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/blog\\\/post-8.jpg\",\"categories\":[{\"id\":4,\"name\":\"Commercial\",\"slug\":\"commercial\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/commercial\",\"description\":\"Optio incidunt delectus ut adipisci ea neque et aliquid. Alias iure ratione omnis consequatur. Dolor sequi natus sit iste aut.\"},{\"id\":5,\"name\":\"Organic Fruits\",\"slug\":\"organic-fruits\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/organic-fruits\",\"description\":\"Quae in praesentium quae dignissimos ratione et aliquid. Architecto maiores nisi quisquam consequuntur veniam sapiente. Voluptatum voluptates fugiat ut molestiae.\"}],\"tags\":[{\"id\":2,\"name\":\"Design\",\"slug\":\"design\",\"description\":null},{\"id\":6,\"name\":\"Nature\",\"slug\":\"nature\",\"description\":null},{\"id\":8,\"name\":\"Sunglasses\",\"slug\":\"sunglasses\",\"description\":null}],\"created_at\":\"2025-06-25T01:43:37.000000Z\",\"updated_at\":\"2025-06-25T01:43:37.000000Z\"}],\"links\":{\"first\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/posts?page=1\",\"last\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/posts?page=2\",\"prev\":null,\"next\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/posts?page=2\"},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":2,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/posts?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/posts?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/posts?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/posts\",\"per_page\":10,\"to\":10,\"total\":18},\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List categories",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/categories",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/categories"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[{\"id\":6,\"name\":\"Ecological\",\"slug\":\"ecological\",\"description\":\"Reprehenderit voluptas excepturi qui sunt. Consequatur quia consequatur consequuntur consequatur. Et adipisci error voluptatem vitae amet repellendus sit. Possimus omnis fugiat recusandae quod.\",\"children\":[],\"parent\":{\"id\":null,\"name\":null,\"slug\":\"\",\"url\":\"http:\\\/\\\/shofy.test\",\"description\":null}},{\"id\":5,\"name\":\"Organic Fruits\",\"slug\":\"organic-fruits\",\"description\":\"Quae in praesentium quae dignissimos ratione et aliquid. Architecto maiores nisi quisquam consequuntur veniam sapiente. Voluptatum voluptates fugiat ut molestiae.\",\"children\":[],\"parent\":{\"id\":null,\"name\":null,\"slug\":\"\",\"url\":\"http:\\\/\\\/shofy.test\",\"description\":null}},{\"id\":4,\"name\":\"Commercial\",\"slug\":\"commercial\",\"description\":\"Optio incidunt delectus ut adipisci ea neque et aliquid. Alias iure ratione omnis consequatur. Dolor sequi natus sit iste aut.\",\"children\":[],\"parent\":{\"id\":null,\"name\":null,\"slug\":\"\",\"url\":\"http:\\\/\\\/shofy.test\",\"description\":null}},{\"id\":3,\"name\":\"Electronic\",\"slug\":\"electronic\",\"description\":\"Culpa quia voluptas sint aut maiores minus debitis. Et dolor occaecati ullam qui. Perspiciatis natus rerum officia veniam cum odio molestias. Omnis laudantium ipsam ut voluptatum.\",\"children\":[],\"parent\":{\"id\":null,\"name\":null,\"slug\":\"\",\"url\":\"http:\\\/\\\/shofy.test\",\"description\":null}},{\"id\":2,\"name\":\"Fashion\",\"slug\":\"fashion\",\"description\":\"Consequatur magni suscipit veniam labore optio modi minus. Cum neque rerum id natus non placeat rerum. Iure vel recusandae quia voluptatem omnis ratione tempora quia.\",\"children\":[],\"parent\":{\"id\":null,\"name\":null,\"slug\":\"\",\"url\":\"http:\\\/\\\/shofy.test\",\"description\":null}},{\"id\":1,\"name\":\"Crisp Bread & Cake\",\"slug\":\"crisp-bread-cake\",\"description\":\"Et magni blanditiis quos optio delectus animi possimus. Repudiandae expedita alias ipsam. Magnam quas ipsam autem ipsam.\",\"children\":[],\"parent\":{\"id\":null,\"name\":null,\"slug\":\"\",\"url\":\"http:\\\/\\\/shofy.test\",\"description\":null}}],\"links\":{\"first\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/categories?page=1\",\"last\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/categories?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/categories?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/categories\",\"per_page\":10,\"to\":6,\"total\":6},\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List tags",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/tags",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/tags"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[{\"id\":1,\"name\":\"General\",\"slug\":\"general\",\"description\":null},{\"id\":2,\"name\":\"Design\",\"slug\":\"design\",\"description\":null},{\"id\":3,\"name\":\"Fashion\",\"slug\":\"fashion\",\"description\":null},{\"id\":4,\"name\":\"Branding\",\"slug\":\"branding\",\"description\":null},{\"id\":5,\"name\":\"Modern\",\"slug\":\"modern\",\"description\":null},{\"id\":6,\"name\":\"Nature\",\"slug\":\"nature\",\"description\":null},{\"id\":7,\"name\":\"Vintage\",\"slug\":\"vintage\",\"description\":null},{\"id\":8,\"name\":\"Sunglasses\",\"slug\":\"sunglasses\",\"description\":null}],\"links\":{\"first\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/tags?page=1\",\"last\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/tags?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/tags?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/tags\",\"per_page\":10,\"to\":8,\"total\":8},\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Filters posts",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/posts\/filters",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "17",
                                    "description": "Current page of the collection. Default: 1",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "17",
                                    "description": "Maximum number of items to be returned in result set.Default: 10",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "consequatur",
                                    "description": "Limit results to those matching a string.",
                                    "disabled": false
                                },
                                {
                                    "key": "after",
                                    "value": "consequatur",
                                    "description": "Limit response to posts published after a given ISO8601 compliant date.",
                                    "disabled": false
                                },
                                {
                                    "key": "author",
                                    "value": "consequatur",
                                    "description": "Limit result set to posts assigned to specific authors.",
                                    "disabled": false
                                },
                                {
                                    "key": "author_exclude",
                                    "value": "consequatur",
                                    "description": "Ensure result set excludes posts assigned to specific authors.",
                                    "disabled": false
                                },
                                {
                                    "key": "before",
                                    "value": "consequatur",
                                    "description": "Limit response to posts published before a given ISO8601 compliant date.",
                                    "disabled": false
                                },
                                {
                                    "key": "exclude",
                                    "value": "consequatur",
                                    "description": "Ensure result set excludes specific IDs.",
                                    "disabled": false
                                },
                                {
                                    "key": "include",
                                    "value": "consequatur",
                                    "description": "Limit result set to specific IDs.",
                                    "disabled": false
                                },
                                {
                                    "key": "order",
                                    "value": "consequatur",
                                    "description": "Order sort attribute ascending or descending. Default: desc .One of: asc, desc",
                                    "disabled": false
                                },
                                {
                                    "key": "order_by",
                                    "value": "consequatur",
                                    "description": "Sort collection by object attribute. Default: updated_at. One of: author, created_at, updated_at, id,  slug, title",
                                    "disabled": false
                                },
                                {
                                    "key": "categories",
                                    "value": "consequatur",
                                    "description": "Limit result set to all items that have the specified term assigned in the categories taxonomy.",
                                    "disabled": false
                                },
                                {
                                    "key": "categories_exclude",
                                    "value": "consequatur",
                                    "description": "Limit result set to all items except those that have the specified term assigned in the categories taxonomy.",
                                    "disabled": false
                                },
                                {
                                    "key": "tags",
                                    "value": "consequatur",
                                    "description": "Limit result set to all items that have the specified term assigned in the tags taxonomy.",
                                    "disabled": false
                                },
                                {
                                    "key": "tags_exclude",
                                    "value": "consequatur",
                                    "description": "Limit result set to all items except those that have the specified term assigned in the tags taxonomy.",
                                    "disabled": false
                                },
                                {
                                    "key": "featured",
                                    "value": "consequatur",
                                    "description": "Limit result set to items that are sticky.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/posts\/filters?page=17&per_page=17&search=consequatur&after=consequatur&author=consequatur&author_exclude=consequatur&before=consequatur&exclude=consequatur&include=consequatur&order=consequatur&order_by=consequatur&categories=consequatur&categories_exclude=consequatur&tags=consequatur&tags_exclude=consequatur&featured=consequatur"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/posts\\\/filters?page=1\",\"last\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/posts\\\/filters?page=1\",\"prev\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/posts\\\/filters?page=16\",\"next\":null},\"meta\":{\"current_page\":17,\"from\":null,\"last_page\":1,\"links\":[{\"url\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/posts\\\/filters?page=16\",\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/posts\\\/filters?page=1\",\"label\":\"1\",\"active\":false},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/posts\\\/filters\",\"per_page\":17,\"to\":null,\"total\":0},\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get post by slug",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/posts\/:slug",
                            "query": [
                                {
                                    "key": "slug",
                                    "value": "consequatur",
                                    "description": "Find by slug of post.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/posts\/:slug?slug=consequatur",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "consequatur",
                                    "description": "The slug of the post."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Not found\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Filters categories",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/categories\/filters",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/categories\/filters"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[{\"id\":5,\"name\":\"Organic Fruits\",\"slug\":\"organic-fruits\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/organic-fruits\",\"description\":\"Quae in praesentium quae dignissimos ratione et aliquid. Architecto maiores nisi quisquam consequuntur veniam sapiente. Voluptatum voluptates fugiat ut molestiae.\"},{\"id\":2,\"name\":\"Fashion\",\"slug\":\"fashion\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/fashion\",\"description\":\"Consequatur magni suscipit veniam labore optio modi minus. Cum neque rerum id natus non placeat rerum. Iure vel recusandae quia voluptatem omnis ratione tempora quia.\"},{\"id\":3,\"name\":\"Electronic\",\"slug\":\"electronic\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/electronic\",\"description\":\"Culpa quia voluptas sint aut maiores minus debitis. Et dolor occaecati ullam qui. Perspiciatis natus rerum officia veniam cum odio molestias. Omnis laudantium ipsam ut voluptatum.\"},{\"id\":6,\"name\":\"Ecological\",\"slug\":\"ecological\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/ecological\",\"description\":\"Reprehenderit voluptas excepturi qui sunt. Consequatur quia consequatur consequuntur consequatur. Et adipisci error voluptatem vitae amet repellendus sit. Possimus omnis fugiat recusandae quod.\"},{\"id\":1,\"name\":\"Crisp Bread & Cake\",\"slug\":\"crisp-bread-cake\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/crisp-bread-cake\",\"description\":\"Et magni blanditiis quos optio delectus animi possimus. Repudiandae expedita alias ipsam. Magnam quas ipsam autem ipsam.\"},{\"id\":4,\"name\":\"Commercial\",\"slug\":\"commercial\",\"url\":\"http:\\\/\\\/shofy.test\\\/blog\\\/commercial\",\"description\":\"Optio incidunt delectus ut adipisci ea neque et aliquid. Alias iure ratione omnis consequatur. Dolor sequi natus sit iste aut.\"}],\"links\":{\"first\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/categories\\\/filters?page=1\",\"last\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/categories\\\/filters?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/categories\\\/filters?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/categories\\\/filters\",\"per_page\":10,\"to\":6,\"total\":6},\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get category by slug",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/categories\/:slug",
                            "query": [
                                {
                                    "key": "slug",
                                    "value": "consequatur",
                                    "description": "Find by slug of category.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/categories\/:slug?slug=consequatur",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "consequatur",
                                    "description": "The slug of the category."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Not found\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Brands",
            "description": "",
            "item": [
                {
                    "name": "Get list of brands",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/brands",
                            "query": [
                                {
                                    "key": "brands[]",
                                    "value": "",
                                    "description": "List of brand IDs if you need filter by brands.",
                                    "disabled": true
                                },
                                {
                                    "key": "page",
                                    "value": "",
                                    "description": "Page number. Default: 1.",
                                    "disabled": true
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "description": "Number of items per page. Default: 16.",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/brands?brands[]=&page=&per_page="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"is_featured\":false}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[],\"links\":{\"first\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/ecommerce\\\/brands?page=1\",\"last\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/ecommerce\\\/brands?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/ecommerce\\\/brands?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/ecommerce\\\/brands\",\"per_page\":16,\"to\":null,\"total\":0},\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get brand details by slug",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/brands\/:slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/brands\/:slug",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "consequatur",
                                    "description": "The slug of the brand."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get products by brand",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/brands\/:id\/products",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/brands\/:id\/products",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the brand."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[{\"id\":126,\"slug\":\"testing\",\"url\":\"http:\\\/\\\/shofy.test\\\/products\\\/testing\",\"name\":\"Testing\",\"sku\":\"SF-2443-GZIR\",\"description\":\"\",\"content\":\"\",\"quantity\":0,\"is_out_of_stock\":false,\"stock_status_label\":\"In stock\",\"stock_status_html\":\"<span class=\\\"text-success\\\">In stock<\\\/span>\",\"price\":0,\"price_formatted\":\"$0.00\",\"original_price\":0,\"original_price_formatted\":\"$0.00\",\"reviews_avg\":null,\"reviews_count\":0,\"images\":[],\"images_thumb\":[],\"image_with_sizes\":null,\"weight\":0,\"height\":0,\"wide\":0,\"length\":0,\"image_url\":\"http:\\\/\\\/shofy.test\\\/vendor\\\/core\\\/core\\\/base\\\/images\\\/placeholder.png\",\"product_options\":[],\"store\":{\"id\":null,\"slug\":null,\"name\":null}}],\"links\":{\"first\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/ecommerce\\\/brands\\\/1\\\/products?page=1\",\"last\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/ecommerce\\\/brands\\\/1\\\/products?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/ecommerce\\\/brands\\\/1\\\/products?page=1\",\"label\":\"1\",\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/ecommerce\\\/brands\\\/1\\\/products\",\"per_page\":24,\"to\":1,\"total\":1},\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Cart",
            "description": "",
            "item": [
                {
                    "name": "Add product to cart",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/cart",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/cart"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"product_id\":1,\"qty\":1}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Add product to cart",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/cart\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/cart\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the cart."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"product_id\":1,\"qty\":1}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update quantity of a product in cart",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/cart\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/cart\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the cart."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"product_id\":1,\"qty\":1}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove a cart item by its ID.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/cart\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/cart\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the cart."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"product_id\":1}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get a cart item by id.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/cart\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/cart\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the cart."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"customer_id\":1,\"id\":\"e70c6c88dae8344b03e39bb147eba66a\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"id\":\"consequatur\",\"cart_items\":[],\"count\":0,\"raw_total\":0,\"raw_total_formatted\":\"$0.00\",\"sub_total\":0,\"sub_total_formatted\":\"$0.00\",\"tax_amount\":0,\"tax_amount_formatted\":\"$0.00\",\"promotion_discount_amount\":0,\"promotion_discount_amount_formatted\":\"$0.00\",\"coupon_discount_amount\":0,\"coupon_discount_amount_formatted\":\"$0.00\",\"applied_coupon_code\":null,\"order_total\":0,\"order_total_formatted\":\"$0.00\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Refresh cart items",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/cart\/refresh",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/cart\/refresh"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"products\":[\"consequatur\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Calculate tax for products in cart",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/checkout\/taxes\/calculate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/checkout\/taxes\/calculate"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"products\":[\"consequatur\"],\"country\":\"US\",\"state\":\"CA\",\"city\":\"Los Angeles\",\"zip_code\":\"90001\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"items\": [\n     {\n         \"product_id\": 1,\n         \"price\": 100,\n         \"price_formatted\": \"$100.00\",\n         \"quantity\": 2,\n         \"tax_rate\": 10,\n         \"tax_amount\": 20,\n         \"tax_amount_formatted\": \"$20.00\",\n         \"subtotal\": 200,\n         \"subtotal_formatted\": \"$200.00\",\n         \"total\": 220,\n         \"total_formatted\": \"$220.00\"\n     }\n ],\n \"totals\": {\n     \"sub_total\": 200,\n     \"sub_total_formatted\": \"$200.00\",\n     \"tax_amount\": 20,\n     \"tax_amount_formatted\": \"$20.00\",\n     \"total\": 220,\n     \"total_formatted\": \"$220.00\"\n }\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Checkout",
            "description": "",
            "item": [
                {
                    "name": "Process Checkout\n\nProcess the checkout for a specific cart ID. This endpoint restores the cart, generates an order token,\nand redirects the user to the checkout page.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/checkout\/cart\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/checkout\/cart\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "12345",
                                    "description": "The ID of the cart to process."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 302,
                            "body": "{}",
                            "name": ""
                        },
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "location",
                                    "value": "http:\/\/shofy.test\/checkout\/a06413fc7d168726c17294fd3f0a87fe"
                                },
                                {
                                    "key": "content-type",
                                    "value": "text\/html; charset=utf-8"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                },
                                {
                                    "key": "set-cookie",
                                    "value": "XSRF-TOKEN=eyJpdiI6ImQrck0vdGlNZW9zWGNDT2s5UEt5MEE9PSIsInZhbHVlIjoiUTk4VTdEUUVRcDcrRmNnYUh6ekNFaEpqSXNiM3pETldHMGR0MVpKbm9Fb0hjZHFjQVR5NHM0ZjAxanVNdnJtR1lTSzZOU21CUHlkTldvQ0x0YUVpOTBVbDh5ZlduczY0SEx2d0lBaEgrMmlpZkI5c2FqSFFxY2Zld0ZmdUtwek8iLCJtYWMiOiJkMDRiODM0Y2VkZWMwNzI0MjI5MWZiM2MyYzEyNGQ1ZDUxOWI0ZDgyYjA2NTNjZGI4ODU3YmQ4MDUwNmY2ZjNlIiwidGFnIjoiIn0%3D; expires=Wed, 25 Jun 2025 05:17:21 GMT; Max-Age=7200; path=\/; samesite=lax; botble_session=eyJpdiI6Ik9NdzBDbXJsTzhtVmVmVXVFRE9oMGc9PSIsInZhbHVlIjoielVwbHJJeHp6UHJrRFJuZ1VqNE10WCtreE9MbCtlVTM0VCtRMDNUZDlYZHBTKytabSthMmFyOVhrSEhyaFdHQXpibHAxT3MzSXJ1dmFPZHFZdHl3SlJoZHQyNG9DbWdIbHhYbjZKd1RTL0QyVzBPRDVVeEowVytyWGcyS2Q2YW0iLCJtYWMiOiI1ZTEyOTJmNDQ4ODI1NDU1YjJhZDM1MThkMTFlMjY5ODMwMDU2MGJmY2M0MjEzZWNkODUyMTBiNTIyYTAwZjM3IiwidGFnIjoiIn0%3D; expires=Wed, 25 Jun 2025 05:17:21 GMT; Max-Age=7200; path=\/; httponly; samesite=lax; botble_footprints_cookie=eyJpdiI6InpxNUdEclM2WnVaeG5HWkJoZzRtQWc9PSIsInZhbHVlIjoiK0tjdk9nY2kwTENOWm1mZVAvUVZUTmFIZWF5Njh4cjl2Mmh0elNNb0JCS25uNE12WUhTRkpkQWY5VTgrZWdob0ltNXJWRi9XUzJua2ZqMFFLR1ZJYkYyb3gzRlFpa0I0YzJzZXJGdjhCWXF0ZVcyLzNVMjl2Z2U3MEZtSnNzbUUiLCJtYWMiOiIxMWI0ZmE3MmE4MzE5NWUxMzViNDZjMmFlMWRkN2U0MGQzMTQ3ZTJkM2NkZGYxMWNiODlhNDVlYzRhMDdlNGI3IiwidGFnIjoiIn0%3D; expires=Wed, 19 Aug 2026 03:17:21 GMT; Max-Age=36288000; path=\/; httponly; samesite=lax; botble_footprints_cookie_data=eyJpdiI6Ik5OZWovUWdCZ2UrbW12M1RldnhOR0E9PSIsInZhbHVlIjoiUkQ0SXdFeHk4RnhjaTQrSGV6eXFwTnFUM2d1QVBFU3FTdW9raGpNVzlKWjQ3K3BMSHQrY1ExSVZiRDBWdWFSUk8rajQzTjUwMXpuakRNWE9rTVJVanNEK3B3eHZNRVhQaWM3eGF5eU9uUmsyNXgzSzZ5Z29vYUFpTkZjZDJaRXorNUxvZ2xZeUxvVjBuRFZUbXVwQnJXVlc5VlNvRFA3Z1hpakFYUVZhMW1pWU9IMFFveE5VU3dVZTVOVkVjQzNhaXlOYm1IMmwwSmFBVGJjWnJ5bENRRFFOZ01CTUhsUjFnc015UTc4NTUySlp0cGZZazR1RGdZZm4xcWNzMnp5NTUzdnhDQUt6aCtTb0d3ellZcmJJdGJPYzlYL090dVU2VUdmZ0dTRGtoTE1QUS9yWlU1TnJUbHEydktJWmJ2TTdBcUFOUUxKVGFVSStMUSsybXhIQzBkeWdldG8vdU5hbzJTaVA1elpQb2cycHBnN0FXdDd1Y0Z1QmtyK1J0MHhneVhqRW40Rit5V05UeURxMEVYVzlHUVk1ZGRRK2YzTnErRkJORm1sWExLdndldmJDb3JZM3daa0s2ZFdpUnVvYWZEZVMzV3lGRWlrYktKYmFPbENINk5VemtEZzlreHVTNFJZS0thSHB4d01QWGxSVHdCMlRHKzU2Y1VNZStXcXJCbUxMc1RZZUtxNTZPa2xuV2dub01qMjZZSjhqMDllYXBnTEE1ai9xdDYwPSIsIm1hYyI6IjI2MDc0Njk2YTI2MDU0NWRiOWFhYzI4YTY5YzMzYTA4ZWQ0MDM5MmYxYjE2MmQzNzUxZDhhNzBmODVmN2M5NDYiLCJ0YWciOiIifQ%3D%3D; expires=Wed, 19 Aug 2026 03:17:21 GMT; Max-Age=36288000; path=\/; httponly; samesite=lax"
                                }
                            ],
                            "code": 302,
                            "body": "<!DOCTYPE html>\n<html>\n    <head>\n        <meta charset=\"UTF-8\" \/>\n        <meta http-equiv=\"refresh\" content=\"0;url='http:\/\/shofy.test\/checkout\/a06413fc7d168726c17294fd3f0a87fe'\" \/>\n\n        <title>Redirecting to http:\/\/shofy.test\/checkout\/a06413fc7d168726c17294fd3f0a87fe<\/title>\n    <\/head>\n    <body>\n        Redirecting to <a href=\"http:\/\/shofy.test\/checkout\/a06413fc7d168726c17294fd3f0a87fe\">http:\/\/shofy.test\/checkout\/a06413fc7d168726c17294fd3f0a87fe<\/a>.\n    <\/body>\n<\/html>",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\n    \"message\": \"Unauthenticated.\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n    \"message\": \"Cart not found.\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Compare",
            "description": "",
            "item": [
                {
                    "name": "Add product to compare",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/compare",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/compare"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"product_id\":1}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Add product to compare",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/compare\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/compare\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the compare."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"product_id\":1}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove a product from compare list",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/compare\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/compare\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the compare."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"product_id\":1}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get compare items",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/compare\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/compare\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the compare."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"id\":\"e70c6c88dae8344b03e39bb147eba66a\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"id\":\"consequatur\",\"data\":{\"count\":0,\"items\":[]}}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Coupons",
            "description": "",
            "item": [
                {
                    "name": "Apply coupon code",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/coupon\/apply",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/coupon\/apply"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"coupon_code\":\"DISCOUNT20\",\"cart_id\":\"e70c6c88dae8344b03e39bb147eba66a\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove coupon code",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/coupon\/remove",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/coupon\/remove"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"cart_id\":\"e70c6c88dae8344b03e39bb147eba66a\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Currencies",
            "description": "",
            "item": [
                {
                    "name": "Get list of available currencies",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/currencies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/currencies"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"error\": false,\n  \"data\": [\n    {\n      \"id\": 1,\n      \"title\": \"USD\",\n      \"symbol\": \"$\",\n      \"is_prefix_symbol\": true,\n      \"decimals\": 2,\n      \"order\": 0,\n      \"is_default\": true,\n      \"exchange_rate\": 1\n    },\n    {\n      \"id\": 2,\n      \"title\": \"EUR\",\n      \"symbol\": \"\u20ac\",\n      \"is_prefix_symbol\": false,\n      \"decimals\": 2,\n      \"order\": 1,\n      \"is_default\": false,\n      \"exchange_rate\": 0.91\n    }\n  ],\n  \"message\": null\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get current currency",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/currencies\/current",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/currencies\/current"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"error\": false,\n  \"data\": {\n    \"id\": 1,\n    \"title\": \"USD\",\n    \"symbol\": \"$\",\n    \"is_prefix_symbol\": true,\n    \"decimals\": 2,\n    \"order\": 0,\n    \"is_default\": true,\n    \"exchange_rate\": 1\n  },\n  \"message\": null\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Device Tokens",
            "description": "",
            "item": [
                {
                    "name": "Register or update device token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/device-tokens",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/device-tokens"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"token\":\"consequatur\",\"platform\":\"consequatur\",\"app_version\":\"consequatur\",\"device_id\":\"consequatur\",\"user_type\":\"consequatur\",\"user_id\":17}"
                        },
                        "description": "Register a new device token or update an existing one for push notifications.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get user's device tokens",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/device-tokens",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/device-tokens"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve all device tokens for the authenticated user.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update device token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/device-tokens\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/device-tokens\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the device token."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"platform\":\"consequatur\",\"app_version\":\"consequatur\",\"device_id\":\"consequatur\"}"
                        },
                        "description": "Update an existing device token.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete device token by token value",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/device-tokens\/by-token",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/device-tokens\/by-token"
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"token\":\"consequatur\"}"
                        },
                        "description": "Delete a device token using the token value.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete device token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/device-tokens\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/device-tokens\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the device token."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Delete a device token to stop receiving push notifications.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Deactivate device token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/device-tokens\/:id\/deactivate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/device-tokens\/:id\/deactivate",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the device token."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Deactivate a device token without deleting it.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Downloads",
            "description": "",
            "item": [
                {
                    "name": "Get list of digital products available for download",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/downloads",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/downloads"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Download a digital product",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/downloads\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/downloads\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1562",
                                    "description": "The ID of the download."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Endpoints",
            "description": "",
            "item": [
                {
                    "name": "Download a file using a token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/download\/:token\/:filename",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/download\/:token\/:filename",
                            "variable": [
                                {
                                    "id": "token",
                                    "key": "token",
                                    "value": "consequatur",
                                    "description": ""
                                },
                                {
                                    "id": "filename",
                                    "key": "filename",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Download a proof file using a token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/orders\/download-proof\/:token\/:filename",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/orders\/download-proof\/:token\/:filename",
                            "variable": [
                                {
                                    "id": "token",
                                    "key": "token",
                                    "value": "consequatur",
                                    "description": ""
                                },
                                {
                                    "id": "filename",
                                    "key": "filename",
                                    "value": "consequatur",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/auth\/apple",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/apple",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/apple"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/auth\/google",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/google",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/google"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/auth\/facebook",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/facebook",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/facebook"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/auth\/x",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/x",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/x"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Filters",
            "description": "",
            "item": [
                {
                    "name": "Get filter data for products",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/filters",
                            "query": [
                                {
                                    "key": "category",
                                    "value": "",
                                    "description": "Category ID to get filter data for a specific category.",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/filters?category="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":{\"categories\":[{\"id\":1,\"name\":\"New Arrivals\",\"slug\":\"new-arrivals\",\"url\":\"product-categories\\\/new-arrivals\",\"parent_id\":0},{\"id\":2,\"name\":\"Electronics\",\"slug\":\"electronics\",\"url\":\"product-categories\\\/electronics\",\"parent_id\":0},{\"id\":19,\"name\":\"Gifts\",\"slug\":\"gifts\",\"url\":\"product-categories\\\/gifts\",\"parent_id\":0},{\"id\":20,\"name\":\"Computers\",\"slug\":\"computers\",\"url\":\"product-categories\\\/computers\",\"parent_id\":0},{\"id\":25,\"name\":\"Smartphones & Tablets\",\"slug\":\"smartphones-tablets\",\"url\":\"product-categories\\\/smartphones-tablets\",\"parent_id\":0},{\"id\":26,\"name\":\"TV,\\n                Video & Music\",\"slug\":\"tv-video-music\",\"url\":\"product-categories\\\/tv-video-music\",\"parent_id\":0},{\"id\":27,\"name\":\"Cameras\",\"slug\":\"cameras\",\"url\":\"product-categories\\\/cameras\",\"parent_id\":0},{\"id\":28,\"name\":\"Cooking\",\"slug\":\"cooking\",\"url\":\"product-categories\\\/cooking\",\"parent_id\":0},{\"id\":29,\"name\":\"Accessories\",\"slug\":\"accessories\",\"url\":\"product-categories\\\/accessories\",\"parent_id\":0},{\"id\":31,\"name\":\"Sports\",\"slug\":\"sports\",\"url\":\"product-categories\\\/sports\",\"parent_id\":0},{\"id\":32,\"name\":\"Electronics Gadgets\",\"slug\":\"electronics-gadgets\",\"url\":\"product-categories\\\/electronics-gadgets\",\"parent_id\":0},{\"id\":3,\"name\":\"Featured\",\"slug\":\"featured\",\"url\":\"product-categories\\\/featured\",\"parent_id\":2},{\"id\":7,\"name\":\"Computers & Laptops\",\"slug\":\"computers-laptops\",\"url\":\"product-categories\\\/computers-laptops\",\"parent_id\":2},{\"id\":12,\"name\":\"Accessories\",\"slug\":\"accessories\",\"url\":\"product-categories\\\/accessories\",\"parent_id\":2},{\"id\":17,\"name\":\"Gaming Console\",\"slug\":\"gaming-console\",\"url\":\"product-categories\\\/gaming-console\",\"parent_id\":2},{\"id\":18,\"name\":\"Playstation\",\"slug\":\"playstation\",\"url\":\"product-categories\\\/playstation\",\"parent_id\":2},{\"id\":4,\"name\":\"New Arrivals\",\"slug\":\"new-arrivals\",\"url\":\"product-categories\\\/new-arrivals\",\"parent_id\":3},{\"id\":5,\"name\":\"Best Sellers\",\"slug\":\"best-sellers\",\"url\":\"product-categories\\\/best-sellers\",\"parent_id\":3},{\"id\":6,\"name\":\"Mobile Phone\",\"slug\":\"mobile-phone\",\"url\":\"product-categories\\\/mobile-phone\",\"parent_id\":3},{\"id\":8,\"name\":\"Top Brands\",\"slug\":\"top-brands\",\"url\":\"product-categories\\\/top-brands\",\"parent_id\":7},{\"id\":9,\"name\":\"Weekly Best Selling\",\"slug\":\"weekly-best-selling\",\"url\":\"product-categories\\\/weekly-best-selling\",\"parent_id\":7},{\"id\":10,\"name\":\"CPU Heat Pipes\",\"slug\":\"cpu-heat-pipes\",\"url\":\"product-categories\\\/cpu-heat-pipes\",\"parent_id\":7},{\"id\":11,\"name\":\"CPU Coolers\",\"slug\":\"cpu-coolers\",\"url\":\"product-categories\\\/cpu-coolers\",\"parent_id\":7},{\"id\":13,\"name\":\"Headphones\",\"slug\":\"headphones\",\"url\":\"product-categories\\\/headphones\",\"parent_id\":12},{\"id\":14,\"name\":\"Wireless Headphones\",\"slug\":\"wireless-headphones\",\"url\":\"product-categories\\\/wireless-headphones\",\"parent_id\":12},{\"id\":15,\"name\":\"TWS Earphones\",\"slug\":\"tws-earphones\",\"url\":\"product-categories\\\/tws-earphones\",\"parent_id\":12},{\"id\":16,\"name\":\"Smart Watch\",\"slug\":\"smart-watch\",\"url\":\"product-categories\\\/smart-watch\",\"parent_id\":12},{\"id\":21,\"name\":\"Desktop\",\"slug\":\"desktop\",\"url\":\"product-categories\\\/desktop\",\"parent_id\":20},{\"id\":22,\"name\":\"Laptop\",\"slug\":\"laptop\",\"url\":\"product-categories\\\/laptop\",\"parent_id\":20},{\"id\":23,\"name\":\"Tablet\",\"slug\":\"tablet\",\"url\":\"product-categories\\\/tablet\",\"parent_id\":20},{\"id\":24,\"name\":\"Accessories\",\"slug\":\"accessories\",\"url\":\"product-categories\\\/accessories\",\"parent_id\":20},{\"id\":30,\"name\":\"With Bluetooth\",\"slug\":\"with-bluetooth\",\"url\":\"product-categories\\\/with-bluetooth\",\"parent_id\":29},{\"id\":33,\"name\":\"Micrscope\",\"slug\":\"micrscope\",\"url\":\"product-categories\\\/micrscope\",\"parent_id\":32},{\"id\":34,\"name\":\"Remote Control\",\"slug\":\"remote-control\",\"url\":\"product-categories\\\/remote-control\",\"parent_id\":32},{\"id\":35,\"name\":\"Monitor\",\"slug\":\"monitor\",\"url\":\"product-categories\\\/monitor\",\"parent_id\":32},{\"id\":36,\"name\":\"Thermometer\",\"slug\":\"thermometer\",\"url\":\"product-categories\\\/thermometer\",\"parent_id\":32},{\"id\":37,\"name\":\"Backpack\",\"slug\":\"backpack\",\"url\":\"product-categories\\\/backpack\",\"parent_id\":32},{\"id\":38,\"name\":\"Headphones\",\"slug\":\"headphones\",\"url\":\"product-categories\\\/headphones\",\"parent_id\":32}],\"brands\":[],\"tags\":[],\"price_ranges\":[],\"max_price\":0,\"current_category_id\":0,\"current_filter_categories\":[],\"attributes\":[{\"id\":1,\"title\":\"Color\",\"slug\":\"color\",\"display_layout\":\"visual\",\"attributes\":[]},{\"id\":3,\"title\":\"Weight\",\"slug\":\"weight\",\"display_layout\":\"text\",\"attributes\":[]},{\"id\":2,\"title\":\"Size\",\"slug\":\"size\",\"display_layout\":\"text\",\"attributes\":[]},{\"id\":4,\"title\":\"Boxes\",\"slug\":\"boxes\",\"display_layout\":\"text\",\"attributes\":[]}]},\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Flash Sale",
            "description": "",
            "item": [
                {
                    "name": "Get flash sales",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/flash-sales",
                            "query": [
                                {
                                    "key": "keys[]",
                                    "value": "",
                                    "description": "Array of flash sale keys to filter by.",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/flash-sales?keys[]="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"keys\":null}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 422,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"The keys field is required.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Languages",
            "description": "",
            "item": [
                {
                    "name": "Get list of available languages",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/languages",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/languages"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"error\": false,\n  \"data\": [\n    {\n      \"lang_id\": 1,\n      \"lang_name\": \"English\",\n      \"lang_locale\": \"en\",\n      \"lang_code\": \"en_US\",\n      \"lang_flag\": \"<svg ...>\",\n      \"lang_is_default\": true,\n      \"lang_is_rtl\": false,\n      \"lang_order\": 0\n    },\n    {\n      \"lang_id\": 2,\n      \"lang_name\": \"Vietnamese\",\n      \"lang_locale\": \"vi\",\n      \"lang_code\": \"vi\",\n      \"lang_flag\": \"<svg ...>\",\n      \"lang_is_default\": false,\n      \"lang_is_rtl\": false,\n      \"lang_order\": 1\n    }\n  ],\n  \"message\": null\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get current language",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/languages\/current",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/languages\/current"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"error\": false,\n  \"data\": {\n    \"lang_id\": 1,\n    \"lang_name\": \"English\",\n    \"lang_locale\": \"en\",\n    \"lang_code\": \"en_US\",\n    \"lang_flag\": \"us\",\n    \"lang_is_default\": true,\n    \"lang_is_rtl\": false,\n    \"lang_order\": 0\n  },\n  \"message\": null\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Notifications",
            "description": "",
            "item": [
                {
                    "name": "Get user notifications",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number for pagination.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "20",
                                    "description": "Number of notifications per page (max 50).",
                                    "disabled": false
                                },
                                {
                                    "key": "unread_only",
                                    "value": "",
                                    "description": "Filter to show only unread notifications.",
                                    "disabled": true
                                },
                                {
                                    "key": "type",
                                    "value": "general",
                                    "description": "Filter by notification type.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications?page=1&per_page=20&unread_only=&type=general"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve notifications for the authenticated user.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get notification statistics",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications\/stats",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications\/stats"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get notification statistics for the authenticated user.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Mark all notifications as read",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications\/mark-all-read",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications\/mark-all-read"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Mark all notifications as read for the authenticated user.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Mark notification as read",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications\/:id\/read",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications\/:id\/read",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the notification."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Mark a specific notification as read for the authenticated user.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Mark notification as clicked",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications\/:id\/clicked",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications\/:id\/clicked",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the notification."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Mark a notification as clicked when user taps on it.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete notification",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/notifications\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/notifications\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the notification."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Delete a notification from user's list.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Order Returns",
            "description": "",
            "item": [
                {
                    "name": "Get list of order return requests for the current user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/order-returns",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/order-returns"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get detail of an order return request",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/order-returns\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/order-returns\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1562",
                                    "description": "The ID of the order return."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Submit a new order return request",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/order-returns",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/order-returns"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order_id\":1,\"return_items\":[\"consequatur\"],\"reason\":\"DAMAGED_PRODUCT\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Get order information for return request",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/orders\/:order_id\/returns",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/orders\/:order_id\/returns",
                            "variable": [
                                {
                                    "id": "order_id",
                                    "key": "order_id",
                                    "value": "1562",
                                    "description": "The ID of the order."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Orders",
            "description": "\nAPIs for order tracking",
            "item": [
                {
                    "name": "Get list of orders by customer",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/orders",
                            "query": [
                                {
                                    "key": "status",
                                    "value": "completed",
                                    "description": "Filter orders by status (pending, processing, completed, canceled).",
                                    "disabled": false
                                },
                                {
                                    "key": "shipping_status",
                                    "value": "delivered",
                                    "description": "Filter orders by shipping status (not_shipped, delivering, delivered, canceled).",
                                    "disabled": false
                                },
                                {
                                    "key": "payment_status",
                                    "value": "completed",
                                    "description": "Filter orders by payment status (pending, completed, refunding, refunded, canceled).",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "10",
                                    "description": "Number of orders per page.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/orders?status=completed&shipping_status=delivered&payment_status=completed&per_page=10"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get order detail",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/orders\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/orders\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the order."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Cancel an order",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/orders\/:id\/cancel",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/orders\/:id\/cancel",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the order."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"cancellation_reason\":\"OTHER\",\"cancellation_reason_description\":\"I found a better deal elsewhere\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Print an order invoice",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/orders\/:id\/invoice",
                            "query": [
                                {
                                    "key": "type",
                                    "value": "download",
                                    "description": "Type of response (print or download).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/orders\/:id\/invoice?type=download",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the order."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Upload payment proof for an order",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/orders\/:id\/upload-proof",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/orders\/:id\/upload-proof",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the order."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "file",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Download payment proof for an order",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/orders\/:id\/download-proof",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/orders\/:id\/download-proof",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the order."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Confirm delivery of an order",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/orders\/:id\/confirm-delivery",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/orders\/:id\/confirm-delivery",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the order."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Track an order",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/orders\/tracking",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/orders\/tracking"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"code\":\"ORD-12345\",\"email\":\"customer@example.com\",\"phone\":\"+1234567890\"}"
                        },
                        "description": "Track an order by order code and email\/phone",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n    \"error\": false,\n    \"message\": \"Order found successfully\",\n    \"data\": {\n        \"order\": {\n            \"id\": 1,\n            \"code\": \"ORD-12345\",\n            \"status\": \"completed\",\n            \"amount\": 100.00,\n            \"shipping_amount\": 10.00,\n            \"payment_fee\": 5.00,\n            \"tax_amount\": 5.00,\n            \"sub_total\": 90.00,\n            \"discount_amount\": 0.00,\n            \"payment_id\": 1,\n            \"user_id\": 1,\n            \"created_at\": \"2023-08-10T12:34:56.000000Z\",\n            \"updated_at\": \"2023-08-10T12:34:56.000000Z\",\n            \"address\": {\n                \"id\": 1,\n                \"name\": \"John Doe\",\n                \"email\": \"customer@example.com\",\n                \"phone\": \"+1234567890\",\n                \"address\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"country\": \"US\",\n                \"zip_code\": \"10001\"\n            },\n            \"products\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"Product 1\",\n                    \"price\": 90.00,\n                    \"qty\": 1\n                }\n            ],\n            \"histories\": [\n                {\n                    \"id\": 1,\n                    \"action\": \"create_order\",\n                    \"description\": \"Order was created\",\n                    \"created_at\": \"2023-08-10T12:34:56.000000Z\"\n                }\n            ],\n            \"shipment\": {\n                \"id\": 1,\n                \"status\": \"delivered\",\n                \"tracking_id\": \"SHIP-12345\",\n                \"tracking_link\": \"https:\/\/example.com\/tracking\/SHIP-12345\"\n            },\n            \"payment\": {\n                \"id\": 1,\n                \"status\": \"completed\",\n                \"payment_channel\": \"stripe\",\n                \"amount\": 100.00\n            }\n        }\n    }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n    \"error\": true,\n    \"message\": \"Order not found\",\n    \"code\": 404\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Page",
            "description": "",
            "item": [
                {
                    "name": "List pages",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/pages",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/pages"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[{\"id\":1,\"name\":\"Home\",\"slug\":\"home\",\"description\":null,\"image\":null,\"template\":\"full-width\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":\"2025-06-25T01:43:45.000000Z\",\"updated_at\":\"2025-06-25T01:43:45.000000Z\"},{\"id\":2,\"name\":\"Categories\",\"slug\":\"categories\",\"description\":null,\"image\":null,\"template\":\"full-width\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":\"2025-06-25T01:43:45.000000Z\",\"updated_at\":\"2025-06-25T01:43:45.000000Z\"},{\"id\":3,\"name\":\"Brands\",\"slug\":\"brands\",\"description\":null,\"image\":null,\"template\":null,\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":\"2025-06-25T01:43:45.000000Z\",\"updated_at\":\"2025-06-25T01:43:45.000000Z\"},{\"id\":4,\"name\":\"Coupons\",\"slug\":\"coupons\",\"description\":null,\"image\":null,\"template\":\"full-width\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":\"2025-06-25T01:43:45.000000Z\",\"updated_at\":\"2025-06-25T01:43:45.000000Z\"},{\"id\":5,\"name\":\"Blog\",\"slug\":\"blog\",\"description\":null,\"image\":null,\"template\":\"full-width\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":\"2025-06-25T01:43:45.000000Z\",\"updated_at\":\"2025-06-25T01:43:45.000000Z\"},{\"id\":6,\"name\":\"Contact\",\"slug\":\"contact\",\"description\":null,\"image\":null,\"template\":\"full-width\",\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":\"2025-06-25T01:43:45.000000Z\",\"updated_at\":\"2025-06-25T01:43:45.000000Z\"},{\"id\":7,\"name\":\"FAQs\",\"slug\":\"faqs\",\"description\":null,\"image\":null,\"template\":null,\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":\"2025-06-25T01:43:45.000000Z\",\"updated_at\":\"2025-06-25T01:43:45.000000Z\"},{\"id\":8,\"name\":\"Cookie Policy\",\"slug\":\"cookie-policy\",\"description\":null,\"image\":null,\"template\":null,\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":\"2025-06-25T01:43:45.000000Z\",\"updated_at\":\"2025-06-25T01:43:45.000000Z\"},{\"id\":9,\"name\":\"Our Story\",\"slug\":\"our-story\",\"description\":null,\"image\":null,\"template\":null,\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":\"2025-06-25T01:43:45.000000Z\",\"updated_at\":\"2025-06-25T01:43:45.000000Z\"},{\"id\":10,\"name\":\"Careers\",\"slug\":\"careers\",\"description\":null,\"image\":null,\"template\":null,\"status\":{\"value\":\"published\",\"label\":\"Published\"},\"created_at\":\"2025-06-25T01:43:45.000000Z\",\"updated_at\":\"2025-06-25T01:43:45.000000Z\"}],\"links\":{\"first\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/pages?page=1\",\"last\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/pages?page=2\",\"prev\":null,\"next\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/pages?page=2\"},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":2,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"active\":false},{\"url\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/pages?page=1\",\"label\":\"1\",\"active\":true},{\"url\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/pages?page=2\",\"label\":\"2\",\"active\":false},{\"url\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/pages?page=2\",\"label\":\"Next &raquo;\",\"active\":false}],\"path\":\"http:\\\/\\\/shofy.test\\\/api\\\/v1\\\/pages\",\"per_page\":10,\"to\":10,\"total\":13},\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get page by ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/pages\/:id",
                            "query": [
                                {
                                    "key": "id",
                                    "value": "17",
                                    "description": "Find by ID of page.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/pages\/:id?id=17",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the page."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Not found\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Product Categories",
            "description": "",
            "item": [
                {
                    "name": "Get list of product categories",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/product-categories",
                            "query": [
                                {
                                    "key": "categories",
                                    "value": "",
                                    "description": "nullable array List of category IDs if you need filter by categories, (e.g. [1,2,3]).",
                                    "disabled": true
                                },
                                {
                                    "key": "page",
                                    "value": "",
                                    "description": "Page number. Default: 1.",
                                    "disabled": true
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "description": "Number of items per page. Default: 16.",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/product-categories?categories=&page=&per_page="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"is_featured\":false}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"data\":[{\"id\":21,\"name\":\"Desktop\",\"icon\":\"ti ti-device-desktop\",\"icon_image\":null,\"is_featured\":0,\"parent_id\":20,\"slug\":\"desktop\",\"image_with_sizes\":{\"origin\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-5-600x600.jpg\",\"thumb\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-5-150x150.jpg\",\"medium\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-5-600x600.jpg\",\"rectangle\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-5-420x270.jpg\"}},{\"id\":33,\"name\":\"Micrscope\",\"icon\":null,\"icon_image\":null,\"is_featured\":0,\"parent_id\":32,\"slug\":\"micrscope\",\"image_with_sizes\":null},{\"id\":3,\"name\":\"Featured\",\"icon\":null,\"icon_image\":null,\"is_featured\":0,\"parent_id\":2,\"slug\":\"featured\",\"image_with_sizes\":{\"origin\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/menu-1-600x600.jpg\",\"thumb\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/menu-1-150x150.jpg\",\"medium\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/menu-1-600x600.jpg\",\"rectangle\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/menu-1-420x270.jpg\"}},{\"id\":4,\"name\":\"New Arrivals\",\"icon\":null,\"icon_image\":null,\"is_featured\":0,\"parent_id\":3,\"slug\":\"new-arrivals\",\"image_with_sizes\":null},{\"id\":1,\"name\":\"New Arrivals\",\"icon\":\"ti ti-home\",\"icon_image\":null,\"is_featured\":0,\"parent_id\":0,\"slug\":\"new-arrivals\",\"image_with_sizes\":null},{\"id\":8,\"name\":\"Top Brands\",\"icon\":null,\"icon_image\":null,\"is_featured\":0,\"parent_id\":7,\"slug\":\"top-brands\",\"image_with_sizes\":null},{\"id\":22,\"name\":\"Laptop\",\"icon\":\"ti ti-device-laptop\",\"icon_image\":null,\"is_featured\":0,\"parent_id\":20,\"slug\":\"laptop\",\"image_with_sizes\":{\"origin\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-3-600x600.jpg\",\"thumb\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-3-150x150.jpg\",\"medium\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-3-600x600.jpg\",\"rectangle\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-3-420x270.jpg\"}},{\"id\":2,\"name\":\"Electronics\",\"icon\":\"ti ti-device-tv\",\"icon_image\":null,\"is_featured\":0,\"parent_id\":0,\"slug\":\"electronics\",\"image_with_sizes\":null},{\"id\":14,\"name\":\"Wireless Headphones\",\"icon\":null,\"icon_image\":null,\"is_featured\":0,\"parent_id\":12,\"slug\":\"wireless-headphones\",\"image_with_sizes\":{\"origin\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-1-600x600.jpg\",\"thumb\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-1-150x150.jpg\",\"medium\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-1-600x600.jpg\",\"rectangle\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-1-420x270.jpg\"}},{\"id\":9,\"name\":\"Weekly Best Selling\",\"icon\":null,\"icon_image\":null,\"is_featured\":0,\"parent_id\":7,\"slug\":\"weekly-best-selling\",\"image_with_sizes\":null},{\"id\":5,\"name\":\"Best Sellers\",\"icon\":null,\"icon_image\":null,\"is_featured\":0,\"parent_id\":3,\"slug\":\"best-sellers\",\"image_with_sizes\":null},{\"id\":34,\"name\":\"Remote Control\",\"icon\":null,\"icon_image\":null,\"is_featured\":0,\"parent_id\":32,\"slug\":\"remote-control\",\"image_with_sizes\":null},{\"id\":12,\"name\":\"Accessories\",\"icon\":null,\"icon_image\":null,\"is_featured\":0,\"parent_id\":2,\"slug\":\"accessories\",\"image_with_sizes\":{\"origin\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/menu-3-600x600.jpg\",\"thumb\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/menu-3-150x150.jpg\",\"medium\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/menu-3-600x600.jpg\",\"rectangle\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/menu-3-420x270.jpg\"}},{\"id\":15,\"name\":\"TWS Earphones\",\"icon\":null,\"icon_image\":null,\"is_featured\":0,\"parent_id\":12,\"slug\":\"tws-earphones\",\"image_with_sizes\":{\"origin\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-6-600x600.jpg\",\"thumb\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-6-150x150.jpg\",\"medium\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-6-600x600.jpg\",\"rectangle\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-6-420x270.jpg\"}},{\"id\":19,\"name\":\"Gifts\",\"icon\":\"ti ti-gift\",\"icon_image\":null,\"is_featured\":0,\"parent_id\":0,\"slug\":\"gifts\",\"image_with_sizes\":null},{\"id\":23,\"name\":\"Tablet\",\"icon\":\"ti ti-device-tablet\",\"icon_image\":null,\"is_featured\":0,\"parent_id\":20,\"slug\":\"tablet\",\"image_with_sizes\":{\"origin\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-4-600x600.jpg\",\"thumb\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-4-150x150.jpg\",\"medium\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-4-600x600.jpg\",\"rectangle\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-4-420x270.jpg\"}},{\"id\":35,\"name\":\"Monitor\",\"icon\":null,\"icon_image\":null,\"is_featured\":0,\"parent_id\":32,\"slug\":\"monitor\",\"image_with_sizes\":null},{\"id\":17,\"name\":\"Gaming Console\",\"icon\":null,\"icon_image\":null,\"is_featured\":0,\"parent_id\":2,\"slug\":\"gaming-console\",\"image_with_sizes\":{\"origin\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-8-600x600.jpg\",\"thumb\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-8-150x150.jpg\",\"medium\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-8-600x600.jpg\",\"rectangle\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-8-420x270.jpg\"}},{\"id\":36,\"name\":\"Thermometer\",\"icon\":null,\"icon_image\":null,\"is_featured\":0,\"parent_id\":32,\"slug\":\"thermometer\",\"image_with_sizes\":null},{\"id\":20,\"name\":\"Computers\",\"icon\":\"ti ti-device-laptop\",\"icon_image\":null,\"is_featured\":0,\"parent_id\":0,\"slug\":\"computers\",\"image_with_sizes\":null},{\"id\":24,\"name\":\"Accessories\",\"icon\":\"ti ti-keyboard\",\"icon_image\":null,\"is_featured\":0,\"parent_id\":20,\"slug\":\"accessories\",\"image_with_sizes\":null},{\"id\":11,\"name\":\"CPU Coolers\",\"icon\":null,\"icon_image\":null,\"is_featured\":0,\"parent_id\":7,\"slug\":\"cpu-coolers\",\"image_with_sizes\":{\"origin\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-9-600x600.jpg\",\"thumb\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-9-150x150.jpg\",\"medium\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-9-600x600.jpg\",\"rectangle\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-9-420x270.jpg\"}},{\"id\":25,\"name\":\"Smartphones & Tablets\",\"icon\":\"ti ti-device-mobile\",\"icon_image\":null,\"is_featured\":0,\"parent_id\":0,\"slug\":\"smartphones-tablets\",\"image_with_sizes\":{\"origin\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-10-600x600.jpg\",\"thumb\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-10-150x150.jpg\",\"medium\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-10-600x600.jpg\",\"rectangle\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-10-420x270.jpg\"}},{\"id\":18,\"name\":\"Playstation\",\"icon\":null,\"icon_image\":null,\"is_featured\":0,\"parent_id\":2,\"slug\":\"playstation\",\"image_with_sizes\":{\"origin\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-12-600x600.jpg\",\"thumb\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-12-150x150.jpg\",\"medium\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-12-600x600.jpg\",\"rectangle\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-12-420x270.jpg\"}},{\"id\":37,\"name\":\"Backpack\",\"icon\":null,\"icon_image\":null,\"is_featured\":0,\"parent_id\":32,\"slug\":\"backpack\",\"image_with_sizes\":null},{\"id\":26,\"name\":\"TV,\\n                Video & Music\",\"icon\":\"ti ti-device-tv\",\"icon_image\":null,\"is_featured\":0,\"parent_id\":0,\"slug\":\"tv-video-music\",\"image_with_sizes\":null},{\"id\":38,\"name\":\"Headphones\",\"icon\":null,\"icon_image\":null,\"is_featured\":0,\"parent_id\":32,\"slug\":\"headphones\",\"image_with_sizes\":{\"origin\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-1-600x600.jpg\",\"thumb\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-1-150x150.jpg\",\"medium\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-1-600x600.jpg\",\"rectangle\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/product-categories\\\/category-thumb-1-420x270.jpg\"}},{\"id\":27,\"name\":\"Cameras\",\"icon\":\"ti ti-camera\",\"icon_image\":null,\"is_featured\":0,\"parent_id\":0,\"slug\":\"cameras\",\"image_with_sizes\":null},{\"id\":28,\"name\":\"Cooking\",\"icon\":\"ti ti-grill-spatula\",\"icon_image\":null,\"is_featured\":0,\"parent_id\":0,\"slug\":\"cooking\",\"image_with_sizes\":null},{\"id\":29,\"name\":\"Accessories\",\"icon\":\"ti ti-building-store\",\"icon_image\":null,\"is_featured\":0,\"parent_id\":0,\"slug\":\"accessories\",\"image_with_sizes\":null},{\"id\":31,\"name\":\"Sports\",\"icon\":\"ti ti-ball-football\",\"icon_image\":null,\"is_featured\":0,\"parent_id\":0,\"slug\":\"sports\",\"image_with_sizes\":null},{\"id\":32,\"name\":\"Electronics Gadgets\",\"icon\":\"ti ti-cpu-2\",\"icon_image\":null,\"is_featured\":0,\"parent_id\":0,\"slug\":\"electronics-gadgets\",\"image_with_sizes\":null}],\"error\":false,\"message\":null}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get product category details by slug",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/product-categories\/:slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/product-categories\/:slug",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "consequatur",
                                    "description": "The slug of the product category."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get products by category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/product-categories\/:id\/products",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/product-categories\/:id\/products",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the product category."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"No query results for model [Botble\\\\Ecommerce\\\\Models\\\\ProductCategory] consequatur\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Products",
            "description": "",
            "item": [
                {
                    "name": "Get list of products",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/products",
                            "query": [
                                {
                                    "key": "categories[]",
                                    "value": "",
                                    "description": "Filter by category IDs.",
                                    "disabled": true
                                },
                                {
                                    "key": "brands[]",
                                    "value": "",
                                    "description": "Filter by brand IDs.",
                                    "disabled": true
                                },
                                {
                                    "key": "collections[]",
                                    "value": "",
                                    "description": "Filter by collection IDs.",
                                    "disabled": true
                                },
                                {
                                    "key": "q",
                                    "value": "",
                                    "description": "Search term.",
                                    "disabled": true
                                },
                                {
                                    "key": "sort_by",
                                    "value": "consequatur",
                                    "description": "Sort field. Value: default_sorting, date_asc, date_desc, price_asc, price_desc, name_asc, name_desc, rating_asc, rating_desc",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "",
                                    "description": "The current page.",
                                    "disabled": true
                                },
                                {
                                    "key": "per_page",
                                    "value": "",
                                    "description": "Number of items per page.",
                                    "disabled": true
                                },
                                {
                                    "key": "discounted_only",
                                    "value": "",
                                    "description": "Filter by discounted only.",
                                    "disabled": true
                                },
                                {
                                    "key": "min_price",
                                    "value": "",
                                    "description": "Minimum price.",
                                    "disabled": true
                                },
                                {
                                    "key": "max_price",
                                    "value": "",
                                    "description": "Maximum price.",
                                    "disabled": true
                                },
                                {
                                    "key": "price_ranges",
                                    "value": "%5B%7B%22from%22%3A10%2C%22to%22%3A20%7D%2C%7B%22from%22%3A30%2C%22to%22%3A40%7D%5D",
                                    "description": "Price ranges as JSON string.",
                                    "disabled": false
                                },
                                {
                                    "key": "attributes",
                                    "value": "%5B%7B%22id%22%3A1%2C%22value%22%3A1%7D%2C%7B%22id%22%3A2%2C%22value%22%3A2%7D%5D",
                                    "description": "Attributes as JSON string.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/products?categories[]=&brands[]=&collections[]=&q=&sort_by=consequatur&page=&per_page=&discounted_only=&min_price=&max_price=&price_ranges=%5B%7B%22from%22%3A10%2C%22to%22%3A20%7D%2C%7B%22from%22%3A30%2C%22to%22%3A40%7D%5D&attributes=%5B%7B%22id%22%3A1%2C%22value%22%3A1%7D%2C%7B%22id%22%3A2%2C%22value%22%3A2%7D%5D"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 500,
                            "body": "{\n    \"message\": \"Server Error\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get product details by slug",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/products\/:slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/products\/:slug",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "consequatur",
                                    "description": "The slug of the product."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get related products",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/products\/:slug\/related",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/products\/:slug\/related",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "consequatur",
                                    "description": "The slug of the product."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get cross-sale products for a product",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/products\/:slug\/cross-sale",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/products\/:slug\/cross-sale",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "consequatur",
                                    "description": "The slug of the product."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get product's reviews",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/products\/:slug\/reviews",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/products\/:slug\/reviews",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "consequatur",
                                    "description": "The slug of the product."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\n    \"message\": \"\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get product variation by attributes",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/product-variation\/:id",
                            "query": [
                                {
                                    "key": "attributes[]",
                                    "value": "",
                                    "description": "Array of attribute IDs.",
                                    "disabled": true
                                },
                                {
                                    "key": "reference_product",
                                    "value": "",
                                    "description": "Reference product slug.",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/product-variation\/:id?attributes[]=&reference_product=",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1562",
                                    "description": "The ID of the product variation."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"reference_product\":\"consequatur\",\"attributes\":[\"consequatur\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Not available\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Profile",
            "description": "",
            "item": [
                {
                    "name": "Get the user profile information.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update profile",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/me",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/me"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"first_name\":\"vmqeopfuudtdsufvyvddqamniihfqcoynlazghdtqtqxbajwbpilpmufinllwloauydlsmsjur\",\"last_name\":\"yvojcybzvrbyickznkygloigmkwxphlvazjrcnfbaqywuxhgjjmzuxjubqouzswiwxtrkimfca\",\"name\":\"consequatur\",\"phone\":\"consequatur\",\"dob\":\"consequatur\",\"gender\":\"consequatur\",\"description\":\"Dolores dolorum amet iste laborum eius est dolor.\",\"email\":\"qkunze@example.com\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update Avatar",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/update\/avatar",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/update\/avatar"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "avatar",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update password",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/update\/password",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/update\/password"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"password\":\"O[2UZ5ij-e\\\/dl4m{o,\",\"old_password\":\"consequatur\"}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Reviews",
            "description": "",
            "item": [
                {
                    "name": "Get list of reviews for the current user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/reviews",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/reviews"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"error\":true,\"data\":null,\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new review",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/reviews",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/reviews"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"product_id\":1,\"star\":5,\"comment\":\"This is a great product! I highly recommend it.\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Delete a review",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/reviews\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/reviews\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1562",
                                    "description": "The ID of the review."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Simple Slider",
            "description": "",
            "item": [
                {
                    "name": "Get sliders",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/simple-sliders",
                            "query": [
                                {
                                    "key": "keys[0]",
                                    "value": "home-slider",
                                    "description": "Array of slider keys to filter by.",
                                    "disabled": false
                                },
                                {
                                    "key": "keys[1]",
                                    "value": "product-slider",
                                    "description": "Array of slider keys to filter by.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/simple-sliders?keys[0]=home-slider&keys[1]=product-slider"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"keys\":[\"home-slider\",\"product-slider\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"error\":false,\"data\":[{\"id\":1,\"name\":\"Home slider\",\"key\":\"home-slider\",\"description\":\"The main slider on homepage\",\"items\":[{\"id\":1,\"title\":\"The best tablet Collection 2023\",\"description\":\"Exclusive offer <span>-35%<\\\/span> off this week\",\"image\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/sliders\\\/slider-1.png\",\"link\":\"\\\/products\",\"order\":0,\"background_color\":\"#115061\",\"is_light\":0,\"subtitle\":\"Starting at <b>$274.00<\\\/b>\",\"button_label\":\"Shop Now\"},{\"id\":2,\"title\":\"The best note book collection 2023\",\"description\":\"Exclusive offer <span>-10%<\\\/span> off this week\",\"image\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/sliders\\\/slider-3.png\",\"link\":\"\\\/products\",\"order\":1,\"background_color\":\"#115061\",\"is_light\":0,\"subtitle\":\"Starting at <b>$999.00<\\\/b>\",\"button_label\":\"Shop Now\"},{\"id\":3,\"title\":\"The best phone collection 2023\",\"description\":\"Exclusive offer <span>-10%<\\\/span> off this week\",\"image\":\"http:\\\/\\\/shofy.test\\\/storage\\\/main\\\/sliders\\\/slider-2.png\",\"link\":\"\\\/products\",\"order\":2,\"background_color\":\"#E3EDF6\",\"is_light\":1,\"subtitle\":\"Starting at <b>$999.00<\\\/b>\",\"button_label\":\"Shop Now\"}]}],\"message\":null}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Wishlist",
            "description": "",
            "item": [
                {
                    "name": "Add product to wishlist",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/wishlist",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/wishlist"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"product_id\":1}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Add product to wishlist",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/wishlist\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/wishlist\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the wishlist."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"product_id\":1}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove a product from wishlist",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/wishlist\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/wishlist\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the wishlist."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"product_id\":1}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get wishlist items",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/ecommerce\/wishlist\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/ecommerce\/wishlist\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the wishlist."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"id\":\"e70c6c88dae8344b03e39bb147eba66a\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"id\":\"consequatur\",\"data\":{\"count\":0,\"items\":[]}}",
                            "name": ""
                        }
                    ]
                }
            ]
        }
    ],
    "auth": {
        "type": "noauth"
    }
}