{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "https:\/\/system.skladusa.com"
        }
    ],
    "info": {
        "name": "Api documentation for SKLAD USA",
        "_postman_id": "34fa1c53-6f19-4bcf-add7-4bb4ac497915",
        "description": "",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "Products",
            "description": "",
            "item": [
                {
                    "name": "Display a listing of the products.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/product",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/product"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n\"entities\": [\n  {\n     \"product\": {\n         \"id\": 85,\n         \"name\": \"Monica Panek\",\n         \"title\": \"Monica Panek\",\n         \"upc\": \"Monica Panek\",\n         \"sku\": \"Monica Panek2\",\n         \"productPacketType\": 0\n     }\n  },\n ..............................\n ]\n },\n\"status\": \"success\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified product resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/product\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/product\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "ut",
                                    "description": "The ID of the product."
                                },
                                {
                                    "id": "productId",
                                    "key": "productId",
                                    "value": "12",
                                    "description": "Product Id."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"data\": {\n     \"product\": {\n         \"id\": 85,\n         \"name\": \"Monica Panek\",\n         \"title\": \"Monica Panek\",\n         \"upc\": \"Monica Panek\",\n         \"sku\": \"Monica Panek2\",\n         \"productPacketType\": 0\n     }\n },\n \"status\": \"success\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store a newly created product.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/product",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/product"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"aut\",\"title\":\"fugit\",\"upc\":\"id\",\"sku\":\"non\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"data\": {\n     \"id\": 87\n },\n \"status\": \"success\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update the specified product resource in storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/product\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/product\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "molestiae",
                                    "description": "The ID of the product."
                                },
                                {
                                    "id": "productId",
                                    "key": "productId",
                                    "value": "3",
                                    "description": "Product Id."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"dolores\",\"title\":\"qui\",\"upc\":\"aut\",\"sku\":\"magni\",\"productPacketType\":false}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"data\": [\n     \"Somehow valid\"\n ],\n \"status\": \"success\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Proform Data",
            "description": "",
            "item": [
                {
                    "name": "Display a listing of the proform data.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/proforma-data\/category",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/proforma-data\/category",
                            "variable": [
                                {
                                    "id": "page",
                                    "key": "page",
                                    "value": "17",
                                    "description": "Current page default 1."
                                },
                                {
                                    "id": "numItemsPerPage",
                                    "key": "numItemsPerPage",
                                    "value": "5",
                                    "description": "Num Items Per Page by default 20 max per page 100"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n\"entities\": [\n{\n\"id\": 1,\n\"nameEn\": \"Mechanical parts and tools\",\n\"nameUa\": \"\u041c\u0435\u0445\u0430\u043d\u0456\u0447\u043d\u0456 \u0434\u0435\u0442\u0430\u043b\u0456 \u0442\u0430 \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438\",\n\"nameRu\": \"\u041c\u0435\u0445\u0430\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0447\u0430\u0441\u0442\u0438 \u0438 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b\",\n\"names\": [\n         {\n             \"id\": 328,\n             \"nameUa\": \"\u0406\u0413\u0420\u0410\u0428\u041a\u0410\",\n             \"nameEn\": \"TOY\",\n             \"nameRu\": \"\u0418\u0413\u0420\u0423\u0428\u041a\u0410\"\n         },\n         ............\n     ],\n     \"materials\": [\n         {\n             \"id\": 329,\n             \"nameUa\": \"\u0424\u0415\u0422\u0420\",\n             \"nameEn\": \"FELT\",\n             \"nameRu\": \"\u0444\u0435\u0442\u0440\"\n         },\n         .........\n     ],\n     \"for\": [\n         {\n         \"id\": 4,\n             \"nameUa\": \"\u0416\u0406\u041d\u041e\u0427\u0410\",\n             \"nameEn\": \"WOMENS\",\n             \"nameRu\": \"\u0416\u0435\u043d\u0441\u043a\u0430\u044f\"\n         },\n         .................\n     ],\n     \"subMaterials\": [\n         {\n         \"id\": 3,\n             \"nameUa\": \"\u0422\u041a\u0410\u041d\u0418\u0419 \",\n             \"nameEn\": \"WOVEN\",\n             \"nameRu\": \"\u0422\u041a\u0410\u041d\u0418\u0419 \"\n         },\n         ............\n     ]\n },\n  ......\n ],\n\"pagination\": {\n \"last\": 1,\n \"current\": 0,\n \"numItemsPerPage\": 10,\n \"first\": 1,\n \"pageCount\": 1,\n \"totalCount\": 7,\n \"pageRange\": 1,\n \"startPage\": 1,\n \"endPage\": 1,\n \"previous\": 0,\n \"next\": 1,\n \"pagesInRange\": [\n     1\n  ],\n \"firstPageInRange\": 1,\n \"lastPageInRange\": 1,\n \"currentItemCount\": 10,\n \"firstItemNumber\": 11,\n \"lastItemNumber\": 1\n }\n},\n\"status\": \"success\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified proform data resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/proforma-data\/category\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/proforma-data\/category\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "at",
                                    "description": "The ID of the category."
                                },
                                {
                                    "id": "categoryId",
                                    "key": "categoryId",
                                    "value": "13",
                                    "description": "Proform Category Data ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required   Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n\"entities\": [\n {\n \"id\": 4,\n \"nameEn\": \"Toys & Entertainment\",\n \"nameUa\": \"\u0406\u0433\u0440\u0430\u0448\u043a\u0438 \u0442\u0430 \u0440\u043e\u0437\u0432\u0430\u0433\u0438\",\n \"nameRu\": \"\u0418\u0433\u0440\u0443\u0448\u043a\u0438 \u0438 \u0440\u0430\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u044f\",\n \"names\": [\n    {\n        \"id\": 328,\n        \"nameUa\": \"\u0406\u0413\u0420\u0410\u0428\u041a\u0410\",\n        \"nameEn\": \"TOY\",\n        \"nameRu\": \"\u0418\u0413\u0420\u0423\u0428\u041a\u0410\"\n    },\n    ...........\n ],\n \"materials\": [\n   {\n       \"id\": 329,\n       \"nameUa\": \"\u0424\u0415\u0422\u0420\",\n       \"nameEn\": \"FELT\",\n       \"nameRu\": \"\u0444\u0435\u0442\u0440\"\n   },\n   .............\n ],\n \"for\": [\n   {\n   \"id\": 4,\n       \"nameUa\": \"\u0416\u0406\u041d\u041e\u0427\u0410\",\n       \"nameEn\": \"WOMENS\",\n       \"nameRu\": \"\u0416\u0435\u043d\u0441\u043a\u0430\u044f\"\n   },\n ],\n \"subMaterials\": [\n  {\n      \"id\": 330,\n      \"nameUa\": \"\u0422\u041a\u0410\u041d\u0418\u0419 \",\n      \"nameEn\": \"WOVEN\",\n      \"nameRu\": \"\u0422\u041a\u0410\u041d\u042b\u0419\"\n  },\n  ..........\n ]\n }\n]\n},\n\"status\": \"success\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Search Hs Code by proform options (name_id, material_id)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/proforma-data\/hs-code",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/proforma-data\/hs-code"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required   Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"nameId\":15,\"materialId\":17}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"data\": {\n     \"hsCode\": \"oo1430NSOVmFUieS\"\n },\n \"status\": \"success\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Key Crm",
            "description": "",
            "item": [
                {
                    "name": "Prepare order data for Key Crm.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/key-crm\/create-order",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/key-crm\/create-order",
                            "variable": [
                                {
                                    "id": "orderType",
                                    "key": "orderType",
                                    "value": "aspernatur",
                                    "description": "set orderType one from list consolidation, self:create, sklad:create set consolidation if empty."
                                },
                                {
                                    "id": "transaction",
                                    "key": "transaction",
                                    "value": "ea",
                                    "description": "transaction number."
                                },
                                {
                                    "id": "etsy",
                                    "key": "etsy",
                                    "value": "sit",
                                    "description": "etsy order id."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"status\": \"success\",\n \"request\": {\n     \"receiverName\": \"John Smith\",\n     \"receiverEmail\": \"support@skladusa.com\",\n     \"receiverPhone\": \"+380 971112233\",\n     \"receiverAddress\": \"\u0432\u0443\u043b\u0438\u0446\u044f \u041f\u0435\u0440\u0435\u043c\u043e\u0433\u0438\",\n     \"receiverCity\": \"\u0416\u0438\u0442\u043e\u043c\u0438\u0440\",\n     \"receiverZip\": \"10000\",\n     \"receiverState\": \"\u0416\u0438\u0442\u043e\u043c\u0438\u0440\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c\",\n     \"receiverCountry\": null,\n     \"weightLb\": null,\n     \"weightOz\": null,\n     \"length\": null,\n     \"width\": null,\n     \"height\": null,\n     \"comment\": null,\n     \"insurancesStatus\": null,\n     \"insurances\": null,\n     \"externalId\": null,\n     \"apiShipMethod\": null,\n     \"packagingId\": null,\n     \"consolidationOrder\": true,\n     \"skladCreateLabel\": false,\n     \"userPackType\": null,\n     \"productsData\": null,\n     \"productsConsolidationData\": [\n         {\n             \"descrEn\": \"test listing\",\n             \"count\": 1\n         }\n     ],\n     \"transactionId\": 24234\n },\n \"order\": {\n     \"id\": 584,\n     \"receiverName\": \"John Smith\",\n     \"createdAtStr\": \"2022-05-24 15:30:17\",\n     \"receiverEmail\": \"support@skladusa.com\",\n     \"receiverAddress\": \"1630 91ST AVE NE STE 180\",\n     \"receiverCity\": \"Blaine\",\n     \"receiverZip\": \"55449\",\n     \"receiverState\": \"MN\",\n     \"receiverCountry\": \"United States\",\n     \"receiverPhone\": \"101010\",\n     \"comment\": null,\n     \"weightLb\": 0,\n     \"weightOz\": 2,\n     \"length\": null,\n     \"width\": 2,\n     \"height\": null,\n     \"consolidationOrder\": false,\n     \"skladCreateLabel\": false,\n     \"shipDate\": {\n         \"date\": \"2022-05-24 13:38:40.000000\",\n         \"timezone_type\": 3,\n         \"timezone\": \"Europe\/Kiev\"\n     },\n     \"shippingCosts\": \"3.37\",\n     \"insurancesStatus\": true,\n     \"insurances\": \"0.2\",\n     \"externalId\": null,\n     \"apiShipMethod\": \"1_1\",\n     \"packagingId\": 18,\n     \"userPackType\": \"pack1\",\n     \"status\": null,\n     \"vatTaxId\": 641,\n     \"transactionId\": 24234,\n     \"productsData\": [\n         {\n         \"productData\": {\n             \"count\": 1,\n             \"product\": 1548\n         }\n     }\n     ],\n     \"productsConsolidationData\": []\n },\n \"transactionInfo\": {\n     \"gross\": 2,\n     \"ppFee\": 0.38,\n     \"skladUsaFee\": 0.03,\n     \"sum\": 1.59\n }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Rate List for Key Crm",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/key-crm\/rate\/list",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/key-crm\/rate\/list"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"senderCountryCode\":\"nihil\",\"length\":\"nam\",\"height\":\"ut\",\"width\":\"voluptas\",\"weight\":\"iste\",\"countryCode\":\"tempora\",\"stateCode\":\"laudantium\",\"zipCode\":\"ex\",\"city\":\"quaerat\",\"clientPayPal\":\"deserunt\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"status\": \"success\",\n\"data\": {\n \"case\": {\n     \"fromCountry\": \"Ukraine\",\n     \"fromCountryCode\": \"UA\",\n     \"toCountry\": \"Germany\",\n     \"toCountryCode\": \"DE\",\n     \"stateCode\": null,\n     \"zipCode\": \"10179\",\n     \"city\": \"Berlin\",\n     \"weight\": \"1\",\n     \"length\": \"1\",\n     \"width\": \"1\",\n     \"height\": \"1\",\n     \"clientPayPal\": true\n },\n \"shippingPrices\": [\n     {\n         \"type\": \"consolidation\",\n         \"consolidation_type\": \"consolidation\",\n         \"system_key\": \"DHLExpress\",\n         \"currency\": \"USD\",\n         \"description\": \"DHLExpress, ExpressWorldwideNonDoc Parcel\",\n         \"costs\": {\n             \"price\": \"37.16\",\n             \"fee\": 2\n         },\n         \"apiShipMethod\": \"ExpressWorldwideNonDoc\"\n     },\n     {\n         \"type\": \"consolidation\",\n         \"consolidation_type\": \"consolidation\",\n         \"system_key\": \"APC\",\n         \"currency\": \"USD\",\n         \"description\": \"Parcel Priority Delcon\",\n         \"costs\": {\n             \"price\": \"26.39\",\n             \"fee\": 2\n         },\n         \"apiShipMethod\": \"parcelConnectPriorityDDUDelcon\"\n     },\n     {\n         \"type\": \"consolidation\",\n         \"consolidation_type\": \"consolidation\",\n         \"system_key\": \"DPD\",\n         \"currency\": \"USD\",\n         \"description\": \"DPD\",\n         \"costs\": {\n             \"price\": \"22.40\",\n             \"fee\": 2\n         },\n         \"apiShipMethod\": \"9_7\"\n     }\n ]\n }\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Transactions",
            "description": "",
            "item": [
                {
                    "name": "Display a listing of the user transactions.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/transactions",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/transactions",
                            "variable": [
                                {
                                    "id": "page",
                                    "key": "page",
                                    "value": "2",
                                    "description": "Current page default 1."
                                },
                                {
                                    "id": "numItemsPerPage",
                                    "key": "numItemsPerPage",
                                    "value": "8",
                                    "description": "Num Items Per Page by default 20 max per page 100"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n \"entities\": [\n {\n \"transaction\": {\n     \"id\": 125050,\n     \"orderId\": null,\n     \"shopName\": \"UkiTreasures\",\n     \"createdAt\": \"2021-05-04 15:21:22\",\n     \"number\": \"7022037960438191Y\",\n     \"payedUserName\": \"Meredith Zoul\",\n     \"payedUserEmail\": \"mlzoulosu@gmail.com\",\n     \"addressPart\": \"365 S Roys Ave\",\n     \"totalSum\": \"85.99\",\n     \"tax\": \"6.00\",\n     \"interimSum\": \"77.71\",\n     \"commission\": \"2.28\",\n     \"deductionForUserBonus\": 0,\n     \"deductionForSystem\": \"2.33\",\n     \"sum\": \"75.38\",\n     \"noteText\": null,\n     \"country\": \"United States\",\n     \"userPhone\": \"330-671-7480\",\n     \"userState\": \"OH\",\n     \"zip\": \"43204\",\n     \"city\": \"Columbus\",\n     \"paymentStatus\": \"Completed\",\n     \"description\": \"Item #644068700 - SIMPSONS PORTRAIT on the couch, simpsons family portrait, Simpson couple portrait, cartoon portrait, simpsons couch, turn photo $79.99 (1 pc)\"\n   }\n  }\n ],\n \"pagination\": {\n     \"last\": 329,\n     \"current\": 2,\n     \"numItemsPerPage\": \"1\",\n     \"first\": 1,\n     \"pageCount\": 329,\n     \"totalCount\": 329,\n     \"pageRange\": 329,\n     \"startPage\": 1,\n     \"endPage\": 329,\n     \"previous\": 1,\n     \"next\": 3,\n     \"pagesInRange\": [\n         1,\n         2,\n         3,\n         4,\n     ],\n     \"firstPageInRange\": 1,\n     \"lastPageInRange\": 329,\n     \"currentItemCount\": \"1\",\n     \"firstItemNumber\": 2,\n     \"lastItemNumber\": 2\n  }\n },\n \"status\": \"success\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified transaction.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/transactions\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/transactions\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "3",
                                    "description": "Transaction Id."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n\"transaction\": {\n     \"id\": 125050,\n     \"orderId\": null,\n     \"shopName\": \"UkiTreasures\",\n     \"createdAt\": \"2021-05-04 15:21:22\",\n     \"number\": \"7004437960438191Y\",\n     \"payedUserName\": \"Meredith Zoul\",\n     \"payedUserEmail\": \"mlzoulosu@gmail.com\",\n     \"addressPart\": \"365 S Roys Ave\",\n     \"totalSum\": \"85.99\",\n     \"tax\": \"6.00\",\n     \"interimSum\": \"77.71\",\n     \"commission\": \"2.28\",\n     \"deductionForUserBonus\": 0,\n     \"deductionForSystem\": \"2.33\",\n     \"sum\": \"75.38\",\n     \"itemNumber\": {},\n     \"noteText\": null,\n     \"country\": \"United States\",\n     \"userPhone\": \"330-671-7480\",\n     \"userState\": \"OH\",\n     \"zip\": \"43204\",\n     \"city\": \"Columbus\",\n     \"paymentStatus\": \"Completed\",\n     \"description\": \"Item #644068700 - SIMPSONS PORTRAIT on the couch, simpsons family portrait, Simpson couple portrait, cartoon portrait, simpsons couch, turn photo $79.99 (1 pc)\"\n }\n},\n \"status\": \"success\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Send tracking number to payment system",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/transactions\/:id\/update-tracking-number",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/transactions\/:id\/update-tracking-number",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "id",
                                    "description": "The ID of the transaction."
                                },
                                {
                                    "id": "transactionId",
                                    "key": "transactionId",
                                    "value": "19",
                                    "description": "required. Payment transaction id."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"tracking-number\":\"necessitatibus\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"status\": \"ok\",\n \"message\": \"tracking-number send to transaction\",\n \"pay-system-status\": \"success\",\n \"pay-system-message\": \"send to pay system\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Prepare form for creating order from payment transaction",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/transactions\/:id\/create-order",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/transactions\/:id\/create-order",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "eum",
                                    "description": "The ID of the transaction."
                                },
                                {
                                    "id": "transactionId",
                                    "key": "transactionId",
                                    "value": "2",
                                    "description": "required. Payment transaction id."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"status\": \"success\",\n \"request\": {\n     \"receiverName\": \"Meredith Zoul\",\n     \"receiverEmail\": \"mlzoulosu@gmail.com\",\n     \"receiverPhone\": \"330-671-7480\",\n     \"receiverAddress\": \"365 S Roys Ave\",\n     \"receiverCity\": \"Columbus\",\n     \"receiverZip\": \"43204\",\n     \"receiverState\": \"OH\",\n     \"receiverCountry\": \"United States\",\n     \"weightLb\": null,\n     \"weightOz\": null,\n     \"length\": null,\n     \"width\": null,\n     \"height\": null,\n     \"comment\": null,\n     \"insurancesStatus\": null,\n     \"insurances\": null,\n     \"externalId\": null,\n     \"apiShipMethod\": null,\n     \"packagingId\": null,\n     \"consolidationOrder\": true,\n     \"skladCreateLabel\": true,\n     \"userPackType\": null,\n     \"transactionId\": 125050,\n     \"productsData\": null,\n     \"productsConsolidationData\": null\n },\n \"order\": null\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Orders FBM",
            "description": "",
            "item": [
                {
                    "name": "Display a listing of the order fbm data.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/order",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/order",
                            "variable": [
                                {
                                    "id": "page",
                                    "key": "page",
                                    "value": "11",
                                    "description": "Current page default 1."
                                },
                                {
                                    "id": "numItemsPerPage",
                                    "key": "numItemsPerPage",
                                    "value": "8",
                                    "description": "Num Items Per Page by default 20 max per page 100"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n\"entities\": [\n \"order\": {\n     \"id\": 143,\n     \"receiverName\": \"receiverName\",\n     \"recipientCompanyName\": \"recipientCompanyName\",\n     \"createdAtStr\": \"2022-05-05 13:58:38\",\n     \"receiverEmail\": \"receiverEmail@sdddd.dd\",\n     \"receiverAddress\": \"receiver Address line 1\",\n     \"receiverAddress1\": \"receiver Address line 2\"\n     \"receiverCity\": \"receiverCity\",\n     \"receiverZip\": \"receiverZip\",\n     \"receiverState\": \"receiverState\",\n     \"receiverCountry\": \"Ukraine\",\n     \"receiverPhone\": \"0989701676\",\n     \"comment\": null,\n     \"weightLb\": 11,\n     \"weightOz\": 4,\n     \"length\": 20,\n     \"width\": 180,\n     \"height\": 20,\n     \"consolidationOrder\": false,\n     \"skladCreateLabel\": true,\n     \"skladusaTrackingNumber\": \"SK11111111111UA\",\n     \"shipDate\": {\n         \"date\": \"2022-05-06 12:23:30.698958\",\n         \"timezone_type\": 3,\n         \"timezone\": \"Europe\/Kiev\"\n     },\n     \"shippingCosts\": null,\n     \"insurancesStatus\": false,\n     \"insurances\": null,\n     \"externalId\": \"1988820690\",\n     \"apiShipMethod\": \"1_1\",\n     \"packagingId\": null,\n     \"userPackType\": \"pack1\",\n     \"status\": null,\n     \"vatTaxId\": 81,\n     \"transactionId\": null,\n     \"productsData\": [],\n     \"storageId\": 1,\n     \"productsConsolidationData\": {\n     \"content\": [\n         {\n             \"forSelectedId\": 4,\n             \"forSelectedEn\": \"WOMENS\",\n             \"forSelectedUa\": \"\u0416\u0406\u041d\u041e\u0427\u0410\",\n             \"forSelectedRu\": \"\u0416\u0435\u043d\u0441\u043a\u0430\u044f\",\n             \"nameId\": 328,\n             \"nameEn\": \"TOY\",\n             \"nameUa\": \"\u0406\u0413\u0420\u0410\u0428\u041a\u0410\",\n             \"nameRu\": \"\u0418\u0413\u0420\u0423\u0428\u041a\u0410\",\n             \"materialId\": 329,\n             \"materialEn\": \"FELT\",\n             \"materialUa\": \"\u0424\u0415\u0422\u0420\",\n             \"materialRu\": \"\u0444\u0435\u0442\u0440\",\n             \"subMaterialId\": 330,\n             \"subMaterialEn\": \"WOVEN\",\n             \"subMaterialUa\": \"\u0422\u041a\u0410\u041d\u0418\u0419 \",\n             \"subMaterialRu\": \"\u0422\u041a\u0410\u041d\u042b\u0419\",\n             \"categoryId\": 8,\n             \"categoryName\": \"Clothes & woven decor\",\n             \"count\": 1\n         },\n         {\n             \"forSelectedId\": 4,\n             \"forSelectedEn\": \"WOMENS\",\n             \"forSelectedUa\": \"\u0416\u0406\u041d\u041e\u0427\u0410\",\n             \"forSelectedRu\": \"\u0416\u0435\u043d\u0441\u043a\u0430\u044f\",\n             \"nameId\": 331,\n             \"nameEn\": \"KNITTED WOVEN TOY\",\n             \"nameUa\": \"\u0406\u0413\u0420\u0410\u0428\u041a\u0410 \u0412'\u042f\u0417\u0410\u041d\u0410 \",\n             \"nameRu\": \"\u0418\u0413\u0420\u0423\u0428\u041a\u0410 \u0432\u044f\u0437\u0430\u043d\u043d\u0430\u044f\",\n             \"materialId\": 332,\n             \"materialEn\": \"COTTON\",\n             \"materialUa\": \"\u0411\u0410\u0412\u041e\u0412\u041d\u0410\",\n             \"materialRu\": \"\u0425\u043b\u043e\u043f\u043e\u043a\",\n             \"subMaterialId\": 333,\n             \"subMaterialEn\": \"EMBROIDERED\",\n             \"subMaterialUa\": \"\u0412\u0418\u0428\u0418\u0422\u0418\u0419\",\n             \"subMaterialRu\": \"\u0432\u044b\u0448\u0438\u0442\u044b\u0439\",\n             \"categoryId\": 8,\n             \"categoryName\": \"Clothes & woven decor\",\n             \"count\": 2\n         }\n      ]\n    },\n  \"sendFrom\": {\n         \"first_name\": \"test firstnam112222e\",\n         \"last_name\": \"test lastname11\",\n         \"company_name\": \"test companynam11e\",\n         \"full_name\": \"test firstnam112222e test lastname11\",\n         \"label\": \"test firstnam112222e test lastname11 test companynam11e\"\n         },\n  \"sendFromId\": \"9\"\n     },\n }\n ............\n ]\n}\n],\n\"pagination\": {\n \"last\": 2,\n \"current\": 0,\n \"numItemsPerPage\": 10,\n \"first\": 1,\n \"pageCount\": 2,\n \"totalCount\": 19,\n \"pageRange\": 2,\n \"startPage\": 1,\n \"endPage\": 2,\n \"previous\": 0,\n \"next\": 1,\n \"pagesInRange\": [\n     1,\n     2\n ],\n \"firstPageInRange\": 1,\n \"lastPageInRange\": 2,\n \"currentItemCount\": 10,\n \"firstItemNumber\": 11,\n \"lastItemNumber\": 2\n }\n},\n\"status\": \"success\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display example of the order fbm body response.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/order\/example",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/order\/example"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"receiverName\": \"Carol Ann Dayton\",\n \"createdAtStr\": \"2018-10-08 07:30:46\",\n \"receiverEmail\": \"carolann11@charter.net\",\n \"receiverAddress\": \"Carol Ann Dayton, United States, NC, 28752, Marion, 36 Katydid Drive,\",\n \"receiverAddress1\": \"receiver Address line 2\",\n \"receiverCity\": \"Marion\",\n \"receiverZip\": \"28752\",\n \"receiverState\": \"Marion\",\n \"receiverCountry\": \"US\",\n \"receiverPhone\": \"Marion\",\n \"comment\": \"\",\n \"weightLb\": \"\",\n \"weightOz\": \"\",\n \"length\": \"\",\n \"width\": \"\",\n \"height\": \"\",\n \"consolidationOrder\": 1,\n \"skladCreateLabel\": 0,\n \"productsConsolidationData\": [\n     {\n         \"descrEn\": \"Product One\",\n         \"count\": \"2\"\n     },\n     {\n         \"descrEn\": \"Product Two\",\n         \"count\": \"3\"\n     }\n ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display a listing of the shipping methods.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/shipping-method",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/shipping-method"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n \"entities\": [\n     {\n         \"name\": \"USPS\",\n         \"id\": \"1_1\",\n         \"forUSA\": \"Yes\",\n         \"forNonUSA\": \"No\"\n     },\n     {\n         \"name\": \"USPS International (14-21 days)\",\n         \"id\": \"2_2\",\n         \"forUSA\": \"No\",\n         \"forNonUSA\": \"Yes\"\n     },\n     {\n         \"name\": \"FedEx Ground\",\n         \"id\": \"3_3\",\n         \"forUSA\": \"Yes\",\n         \"forNonUSA\": \"No\"\n     },\n     {\n         \"name\": \"FedEx Overnight\",\n         \"id\": \"4_3\",\n         \"forUSA\": \"Yes\",\n         \"forNonUSA\": \"No\"\n     },\n     {\n         \"name\": \"FedEx 2-Day Air\",\n         \"id\": \"5_3\",\n         \"forUSA\": \"Yes\",\n         \"forNonUSA\": \"No\"\n     },\n     {\n         \"name\": \"FedEx Ground Economy\",\n         \"id\": \"6_3\",\n         \"forUSA\": \"Yes\",\n         \"forNonUSA\": \"No\"\n     },\n     {\n         \"name\": \"DHL Worldwide\",\n         \"id\": \"7_5\",\n         \"forUSA\": \"No\",\n         \"forNonUSA\": \"Yes\"\n     },\n     {\n         \"name\": \"Parcel Priority Delcon(10-15 days)\",\n         \"id\": \"8_6\",\n         \"forUSA\": \"No\",\n         \"forNonUSA\": \"Yes\"\n     },\n     {\n         \"name\": \"DPD.cz\",\n         \"id\": \"9_7\",\n         \"forUSA\": \"No\",\n         \"forNonUSA\": \"Yes\"\n     }\n ]\n},\n\"status\": \"success\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the delivery methods for order fbm resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/order\/:id\/get-delivery-methods",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/order\/:id\/get-delivery-methods",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "sunt",
                                    "description": "The ID of the order."
                                },
                                {
                                    "id": "orderFbmId",
                                    "key": "orderFbmId",
                                    "value": "20",
                                    "description": "Order Id."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required   Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"status\": \"success\",\n \"data\": [\n     {\n         \"serviceName\": \"USPS, Priority Mail\",\n         \"serviceId\": \"USPS:Priority:Parcel\",\n         \"shippingCosts\": \"9.01\"\n     }\n ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display a listing of the packing types.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/user-pack-type",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/user-pack-type"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n {\n     \"id\": \"pack1\",\n     \"name\": \"\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442 \u0441\u043a\u043b\u0430\u0434\"\n },\n {\n     \"id\": \"pack2\",\n     \"name\": \"\u041f\u0430\u043a\u0435\u0442\"\n },\n {\n     \"id\": \"pack3\",\n     \"name\": \"\u041f\u0443\u0437\u044b\u0440\u0447\u0430\u0442\u044b\u0439 \u043f\u0430\u043a\u0435\u0442\"\n },\n {\n     \"id\": \"pack4\",\n     \"name\": \"\u041a\u043e\u0440\u043e\u0431\u043a\u0430\"\n },\n {\n     \"id\": \"pack5\",\n     \"name\": \"\u041f\u043e\u0434\u0430\u0440\u043e\u0447\u043d\u044b\u0439 \u043f\u0430\u043a\u0435\u0442\"\n }\n],\n\"status\": \"success\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get packing type price list for order.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/packaging-type",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/packaging-type"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n\"entities\": [\n     {\n         \"id\": 7,\n         \"name\": \"$0 [Don't need extra packaging]\"\n     },\n     {\n         \"id\": 1,\n         \"name\": \"$0.05 [Small Poly 15x21]\"\n     },\n     {\n         \"id\": 2,\n         \"name\": \"$0.1 [Medium Poly 24x32]\"\n     },\n     {\n         \"id\": 3,\n         \"name\": \"$0.2 [Large Poly 30x40 - Medium Bubbles 23x18]\"\n     },\n     {\n         \"id\": 4,\n         \"name\": \"$0.5 [MD Bubble - XL Poly - Small Box  16x16x11 - 3.5 oz]\"\n     },\n     {\n         \"id\": 6,\n         \"name\": \"$0.5 [Large Bubbles 40x30 1oz - Medium Box 20x20x10 4 oz]\"\n     },\n     {\n         \"id\": 10,\n         \"name\": \"$0.75 [Box 25 x 20 x 8 - 3oz]\"\n     },\n     {\n         \"id\": 11,\n         \"name\": \"$1 [Tubus 79x5 - 6oz\/Tubus 79x5 - 6oz\/Large Box 23x23x10 - 7oz]\"\n     },\n     {\n         \"id\": 15,\n         \"name\": \"$1.5 [X-Large Box 38x25x13 - 9oz]\"\n     },\n     {\n         \"id\": 12,\n         \"name\": \"$2 [Long Box - 70x14x14 11oz]\"\n     },\n     {\n         \"id\": 13,\n         \"name\": \"$2 [Gift Bag 15x40x30 - $2.00]\"\n     }\n ]\n},\n\"status\": \"success\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified order fbm resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/order\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/order\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "iste",
                                    "description": "The ID of the order."
                                },
                                {
                                    "id": "orderFbmId",
                                    "key": "orderFbmId",
                                    "value": "20",
                                    "description": "Order Id."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required   Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n {\n \"order\": {\n     \"id\": 143,\n     \"receiverName\": \"receiverName\",\n     \"recipientCompanyName\": \"recipientCompanyName\",\n     \"createdAtStr\": \"2022-05-05 13:58:38\",\n     \"receiverEmail\": \"receiverEmail@sdddd.dd\",\n     \"receiverAddress\": \"receiverAddress\",\n     \"receiverAddress1\": \"receiver Address line 2\",\n     \"receiverCity\": \"receiverCity\",\n     \"receiverZip\": \"receiverZip\",\n     \"receiverState\": \"receiverState\",\n     \"receiverCountry\": \"Ukraine\",\n     \"receiverPhone\": \"0989701676\",\n     \"comment\": null,\n     \"weightLb\": 11,\n     \"weightOz\": 4,\n     \"length\": 20,\n     \"width\": 180,\n     \"height\": 20,\n     \"consolidationOrder\": false,\n     \"skladCreateLabel\": true,\n     \"skladusaTrackingNumber\": \"SK11111111111UA\",\n     \"shipDate\": {\n         \"date\": \"2022-05-06 12:23:30.698958\",\n         \"timezone_type\": 3,\n         \"timezone\": \"Europe\/Kiev\"\n     },\n     \"shippingCosts\": null,\n     \"insurancesStatus\": false,\n     \"insurances\": null,\n     \"externalId\": \"1988820690\",\n     \"apiShipMethod\": \"1_1\",\n     \"packagingId\": null,\n     \"userPackType\": \"pack1\",\n     \"status\": null,\n     \"vatTaxId\": 81,\n     \"transactionId\": null,\n     \"storageId\": 1,\n     \"productsData\": [],\n     \"productsConsolidationData\": {\n     \"content\": [\n         {\n             \"forSelectedId\": 4,\n             \"forSelectedEn\": \"WOMENS\",\n             \"forSelectedUa\": \"\u0416\u0406\u041d\u041e\u0427\u0410\",\n             \"forSelectedRu\": \"\u0416\u0435\u043d\u0441\u043a\u0430\u044f\",\n             \"nameId\": 328,\n             \"nameEn\": \"TOY\",\n             \"nameUa\": \"\u0406\u0413\u0420\u0410\u0428\u041a\u0410\",\n             \"nameRu\": \"\u0418\u0413\u0420\u0423\u0428\u041a\u0410\",\n             \"materialId\": 329,\n             \"materialEn\": \"FELT\",\n             \"materialUa\": \"\u0424\u0415\u0422\u0420\",\n             \"materialRu\": \"\u0444\u0435\u0442\u0440\",\n             \"subMaterialId\": 330,\n             \"subMaterialEn\": \"WOVEN\",\n             \"subMaterialUa\": \"\u0422\u041a\u0410\u041d\u0418\u0419 \",\n             \"subMaterialRu\": \"\u0422\u041a\u0410\u041d\u042b\u0419\",\n             \"categoryId\": 8,\n             \"categoryName\": \"Clothes & woven decor\",\n             \"count\": 1\n         },\n         {\n             \"forSelectedId\": 4,\n             \"forSelectedEn\": \"WOMENS\",\n             \"forSelectedUa\": \"\u0416\u0406\u041d\u041e\u0427\u0410\",\n             \"forSelectedRu\": \"\u0416\u0435\u043d\u0441\u043a\u0430\u044f\",\n             \"nameId\": 331,\n             \"nameEn\": \"KNITTED WOVEN TOY\",\n             \"nameUa\": \"\u0406\u0413\u0420\u0410\u0428\u041a\u0410 \u0412'\u042f\u0417\u0410\u041d\u0410 \",\n             \"nameRu\": \"\u0418\u0413\u0420\u0423\u0428\u041a\u0410 \u0432\u044f\u0437\u0430\u043d\u043d\u0430\u044f\",\n             \"materialId\": 332,\n             \"materialEn\": \"COTTON\",\n             \"materialUa\": \"\u0411\u0410\u0412\u041e\u0412\u041d\u0410\",\n             \"materialRu\": \"\u0425\u043b\u043e\u043f\u043e\u043a\",\n             \"subMaterialId\": 333,\n             \"subMaterialEn\": \"EMBROIDERED\",\n             \"subMaterialUa\": \"\u0412\u0418\u0428\u0418\u0422\u0418\u0419\",\n             \"subMaterialRu\": \"\u0432\u044b\u0448\u0438\u0442\u044b\u0439\",\n             \"categoryId\": 8,\n             \"categoryName\": \"Clothes & woven decor\",\n             \"count\": 2\n         }\n      ]\n    }\n }\n \"status\": \"success\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get tracking history by order id.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/order\/:id\/track",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/order\/:id\/track",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "consequatur",
                                    "description": "The ID of the order."
                                },
                                {
                                    "id": "orderFbmId",
                                    "key": "orderFbmId",
                                    "value": "19",
                                    "description": "Order Id."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n \"message\": \"Delivered\",\n \"history\": [\n     \"Shipping Label Created, USPS Awaiting Item 2021-12-10 14:38:00\",\n     \"Accepted at USPS Origin Facility 2021-12-22 20:25:00\",\n     \"Arrived at USPS Origin Facility 2021-12-22 21:40:00\",\n     \"Departed USPS Origin Facility 2021-12-22 21:52:00\",\n     \"Arrived at USPS Regional Origin Facility 2021-12-24 22:07:00\",\n     \"In Transit to Next Facility 2021-12-28 00:00:00\",\n     \"Arrived at USPS Regional Destination Facility 2021-12-29 15:27:00\",\n     \"Departed USPS Regional Facility 2021-12-30 03:07:00\",\n     \"Arrived at USPS Facility 2021-12-30 04:03:00\",\n     \"Arrived at Post Office 2021-12-30 04:36:00\",\n     \"Out for Delivery 2021-12-30 06:10:00\",\n     \"Delivered, In\/At Mailbox 2021-12-30 13:58:00\"\n ],\n \"trackingNumber\": \"9400136109361359102933\"\n },\n\"status\": \"success\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store the specified order fbm resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/order",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/order"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"receiverName\":\"dicta\",\"recipientCompanyName\":\"quae\",\"receiverEmail\":\"lola51@example.org\",\"receiverPhone\":\"harum\",\"receiverAddress\":\"eveniet\",\"receiverAddress1\":\"praesentium\",\"receiverCity\":\"porro\",\"receiverZip\":\"sed\",\"receiverState\":\"consequuntur\",\"receiverCountry\":\"rem\",\"storageId\":13,\"weightLb\":\"ut\",\"weightOz\":\"sit\",\"length\":\"culpa\",\"width\":\"suscipit\",\"height\":\"aperiam\",\"comment\":\"temporibus\",\"vatTaxId\":\"voluptatem\",\"insurancesStatus\":false,\"insurances\":\"libero\",\"transactionId\":11.98417124,\"externalId\":\"sint\",\"apiShipMethod\":\"perferendis\",\"packagingId\":\"et\",\"consolidationOrder\":\"ut\",\"skladCreateLabel\":\"quas\",\"userPackType\":\"aut\",\"productsConsolidationData\":\"distinctio\",\"sendFromId\":\"iusto\",\"productsData\":[{\"product\":\"2321\",\"hsCode\":\"324325SDA.001\",\"price\":\"3.09\",\"description\":\"Product description text for int.\",\"count\":\"2\"}]}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n {\n \"order\": {\n     \"id\": 143,\n     \"receiverName\": \"receiverName\",\n     \"recipientCompanyName\": \"recipientCompanyName\",\n     \"createdAtStr\": \"2022-05-05 13:58:38\",\n     \"receiverEmail\": \"receiverEmail@sdddd.dd\",\n     \"receiverAddress\": \"receiverAddress\",\n     \"receiverCity\": \"receiverCity\",\n     \"receiverZip\": \"receiverZip\",\n     \"receiverState\": \"receiverState\",\n     \"receiverCountry\": \"Ukraine\",\n     \"receiverPhone\": \"0989701676\",\n     \"comment\": null,\n     \"weightLb\": 11,\n     \"weightOz\": 4,\n     \"length\": 20,\n     \"width\": 180,\n     \"height\": 20,\n     \"consolidationOrder\": false,\n     \"skladCreateLabel\": true,\n     \"skladusaTrackingNumber\": \"SK11111111111UA\",\n     \"shipDate\": {\n         \"date\": \"2022-05-06 12:23:30.698958\",\n         \"timezone_type\": 3,\n         \"timezone\": \"Europe\/Kiev\"\n     },\n     \"shippingCosts\": null,\n     \"insurancesStatus\": false,\n     \"insurances\": null,\n     \"externalId\": \"1988820690\",\n     \"storageId\" : 1,\n     \"apiShipMethod\": \"1_1\",\n     \"packagingId\": null,\n     \"userPackType\": \"pack1\",\n     \"status\": null,\n     \"vatTaxId\": 81,\n     \"transactionId\": null,\n     \"productsData\": [],\n     \"productsConsolidationData\": {\n     \"content\": [\n         {\n             \"forSelectedId\": 4,\n             \"forSelectedEn\": \"WOMENS\",\n             \"forSelectedUa\": \"\u0416\u0406\u041d\u041e\u0427\u0410\",\n             \"forSelectedRu\": \"\u0416\u0435\u043d\u0441\u043a\u0430\u044f\",\n             \"nameId\": 328,\n             \"nameEn\": \"TOY\",\n             \"nameUa\": \"\u0406\u0413\u0420\u0410\u0428\u041a\u0410\",\n             \"nameRu\": \"\u0418\u0413\u0420\u0423\u0428\u041a\u0410\",\n             \"materialId\": 329,\n             \"materialEn\": \"FELT\",\n             \"materialUa\": \"\u0424\u0415\u0422\u0420\",\n             \"materialRu\": \"\u0444\u0435\u0442\u0440\",\n             \"subMaterialId\": 330,\n             \"subMaterialEn\": \"WOVEN\",\n             \"subMaterialUa\": \"\u0422\u041a\u0410\u041d\u0418\u0419 \",\n             \"subMaterialRu\": \"\u0422\u041a\u0410\u041d\u042b\u0419\",\n             \"categoryId\": 8,\n             \"categoryName\": \"Clothes & woven decor\",\n             \"count\": 1\n         },\n         {\n             \"forSelectedId\": 4,\n             \"forSelectedEn\": \"WOMENS\",\n             \"forSelectedUa\": \"\u0416\u0406\u041d\u041e\u0427\u0410\",\n             \"forSelectedRu\": \"\u0416\u0435\u043d\u0441\u043a\u0430\u044f\",\n             \"nameId\": 331,\n             \"nameEn\": \"KNITTED WOVEN TOY\",\n             \"nameUa\": \"\u0406\u0413\u0420\u0410\u0428\u041a\u0410 \u0412'\u042f\u0417\u0410\u041d\u0410 \",\n             \"nameRu\": \"\u0418\u0413\u0420\u0423\u0428\u041a\u0410 \u0432\u044f\u0437\u0430\u043d\u043d\u0430\u044f\",\n             \"materialId\": 332,\n             \"materialEn\": \"COTTON\",\n             \"materialUa\": \"\u0411\u0410\u0412\u041e\u0412\u041d\u0410\",\n             \"materialRu\": \"\u0425\u043b\u043e\u043f\u043e\u043a\",\n             \"subMaterialId\": 333,\n             \"subMaterialEn\": \"EMBROIDERED\",\n             \"subMaterialUa\": \"\u0412\u0418\u0428\u0418\u0422\u0418\u0419\",\n             \"subMaterialRu\": \"\u0432\u044b\u0448\u0438\u0442\u044b\u0439\",\n             \"categoryId\": 8,\n             \"categoryName\": \"Clothes & woven decor\",\n             \"count\": 2\n         }\n      ]\n    }\n \"sendFrom\": {\n         \"first_name\": \"test firstnam112222e\",\n         \"last_name\": \"test lastname11\",\n         \"company_name\": \"test companynam11e\",\n         \"full_name\": \"test firstnam112222e test lastname11\",\n         \"label\": \"test firstnam112222e test lastname11 test companynam11e\"\n         },\n  \"sendFromId\": \"9\"\n     },\n     \"status\": \"success\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Rate List for Order FBM",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/rate\/list",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/rate\/list"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"senderCountryCode\":\"quia\",\"length\":\"dolor\",\"height\":\"nemo\",\"width\":\"ratione\",\"weight\":\"fugiat\",\"countryCode\":\"est\",\"stateCode\":\"consequatur\",\"zipCode\":\"nemo\",\"city\":\"in\",\"clientPayPal\":\"fuga\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"status\": \"success\",\n \"data\": {\n     \"case\": {\n         \"fromCountry\": \"Ukraine\",\n         \"fromCountryCode\": \"UA\",\n         \"toCountry\": \"Germany\",\n         \"toCountryCode\": \"DE\",\n         \"stateCode\": null,\n         \"zipCode\": \"10179\",\n         \"city\": \"Berlin\",\n         \"weight\": \"1\",\n         \"length\": \"1\",\n         \"width\": \"1\",\n         \"height\": \"1\",\n         \"clientPayPal\": true\n     },\n     \"shippingPrices\": {\n         \"currency\": \"USD\",\n         \"express\": [],\n         \"consolidation\": [\n             {\n                 \"description\": \"DHLExpress, ExpressWorldwideNonDoc Parcel\",\n                 \"costs\": {\n                     \"price\": \"37.16\",\n                     \"fee\": 2\n                 },\n                 \"apiShipMethod\": \"ExpressWorldwideNonDoc\"\n             },\n             {\n                 \"description\": \"Parcel Priority Delcon\",\n                 \"costs\": {\n                     \"price\": \"26.39\",\n                     \"fee\": 2\n                 },\n                 \"apiShipMethod\": \"parcelConnectPriorityDDUDelcon\"\n             },\n             {\n                 \"description\": \"DPD\",\n                 \"costs\": {\n                     \"price\": \"22.40\",\n                     \"fee\": 2\n                 },\n                 \"apiShipMethod\": \"9_7\"\n             }\n         ]\n     }\n }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update the specified order fbm resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/order\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/order\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "voluptates",
                                    "description": "The ID of the order."
                                },
                                {
                                    "id": "orderFbmId",
                                    "key": "orderFbmId",
                                    "value": "19",
                                    "description": "Order Id."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"receiverName\":\"earum\",\"recipientCompanyName\":\"quod\",\"receiverEmail\":\"qgutmann@example.net\",\"receiverPhone\":\"ut\",\"receiverAddress\":\"eveniet\",\"receiverAddress1\":\"quis\",\"receiverCity\":\"suscipit\",\"receiverZip\":\"beatae\",\"receiverState\":\"tempora\",\"receiverCountry\":\"enim\",\"storageId\":13,\"weightLb\":\"iste\",\"weightOz\":\"magni\",\"length\":\"occaecati\",\"width\":\"dignissimos\",\"height\":\"ducimus\",\"comment\":\"et\",\"vatTaxId\":\"porro\",\"insurancesStatus\":true,\"insurances\":\"enim\",\"transactionId\":3795.5562501,\"externalId\":\"error\",\"apiShipMethod\":\"possimus\",\"packagingId\":\"ipsa\",\"consolidationOrder\":\"commodi\",\"skladCreateLabel\":\"vero\",\"userPackType\":\"non\",\"productsConsolidationData\":\"excepturi\",\"sendFromId\":\"accusamus\",\"productsData\":[{\"product\":1,\"hsCode\":2.222942,\"price\":60.3164,\"description\":\"Consequatur reprehenderit ducimus error qui perferendis.\",\"count\":79}],\"productsConsolidationData[][id]\":9,\"productsConsolidationData[][categoryId]\":\"veritatis\",\"productsConsolidationData[][nameId]\":\"dolore\",\"productsConsolidationData[][forSelectedId]\":17,\"productsConsolidationData[][materialId]\":12,\"productsConsolidationData[][subMaterialId]\":9,\"productsConsolidationData[][hsCode]\":\"blanditiis\",\"productsConsolidationData[][price]\":\"tempore\",\"productsConsolidationData[][count]\":\"et\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": [\n {\n \"order\": {\n     \"id\": 143,\n     \"receiverName\": \"receiverName\",\n     \"recipientCompanyName\": \"recipientCompanyName\",\n     \"createdAtStr\": \"2022-05-05 13:58:38\",\n     \"receiverEmail\": \"receiverEmail@sdddd.dd\",\n     \"receiverAddress\": \"receiverAddress\",\n     \"receiverCity\": \"receiverCity\",\n     \"receiverZip\": \"receiverZip\",\n     \"receiverState\": \"receiverState\",\n     \"receiverCountry\": \"Ukraine\",\n     \"receiverPhone\": \"0989701676\",\n     \"comment\": null,\n     \"weightLb\": 11,\n     \"weightOz\": 4,\n     \"length\": 20,\n     \"width\": 180,\n     \"height\": 20,\n     \"consolidationOrder\": false,\n     \"skladCreateLabel\": true,\n     \"skladusaTrackingNumber\": \"SK11111111111UA\",\n     \"shipDate\": {\n         \"date\": \"2022-05-06 12:23:30.698958\",\n         \"timezone_type\": 3,\n         \"timezone\": \"Europe\/Kiev\"\n     },\n     \"shippingCosts\": null,\n     \"insurancesStatus\": false,\n     \"insurances\": null,\n     \"externalId\": \"1988820690\",\n     \"storageId\" : 1,\n     \"apiShipMethod\": \"1_1\",\n     \"packagingId\": null,\n     \"userPackType\": \"pack1\",\n     \"status\": null,\n     \"vatTaxId\": 81,\n     \"transactionId\": null,\n     \"productsData\": [],\n     \"productsConsolidationData\": {\n     \"content\": [\n         {\n             \"forSelectedId\": 4,\n             \"forSelectedEn\": \"WOMENS\",\n             \"forSelectedUa\": \"\u0416\u0406\u041d\u041e\u0427\u0410\",\n             \"forSelectedRu\": \"\u0416\u0435\u043d\u0441\u043a\u0430\u044f\",\n             \"nameId\": 328,\n             \"nameEn\": \"TOY\",\n             \"nameUa\": \"\u0406\u0413\u0420\u0410\u0428\u041a\u0410\",\n             \"nameRu\": \"\u0418\u0413\u0420\u0423\u0428\u041a\u0410\",\n             \"materialId\": 329,\n             \"materialEn\": \"FELT\",\n             \"materialUa\": \"\u0424\u0415\u0422\u0420\",\n             \"materialRu\": \"\u0444\u0435\u0442\u0440\",\n             \"subMaterialId\": 330,\n             \"subMaterialEn\": \"WOVEN\",\n             \"subMaterialUa\": \"\u0422\u041a\u0410\u041d\u0418\u0419 \",\n             \"subMaterialRu\": \"\u0422\u041a\u0410\u041d\u042b\u0419\",\n             \"categoryId\": 8,\n             \"categoryName\": \"Clothes & woven decor\",\n             \"count\": 1\n         },\n         {\n             \"forSelectedId\": 4,\n             \"forSelectedEn\": \"WOMENS\",\n             \"forSelectedUa\": \"\u0416\u0406\u041d\u041e\u0427\u0410\",\n             \"forSelectedRu\": \"\u0416\u0435\u043d\u0441\u043a\u0430\u044f\",\n             \"nameId\": 331,\n             \"nameEn\": \"KNITTED WOVEN TOY\",\n             \"nameUa\": \"\u0406\u0413\u0420\u0410\u0428\u041a\u0410 \u0412'\u042f\u0417\u0410\u041d\u0410 \",\n             \"nameRu\": \"\u0418\u0413\u0420\u0423\u0428\u041a\u0410 \u0432\u044f\u0437\u0430\u043d\u043d\u0430\u044f\",\n             \"materialId\": 332,\n             \"materialEn\": \"COTTON\",\n             \"materialUa\": \"\u0411\u0410\u0412\u041e\u0412\u041d\u0410\",\n             \"materialRu\": \"\u0425\u043b\u043e\u043f\u043e\u043a\",\n             \"subMaterialId\": 333,\n             \"subMaterialEn\": \"EMBROIDERED\",\n             \"subMaterialUa\": \"\u0412\u0418\u0428\u0418\u0422\u0418\u0419\",\n             \"subMaterialRu\": \"\u0432\u044b\u0448\u0438\u0442\u044b\u0439\",\n             \"categoryId\": 8,\n             \"categoryName\": \"Clothes & woven decor\",\n             \"count\": 2\n         }\n      ]\n    },\n  \"sendFrom\": {\n         \"first_name\": \"test firstnam112222e\",\n         \"last_name\": \"test lastname11\",\n         \"company_name\": \"test companynam11e\",\n         \"full_name\": \"test firstnam112222e test lastname11\",\n         \"label\": \"test firstnam112222e test lastname11 test companynam11e\"\n         },\n  \"sendFromId\": \"9\"\n     },\n },\n     \"status\": \"success\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Make label for order FBM",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/order\/:id\/set-shipstation-code",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/order\/:id\/set-shipstation-code",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "est",
                                    "description": "The ID of the order."
                                },
                                {
                                    "id": "orderFbmId",
                                    "key": "orderFbmId",
                                    "value": "19",
                                    "description": "Order Id."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required   Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"serviceId\":\"quos\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"status\": \"success\",\n\"data\": {\n \"id\": 143,\n \"shipDate\": {\n     \"date\": \"2022-05-06 14:40:00.000000\",\n     \"timezone_type\": 3,\n     \"timezone\": \"Europe\/Kiev\"\n },\n \"shippingCosts\": \"9.01\",\n \"trackingNumber\": \"9405536109361289955107\",\n \"label\" : \"base64 file string\"\n }\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Orders Express",
            "description": "",
            "item": [
                {
                    "name": "Dictionaries for express order form.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/express-orders\/dictionaries",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/express-orders\/dictionaries"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    'Basic ' + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"status\": \"success\",\n  \"data\": {\n    \"countries\": [\n      \"id\": 3,\n      \"label\": \"Algeria\",\n      \"currencies\": [],\n      \"regions\": [],\n    ],\n    \"proformTypes\": [\n      ...\n    ]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get NovaPoshtaGlobal warehouse list from customer profile.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/express-orders\/get-npg-warehouse-list",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/express-orders\/get-npg-warehouse-list"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required   'Basic ' + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"status\": \"success\",\n  \"data\": [\n    {\n      \"address_type\": \"Warehouse\",\n      \"ref_warehouse\": \"1611283d-e1c2-11e3-8c4a-4588968002cf\",\n      \"warehouse_name\": \"\u041a\u0438\u0457\u0432, \u041a\u0438\u0457\u0432\u0441\u044c\u043a\u0430, \u0412\u0456\u0434\u0434\u0456\u043b\u0435\u043d\u043d\u044f \u211618...\",\n      \"city_name\": \"\u041a\u0438\u0457\u0432, \u041a\u0438\u0457\u0432\u0441\u044c\u043a\u0430\"\n    },\n    ...\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Search cities for NovaPoshtaGlobal.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/express-orders\/find-city-for-npg\/:query\/:countryCode",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/express-orders\/find-city-for-npg\/:query\/:countryCode",
                            "variable": [
                                {
                                    "id": "query",
                                    "key": "query",
                                    "value": "soluta",
                                    "description": ""
                                },
                                {
                                    "id": "countryCode",
                                    "key": "countryCode",
                                    "value": "nemo",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required   'Basic ' + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"status\": \"success\",\n  \"data\": [\n    {\n      \"label\": \"\u041a\u0438\u0457\u0432, \u041a\u0438\u0457\u0432\u0441\u044c\u043a\u0430\"\n    },\n    {\n      \"label\": \"\u041a\u0438\u0457\u0432\u0435\u0446\u044c, \u041b\u044c\u0432\u0456\u0432\u0441\u044c\u043a\u0430\"\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Search warehouses for NovaPoshtaGlobal by City.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/express-orders\/warehouses-by-city-for-npg\/:query\/:countryCode",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/express-orders\/warehouses-by-city-for-npg\/:query\/:countryCode",
                            "variable": [
                                {
                                    "id": "query",
                                    "key": "query",
                                    "value": "et",
                                    "description": ""
                                },
                                {
                                    "id": "countryCode",
                                    "key": "countryCode",
                                    "value": "iste",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required   'Basic ' + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"status\": \"success\",\n  \"data\": [\n    [\n      {\n        \"reference\": \"1ec09d6b-e1c2-11e3-8c4a-0050568002cf\",\n        \"currentTranslate\": {\n            \"name\": \"Kyiv, Kyivska, Viddilennia \u21167...\",\n            \"city\": \"Kyiv, Kyivska\"\n          },\n      },\n      ...\n    ]\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display the specified order express resource.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/express-orders\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/express-orders\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "voluptas",
                                    "description": "The ID of the express order."
                                },
                                {
                                    "id": "orderExpressId",
                                    "key": "orderExpressId",
                                    "value": "17",
                                    "description": "Order Id."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required   'Basic ' + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n   \"id\": 143,\n   ...\n },\n \"status\": \"success\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get tracking history by order id.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/express-orders\/:id\/tracking-history",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/express-orders\/:id\/tracking-history",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "magnam",
                                    "description": "The ID of the express order."
                                },
                                {
                                    "id": "orderFbmId",
                                    "key": "orderFbmId",
                                    "value": "14",
                                    "description": "Order Id."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n\"data\": {\n \"message\": \"Delivered\",\n \"history\": [\n     \"Shipping Label Created, USPS Awaiting Item 2021-12-10 14:38:00\",\n     \"Accepted at USPS Origin Facility 2021-12-22 20:25:00\",\n     \"Arrived at USPS Origin Facility 2021-12-22 21:40:00\",\n     \"Departed USPS Origin Facility 2021-12-22 21:52:00\",\n     \"Arrived at USPS Regional Origin Facility 2021-12-24 22:07:00\",\n     \"In Transit to Next Facility 2021-12-28 00:00:00\",\n     \"Arrived at USPS Regional Destination Facility 2021-12-29 15:27:00\",\n     \"Departed USPS Regional Facility 2021-12-30 03:07:00\",\n     \"Arrived at USPS Facility 2021-12-30 04:03:00\",\n     \"Arrived at Post Office 2021-12-30 04:36:00\",\n     \"Out for Delivery 2021-12-30 06:10:00\",\n     \"Delivered, In\/At Mailbox 2021-12-30 13:58:00\"\n ],\n \"trackingNumber\": \"9400136109361359102933\"\n },\n\"status\": \"success\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get Shipping Delivery Price from NPG Api.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/express-orders\/npg-price",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/express-orders\/npg-price"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"warehouse_id\":7,\"payment_transaction_id\":2,\"sender\":[\"modi\"],\"recipient\":[\"consequatur\"],\"products\":[\"et\"],\"proform_packaging\":[\"aut\"],\"insurance_amount\":\"et\",\"for_consolidation\":false,\"order_express_id\":5,\"vat_number\":\"necessitatibus\",\"promocodes\":[{\"code\":\"voluptate\"}]}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"status\": 200,\n  \"data\": {\n    \"price_variant\": [\n      {\n        \"price\": 36.63,\n        \"orderFee\": 0,\n        \"total_price\": 36.63,\n        \"oversize_charge\": 0,\n        \"initial_price\": 0,\n        \"additional_handling_surcharge\": 0,\n        \"out_of_delivery.extra_charge\": 0,\n        \"out_of_delivery.shipping_cost\": 0,\n        \"label\": \"Cargo\",\n        \"delivery_service_type\": \"29:cargo\"\n      }\n    ]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Creation label for express order.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/express-orders\/make-label",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/express-orders\/make-label"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order_express_id\":6,\"delivery_service_type\":\"qgyraroxemjrndjwvu\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"status\": 200,\n \"data\": {\n     \"status\": true\n }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get file by uuid.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/express-orders\/get-file\/:uuid",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/express-orders\/get-file\/:uuid",
                            "variable": [
                                {
                                    "id": "uuid",
                                    "key": "uuid",
                                    "value": "300963ba-5ab8-3957-83bb-ceae3ee812a3",
                                    "description": "required. uuid \u0444\u0430\u0439\u043b\u0430."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \u0424\u0430\u0439\u043b \u0432 \u043e\u0442\u0432\u0435\u0442\u0435\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create new express order for NovaPoshtaGlobal.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/express-orders",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/express-orders"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required   'Basic ' + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"total_order_amount\":24026297.1,\"from_model\":\"from_order_external\",\"model_id\":6,\"delivery_service_id\":3,\"status\":\"completed\",\"send_type\":\"by_himself\",\"warehouse_id\":9,\"new_post_tracking_number\":\"sppzatopwox\",\"tracking_number\":\"fugiat\",\"sender_contact_name\":\"fuktigntdqlmoycgnemeqke\",\"sender_phone_number\":\"repellendus\",\"recipient_contact_name\":\"r\",\"recipient_phone_number\":\"+s$\\\/im\",\"recipient_email\":\"pagac.magdalen@example.net\",\"recipient_address\":\"qjmllsg\",\"recipient_additional_address\":\"okrcipaankbwyz\",\"recipient_city\":\"mbnnovoydgklwjb\",\"recipient_region\":\"xadsfs\",\"recipient_country_id\":7,\"recipient_zip_code\":\"mqarx\",\"recipient_company_name\":\"vbez\",\"recipient_eori_number\":\"go\",\"recipient_currency_id\":14,\"delivery_date\":\"8494-21-63$\\\/i\",\"available_courier_time\":\"35:86|20:01$\\\/i\",\"not_available_courier_time\":\"24:90|67:51$\\\/i\",\"vat_number\":\"l\",\"proform_data\":[{\"handmade\":\"0\",\"item_quantity\":2079.4601,\"item_price\":9.582,\"hs_code\":\"wcsmsnf\",\"label_full_name\":\"ramhrbcixnxtebbpz\",\"category_id\":11,\"name_id\":15,\"material_id\":8}],\"proform_packaging\":{\"package_name\":\"sblikb\",\"weight\":3002664.9944,\"length\":35953.43142862,\"width\":160.23,\"height\":274111036.3},\"insurance_amount\":341745667.16,\"packaging_type\":\"fedex_packaging\",\"drop_certification\":false,\"toxic_substance\":true,\"freight_cost\":0.78568,\"in_draft\":\"0\",\"courier_arrival_date\":\"3833-45-90$\\\/i\",\"courier_from_to_time\":\"66:20|44:32$\\\/i\",\"courier_contact_name\":\"hqqmasdbwhjvatzrttkdgj\",\"courier_contact_phone\":\"dimubmwmntzcfhyhotsxgi\",\"sender_contact_address\":\"ullam\",\"alarm_status\":true,\"delivery_service_type\":\"lbejeozptadcxahsclgekjpg\",\"recipient_tax_value\":\"quidem\",\"deleted_proform_ids\":{\"proform_data\":[2]},\"promocodes\":[{\"code\":\"ipsa\"}]}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"status\": \"success\",\n  \"data\": {\n    \"id\": 3680,\n    ...\n  }\n},",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Display a listing of the order express.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/express-orders",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/express-orders",
                            "variable": [
                                {
                                    "id": "page",
                                    "key": "page",
                                    "value": "18",
                                    "description": "Current page default 1."
                                },
                                {
                                    "id": "limit",
                                    "key": "limit",
                                    "value": "12",
                                    "description": "Num Items Per Page by default 10 max per page 100"
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    'Basic ' + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"data\": {\n    \"entities\": [\n      {\n        \"id\": 3666,\n        ...\n      },\n      ...\n    ],\n    \"pagination\": {\n      \"last\": 2,\n      \"current\": 0,\n      \"numItemsPerPage\": 10,\n      \"first\": 1,\n      \"pageCount\": 2,\n      \"totalCount\": 19,\n      \"pageRange\": 2,\n      \"startPage\": 1,\n      \"endPage\": 2,\n      \"previous\": 0,\n      \"next\": 1,\n      \"pagesInRange\": [\n          1,\n          2\n      ],\n      \"firstPageInRange\": 1,\n      \"lastPageInRange\": 2,\n      \"currentItemCount\": 10,\n      \"firstItemNumber\": 11,\n      \"lastItemNumber\": 2\n    },\n  },\n \"status\": \"success\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Authorize Pay",
            "description": "",
            "item": [
                {
                    "name": "Get Authorize popup HTML",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/gateway",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/gateway"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required   Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"sum\":\"omnis\",\"shopName\":\"id\",\"orderId\":\"deserunt\",\"iframeUrl\":\"http:\\\/\\\/jerde.com\\\/\",\"callBackUrl\":\"http:\\\/\\\/www.koelpin.biz\\\/suscipit-ratione-itaque-dolorem-quaerat-quas-quia\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n \"status\": \"success\",\n \"data\": \"HTML\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "WarehouseStorage",
            "description": "",
            "item": [
                {
                    "name": "Get possible Warehouse storage.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/storage\/order-fbm",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/storage\/order-fbm"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"receiverCountry\":\"dolores\",\"receiverZip\":\"atque\",\"consolidationOrder\":\"non\",\"skladCreateLabel\":\"animi\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"name\": \"Blaine\"\n        }\n    ],\n    \"status\": \"success\"\n    }",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "OrderSend From",
            "description": "",
            "item": [
                {
                    "name": "Display a listing of the send from data.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/order\/send-from",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/order\/send-from",
                            "variable": [
                                {
                                    "id": "page",
                                    "key": "page",
                                    "value": "4",
                                    "description": "Current page default 1."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n   \"data\": {\n     \"entities\": [\n             {\n                 \"id\": 7,\n                 \"firstName\": \"test firstnam1e\",\n                 \"lastName\": \"test lastname1\",\n                 \"companyName\": \"test companynam1e\",\n                 \"fullName\": \"test firstnam1e test lastname1\",\n                 \"label\": \"test firstnam1e test lastname1 test companynam1e\"\n             },\n         ...\n   ],\n     \"pagination\": {\n     \"last\": 1,\n     \"current\": 0,\n     \"numItemsPerPage\": 200,\n     \"first\": 1,\n     \"pageCount\": 1,\n     \"totalCount\": 4,\n     \"pageRange\": 1,\n     \"startPage\": 1,\n     \"endPage\": 1,\n     \"previous\": 0,\n     \"next\": 1,\n     \"pagesInRange\": [\n         1\n         ],\n     \"firstPageInRange\": 1,\n     \"lastPageInRange\": 1,\n     \"currentItemCount\": 200,\n     \"firstItemNumber\": 201,\n     \"lastItemNumber\": 1\n   }\n   },\n   \"status\": \"success\"\n   }",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Store the specified send from data.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "\/api\/order\/send-from",
                            "query": [],
                            "raw": "{{baseUrl}}\/\/api\/order\/send-from"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "required    Basic + base64 encoded 'user_id:api_token'"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"firstName\":\"consequatur\",\"lastName\":\"dicta\",\"companyName\":\"necessitatibus\"}"
                        },
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n   \"status\": 200,\n   \"data\": {\n         \"id\": 10,\n         \"firstName\": \"test firstnam112222e\",\n         \"lastName\": \"test lastname11s\",\n         \"companyName\": \"test companynam11e\",\n         \"fullName\": \"test firstnam112222e test lastname11s\",\n         \"label\": \"test firstnam112222e test lastname11s test companynam11e\"\n   }\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        }
    ],
    "auth": {
        "type": "noauth"
    }
}