{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "https:\/\/moonlit-canopy-fpoomctf1t0a.vapor-farm-b1.com"
        }
    ],
    "info": {
        "name": "Webparts 2 API Documentation",
        "_postman_id": "f634b3aa-dae2-43f2-b97a-0b69320fc422",
        "description": "",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "Endpoints",
            "description": "",
            "item": [
                {
                    "name": "Store a newly created resource in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"gvaxmysxnectoez\",\"email\":\"micheal94@example.net\",\"password\":\"lR52<RE\",\"role_id\":\"3\",\"selected_company_id\":16,\"status\":\"active\",\"language_code\":\"lc\",\"get_part_requests\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Update the specified resource in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/users\/:user_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/users\/:user_id",
                            "variable": [
                                {
                                    "id": "user_id",
                                    "key": "user_id",
                                    "value": "41",
                                    "description": "The ID of the user."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"epbcauifu\",\"email\":\"melisa83@example.com\",\"password\":\"<=[{\\\"%Jf<im?U}\\\/W\",\"role_id\":\"2\",\"selected_company_id\":17,\"status\":\"active\",\"language_code\":\"qb\",\"get_part_requests\":false}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/user",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/user"
                        },
                        "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": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/login",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/login",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/login"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"smertz@example.com\",\"password\":\"p>!Q}rq1LbU-SL5\\\\J\"}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Destroy an authenticated session.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/logout",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/logout"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/brands Paginated list of brands.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/brands",
                            "query": [
                                {
                                    "key": "all",
                                    "value": "1%2A",
                                    "description": "Get all brands.",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "2",
                                    "description": "The page number. Defaults to 1.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "20",
                                    "description": "The number of items per page. Defaults to 10.",
                                    "disabled": false
                                },
                                {
                                    "key": "first_letter",
                                    "value": "A",
                                    "description": "The first letter of the brand.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/brands?all=1%2A&page=2&per_page=20&first_letter=A"
                        },
                        "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": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified brand from slug.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/brands\/slug\/:brandSlug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/brands\/slug\/:brandSlug",
                            "variable": [
                                {
                                    "id": "brandSlug",
                                    "key": "brandSlug",
                                    "value": "aksel-ketner",
                                    "description": "The slug of the brand."
                                }
                            ]
                        },
                        "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": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/brands\/{code} Display the specified brand by code.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/brands\/:code",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/brands\/:code",
                            "variable": [
                                {
                                    "id": "code",
                                    "key": "code",
                                    "value": "AK",
                                    "description": "The brand code."
                                }
                            ]
                        },
                        "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": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET all cart items for the user or session.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/carts\/:sessionId",
                            "query": [
                                {
                                    "key": "currency_code",
                                    "value": "DKK",
                                    "description": "The currency code to use for the cart items.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/carts\/:sessionId?currency_code=DKK",
                            "variable": [
                                {
                                    "id": "sessionId",
                                    "key": "sessionId",
                                    "value": "labore",
                                    "description": ""
                                }
                            ]
                        },
                        "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": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST a new cart item.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/carts",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/carts"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"part_id\":3,\"quantity\":408874}"
                        },
                        "description": "It will be registered for the user if logged in, otherwise it will be registered for the session."
                    },
                    "response": []
                },
                {
                    "name": "PUT cart item.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/carts\/:cart_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/carts\/:cart_id",
                            "variable": [
                                {
                                    "id": "cart_id",
                                    "key": "cart_id",
                                    "value": "1",
                                    "description": "The ID of the cart."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"part_id\":20,\"quantity\":6538383.771058,\"session_id\":\"72405e36-d288-37f3-ba98-6243c3524543\"}"
                        },
                        "description": "It will be updated for the user if logged in, otherwise it will be updated for the session."
                    },
                    "response": []
                },
                {
                    "name": "DELETE cart item if the item belongs to the user.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/carts\/:cart_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/carts\/:cart_id",
                            "variable": [
                                {
                                    "id": "cart_id",
                                    "key": "cart_id",
                                    "value": "1",
                                    "description": "The ID of the cart."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Paginated list of countries.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/countries",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/countries?page=1"
                        },
                        "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": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified country.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/countries\/:country_code",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/countries\/:country_code",
                            "variable": [
                                {
                                    "id": "country_code",
                                    "key": "country_code",
                                    "value": "ae",
                                    "description": ""
                                }
                            ]
                        },
                        "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": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display a listing of the resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/companies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/companies"
                        },
                        "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": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/companies\/:company_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/companies\/:company_id",
                            "variable": [
                                {
                                    "id": "company_id",
                                    "key": "company_id",
                                    "value": "1",
                                    "description": "The ID of the company."
                                }
                            ]
                        },
                        "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": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display a listing of the resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/currencies",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/currencies"
                        },
                        "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": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET all inquiries and related inquiry_parts for all users of the current users company\nFilter by status and user",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/inquiries\/:company_id",
                            "query": [
                                {
                                    "key": "retailer_id",
                                    "value": "40",
                                    "description": "Filter by company.",
                                    "disabled": false
                                },
                                {
                                    "key": "status",
                                    "value": "pending",
                                    "description": "Filter by status.",
                                    "disabled": false
                                },
                                {
                                    "key": "user_id",
                                    "value": "9843",
                                    "description": "Filter by user.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort_field",
                                    "value": "price",
                                    "description": "The field to sort by. Valid values are: part_number, price and inventory.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort_direction",
                                    "value": "asc",
                                    "description": "The direction to sort by.",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "10",
                                    "description": "The number of items per page.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/inquiries\/:company_id?retailer_id=40&status=pending&user_id=9843&sort_field=price&sort_direction=asc&page=1&per_page=10",
                            "variable": [
                                {
                                    "id": "company_id",
                                    "key": "company_id",
                                    "value": "1",
                                    "description": "The ID of the company."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"user_id\":2,\"status\":\"rejected\",\"sort_field\":\"status\",\"sort_direction\":\"desc\",\"page\":14,\"per_page\":20}"
                        },
                        "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": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST Inquiry",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/inquiries",
                            "query": [
                                {
                                    "key": "retailer_id",
                                    "value": "40",
                                    "description": "The company id of the retailer.",
                                    "disabled": false
                                },
                                {
                                    "key": "from_company_id",
                                    "value": "928",
                                    "description": "The company id of the company that the inquiry is sent from. The user has to be related to that company",
                                    "disabled": false
                                },
                                {
                                    "key": "from_email",
                                    "value": "johndoe%40example.com",
                                    "description": "The email of the sender.",
                                    "disabled": false
                                },
                                {
                                    "key": "from_name",
                                    "value": "John+Doe",
                                    "description": "The name of the sender.",
                                    "disabled": false
                                },
                                {
                                    "key": "to_email",
                                    "value": "janedoe%40example.com",
                                    "description": "The email of the recipient.",
                                    "disabled": false
                                },
                                {
                                    "key": "to_name",
                                    "value": "Jane+Doe",
                                    "description": "The name of the recipient.",
                                    "disabled": false
                                },
                                {
                                    "key": "subject",
                                    "value": "Inquiry+about+parts",
                                    "description": "The subject of the inquiry.",
                                    "disabled": false
                                },
                                {
                                    "key": "currency_code",
                                    "value": "DKK",
                                    "description": "The currency code.",
                                    "disabled": false
                                },
                                {
                                    "key": "generated_message",
                                    "value": "Part+number%3A+12345%2C+Quantity%3A+10",
                                    "description": "The generated message.",
                                    "disabled": false
                                },
                                {
                                    "key": "user_message",
                                    "value": "Hi.+How+much+is+shipping+to+Denmark+for+these+parts%3F",
                                    "description": "The user message.",
                                    "disabled": false
                                },
                                {
                                    "key": "send_copy_to_email",
                                    "value": "1",
                                    "description": "Send a copy of the inquiry to the sender.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/inquiries?retailer_id=40&from_company_id=928&from_email=johndoe%40example.com&from_name=John+Doe&to_email=janedoe%40example.com&to_name=Jane+Doe&subject=Inquiry+about+parts&currency_code=DKK&generated_message=Part+number%3A+12345%2C+Quantity%3A+10&user_message=Hi.+How+much+is+shipping+to+Denmark+for+these+parts%3F&send_copy_to_email=1"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"retailer_id\":42,\"from_company_id\":7,\"from_email\":\"alice@example.com\",\"from_name\":\"Alice Sender\",\"to_email\":\"bob@retailer.com\",\"to_name\":\"Bob Retailer\",\"subject\":\"Request for quote\",\"currency_code\":\"USD\",\"generated_message\":\"Hello, I would like to request a quote for the following parts\u2026\",\"user_message\":\"Please prioritize delivery by next week if possible.\",\"send_copy_to_email\":false,\"parts\":[{\"part_id\":1001,\"quantity\":2,\"price\":49.95},{\"part_id\":1002,\"quantity\":5,\"price\":19.5}]}"
                        },
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "Paginated list of parts.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/parts",
                            "query": [
                                {
                                    "key": "retailer_id",
                                    "value": "7",
                                    "description": "The ID of the retailer\/company.",
                                    "disabled": false
                                },
                                {
                                    "key": "brand_code",
                                    "value": "cl",
                                    "description": "The code of the brand.",
                                    "disabled": false
                                },
                                {
                                    "key": "brand_slug",
                                    "value": "claas",
                                    "description": "The slug of the brand.",
                                    "disabled": false
                                },
                                {
                                    "key": "country_code",
                                    "value": "dk",
                                    "description": "The country code.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort_field",
                                    "value": "manufacturer_part_number",
                                    "description": "The field to sort by. Valid values are: manufacturer_part_number, name and inventory.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort_direction",
                                    "value": "asc",
                                    "description": "The direction to sort by.",
                                    "disabled": false
                                },
                                {
                                    "key": "no_of_items",
                                    "value": "10",
                                    "description": "The number of items per page.",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/parts?retailer_id=7&brand_code=cl&brand_slug=claas&country_code=dk&sort_field=manufacturer_part_number&sort_direction=asc&no_of_items=10&page=1"
                        },
                        "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": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified parts.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/parts\/:partNumber",
                            "query": [
                                {
                                    "key": "sort_field",
                                    "value": "price",
                                    "description": "The field to sort by. Valid values are: part_number, price and inventory.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort_direction",
                                    "value": "asc",
                                    "description": "The direction to sort by.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/parts\/:partNumber?sort_field=price&sort_direction=asc",
                            "variable": [
                                {
                                    "id": "partNumber",
                                    "key": "partNumber",
                                    "value": "ut",
                                    "description": ""
                                },
                                {
                                    "id": "part",
                                    "key": "part",
                                    "value": "1",
                                    "description": "The ID of the part."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"sort_field\":\"brand\",\"sort_direction\":\"asc\"}"
                        },
                        "description": "Include parts that match the manufacturer_part_number\nInclude parts that do not have a manufacturer_part_number but match the part_number"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display a listing of parts matching the search query and filters.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/parts\/search\/:searchQuery",
                            "query": [
                                {
                                    "key": "brand_slug",
                                    "value": "john-deere",
                                    "description": "The brand slug to filter parts by.",
                                    "disabled": false
                                },
                                {
                                    "key": "country_code",
                                    "value": "DK",
                                    "description": "The country code to filter parts by.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort_field",
                                    "value": "part_number",
                                    "description": "The field to sort by.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort_direction",
                                    "value": "asc",
                                    "description": "The direction to sort by.",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number to display.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "10",
                                    "description": "The number of items to display per page.",
                                    "disabled": false
                                },
                                {
                                    "key": "currency_code",
                                    "value": "EUR",
                                    "description": "The currency code to filter parts by.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/parts\/search\/:searchQuery?brand_slug=john-deere&country_code=DK&sort_field=part_number&sort_direction=asc&page=1&per_page=10&currency_code=EUR",
                            "variable": [
                                {
                                    "id": "searchQuery",
                                    "key": "searchQuery",
                                    "value": "ex",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"searchQuery\":\"mrsholkpuaejriff\",\"brandSlug\":\"gg\",\"page\":42,\"sort_field\":\"name\",\"sort_direction\":\"desc\",\"country_code\":\"rj\",\"currency_code\":\"jpi\"}"
                        },
                        "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": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display a listing of parts with the specified brand_slug filtered by optional search query.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/parts\/brand\/search\/:brandSlug\/:searchQuery",
                            "query": [
                                {
                                    "key": "country_code",
                                    "value": "DK",
                                    "description": "The country code to filter parts by.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort_field",
                                    "value": "part_number",
                                    "description": "The field to sort by.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort_direction",
                                    "value": "asc",
                                    "description": "The direction to sort by.",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number to display.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "10",
                                    "description": "The number of items to display per page.",
                                    "disabled": false
                                },
                                {
                                    "key": "currency_code",
                                    "value": "EUR",
                                    "description": "The currency code to filter parts by.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/parts\/brand\/search\/:brandSlug\/:searchQuery?country_code=DK&sort_field=part_number&sort_direction=asc&page=1&per_page=10&currency_code=EUR",
                            "variable": [
                                {
                                    "id": "brandSlug",
                                    "key": "brandSlug",
                                    "value": "aliquam",
                                    "description": ""
                                },
                                {
                                    "id": "searchQuery",
                                    "key": "searchQuery",
                                    "value": "esse",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"searchQuery\":\"fpz\",\"brandSlug\":\"pnnhebahm\",\"page\":25,\"sort_field\":\"manufacturer_part_number\",\"sort_direction\":\"asc\",\"country_code\":\"ws\",\"currency_code\":\"myu\"}"
                        },
                        "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": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display a listing of parts with the specified brand_slug filtered by optional search query.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/parts\/brand\/search\/:brandSlug",
                            "query": [
                                {
                                    "key": "country_code",
                                    "value": "DK",
                                    "description": "The country code to filter parts by.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort_field",
                                    "value": "part_number",
                                    "description": "The field to sort by.",
                                    "disabled": false
                                },
                                {
                                    "key": "sort_direction",
                                    "value": "asc",
                                    "description": "The direction to sort by.",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number to display.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "10",
                                    "description": "The number of items to display per page.",
                                    "disabled": false
                                },
                                {
                                    "key": "currency_code",
                                    "value": "EUR",
                                    "description": "The currency code to filter parts by.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/parts\/brand\/search\/:brandSlug?country_code=DK&sort_field=part_number&sort_direction=asc&page=1&per_page=10&currency_code=EUR",
                            "variable": [
                                {
                                    "id": "brandSlug",
                                    "key": "brandSlug",
                                    "value": "voluptatem",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"searchQuery\":\"zvmoufngpljexjsvdnpmgnl\",\"brandSlug\":\"ecelpljafwfgvcrkb\",\"page\":25,\"sort_field\":\"inventory\",\"sort_direction\":\"desc\",\"country_code\":\"wn\",\"currency_code\":\"eeb\"}"
                        },
                        "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": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET retailers (Company model) by geolocation.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/retailer",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/retailer"
                        },
                        "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": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/events\/callback",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/events\/callback",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/events\/callback"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/events\/{topic}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/events\/:topic",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/events\/:topic",
                            "variable": [
                                {
                                    "id": "topic",
                                    "key": "topic",
                                    "value": "quis",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/events\/test",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/events\/test",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/events\/test"
                        },
                        "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": 200,
                            "body": "This is a test",
                            "name": ""
                        }
                    ]
                }
            ]
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "token",
                "type": "string"
            }
        ]
    }
}