{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "https:\/\/clients.metrica.bg"
        }
    ],
    "info": {
        "name": "Metrica API Documentation",
        "_postman_id": "dcb3b616-446a-46f1-af7a-6fa3c71faf97",
        "description": "",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "API V1 - Couriers",
            "description": "\nCouriers Endpoints",
            "item": [
                {
                    "name": "GET Allowed Couriers and SubAccounts",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/couriers\/allowed",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/couriers\/allowed"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "List all allowed couriers and their sub accounts, if exists.\n\nThrottling: Max 60 requests per minute. (60\/1)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "59"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "API V1 - Entries",
            "description": "\nEntries Endpoints\n\n<aside class=\"warning\">\n\nPlease read the following guidelines before implementing the following endpoints.\n\n<\/aside>\n\n- The <i><strong>GET All Entries<\/strong><\/i> endpoint usage is not recommended even if is still provided. As the number of entries can increase, the number of pages will grow constantly. On long term parsing all the results will become a cumbersome and a resource-consuming process.\n- Information about latest entries should <strong>always<\/strong> be requested with the help of <strong>GET Entries created today<\/strong> endpoint.",
            "item": [
                {
                    "name": "GET All Entries",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/entries",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/entries?page=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "List all product entries.\n\nThrottling: Max 40 requests per minute. (40\/1)\n\nPresents the result with page size and pagination.\n\nDefault page size : 200 records per page."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "40"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "39"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Filtered Entries",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/entries\/filter",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/entries\/filter?page=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":\"47860,47859\",\"productIds\":\"184737,184738\",\"type\":\"imports\",\"startDate\":\"2025-06-01\",\"endDate\":\"2025-07-07\",\"sortDate\":\"DESC\",\"perPage\":250}"
                        },
                        "description": "List sumOf product entries that match filters with product information.\n\nPresents the result with page size and simple pagination (without showing the total number of records and last page).\n\nThrottling: Max 20 requests per minute. (20\/1) Max 100 requests per hour. (100\/60)\n\nDefault page size : 250 records per page. (Maximum 1000 records per page)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "20"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "19"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Entries created today",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/entries\/createdToday",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/entries\/createdToday?page=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "List all entries that were created today\n\nPresents the result with page size and pagination.\n\nThrottling: Max 5 requests per minute. (5\/1)\n\nDefault page size : 200 records per page."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "5"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "4"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Returned Entries",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/entries\/returns\/sumOfQty",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/entries\/returns\/sumOfQty?page=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "List sumOf product entries from returned orders, grouped by products and orders\n\nThrottling: Max 20 requests per minute. (20\/1)\n\nPresents the result with page size and pagination.\n\nDefault page size : 200 records per page."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "20"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "19"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Import Entries",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/entries\/imports\/sumOfQty",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/entries\/imports\/sumOfQty?page=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "List sumOf product entries from imports, grouped by products and imports\n\nThrottling: Max 20 requests per minute. (20\/1)\n\nPresents the result with page size and pagination.\n\nDefault page size : 200 records per page."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "20"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "19"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "API V1 - Recipients",
            "description": "\nRecipients Endpoints",
            "item": [
                {
                    "name": "GET All Recipients",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/recipients",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/recipients?page=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "List all recipients.\n\nPresents the result with page size and pagination.\n\nDefault page size : 200 records per page.\n\nThrottling: Max 60 requests per minute. (60\/1)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "59"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "CREATE Recipient",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/recipients",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/recipients"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"recipientExternalId\":\"MHM124503sDfHJj\",\"isLegalEntity\":true,\"companyName\":\"Company Name\",\"companyUniqueIdentifier\":\"RO55599888\",\"companyRegistrationNumber\":\"J99\\\/9999\\\/1950\",\"companyBankName\":\"The Bank of\",\"companyIban\":\"RO49AAAA1B31007593840000\",\"contactPerson\":\"John Doe\",\"address\":\"Green Street 23\",\"country\":\"Romania\",\"city\":\"Bucharest\",\"county\":\"Sector 1\",\"postalCode\":\"010025\",\"phone\":\"0700099900\",\"email\":\"john.d@gmail.com\"}"
                        },
                        "description": "Create a new Recipient\n\nThrottling: Max 60 requests per minute. (60\/1)"
                    },
                    "response": []
                },
                {
                    "name": "GET Recipient By ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/recipients\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/recipients\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "537",
                                    "description": "The ID of the recipient."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get Recipient information by internal ID.\n\nThrottling: Max 60 requests per minute. (60\/1)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "58"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for Recipient not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "UPDATE Recipient",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/recipients\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/recipients\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the recipient."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"recipientExternalId\":\"MHM124503sDfHJj\",\"isLegalEntity\":true,\"companyName\":\"Company Name\",\"companyUniqueIdentifier\":\"RO55599888\",\"companyRegistrationNumber\":\"J99\\\/9999\\\/1950\",\"companyBankName\":\"The Bank of\",\"companyIban\":\"RO49AAAA1B31007593840000\",\"contactPerson\":\"John Doe\",\"address\":\"Green Street 23\",\"country\":\"Romania\",\"city\":\"Bucharest\",\"county\":\"Sector 1\",\"postalCode\":\"010025\",\"phone\":\"0700099900\",\"email\":\"john.d@gmail.com\"}"
                        },
                        "description": "Update Recipient by ID\n\nThrottling: Max 60 requests per minute. (60\/1)\n\n<aside class=\"notice\">\n\nWhen updating the recipient, all the fields <strong>must be filled<\/strong> with the old values if they don't change.\n\n<\/aside>"
                    },
                    "response": []
                },
                {
                    "name": "DELETE Recipient By ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/recipients\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/recipients\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the recipient."
                                },
                                {
                                    "id": "recipientId",
                                    "key": "recipientId",
                                    "value": "",
                                    "description": "The recipient ID."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Delete Recipient by internal id\n\nThrottling: Max 60 requests per minute. (60\/1)"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for Recipient not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Recipient By External ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/recipients\/byExternalId\/:externalId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/recipients\/byExternalId\/:externalId",
                            "variable": [
                                {
                                    "id": "externalId",
                                    "key": "externalId",
                                    "value": "MHM024515AP",
                                    "description": "The recipient external ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get Recipient by external ID.\n\nThrottling: Max 60 requests per minute. (60\/1)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "57"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for Recipient not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "API V1 - Orders",
            "description": "\nOrders Endpoints\n\n<aside class=\"warning\">\n\nPlease read the following guidelines before implementing the following endpoints.\n\n<\/aside>\n\n- The <i><strong>GET All Orders<\/strong><\/i> endpoint usage is not recommended even if is still provided. As the number of orders increases the number of pages will grow constantly. On long term parsing all the results will become a cumbersome and a resource-consuming process.\n- Information about orders should <strong>always<\/strong> be requested with the help of <strong>GET Filtered Orders<\/strong> endpoint.\n- The <strong>GET Today latest updated orders<\/strong> endpoint can provide the list of orders updated recently.\n- Usage of <strong>GET Order By<\/strong> endpoints is not recommended in a list\/array larger than 10-20 orders.\n- The information found on <strong>courierStatus<\/strong> and <strong>courierStatusId<\/strong> does not seek to provide an undoubted clarification when an order is TRULY delivered, returned, lost, or paid. Those are just courier statuses and their interpretation remains at the discretion of the reader.",
            "item": [
                {
                    "name": "GET All Orders",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders?page=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "List all orders.\n\nThrottling: Max 5 requests per minute. (5\/1) Max 20 requests per hour. (20\/60)\n\nPresents the result with page size and simple pagination (without showing the total number of records and last page).\n\nDefault page size : 500 records per page.\nThe ordering is newest orders first."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "5"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "4"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Filtered Orders",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/filter",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/filter?page=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":\"3234201,3234202\",\"external_ids\":\"MHMF134018SHNi,MHMF134018SH12\",\"startDate\":\"2024-01-01 12:59:59\",\"endDate\":\"2024-12-22 19:30:00\",\"dateFilterBy\":\"CREATED_AT\",\"sortDate\":\"ASC\",\"status\":\"InProcessing,Sent\",\"customerName\":\"ContactPerson3\",\"customerPhone\":\"0700112233\",\"isReturned\":false,\"withCashOnDelivery\":\"0\",\"perPage\":250}"
                        },
                        "description": "List all orders that match filters.\n\nThrottling: Max 5 requests per minute. (5\/1) Max 20 requests per hour. (20\/60)\n\nPresents the result with page size and pagination.\n\nDefault page size : 250 records per page. (Maximum 500)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "5"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "4"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST Filter Orders by Date",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/filterByDate",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/filterByDate?page=1"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"filterBy\":\"entryDate\",\"fromDate\":\"2020-01-01\",\"perPage\":100}"
                        },
                        "description": "Returns a list with the orders filtered by the date of entry, the shipping date or the returned date.\n\nThrottling: Max 20 requests per minute. (20\/1)\n\nPresents the result with page size and pagination."
                    },
                    "response": []
                },
                {
                    "name": "POST Filter Orders by Date Intervals",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/filterByDateIntervals",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/filterByDateIntervals?page=1"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"filterBy\":\"entryDate\",\"startDate\":\"2024-01-01\",\"endDate\":\"2024-01-31\",\"withCashOnDelivery\":false,\"perPage\":100}"
                        },
                        "description": "Returns a list with the orders between two dates.\nThe result can be filtered by the date of entry, the shipping date or the returned date.\n\nThrottling: Max 20 requests per minute. (20\/1)\n\nPresents the result with page size and pagination."
                    },
                    "response": []
                },
                {
                    "name": "POST Filter Orders by Status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/filterByStatus",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/filterByStatus?page=1"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"Shipped\",\"perPage\":100}"
                        },
                        "description": "List the orders in our system filtering by the order status\n\nThrottling: Max 20 requests per minute. (20\/1)\n\nPresents the result with page size and pagination."
                    },
                    "response": []
                },
                {
                    "name": "GET Today latest updated orders",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/todayLatestUpdated",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/todayLatestUpdated"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve a list of today's latest updated orders.\n\n<aside class=\"warning\">\n\nDue to missing indexes this endpoint response can be slow (~2-8 seconds).\n\n<\/aside>\n\nThrottling: Max 1 request per 10 minutes. (1\/10)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "1"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "0"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Order By ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/byId\/:orderId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/byId\/:orderId",
                            "variable": [
                                {
                                    "id": "orderId",
                                    "key": "orderId",
                                    "value": "3234201",
                                    "description": "The order ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get Order information by internal ID.\n\nThrottling: Max 60 requests per minute. (60\/1)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "59"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for OrderItem not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Order By External ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/byExternalId\/:externalId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/byExternalId\/:externalId",
                            "variable": [
                                {
                                    "id": "externalId",
                                    "key": "externalId",
                                    "value": "MHMF1338580SQl",
                                    "description": "The order external ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get Order information by external ID.\n\nThrottling: Max 60 requests per minute. (60\/1)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "59"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for OrderItem not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Order By AWB",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/byAwb\/:awb",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/byAwb\/:awb",
                            "variable": [
                                {
                                    "id": "awb",
                                    "key": "awb",
                                    "value": "AWBNO9923",
                                    "description": "alphaNum required The order AWB Number."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get Order information by AWB Number.\n\nThrottling: Max 60 requests per minute. (60\/1)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "59"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for OrderItem not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Order By External Source Order ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/byExternalSourceOrderId\/:externalSourceOrderId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/byExternalSourceOrderId\/:externalSourceOrderId",
                            "variable": [
                                {
                                    "id": "externalSourceOrderId",
                                    "key": "externalSourceOrderId",
                                    "value": "SID323",
                                    "description": "alphaNum required The order externalSourceOrderId."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get Order information by external source order ID.\n\nThrottling: Max 60 requests per minute. (60\/1)\n\n<aside class=\"warning\">\n\nThe <strong>externalSourceOrderId<\/strong> field is not unique!\nThis endpoint will always return a list of orders.\n\n<\/aside>"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "59"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for OrderItem not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Shipped Orders With Expiry Dates",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/shipped\/with\/expiryDates",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/shipped\/with\/expiryDates"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns a list with the shipped orders and a field named <strong>shippedExpiryDates<\/strong> for each product that contains a list with the quantity of each date\/batch.\nThe expiryDate and batch fields will be null if the productType is Normal.\nThe orders are sorted DESC by the shipped date.\n\nThrottling: Max 10 requests per minute. (10\/1)\n\nPresents the result with page size and pagination."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "10"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "9"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "CREATE Order",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/create",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/create"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"externalId\":\"ID123\",\"prefDate\":\"2040-12-31\",\"address\":\"Str. My Street, No.10, Ap. 99\",\"streetId\":995,\"cityId\":15,\"city\":\"Bucuresti\",\"county\":\"Sector 1\",\"country\":\"RO\",\"postalCode\":\"010111\",\"companyName\":\"Company SA\",\"companyUniqueIdentifier\":\"RO55599888\",\"companyRegistrationNumber\":\"J99\\\/9999\\\/1950\",\"contactPerson\":\"Contact Person\",\"contactPhone\":\"0700999111\",\"contactEmail\":\"test@test.com\",\"cashOnDelivery\":\"100.99\",\"declaredValueAmount\":\"100.99\",\"warehouseRemarks\":\"eligendi\",\"shippingInstructions\":\"voluptatem\",\"courierId\":15,\"courierSubAccountId\":4,\"awbUrl\":\"https:\\\/\\\/pathtomyawb.pdf\",\"invoiceUrl\":\"https:\\\/\\\/pathtomyinvoice.pdf\",\"deliveryNoteUrl\":\"https:\\\/\\\/pathtomydeliverynote.pdf\",\"maxKeepDays\":365,\"externalSource\":\"Shopify MyWebSite\",\"externalSourceOrderId\":\"AxZ00001\",\"awbNumber\":\"AWB001\",\"withPriority\":false,\"saveAsLocked\":false,\"lockerId\":\"\\\"5959\\\"\",\"useOverriddenValidationRules\":false,\"products\":[{\"id\":\"184736\",\"quantity\":3,\"price\":100.9999}]}"
                        },
                        "description": "Creates a new Order.\n\nThrottling: Max 15 requests per minute. (15\/1)\n\n<aside class=\"notice\">\n\nFields Info\n<br>\n<br>\nThe <em>address<\/em>, <em>city<\/em>, <em>county<\/em>, <em>country<\/em> fields are not required if a valid <em>awbUrl<\/em> value is filled.\n<br>\nThe <em>courierId<\/em> allowed values can be obtained from <strong>GET Allowed Couriers<\/strong> endpoint.\n<br>\nThe <em>courierSubAccountId<\/em> allowed values can be obtained from <strong>GET Allowed Couriers<\/strong> endpoint.\n<br>\nThe <em>externalSource<\/em> allowed values can be obtained from <strong>GET External Source List<\/strong> endpoint.\n\n<\/aside>\n\n\n<aside class=\"notice\">\n\nAdditional Info\n<br>\n<br>\nThis endpoint is <strong>not<\/strong> accepting files. If the order must be shipped with a invoice or the AWB already exists in PDF format they must be attached to the order via <strong>url fields<\/strong>.\n<br>\nThe products in the order <strong>must be defined<\/strong> using <strong>our internal product id<\/strong>. For a faster order creation we recommend that your application will not try to identify the products in our system every time a new order must be created.\nAlso, providing the same productId more than once in <strong>products<\/strong> object is not allowed. If this case is recommended to provide it only once with the em>sum<\/em> of all it's quantity.\n\n<\/aside>"
                    },
                    "response": []
                },
                {
                    "name": "UPDATE Order",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/update\/:orderId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/update\/:orderId",
                            "variable": [
                                {
                                    "id": "orderId",
                                    "key": "orderId",
                                    "value": "",
                                    "description": "The order ID."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"address\":\"Str. My Street, No.10, Ap. 99\",\"city\":\"Bucuresti\",\"county\":\"Sector 12307050000008470\",\"country\":\"RO\",\"postalCode\":\"ea\",\"companyName\":\"Company SA\",\"companyUniqueIdentifier\":\"RO55599888\",\"companyRegistrationNumber\":\"J99\\\/9999\\\/1950\",\"contactPerson\":\"qui\",\"contactPhone\":\"0700999111\",\"contactEmail\":\"xbeer@example.net\",\"cashOnDelivery\":\"100.99\",\"warehouseRemarks\":\"officia\",\"shippingInstructions\":\"ab\",\"courierId\":15,\"courierSubAccountId\":4,\"awbUrl\":\"https:\\\/\\\/pathtomyawb.pdf\",\"invoiceUrl\":\"https:\\\/\\\/pathtomyinvoice.pdf\",\"deliveryNoteUrl\":\"https:\\\/\\\/pathtomydeliverynote.pdf\",\"maxKeepDays\":365,\"externalSource\":\"Shopify MyWebSite\",\"externalSourceOrderId\":\"AxZ00001\",\"awbNumber\":\"AWB001\",\"withPriority\":false,\"lockerId\":\"\\\"5959\\\"\"}"
                        },
                        "description": "Updates order by ID\n\nThrottling: Max 15 requests per minute. (15\/1)\n\n<aside class=\"notice\">\n\nWhen updating the order, all the fields must be filled with the old values if they doesn't change.\n\n<br>\n\nFields Info\n<br>\nThe <em>address<\/em>, <em>city<\/em>, <em>county<\/em>, <em>country<\/em> fields are not required if a valid <em>awbUrl<\/em> value is filled.\n<br>\nThe <em>courierId<\/em> allowed values can be obtained from <strong>GET Allowed Couriers<\/strong> endpoint.\n<br>\nThe <em>courierSubAccountId<\/em> allowed values can be obtained from <strong>GET Allowed Couriers<\/strong> endpoint.\n\n<\/aside>\n\n<aside class=\"warning\">\n\nThis endpoint <strong>can`t<\/strong> add or remove products from the order.\n\n<\/aside>"
                    },
                    "response": []
                },
                {
                    "name": "UPDATE Order Url Field",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/updateUrlField\/:orderId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/updateUrlField\/:orderId",
                            "variable": [
                                {
                                    "id": "orderId",
                                    "key": "orderId",
                                    "value": "",
                                    "description": "The order ID."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"urlField\":\"invoiceUrl\",\"url\":\"https:\\\/\\\/pathtomyurl.pdf\",\"deliveryNoteSerialNumber\":\"NO-001\"}"
                        },
                        "description": "Directly updates order url fields by ID\n\nThrottling: Max 5 requests per minute. (5\/1)"
                    },
                    "response": []
                },
                {
                    "name": "DELETE Order By ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/delete\/:orderId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/delete\/:orderId",
                            "variable": [
                                {
                                    "id": "orderId",
                                    "key": "orderId",
                                    "value": "",
                                    "description": "The order ID."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Delete Order by internal id\n\nThrottling: Max 60 requests per minute. (60\/1)"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for OrderItem not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "LOCK Order By ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/lock\/:orderId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/lock\/:orderId",
                            "variable": [
                                {
                                    "id": "orderId",
                                    "key": "orderId",
                                    "value": "",
                                    "description": "The order ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "LOCK Order by internal id. This will prevent the start of order processing until it's unlocked.\n\nThrottling: Max 60 requests per minute. (60\/1)"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for OrderItem not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "UNLOCK Order By ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/unlock\/:orderId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/unlock\/:orderId",
                            "variable": [
                                {
                                    "id": "orderId",
                                    "key": "orderId",
                                    "value": "",
                                    "description": "The order ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "UNLOCK Order by internal id. This will unlock the order so the warehouse operators can start the picking and packing processes.\n\nThrottling: Max 60 requests per minute. (60\/1)"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for OrderItem not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET External Source List",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/externalSourceList",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/externalSourceList"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve a list with the allowed external sources.\n\nThrottling: Max 100 requests per minute. (100\/1)\n\nPlease inform us if your source is not on this list, so we can add it."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "100"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "99"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "REQUEST DPD Pickup",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/requestDPDPickup",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/requestDPDPickup"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"id\":\"1234\",\"identifiedAs\":\"orderId\",\"sender\":{\"clientName\":\"Company 999\",\"contactName\":\"Contact Test\",\"contactPhoneNumber\":\"maxime\",\"address\":\"Test address\",\"city\":\"City\",\"county\":\"County\",\"postCode\":\"999999\"},\"extra\":{\"declaredValueAmount\":\"100.99\"}}"
                        },
                        "description": "Creates a new DPD AWB number and Pickup request for the given order ID.\n\n<aside class=\"warning\">\n\nThis endpoint <strong>is not available<\/strong> if DPD is not available in allowed couriers endpoint.\n\n<\/aside>"
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "API V1 - Order Invoices",
            "description": "\nOrder Invoice Endpoints",
            "item": [
                {
                    "name": "GET Invoices Information",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/invoice\/information",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/invoice\/information?page=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"hasInvoiceNumber\":false,\"orderIsShipped\":true,\"startDate\":\"2024-01-01 12:59:59\",\"dateQueryType\":\"orderSentDate\",\"orderByField\":\"orderSentDate\",\"orderByDirection\":\"ASC\",\"perPage\":100}"
                        },
                        "description": "Returns a list with all invoices information that can be filtered by the available parameters.\n\nThrottling: Max 20 requests per hour. (20\/60)\n\nDefault page size : 100 records per page.\n\nPresents the result with page size and pagination."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "10"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "9"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Invoice Information By Order ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/invoice\/information\/byOrderId\/:orderId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/invoice\/information\/byOrderId\/:orderId",
                            "variable": [
                                {
                                    "id": "orderId",
                                    "key": "orderId",
                                    "value": "animi",
                                    "description": ""
                                },
                                {
                                    "id": "order_id",
                                    "key": "order_id",
                                    "value": "101",
                                    "description": "The order ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "GET Invoice Information By Order internal ID\n\nThrottling: Max 10 requests per minute. (10\/1)\n\n<aside class=\"notice\">\n\nAdditional Info\n<br>\n<br>\nIf the reception field value is <strong>null<\/strong> the reception plan is not linked to a reception.\n\n<\/aside>"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "10"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "9"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for OrderItem not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "CREATE Order Invoice Information",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/invoice\/information\/create\/:orderId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/invoice\/information\/create\/:orderId",
                            "variable": [
                                {
                                    "id": "orderId",
                                    "key": "orderId",
                                    "value": "",
                                    "description": "The order ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"isLegalEntity\":false,\"companyName\":\"Company Name\",\"companyUniqueIdentifier\":\"RO55599888\",\"companyRegistrationNumber\":\"J99\\\/9999\\\/1950\",\"companyBankName\":\"The Bank of\",\"companyIban\":\"RO49AAAA1B31007593840000\",\"firstName\":\"First\",\"lastName\":\"Last\",\"address\":\"Str. My Street, No.10, Ap. 99\",\"city\":\"Bucuresti\",\"county\":\"Sector 1\",\"country\":\"RO\",\"postalCode\":\"010111\",\"phone\":\"0700999111\",\"email\":\"test@test.com\",\"shippingTax\":\"100.50\",\"processingFee\":\"0\",\"orderCampaignId\":1001,\"discountsTotal\":\"100.99\",\"invoiceTotal\":\"999.99\",\"invoiceNumber\":\"SN-RO-001\",\"urlPath\":\"https:\\\/\\\/pathtomyinvoice.pdf\",\"unlockOrder\":false,\"sameLinesAsOrder\":false,\"linesPriceCheck\":false,\"discounts\":[{\"name\":\"Discount Name No-1\",\"value\":\"100.9999\"}],\"discountApplications\":[{\"allocationMethod\":\"each\",\"targetSelection\":\"explicit\",\"targetType\":\"shipping_line\",\"code\":\"CODEX101\",\"title\":\"title\",\"description\":\"description\",\"type\":\"discount_code\",\"value\":\"20.0\",\"valueType\":\"fixed_amount\",\"calculatedAmount\":\"100.9999\"}],\"invoiceLines\":[{\"productId\":123456,\"lineExternalIdentifier\":\"accusamus\",\"pricePerUnit\":\"10.55\",\"quantity\":5,\"totalDiscount\":\"10.55\",\"taxLines\":[{\"title\":\"VAT RO\"}],\"price\":\"10.55\",\"rate\":\"0.99\"}]}"
                        },
                        "description": "Creates a new Order Invoice Information.\n\nThrottling: Max 15 requests per minute. (15\/1)\n\n<aside class=\"notice\">\n\nThe data gathered with this endpoint is not used anywhere.\n\n<\/aside>"
                    },
                    "response": []
                },
                {
                    "name": "UPDATE Order Invoice Information InvoiceNumber",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/invoice\/information\/update\/:orderInvoiceInformation_id\/invoiceNumber",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/invoice\/information\/update\/:orderInvoiceInformation_id\/invoiceNumber?page=1",
                            "variable": [
                                {
                                    "id": "orderInvoiceInformation_id",
                                    "key": "orderInvoiceInformation_id",
                                    "value": "4",
                                    "description": "The ID of the orderInvoiceInformation."
                                },
                                {
                                    "id": "orderInvoiceInformation",
                                    "key": "orderInvoiceInformation",
                                    "value": "",
                                    "description": "The Order invoice information ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"invoiceNumber\":\"SN-RO-001\",\"urlPath\":\"https:\\\/\\\/pathtomyinvoice.pdf\"}"
                        },
                        "description": "Updates the invoice number for the Order invoice information by ID\n\nThrottling: Max 50 requests per minute. (50\/1)"
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/connectors\/client\/orders\/invoice\/fiscal\/{orderIdentifier}\/download",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/orders\/invoice\/fiscal\/:orderIdentifier\/download",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/orders\/invoice\/fiscal\/:orderIdentifier\/download",
                            "variable": [
                                {
                                    "id": "orderIdentifier",
                                    "key": "orderIdentifier",
                                    "value": "nam",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "API V1 - Products",
            "description": "\nProducts Endpoints\n\n<aside class=\"warning\">\n\nPlease read the following guidelines before implementing the following endpoints.\n\n<\/aside>\n\n- The <i><strong>GET All Products<\/strong><\/i> endpoint usage is not recommended even if is still provided. Information about products is rarely changed on our system. As the number of products can increase, the number of pages will grow constantly. On long term parsing all the results will become a cumbersome and a resource-consuming process.\n- Information about latest products should <strong>always<\/strong> be requested with the help of <strong>GET Filtered Products<\/strong> or <strong>Created\/Updated today<\/strong> filtering endpoints.\n- Usage of <strong>GET Product By<\/strong> endpoints is not recommended in a list\/array larger than 10-20 products.",
            "item": [
                {
                    "name": "GET All Products",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/products",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/products?page=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "List all products.\n\nPresents the result with page size and simple pagination (without showing the total number of records and last page).\n\nThrottling: Max 20 requests per minute. (20\/1) Max 100 requests per hour. (100\/60)\n\nDefault page size : 1000 records per page."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "20"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "19"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Filtered Products",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/products\/filter",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/products\/filter?page=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":\"184735,184736,3049927\",\"productCode\":\"MHM223259\",\"barcode\":\"4971850911119\",\"externalId\":\"109\",\"startDate\":\"2025-01-01 12:59:59\",\"endDate\":\"2025-02-07 13:10:00\",\"dateFilterBy\":\"CREATED_AT\",\"sortDate\":\"ASC\",\"perPage\":250}"
                        },
                        "description": "List all products that match filters.\n\nPresents the result with page size and simple pagination (without showing the total number of records and last page).\n\nThrottling: Max 20 requests per minute. (20\/1) Max 100 requests per hour. (100\/60)\n\nDefault page size : 250 records per page. (Maximum 1000 records per page)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "20"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "19"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Products created today",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/products\/filter\/createdToday",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/products\/filter\/createdToday?page=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "List all products that were created today\n\nPresents the result with page size and pagination.\n\nThrottling: Max 20 requests per hour. (20\/60)\n\nDefault page size : 1000 records per page."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "20"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "19"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Products updated today",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/products\/filter\/updatedToday",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/products\/filter\/updatedToday?page=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "List all products that were updated today\n\nPresents the result with page size and pagination.\nChanges on product stock does not reflect as a product update.\n\nThrottling: Max 20 requests per hour. (20\/60)\n\nDefault page size : 1000 records per page."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "20"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "19"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Product By ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/products\/byId\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/products\/byId\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "184742",
                                    "description": "The product ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get Product information by internal ID\n\nThrottling: Max 60 requests per minute. (60\/1)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "59"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for Product not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Product By EAN",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/products\/byEan\/:ean",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/products\/byEan\/:ean",
                            "variable": [
                                {
                                    "id": "ean",
                                    "key": "ean",
                                    "value": "4971850911118",
                                    "description": "The product EAN."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get Product information by its EAN (barcode)\n\nThis endpoint will return the first product found with the given param value!\n\nThrottling: Max 60 requests per minute. (60\/1)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "59"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for Product not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE Product By ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/products\/delete\/:productId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/products\/delete\/:productId",
                            "variable": [
                                {
                                    "id": "productId",
                                    "key": "productId",
                                    "value": "",
                                    "description": "The product ID."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Delete Product by internal id\n\nThrottling: Max 60 requests per minute. (60\/1)"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for Product not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Product By Product Code",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/products\/byProductCode\/:productCode",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/products\/byProductCode\/:productCode",
                            "variable": [
                                {
                                    "id": "productCode",
                                    "key": "productCode",
                                    "value": "MHM223256",
                                    "description": "The product code."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get Product information by its Product Code\n\nThis endpoint will return the first product found with the given param value!\n\nThrottling: Max 60 requests per minute. (60\/1)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "59"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for Product not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Product By External ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/products\/byExternalId\/:externalId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/products\/byExternalId\/:externalId",
                            "variable": [
                                {
                                    "id": "externalId",
                                    "key": "externalId",
                                    "value": "105",
                                    "description": "The product External ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get Product information by its External ID\n\nThis endpoint will return the first product found with the given param value!\n\nThrottling: Max 60 requests per minute. (60\/1)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "59"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for Product not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Product Stock By ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/products\/stock\/byId\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/products\/stock\/byId\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "184742",
                                    "description": "The product ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get Product stock information by internal ID\n\nThrottling: Max 60 requests per minute. (60\/1)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "58"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for Product not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "CREATE Product",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/products\/create",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/products\/create"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"description\":\"TestProduct\",\"productCode\":\"ABQ.123+\",\"ean\":\"8009000123A-2.A\",\"externalId\":10999,\"price\":\"10.55\",\"weight_grams\":1500,\"pictureUrl\":\"https:\\\/\\\/www.pathtomyimage.com\",\"productType\":\"1\",\"useDefaultExpiryOnReception\":\"no\",\"useProdIdAsEan\":\"no\",\"productSpecialType\":\"et\",\"externalSource\":\"Shopify MyWebSite\",\"externalSourceProductId\":\"PRD00001\",\"useOverriddenValidationRules\":false}"
                        },
                        "description": "Create a new Product\n\nThrottling: Max 100 requests per minute. (100\/1)"
                    },
                    "response": []
                },
                {
                    "name": "UPDATE Product",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/products\/update\/:product_idp",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/products\/update\/:product_idp",
                            "variable": [
                                {
                                    "id": "product_idp",
                                    "key": "product_idp",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"description\":\"TestProduct\",\"productCode\":\"ABQ.123+\",\"ean\":\"8009000123A-2.A\",\"externalId\":10999,\"price\":\"10.55\",\"weight_grams\":1500,\"pictureUrl\":\"https:\\\/\\\/www.pathtomyimage.com\",\"productType\":\"1\",\"useDefaultExpiryOnReception\":\"no\",\"externalSource\":\"Shopify MyWebSite\",\"externalSourceProductId\":\"PRD00001\"}"
                        },
                        "description": "Updates product by ID\n\nThrottling: Max 100 requests per minute. (100\/1)\n\n<aside class=\"notice\">\n\nWhen updating the product, all the fields <strong>must be filled<\/strong> with the old values if they doesn't change.\n\n<br>\n\nIf no reception has been processed on the product yet OR the default product state is not <strong>GOOD<\/strong>, all the product fields and details can be edited. Otherwise, only non-essential product fields will be updated ( description, weight, pictureUrl ).\n\n<br>\n\nThe non-essential product fields are: <em>description<\/em>, <em>weight_grams<\/em> and <em>pictureUrl<\/em>.\n\n<\/aside>"
                    },
                    "response": []
                },
                {
                    "name": "GET External Source List",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/products\/externalSourceList",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/products\/externalSourceList"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve a list with the allowed external sources.\n\nThrottling: Max 100 requests per minute. (100\/1)\n\nPlease inform us if your source is not on this list, so we can add it."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "100"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "99"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "API V1 - Receptions",
            "description": "\nReception Endpoints",
            "item": [
                {
                    "name": "GET All Receptions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/receptions",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/receptions?page=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "List all receptions.\n\nThrottling: Max 30 requests per minute. (30\/1)\n\nPresents the result with page size and pagination.\n\nDefault page size : 200 records per page."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "30"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "29"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Filtered Receptions with Reception Plans",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/receptions\/filter",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/receptions\/filter?page=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":\"31084,31072\",\"startDate\":\"2020-01-01 12:59:59\",\"endDate\":\"2020-12-30 19:30:00\",\"dateFilterBy\":\"CREATED_AT\",\"sortDate\":\"ASC\",\"isProcessed\":false,\"withReceptionPlans\":false,\"perPage\":200}"
                        },
                        "description": "List filtered receptions with reception plans.\n\nThrottling: Max 15 requests per minute. (15\/1)\n\nPresents the result with page size and pagination.\n\nDefault page size : 200 records per page. (Maximum 300)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "15"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "14"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Reception By ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/receptions\/byId\/:receptionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/receptions\/byId\/:receptionId",
                            "variable": [
                                {
                                    "id": "receptionId",
                                    "key": "receptionId",
                                    "value": "31072",
                                    "description": "The reception ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get Reception information by internal ID.\n\nThrottling: Max 60 requests per minute. (60\/1)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "59"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for Reception not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Reception Contents By ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/receptions\/byId\/:reception_id\/contents",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/receptions\/byId\/:reception_id\/contents",
                            "variable": [
                                {
                                    "id": "reception_id",
                                    "key": "reception_id",
                                    "value": "13",
                                    "description": "The ID of the reception."
                                },
                                {
                                    "id": "reception",
                                    "key": "reception",
                                    "value": "31072",
                                    "description": "The reception ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get Reception contents ( received products ana quantity ) by internal ID.\n\nThrottling: Max 20 requests per minute. (20\/1)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "20"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "19"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for Reception not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "API V1 - Reception Plans",
            "description": "\n<aside class=\"success\">\n\nFollow the next endpoints for creating a functional Reception Plan, available to be linked with a warehouse reception.\n\n<br><br>\n\n1. CREATE Reception Plan\n<br>\n2. CREATE Reception Plan Import\n<br>\n3. CREATE Reception Plan Detail\n<br>\n4. FINISH Reception Plan Import\n<br>\n5. FINISH Reception Plan\n\n<br><br>\n\nAs a rule of thumb, a Reception Plan can contain multiple imports and one import can contain multiple details.\n<br>\nThe plan and its corresponding imports must be marked as <strong>Finished<\/strong> in order to make the plan visible for the warehouse reception.\n<\/aside>\n\nReception Plan Endpoints",
            "item": [
                {
                    "name": "GET All Reception Plans",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/receptionPlans",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/receptionPlans?page=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "List all reception plans.\n\nThrottling: Max 30 requests per minute. (30\/1)\n\nPresents the result with page size and pagination.\n\nDefault page size : 200 records per page.\n\n<aside class=\"notice\">\n\nAdditional Info\n<br>\n<br>\nIf the reception field value is <strong>null<\/strong> the reception plan is not linked to a reception.\n\n<\/aside>"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "30"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "29"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Filtered Reception Plans with Receptions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/receptionPlans\/filter",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/receptionPlans\/filter?page=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ids\":\"3420,3478\",\"external_ids\":\"12312555,456789\",\"startDate\":\"2024-01-01 12:59:59\",\"endDate\":\"2024-12-22 19:30:00\",\"dateFilterBy\":\"CREATED_AT\",\"sortDate\":\"ASC\",\"status\":\"Processing,New\",\"hasReception\":true}"
                        },
                        "description": "List all reception plans that match filters with receptions.\n\nPresents the result with page size and simple pagination (without showing the total number of records and last page).\n\nThrottling: Max 20 requests per minute. (20\/1) Max 100 requests per hour. (100\/60)\n\nDefault page size : 200 records per page.\n\n<aside class=\"notice\">\n\nAdditional Info\n<br>\n<br>\nIf the reception field value is <strong>null<\/strong> the reception plan is not linked to a reception.\n\n<\/aside>"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "20"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "19"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Reception Plan By ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/receptionPlans\/byId\/:receptionPlan_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/receptionPlans\/byId\/:receptionPlan_id",
                            "variable": [
                                {
                                    "id": "receptionPlan_id",
                                    "key": "receptionPlan_id",
                                    "value": "101",
                                    "description": "The reception plan ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get Reception Plan by internal ID.\n\nThrottling: Max 60 requests per minute. (60\/1)\n\n<aside class=\"notice\">\n\nAdditional Info\n<br>\n<br>\nIf the reception field value is <strong>null<\/strong> the reception plan is not linked to a reception.\n\n<\/aside>"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "59"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for ReceptionPlan not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "CREATE Reception Plan",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/receptionPlans\/create",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/receptionPlans\/create"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"TestPlan\",\"externalId\":\"10999\",\"supplierName\":\"My Supplier\",\"awbNumber\":\"AWB001\",\"estimatedArrivalDate\":\"2035-01-01\",\"hasStrictMaxQuantity\":false,\"hasUniqueProducts\":false,\"shouldReceiveOnlyPlannedProducts\":false}"
                        },
                        "description": "Create a new Reception Plan\n\nThrottling: Max 10 requests per minute. (10\/1)"
                    },
                    "response": []
                },
                {
                    "name": "UPDATE Reception Plan",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/receptionPlans\/update\/:receptionPlan_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/receptionPlans\/update\/:receptionPlan_id",
                            "variable": [
                                {
                                    "id": "receptionPlan_id",
                                    "key": "receptionPlan_id",
                                    "value": "3",
                                    "description": "The ID of the receptionPlan."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"supplierName\":\"My Supplier\",\"awbNumber\":\"AWB001\",\"estimatedArrivalDate\":\"2035-01-01\"}"
                        },
                        "description": "Updates reception plan by ID\n\nThrottling: Max 10 requests per minute. (10\/1)"
                    },
                    "response": []
                },
                {
                    "name": "GET Reception Plan Imports",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/receptionPlans\/byId\/:receptionPlan_id\/imports",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/receptionPlans\/byId\/:receptionPlan_id\/imports",
                            "variable": [
                                {
                                    "id": "receptionPlan_id",
                                    "key": "receptionPlan_id",
                                    "value": "126",
                                    "description": "The reception plan ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get Reception Plan Imports by internal ID.\n\nThrottling: Max 30 requests per minute. (30\/1)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "30"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "29"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Reception Plan Details",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/receptionPlans\/byId\/:receptionPlan_id\/details",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/receptionPlans\/byId\/:receptionPlan_id\/details",
                            "variable": [
                                {
                                    "id": "receptionPlan_id",
                                    "key": "receptionPlan_id",
                                    "value": "126",
                                    "description": "The reception plan ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get Reception Plan Details by internal ID.\n\nThrottling: Max 15 requests per minute. (15\/1)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "15"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "14"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Reception Plan Report By ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/receptionPlans\/byId\/:receptionPlan_id\/report",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/receptionPlans\/byId\/:receptionPlan_id\/report",
                            "variable": [
                                {
                                    "id": "receptionPlan_id",
                                    "key": "receptionPlan_id",
                                    "value": "126",
                                    "description": "The reception plan ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get Reception Plan report by internal ID.\n\nThrottling: Max 15 requests per minute. (15\/1)\n\n<aside class=\"notice\">\n\nAdditional Info\n<br>\n<br>\nThe Reception plan report is available only if it was linked to a reception in the warehouse and the reception status is <strong>Processed<\/strong>. Otherwise, a 403 error will be send.\n\n<\/aside>"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "15"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "14"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\n\"message\": \"This action is unauthorized.\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for ReceptionPlan not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "FINISH Reception Plan",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/receptionPlans\/byId\/:receptionPlan_id\/finish",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/receptionPlans\/byId\/:receptionPlan_id\/finish",
                            "variable": [
                                {
                                    "id": "receptionPlan_id",
                                    "key": "receptionPlan_id",
                                    "value": "",
                                    "description": "The reception plan ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Finish Reception Plan\n\nThrottling: Max 10 requests per minute. (10\/1)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"success\":false,\"error\":{\"message\":\"Requested Endpoint not found\",\"code\":404}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE Reception Plan",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/receptionPlans\/byId\/:receptionPlan_id\/delete",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/receptionPlans\/byId\/:receptionPlan_id\/delete",
                            "variable": [
                                {
                                    "id": "receptionPlan_id",
                                    "key": "receptionPlan_id",
                                    "value": "",
                                    "description": "The Reception Plan ID."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Delete Reception Plan by internal id\n\nThrottling: Max 10 requests per minute. (10\/1)"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for ReceptionPlan not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "API V1 - Reception Plan Imports",
            "description": "\nReception Plan Import Endpoints",
            "item": [
                {
                    "name": "GET Reception Plan Details",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/receptionPlanImports\/:receptionPlanImport_id\/details",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/receptionPlanImports\/:receptionPlanImport_id\/details",
                            "variable": [
                                {
                                    "id": "receptionPlanImport_id",
                                    "key": "receptionPlanImport_id",
                                    "value": "395",
                                    "description": "The reception plan import ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get Reception Plan Details by import ID.\n\nThrottling: Max 15 requests per minute. (15\/1)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "60"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "59"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "CREATE Reception Plan Import",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/receptionPlanImports\/create\/:receptionPlan_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/receptionPlanImports\/create\/:receptionPlan_id",
                            "variable": [
                                {
                                    "id": "receptionPlan_id",
                                    "key": "receptionPlan_id",
                                    "value": "101",
                                    "description": "The reception plan ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"TestImportPlan\",\"productIdentifierType\":\"barcode\"}"
                        },
                        "description": "Create a new Reception Plan Import\n\nThrottling: Max 10 requests per minute. (10\/1)"
                    },
                    "response": []
                },
                {
                    "name": "FINISH Reception Plan Import",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/receptionPlanImports\/:receptionPlanImport_id\/finish",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/receptionPlanImports\/:receptionPlanImport_id\/finish",
                            "variable": [
                                {
                                    "id": "receptionPlanImport_id",
                                    "key": "receptionPlanImport_id",
                                    "value": "",
                                    "description": "The reception plan import ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Finish Reception Plan Import\n\nThrottling: Max 10 requests per minute. (10\/1)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"success\":false,\"error\":{\"message\":\"Requested Endpoint not found\",\"code\":404}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE Reception Plan Import",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/receptionPlanImports\/:receptionPlanImport_id\/delete",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/receptionPlanImports\/:receptionPlanImport_id\/delete",
                            "variable": [
                                {
                                    "id": "receptionPlanImport_id",
                                    "key": "receptionPlanImport_id",
                                    "value": "1",
                                    "description": "The Reception Plan Import ID."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Delete Reception Plan Import by internal id\n\nThrottling: Max 10 requests per minute. (10\/1)\n\n<aside class=\"warning\">\n\nThis endpoint remove all Reception Plan Details created under this import.\n\n<\/aside>"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for ReceptionPlanImport not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "API V1 - Reception Plan Details",
            "description": "\nReception Plan Details Endpoints",
            "item": [
                {
                    "name": "CREATE Reception Plan Detail",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/receptionPlanDetails\/create\/:receptionPlanImport_id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/receptionPlanDetails\/create\/:receptionPlanImport_id",
                            "variable": [
                                {
                                    "id": "receptionPlanImport_id",
                                    "key": "receptionPlanImport_id",
                                    "value": "1",
                                    "description": "The ID of the receptionPlanImport."
                                },
                                {
                                    "id": "receptionPlanImportId",
                                    "key": "receptionPlanImportId",
                                    "value": "395",
                                    "description": "The reception plan import ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"productIdentifier\":\"BARCODE999\",\"externalId\":\"1\",\"expiryDate\":\"2050-01-01\",\"batch\":0,\"quantity\":15}"
                        },
                        "description": "Create a new Reception Plan Detail\n\nThrottling: Max 100 requests per minute. (100\/1)"
                    },
                    "response": []
                },
                {
                    "name": "DELETE Reception Plan Detail",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/receptionPlanDetails\/:receptionPlanDetail_id\/delete",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/receptionPlanDetails\/:receptionPlanDetail_id\/delete",
                            "variable": [
                                {
                                    "id": "receptionPlanDetail_id",
                                    "key": "receptionPlanDetail_id",
                                    "value": "1",
                                    "description": "The Reception Plan Detail ID."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Delete Reception Plan Detail by internal id\n\nThrottling: Max 60 requests per minute. (60\/1)"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for ReceptionPlanDetail not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "API V1 - Stock",
            "description": "\n<aside class=\"notice\">\n\nStock Info\n<br>\n<br>\nThe stock endpoint's response might be <strong>empty<\/strong> if no physical products has been received yet for the client in the warehouse.\n<br>\nIf a certain product is not found in the stock response it can be considered to have 0 stock because it has no entries in the warehouse stock.\n<br>\nThe reason for this 'behavior' is, if the client has 10.000 products but only 100 products are active and have stock entries there is no motive to display 9.900 rows with 0 stock.\n<br>\nIt's not recommended to make requests on stock endpoints at a frequency less than 15-20 minutes. Stock changes does not occur very frequently.\n\n<\/aside>\n\n<aside class=\"warning\">\n\n<strong>stockInfo<\/strong> Fields\n<br>\n<br>\n<strong>inStock<\/strong> field represents the difference between all <strong>entries<\/strong> and <strong>shipped<\/strong> orders.\n<br>\n<strong>availableStock<\/strong> field represents the difference between all <strong>entries<\/strong> and <strong>all<\/strong> orders.\n<br>\nUse the information from those fields according to your needs.\n\n<\/aside>\nStock Endpoints",
            "item": [
                {
                    "name": "GET All Products Stock By ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/stock\/allProducts\/byProductId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/stock\/allProducts\/byProductId"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"untilDate\":\"31\\\/12\\\/2020\",\"showNoStock\":\"yes\",\"showOnlyGoodProducts\":\"yes\"}"
                        },
                        "description": "List all products stock by ID.\n\nThrottling: Max 1 request in 5 minutes. (1\/5)\n\nPresents all the results (NonPaginated).\n\nThis endpoint is recommended to use when there are <strong>more<\/strong> than 1000 products to display, because the paginated endpoint can show up to 1000 products per page."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "1"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "0"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET All Products Stock Paginated By ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/stock\/allProductsPaginated\/byProductId",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/stock\/allProductsPaginated\/byProductId?page=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"untilDate\":\"31\\\/12\\\/2020\"}"
                        },
                        "description": "List all products stock by ID.\n\nThrottling: Max 5 requests per minute. (5\/1)\n\nPresents the result with page size and pagination.\n\nDefault page size : 1000 records per page.\n\nThis endpoint is recommended to use when there are <strong>less<\/strong> than 1000 products to display, because the first page can show up to 1000 products."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "5"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "4"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "API V1 - Bundlers",
            "description": "\nA bundler is only a product with 'abilities'. Usually a bundler contains children and their children are also products.\n\n<aside class=\"warning\">\n\nThe bundlers logic work only when an order is created through API.\n<br>\nPlease read the following guidelines before implementing the following endpoints.\n\n<\/aside>\n\nThe <i>bundle<\/i> bundler\n- this type of bundler cannot have warehouse activity (reception, entries or shipments)\n- its children products must have a quantity\n- this type of bundler will expand into its children when detected in the order products\n\n\nThe <i>stock-parent<\/i> bundler\n- this type of bundler can have warehouse activity\n- its children products must have a priority\n- can have maximum 5 children\n- this bundler <strong>stock<\/strong> will be checked before the order creation and if the requested quantity is lower than the current stock its children will be added to the order with the remaining requested quantity (if they have stock), following their priority.\n- the stock is calculated from total entries - total exits from all orders\n\nProduct Bundlers Endpoints",
            "item": [
                {
                    "name": "GET All Bundlers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/bundlers",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/bundlers?page=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "List all product bundlers.\n\nPresents the result with page size and pagination.\n\nThrottling: Max 10 requests per minute. (10\/1)\n\nDefault page size : 50 records per page."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "10"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "9"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "CREATE Bundler",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/bundlers",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/bundlers"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"bundlerType\":\"bundle\",\"bundlerProductId\":10999,\"bundlerProducts\":[[]]}"
                        },
                        "description": "Create a new Bundler\n\nThrottling: Max 10 requests per minute. (10\/1)"
                    },
                    "response": []
                },
                {
                    "name": "GET Bundler By ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/bundlers\/:idp",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/bundlers\/:idp",
                            "variable": [
                                {
                                    "id": "idp",
                                    "key": "idp",
                                    "value": "1",
                                    "description": ""
                                },
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "184742",
                                    "description": "The bundler ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get Bundler information by internal ID\n\nThrottling: Max 40 requests per minute. (40\/1)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "40"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "35"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for Product not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "DELETE Bundler By ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/bundlers\/:idp",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/bundlers\/:idp",
                            "variable": [
                                {
                                    "id": "idp",
                                    "key": "idp",
                                    "value": "1",
                                    "description": ""
                                },
                                {
                                    "id": "productId",
                                    "key": "productId",
                                    "value": "",
                                    "description": "The product ID."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Delete Bundler by internal id\n\n<aside class=\"notice\">\n\nThe product ID will lose its ability to be a bundler and it's children will be removed. The product itself is not removed.\n\n<\/aside>\n\nThrottling: Max 40 requests per minute. (40\/1)"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for Product not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Bundler By EAN",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/bundlers\/byEan\/:ean",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/bundlers\/byEan\/:ean",
                            "variable": [
                                {
                                    "id": "ean",
                                    "key": "ean",
                                    "value": "4971850911118",
                                    "description": "The bundler EAN."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get Bundler information by its EAN (barcode)\n\nThis endpoint will return the first product found with the given param value!\n\nThrottling: Max 40 requests per minute. (40\/1)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "40"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "39"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for Product not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET Bundler By External ID",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/bundlers\/byExternalId\/:externalId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/bundlers\/byExternalId\/:externalId",
                            "variable": [
                                {
                                    "id": "externalId",
                                    "key": "externalId",
                                    "value": "105",
                                    "description": "The bundler External ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get Bundler information by its External ID\n\nThis endpoint will return the first product found with the given param value!\n\nThrottling: Max 40 requests per minute. (40\/1)"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "40"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "39"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for Product not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "ADD Product to bundler",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/bundlers\/:bundler_idp\/addProduct",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/bundlers\/:bundler_idp\/addProduct",
                            "variable": [
                                {
                                    "id": "bundler_idp",
                                    "key": "bundler_idp",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"productId\":\"184736\",\"productQuantity\":3,\"productPriority\":3}"
                        },
                        "description": "ADD a child product using the product internal ID to a bundler\n\n\nThrottling: Max 10 requests per minute. (10\/1)"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for Product not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "REMOVE Product from bundler",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/bundlers\/:bundler_idp\/removeProduct",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/bundlers\/:bundler_idp\/removeProduct",
                            "variable": [
                                {
                                    "id": "bundler_idp",
                                    "key": "bundler_idp",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"productId\":\"184736\"}"
                        },
                        "description": "REMOVE a child product using the product internal ID from a bundler\n\n\nThrottling: Max 10 requests per minute. (10\/1)"
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n\"success\":false,\"error\":{\"message\":\"Entry for Product not found\",\"code\":404}\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "API V1 - Campaigns",
            "description": "",
            "item": [
                {
                    "name": "List Campaigns",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/campaigns",
                            "query": [
                                {
                                    "key": "perPage",
                                    "value": "50",
                                    "description": "The number of results to return per page. Defaults to 200.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/campaigns?perPage=50"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieves a paginated list of all campaigns.\nRequires the `campaigns:viewAll` permission."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "10"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "9"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create Campaign",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/campaigns\/create",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/campaigns\/create"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"\\\"The winter sale\\\"\",\"externalCode\":\"\\\"the-winter-sale\\\"\"}"
                        },
                        "description": "Creates a new campaign entry. The `name` and `externalCode` must be unique.\nRequires the `campaigns:create` permission."
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "API V1 - Courier Status List",
            "description": "\nCourier Status List Endpoints\n\n<aside class=\"warning\">\n\nPlease read the following guidelines before implementing the following endpoints.\n\n<\/aside>\n\n- The information extracted from here is not 100% reliable and is susceptible to change!\n- The information found on <strong>courierStatusId<\/strong>, <strong>status<\/strong> and <strong>statusLong<\/strong> comes from what couriers provided to us at the time of integration development.\n- It is possible that the courier would change its internal status description, its internal code without any prior information!\n- For the orders that we try to retrieve the status of the AWBs from the courier, we will set the <strong>courierStatusId<\/strong> order field with the primary id from the GET All Courier Statuses Endpoint.",
            "item": [
                {
                    "name": "GET All Courier Statuses",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/couriers\/statusList",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/couriers\/statusList"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "List all internal courier statuses records.\n\nThrottling: Max 1 request per hour. (1\/60)\n\n<aside class=\"warning\">\n\nThis endpoint does not provide an undoubted clarification when a shipment status is TRULY delivered, returned, lost, or paid!\n<br>\nThis endpoint responsibility is only to present a bit more information about our internal courier status ID provided in the order, nothing more.\n\n<\/aside>\n\nInformation found on fields <strong>courierStatusId<\/strong>, <strong>status<\/strong> and <strong>statusLong<\/strong> come from couriers and might not be up-to-date.\n\n<strong>isFinal<\/strong> has only two values: YES,NO. The AWB number\/order that have a courier status id with <strong>isFinal = YES<\/strong> is considered final and will probably not be changed anymore.\n\nWe have knowledge on situations when couriers changed the status of a shipment even after they provided a final status!"
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "1"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "0"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "API V1 - Delete Event",
            "description": "\nDelete Event Endpoints\n\n<aside class=\"warning\">\n\nPlease read the following guidelines before implementing the following endpoints.\n\n<\/aside>\n\nThere are no delete event records BEFORE 23.05.2024!\n<br>\nThe <strong>order<\/strong> delete event records are different from the other sources.\n- A fully deleted order with 2 products will generate 2 delete event records and the internal product id will be found on <strong>sourceProductId<\/strong> with its corresponding quantity.\n- An order with 5 products from which two products were removed, will still exist (and can be shipped) with the 3 remaining products. The other two removed products will each create a delete event for that order.\n- The existence of an order delete event does not mean that the order has been fully removed.\n- The existence of an order\/product delete event with your <i>sourceExternalId<\/i> value does not mean that the order\/product was not <strong>recreated<\/strong> by an automatic behaviour under another <i>sourceInternalId<\/i> value.",
            "item": [
                {
                    "name": "GET Deleted Events by CreatedAt Date",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/deleteEvents\/createdAtDate",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Which page to show.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/deleteEvents\/createdAtDate?page=1"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"source\":\"product\",\"date\":\"2024-05-23\",\"perPage\":100}"
                        },
                        "description": "Returns a list with all deleted events filtered by the source and the provided date of creation.\n\nThrottling: Max 20 requests per hour. (20\/60)\n\nDefault page size : 250 records per page.\n\nPresents the result with page size and pagination."
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "API V1 - Multi Stock",
            "description": "",
            "item": [
                {
                    "name": "List Multi-Stocks",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/multiStocks",
                            "query": [
                                {
                                    "key": "perPage",
                                    "value": "50",
                                    "description": "The number of results to return per page. Defaults to 200.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/multiStocks?perPage=50"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieves a paginated list of all multi-stocks.\nRequires the `stock:all` and `multiStock:viewAll` permissions."
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "x-ratelimit-limit",
                                    "value": "10"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "9"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create Multi-Stock",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/multiStocks\/create",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/multiStocks\/create"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"\\\"Regional Warehouse\\\"\",\"external_id\":\"\\\"REG_WH_123\\\"\"}"
                        },
                        "description": "Creates a new multi-stock entry. The `name` and `external_id` must be unique.\nRequires the `stock:all` and `multiStock:create` permissions."
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Endpoints",
            "description": "",
            "item": [
                {
                    "name": "POST api\/v1\/connectors\/client\/custom\/products\/search",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/custom\/products\/search",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/custom\/products\/search"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/connectors\/client\/custom\/products\/create",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/custom\/products\/create",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/custom\/products\/create"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/connectors\/client\/custom\/orders\/byExternalId\/{externalId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/custom\/orders\/byExternalId\/:externalId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/custom\/orders\/byExternalId\/:externalId",
                            "variable": [
                                {
                                    "id": "externalId",
                                    "key": "externalId",
                                    "value": "recusandae",
                                    "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": "x-ratelimit-limit",
                                    "value": "30"
                                },
                                {
                                    "key": "x-ratelimit-remaining",
                                    "value": "29"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/connectors\/client\/custom\/orders\/create",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/connectors\/client\/custom\/orders\/create",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/connectors\/client\/custom\/orders\/create"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": []
                }
            ]
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "key",
                "type": "string"
            }
        ]
    }
}