{"name": "test_e2e_inbound[wms_inbound_e2e4-params0]", "status": "failed", "statusDetails": {"message": "AssertionError: invoice 7534712898 not in status: INVOICE_DOC_REQUESTED, actual status: READY_FOR_DECLARATION\nassert 'READY_FOR_DECLARATION' == <WMSInvoiceSt...OC_REQUESTED'>\n  \n  - INVOICE_DOC_REQUESTED\n  + READY_FOR_DECLARATION", "trace": "self = <tests.wms.test_e2e_inbound.test_inbound.TestE2EInbound object at 0x752973e79b10>\nparams = {'barcode_count': 5, 'quantity': 4, 'sku_amount': 3}\nwms_inbound_e2e = {'cell': <src.framework.wms.builders.db.cell.AvailableCell object at 0x752970601ed0>, 'count_types': {'defected': True...01: 'UP-AUTOTEST-01'>, packing_zone_id='', qa_zone=<WMSZoneIds.QA_UZ_ZONE: 31>, email=None, phone=None), 'zone_id': 31}\n\n    @pytest.mark.parametrize(\n        \"params\", [{\"sku_amount\": randint(1, 3), \"barcode_count\": randint(2, 5), \"quantity\": randint(3, 10)}]\n    )\n    @pytest.mark.parametrize(\n        \"wms_inbound_e2e\",\n        [\n            {\n                \"warehouse\": WMSWarehouses.Troitsk.value,\n                \"zone_id\": WMSWarehouses.Troitsk.value.qa_zone.value,\n                \"cell\": None,\n                \"count_types\": {\n                    \"proper\": True,\n                    \"defected\": False,\n                    \"overage\": False,\n                    \"zero\": False,\n                },\n            },\n            {\n                \"warehouse\": WMSWarehouses.Troitsk.value,\n                \"zone_id\": WMSWarehouses.Troitsk.value.qa_zone.value,\n                \"cell\": None,\n                \"count_types\": {\n                    \"proper\": True,\n                    \"defected\": True,\n                    \"overage\": True,\n                    \"zero\": False,\n                },\n            },\n            {\n                \"warehouse\": WMSWarehouses.Troitsk.value,\n                \"zone_id\": WMSWarehouses.Troitsk.value.qa_zone.value,\n                \"cell\": None,\n                \"count_types\": {\n                    \"proper\": False,\n                    \"defected\": False,\n                    \"overage\": False,\n                    \"zero\": True,\n                },\n            },\n            # Uzbekistan proper\n            {\n                \"warehouse\": WMSWarehouses.Uzbekistan.value,\n                \"zone_id\": WMSWarehouses.Uzbekistan.value.qa_zone.value,\n                \"cell\": None,\n                \"count_types\": {\n                    \"proper\": True,\n                    \"defected\": False,\n                    \"overage\": False,\n                    \"zero\": False,\n                },\n            },\n            {\n                \"warehouse\": WMSWarehouses.Uzbekistan.value,\n                \"zone_id\": WMSWarehouses.Uzbekistan.value.qa_zone.value,\n                \"cell\": None,\n                \"count_types\": {\n                    \"proper\": True,\n                    \"defected\": True,\n                    \"overage\": True,\n                    \"zero\": False,\n                },\n            },\n            {\n                \"warehouse\": WMSWarehouses.Uzbekistan.value,\n                \"zone_id\": WMSWarehouses.Uzbekistan.value.qa_zone.value,\n                \"cell\": None,\n                \"count_types\": {\n                    \"proper\": False,\n                    \"defected\": False,\n                    \"overage\": False,\n                    \"zero\": True,\n                },\n            },\n        ],\n        indirect=True,\n    )\n    def test_e2e_inbound(self, params, wms_inbound_e2e):\n        invoice = WMSInvoiceBuilder(\n            warehouse=wms_inbound_e2e[\"warehouse\"],\n            proper_cell=wms_inbound_e2e[\"cell\"].key,\n        ).set_user_auth(wms_inbound_e2e[\"warehouse\"].user.token)\n        with allure.step(\"clear tasks\"):\n            AcceptanceQueries().clear_worker_tasks(worker_id=wms_inbound_e2e[\"warehouse\"].user.wms_id)\n        invoice.supply.list_with_random_items(\n            items_count=params[\"sku_amount\"],\n            sku_amount=params[\"quantity\"],\n            barcode_count=params[\"barcode_count\"],\n        )\n>       invoice.set_count_types(**wms_inbound_e2e[\"count_types\"]).full_acceptance()\n\ntests/wms/test_e2e_inbound/test_inbound.py:117: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \nsrc/framework/wms/builders/acceptance/invoice/invoice.py:791: in full_acceptance\n    (self.state_awaiting_doc().state_invoice_doc_waiting().state_invoice_doc_requested())\n     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nsrc/framework/wms/builders/acceptance/invoice/invoice.py:613: in state_invoice_doc_waiting\n    wait_invoice(self.invoice_id, status=wait_state)\nsrc/framework/common/utils/utils.py:218: in wrapped_f\n    return Retrying(\n/usr/local/lib/python3.11/site-packages/retrying.py:289: in call\n    raise attempt.get()\n          ^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/retrying.py:326: in get\n    raise exc.with_traceback(tb)\n/usr/local/lib/python3.11/site-packages/retrying.py:273: in call\n    attempt = Attempt(fn(*args, **kwargs), attempt_number, False)\n                      ^^^^^^^^^^^^^^^^^^^\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\nsupply_id = 7534712898\nstatus = <WMSInvoiceStatus.INVOICE_DOC_REQUESTED: 'INVOICE_DOC_REQUESTED'>\n\n    @retry_on_assertion(stop_max_attempt_number=15, wait_fixed=20 * 1000)\n    def wait_invoice(\n        supply_id,\n        status: WMSInvoiceStatus = None,\n    ) -> Invoice:\n        invoice: Invoice = AcceptanceQueries().tx_query(Invoice).filter(Invoice.id == supply_id).first()\n        assert invoice, f\"No invoice created for ID: {supply_id}\"\n        if status is not None:\n>           assert invoice.status == status, f\"invoice {supply_id} not in status: {status}, actual status: {invoice.status}\"\nE           AssertionError: invoice 7534712898 not in status: INVOICE_DOC_REQUESTED, actual status: READY_FOR_DECLARATION\nE           assert 'READY_FOR_DECLARATION' == <WMSInvoiceSt...OC_REQUESTED'>\nE             \nE             - INVOICE_DOC_REQUESTED\nE             + READY_FOR_DECLARATION\n\nsrc/framework/wms/validation/waiters/acceptance.py:40: AssertionError"}, "steps": [{"name": "clear tasks", "status": "passed", "steps": [{"name": "SQLAlchemy query UPDATE ", "status": "passed", "attachments": [{"name": "query", "source": "5f9cdfac-f4a8-48da-8b73-8cd8b33c44c6-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "8f698f5f-2b59-4db0-99c9-295c9e49188d-attachment.json", "type": "application/json"}], "start": 1775347128361, "stop": 1775347128361}, {"name": "SQLAlchemy query UPDATE ", "status": "passed", "attachments": [{"name": "query", "source": "e839e9e1-b6b2-4f3e-89b8-679dd940b6f8-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "0e02a703-2d00-4b09-b4b9-6f400e0b77f8-attachment.json", "type": "application/json"}], "start": 1775347128363, "stop": 1775347128364}, {"name": "SQLAlchemy query UPDATE ", "status": "passed", "attachments": [{"name": "query", "source": "d86c5a27-a984-4c0d-8da9-e0bbd2a27ea6-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "4afb98d6-7f63-4df6-a471-3135ec29dc8f-attachment.json", "type": "application/json"}], "start": 1775347128364, "stop": 1775347128365}], "start": 1775347128343, "stop": 1775347128365}, {"name": "invoice creation", "status": "passed", "steps": [{"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/wms/acceptance/invoices/chunked", "status": "passed", "attachments": [{"name": "Request", "source": "0a799c04-6df7-48db-bb96-8a14d697727c-attachment.json", "type": "application/json"}, {"name": "Response", "source": "e1051881-675b-498a-ade0-6f9749f73d4c-attachment.json", "type": "application/json"}], "start": 1775347128372, "stop": 1775347128411}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "07e1eeb3-1ebb-4bc6-9a87-0268c59b30b2-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "1f24d0c1-9175-4d57-a854-f1f8ac0410a9-attachment.json", "type": "application/json"}], "start": 1775347128417, "stop": 1775347128417}], "start": 1775347128412, "stop": 1775347128417}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "03bfa33c-3275-4e75-8572-dc7cc9ee225f-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "9b939c52-2ffc-4054-b7ac-b6bbfacb0077-attachment.json", "type": "application/json"}], "start": 1775347128430, "stop": 1775347128430}], "start": 1775347128417, "stop": 1775347128430}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/ff/publish/invoice/chunk", "status": "passed", "attachments": [{"name": "Request", "source": "b1ad5fdc-3a02-4d5b-9ed2-8f3732176d44-attachment.json", "type": "application/json"}, {"name": "Response", "source": "2f9106ef-ba1f-401a-809b-9d1aa4cb7edc-attachment.json", "type": "application/json"}], "start": 1775347128433, "stop": 1775347128451}, {"name": "Waiter function: wait_sku_info", "status": "passed", "start": 1775347128451, "stop": 1775347130463}, {"name": "Waiter function: wait_availability_sku", "status": "passed", "start": 1775347130464, "stop": 1775347130465}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "184e1bb0-c204-47e7-a8b7-bba373800bcd-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "0795978d-023c-4f1d-b330-bf3b495df9ae-attachment.json", "type": "application/json"}], "start": 1775347130478, "stop": 1775347130479}], "start": 1775347130465, "stop": 1775347130479}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "bc692643-4273-448a-b583-329765b415f7-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "b248fee9-9c69-4305-a585-a27ba795eda1-attachment.json", "type": "application/json"}], "start": 1775347130492, "stop": 1775347130492}], "start": 1775347130479, "stop": 1775347130492}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/search-invoices", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "258d6df4-a573-47e4-aaf7-2cfc73a94302-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "121d7d57-d1e6-41a5-af62-2ec6e50634d9-attachment.json", "type": "application/json"}], "start": 1775347130572, "stop": 1775347130572}, {"name": "Response → 200, trace_id: 65109f603a64ff720ae3f0bc36587222", "status": "passed", "attachments": [{"name": "response.headers", "source": "bb2e4c66-17a8-418e-8d5a-38920248440c-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c1e4b37e-3727-4500-9694-04c7cad9b7ad-attachment.json", "type": "application/json"}], "start": 1775347130572, "stop": 1775347130573}], "attachments": [{"name": "cURL", "source": "5fb02fe7-920b-4c2f-b5af-40de9934861b-attachment.txt", "type": "text/plain"}], "start": 1775347130572, "stop": 1775347130573}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/invoices/get-pallets", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "971c043b-a561-496d-9fd1-351b82ba86b1-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "c8b9a41f-2b42-47fa-a48c-2e7e585a3b32-attachment.json", "type": "application/json"}], "start": 1775347130598, "stop": 1775347130599}, {"name": "Response → 200, trace_id: b486a4c958383e8d7a3581ee9df7c3f0", "status": "passed", "attachments": [{"name": "response.headers", "source": "8d33b115-c24c-42eb-970a-f144795fe2a1-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "09e23da3-77f0-4b3f-88ec-8a163cb532f2-attachment.json", "type": "application/json"}], "start": 1775347130599, "stop": 1775347130599}], "attachments": [{"name": "cURL", "source": "60e0bde7-ce5e-4bd3-95a2-440075a0abeb-attachment.txt", "type": "text/plain"}], "start": 1775347130598, "stop": 1775347130599}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/arrival-invoice?invoiceBarcode=WMS7534712898", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d65243d1-ff1e-405f-87e6-49d433c4fdee-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "a60c7f69-860d-4df6-9c9e-d142e7c4df68-attachment.json", "type": "application/json"}], "start": 1775347130696, "stop": 1775347130696}, {"name": "Response → 200, trace_id: a2349e5f7eb950e0a8187c521b284287", "status": "passed", "attachments": [{"name": "response.headers", "source": "a2031474-b90c-4b05-8b14-72b66d27443d-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "7924b263-ddb9-45ae-93f5-cb6cb22b6075-attachment.json", "type": "application/json"}], "start": 1775347130696, "stop": 1775347130697}], "attachments": [{"name": "cURL", "source": "ea8e8c3b-22b3-45c3-9c9e-d2f096f7f90c-attachment.txt", "type": "text/plain"}], "start": 1775347130696, "stop": 1775347130697}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-pallet-to-process", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9e566d83-6dcd-4699-9c16-af290c0252f4-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "6e7a7d22-18ff-4998-8c73-06fc65e2ade3-attachment.json", "type": "application/json"}], "start": 1775347130754, "stop": 1775347130754}, {"name": "Response → 200, trace_id: 7a51fffd5876e6dbf6b59332fee91d82", "status": "passed", "attachments": [{"name": "response.headers", "source": "fbf8f0c6-b025-4beb-be5f-79be70973473-attachment.json", "type": "application/json"}], "start": 1775347130754, "stop": 1775347130754}], "attachments": [{"name": "cURL", "source": "15d3ccd3-2a82-43f3-b1eb-6a7f4d3c00b5-attachment.txt", "type": "text/plain"}], "start": 1775347130754, "stop": 1775347130755}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/link-pallet-to-zone", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "10609851-5453-411a-bd43-810bc505ecfe-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "35b30a6d-623d-4359-9af4-aa9ba6a49e8b-attachment.json", "type": "application/json"}], "start": 1775347130832, "stop": 1775347130832}, {"name": "Response → 200, trace_id: 159290eeac55fb4fee576e14a42127d2", "status": "passed", "attachments": [{"name": "response.headers", "source": "f81e6f71-fe9a-4b2b-9d7a-17d1620addba-attachment.json", "type": "application/json"}], "start": 1775347130832, "stop": 1775347130832}], "attachments": [{"name": "cURL", "source": "b6a6bf59-c182-43c2-9030-77daaa970c4e-attachment.txt", "type": "text/plain"}], "start": 1775347130832, "stop": 1775347130832}, {"name": "PUT → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/update-pallet-weight?palletId=12572544&weight=8841", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9af5902f-9272-4496-b814-634e02dc6bb2-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "2e0fe0af-5f86-405a-9d95-fe90510bd4fc-attachment.json", "type": "application/json"}], "start": 1775347130886, "stop": 1775347130887}, {"name": "Response → 200, trace_id: 7df36d65b9464859f26a943243270312", "status": "passed", "attachments": [{"name": "response.headers", "source": "34887afe-d867-4eae-b8b8-d25e12ebe860-attachment.json", "type": "application/json"}], "start": 1775347130887, "stop": 1775347130887}], "attachments": [{"name": "cURL", "source": "5c6c09fe-0d5b-49e5-ad24-9f4516511cda-attachment.txt", "type": "text/plain"}], "start": 1775347130886, "stop": 1775347130887}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/move-process-to-inspection", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a3249a90-4826-443a-a01c-743d5e505386-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "2b532acc-482b-40b1-b9b7-be22d5fa5f2f-attachment.json", "type": "application/json"}], "start": 1775347130918, "stop": 1775347130919}, {"name": "Response → 200, trace_id: 5a37d24192fffd0bd82932e6ec2393e5", "status": "passed", "attachments": [{"name": "response.headers", "source": "530dc567-1a6f-4c66-9434-4d64a2b125f2-attachment.json", "type": "application/json"}], "start": 1775347130919, "stop": 1775347130919}], "attachments": [{"name": "cURL", "source": "f03ca48d-47ae-4978-8d4c-3caa3b3a21bc-attachment.txt", "type": "text/plain"}], "start": 1775347130918, "stop": 1775347130919}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/search-invoices", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c92baf02-3c5b-4df1-a825-427eb1b8c73b-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "79f129be-e8bf-4f1c-8204-12c317c8605c-attachment.json", "type": "application/json"}], "start": 1775347130995, "stop": 1775347130996}, {"name": "Response → 200, trace_id: 42dce054743c1d21cf7c1ab4b1ec5701", "status": "passed", "attachments": [{"name": "response.headers", "source": "49f3a185-cd2e-4ff2-8874-e8ffb0ce9d1f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ca6759ce-dc18-46c2-8c7e-04a77720f290-attachment.json", "type": "application/json"}], "start": 1775347130996, "stop": 1775347130996}], "attachments": [{"name": "cURL", "source": "2621d575-7078-4b70-9a60-3c19aee5371c-attachment.txt", "type": "text/plain"}], "start": 1775347130995, "stop": 1775347130996}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/invoices/get-pallets", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "27328c04-c93a-4b15-9ebe-f0bc12b4d1b1-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "23c55459-a8be-4376-8881-ca7e805e3143-attachment.json", "type": "application/json"}], "start": 1775347131022, "stop": 1775347131023}, {"name": "Response → 200, trace_id: a1c424a2aafd2bc4c282fd67a11537a7", "status": "passed", "attachments": [{"name": "response.headers", "source": "8ae05767-6648-4c99-b951-731a898bf3ce-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "907c0c54-2a0a-4163-ae69-f8a289316c2b-attachment.json", "type": "application/json"}], "start": 1775347131023, "stop": 1775347131023}], "attachments": [{"name": "cURL", "source": "0e07d143-0a4e-4c02-b481-91246a9fca63-attachment.txt", "type": "text/plain"}], "start": 1775347131022, "stop": 1775347131023}, {"name": "Waiter function: wait_pallet", "status": "passed", "start": 1775347131026, "stop": 1775347131028}], "start": 1775347128370, "stop": 1775347131028}, {"name": "invoice acceptance", "status": "passed", "steps": [{"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "858c1543-acd8-4a8d-9b42-37863a390879-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "0d030526-6f3d-4714-af34-56be5e676155-attachment.json", "type": "application/json"}], "start": 1775347131032, "stop": 1775347131032}], "start": 1775347131028, "stop": 1775347131032}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/search-invoices", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "fc40ee66-d23b-4760-9e6f-7fd21a563c74-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "62d802bb-7d02-4547-aad2-6824a3f8b7f8-attachment.json", "type": "application/json"}], "start": 1775347131113, "stop": 1775347131113}, {"name": "Response → 200, trace_id: 2d6f35e19b13925f7b30d625e74a6105", "status": "passed", "attachments": [{"name": "response.headers", "source": "7f5657bb-e7ab-446e-b8fb-d06420179655-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "3ba666a1-34e8-46e6-b0b3-3fbcdda05127-attachment.json", "type": "application/json"}], "start": 1775347131113, "stop": 1775347131114}], "attachments": [{"name": "cURL", "source": "888467f5-7e52-41b0-8703-6e86f166badf-attachment.txt", "type": "text/plain"}], "start": 1775347131113, "stop": 1775347131114}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/invoices/get-pallets", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f4c0a9ea-3cea-4956-bb57-0561e479091d-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "ef6d2d5f-d60f-4cdb-91a9-65d0a894cd33-attachment.json", "type": "application/json"}], "start": 1775347131137, "stop": 1775347131137}, {"name": "Response → 200, trace_id: 162b7808a3ec767f886cd87afcb46024", "status": "passed", "attachments": [{"name": "response.headers", "source": "eab05a37-309e-47e2-b445-ec471a04b565-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ac30ac66-3917-4191-9a56-07d8e772ac41-attachment.json", "type": "application/json"}], "start": 1775347131138, "stop": 1775347131138}], "attachments": [{"name": "cURL", "source": "610f6b4f-b9f3-449b-8120-f8e9c59259be-attachment.txt", "type": "text/plain"}], "start": 1775347131137, "stop": 1775347131138}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-pallet-to-table", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f1b6723a-2651-425d-ad16-878be9384536-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "09bc9351-d165-4946-ae9b-72d994057c0e-attachment.json", "type": "application/json"}], "start": 1775347131247, "stop": 1775347131247}, {"name": "Response → 200, trace_id: f3e1d1340edf87560a56d289d67759aa", "status": "passed", "attachments": [{"name": "response.headers", "source": "7261b6ea-d107-4486-b988-24042d088f91-attachment.json", "type": "application/json"}], "start": 1775347131247, "stop": 1775347131247}], "attachments": [{"name": "cURL", "source": "587e8b11-266a-4769-a3ee-1e568de71ad5-attachment.txt", "type": "text/plain"}], "start": 1775347131247, "stop": 1775347131247}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "1c7a8741-10af-4ace-b2e2-3915d5f78af5-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "3df00272-5f2f-4473-93f9-10fa373b8485-attachment.json", "type": "application/json"}], "start": 1775347131255, "stop": 1775347131255}], "start": 1775347131250, "stop": 1775347131255}], "start": 1775347131028, "stop": 1775347131255}, {"name": "counting", "status": "passed", "steps": [{"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "7551f00a-a226-4de8-b750-eb68269238ed-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "36a08ef9-e734-4caf-8105-eefbd90c1b28-attachment.json", "type": "application/json"}], "start": 1775347131268, "stop": 1775347131268}], "start": 1775347131255, "stop": 1775347131268}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/search-invoices", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9010c01b-d050-4d9f-9276-fec4155c0c27-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "e7f9fc89-abe9-4c2b-bd9a-f732ee438c02-attachment.json", "type": "application/json"}], "start": 1775347131342, "stop": 1775347131343}, {"name": "Response → 200, trace_id: 1903f5331aaad7f40b68cc88766242bb", "status": "passed", "attachments": [{"name": "response.headers", "source": "e779f333-d8b6-4abc-9913-4e40439c6041-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "0ff66180-fe4b-4529-a6c9-64d306d7d535-attachment.json", "type": "application/json"}], "start": 1775347131343, "stop": 1775347131343}], "attachments": [{"name": "cURL", "source": "fc5fd5a2-46f6-4a9d-b820-d14cd002cf85-attachment.txt", "type": "text/plain"}], "start": 1775347131342, "stop": 1775347131343}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/invoices/get-pallets", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "78c2fcde-e13b-403b-9f47-c790f27813e7-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "1ab23c04-e1ee-4847-beef-57beabc2260c-attachment.json", "type": "application/json"}], "start": 1775347131368, "stop": 1775347131368}, {"name": "Response → 200, trace_id: 1f2930ada7bd9eca8334728723e5297b", "status": "passed", "attachments": [{"name": "response.headers", "source": "0871b9c5-b942-4b6c-a295-9364e3273609-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "adbb92fa-3cff-427b-b831-fd3018c79d35-attachment.json", "type": "application/json"}], "start": 1775347131368, "stop": 1775347131368}], "attachments": [{"name": "cURL", "source": "dc9f866b-e9f5-499b-8d9a-908702a0892f-attachment.txt", "type": "text/plain"}], "start": 1775347131368, "stop": 1775347131369}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/invoice/7534712898/items", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "1655a8a4-0afe-4ddc-8034-efc435e57c2c-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "0a75ab75-cd41-47d4-9aa0-1f6f504acd53-attachment.json", "type": "application/json"}], "start": 1775347131414, "stop": 1775347131415}, {"name": "Response → 200, trace_id: 60b08cdce4ee17f26e55cd474474dd45", "status": "passed", "attachments": [{"name": "response.headers", "source": "e5d969e6-e680-4b32-b605-588be360a8be-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e9a019d9-e95a-4890-aad2-1aee63912aa0-attachment.json", "type": "application/json"}], "start": 1775347131415, "stop": 1775347131416}], "attachments": [{"name": "cURL", "source": "c34b2e06-b789-48bb-8d9b-410cab351e19-attachment.txt", "type": "text/plain"}], "start": 1775347131414, "stop": 1775347131416}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/sorting/{sortingType}/box/create", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "6e37abe6-232e-4110-bf75-dd607c3fccf0-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e76b2e54-2b89-49b0-8604-c0727b23d8e8-attachment.json", "type": "application/json"}], "start": 1775347131450, "stop": 1775347131450}, {"name": "Response → 200, trace_id: 6ed1adb2f0c866c252ab12845e1a0344", "status": "passed", "attachments": [{"name": "response.headers", "source": "ddfadb35-1862-43c8-8d8c-d40be0ad1b86-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "9947a148-4b03-49dd-8ecf-7452ac929dff-attachment.txt", "type": "text/plain"}], "start": 1775347131450, "stop": 1775347131450}], "attachments": [{"name": "cURL", "source": "5a28552a-2dda-4e3c-856f-cac455815522-attachment.txt", "type": "text/plain"}], "start": 1775347131450, "stop": 1775347131450}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-count-box-to-table", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "4a9e048f-f9b2-43d3-9563-2f1f58c62f51-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "504f0a44-81d3-4ddd-b5b5-5418af2008e8-attachment.json", "type": "application/json"}], "start": 1775347131493, "stop": 1775347131493}, {"name": "Response → 200, trace_id: 2493e44e7e304ab87ac3b229bb18b1fc", "status": "passed", "attachments": [{"name": "response.headers", "source": "d5213bb1-8141-44fd-9b55-1418495157cd-attachment.json", "type": "application/json"}], "start": 1775347131493, "stop": 1775347131493}], "attachments": [{"name": "cURL", "source": "296d3a04-6714-4316-861b-936f2d431f5f-attachment.txt", "type": "text/plain"}], "start": 1775347131493, "stop": 1775347131493}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d7174525-a8c8-4329-9175-ec5e927813dc-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "65e71ec6-860e-4757-acae-4dc2f35236a0-attachment.json", "type": "application/json"}], "start": 1775347131563, "stop": 1775347131563}, {"name": "Response → 200, trace_id: 95bddf2395de627a4ad56206322590fb", "status": "passed", "attachments": [{"name": "response.headers", "source": "97085a6d-ca40-4f59-9f6e-ded3ce136496-attachment.json", "type": "application/json"}], "start": 1775347131563, "stop": 1775347131563}], "attachments": [{"name": "cURL", "source": "526abbe7-5c72-4301-a5dd-9aa17aa1b1ee-attachment.txt", "type": "text/plain"}], "start": 1775347131563, "stop": 1775347131563}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c6a34b0a-f8b3-42d5-86a3-c8b576ab40ea-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "b6e96df5-c6db-407e-822a-8019fed9171c-attachment.json", "type": "application/json"}], "start": 1775347131624, "stop": 1775347131624}, {"name": "Response → 200, trace_id: f4bb2aab6ab3ba646ad11e1120b740e8", "status": "passed", "attachments": [{"name": "response.headers", "source": "d004a57b-1584-48de-9ac3-59e2d0fa4cac-attachment.json", "type": "application/json"}], "start": 1775347131624, "stop": 1775347131624}], "attachments": [{"name": "cURL", "source": "0684ed6c-bf15-49b0-820d-61ed10b71ab4-attachment.txt", "type": "text/plain"}], "start": 1775347131624, "stop": 1775347131624}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "88659791-369d-4710-a105-c953243e3cca-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "b8c22748-4b76-41e8-8b30-c8439d5a6cea-attachment.json", "type": "application/json"}], "start": 1775347131690, "stop": 1775347131691}, {"name": "Response → 200, trace_id: 554dd2f1747055402d807f766f79d1f5", "status": "passed", "attachments": [{"name": "response.headers", "source": "f1ec66e3-5f63-40b9-806c-8a452c4145d0-attachment.json", "type": "application/json"}], "start": 1775347131691, "stop": 1775347131691}], "attachments": [{"name": "cURL", "source": "030fca47-4965-48c8-ae38-3e5892859562-attachment.txt", "type": "text/plain"}], "start": 1775347131690, "stop": 1775347131691}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "07d19d97-1326-494f-ab70-80ac0848ce4f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f94c221d-0a02-4618-8f8a-f769098d9e71-attachment.json", "type": "application/json"}], "start": 1775347131757, "stop": 1775347131758}, {"name": "Response → 200, trace_id: 6a55846c7e188ef4cb6c134bcc11b715", "status": "passed", "attachments": [{"name": "response.headers", "source": "b8a6821a-4b65-440c-a7e2-ddca25bcab68-attachment.json", "type": "application/json"}], "start": 1775347131758, "stop": 1775347131758}], "attachments": [{"name": "cURL", "source": "9f16cf6f-d5ae-4a04-9068-7ce348843230-attachment.txt", "type": "text/plain"}], "start": 1775347131757, "stop": 1775347131758}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "285287cd-caa1-4a05-8966-366fa9a46e4b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "12d00a9b-0fb2-4973-935d-4b842e1609a2-attachment.json", "type": "application/json"}], "start": 1775347131830, "stop": 1775347131831}, {"name": "Response → 200, trace_id: 5fb34c15e1ee2d30178a2ba46d3e14e6", "status": "passed", "attachments": [{"name": "response.headers", "source": "3113cd89-a0d9-43be-9e5c-e658cfb3fbc8-attachment.json", "type": "application/json"}], "start": 1775347131831, "stop": 1775347131831}], "attachments": [{"name": "cURL", "source": "102c966d-e8a9-4a1b-a067-b45c27f50243-attachment.txt", "type": "text/plain"}], "start": 1775347131830, "stop": 1775347131831}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9062974e-d572-4245-90ea-17ea9f49bc06-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d05b8947-4f31-49a9-bdfd-b9207e3d2960-attachment.json", "type": "application/json"}], "start": 1775347131893, "stop": 1775347131894}, {"name": "Response → 200, trace_id: 85a7e2171595dc22155ef7f7e0dbaa40", "status": "passed", "attachments": [{"name": "response.headers", "source": "862c912b-bf21-48c4-ab4d-b1535207bafa-attachment.json", "type": "application/json"}], "start": 1775347131894, "stop": 1775347131894}], "attachments": [{"name": "cURL", "source": "66a282ba-3bc2-46f2-a6c7-ac438cce6918-attachment.txt", "type": "text/plain"}], "start": 1775347131893, "stop": 1775347131894}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "cd0a9829-16c4-4bc2-bbe6-11a460dfde9d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "6ee53ee0-d54a-4925-9f7a-e307a74c0a4f-attachment.json", "type": "application/json"}], "start": 1775347131960, "stop": 1775347131960}, {"name": "Response → 200, trace_id: 8db764c4addbe934ad7a70db66b3c833", "status": "passed", "attachments": [{"name": "response.headers", "source": "5081cd80-f81e-4603-b981-c17968b11732-attachment.json", "type": "application/json"}], "start": 1775347131960, "stop": 1775347131960}], "attachments": [{"name": "cURL", "source": "fe2ab26d-2f9a-42ff-b79e-ebed15f8770a-attachment.txt", "type": "text/plain"}], "start": 1775347131960, "stop": 1775347131960}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ce59433e-9bda-4580-adfd-d943e2f89a4a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4445df7e-7c0c-41ea-8cf2-5568f60ea08e-attachment.json", "type": "application/json"}], "start": 1775347132026, "stop": 1775347132026}, {"name": "Response → 200, trace_id: 91d04c9aa7d26408efe6459468287d5e", "status": "passed", "attachments": [{"name": "response.headers", "source": "6f5c17b2-70f4-4669-8f00-215680f23535-attachment.json", "type": "application/json"}], "start": 1775347132026, "stop": 1775347132026}], "attachments": [{"name": "cURL", "source": "8b9b66fb-a52b-4d69-8d25-eaa195dc3142-attachment.txt", "type": "text/plain"}], "start": 1775347132026, "stop": 1775347132026}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "62b01715-a01a-480d-a0f2-cbdd4293e807-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d9db0163-818f-4219-8349-b2befee66993-attachment.json", "type": "application/json"}], "start": 1775347132096, "stop": 1775347132097}, {"name": "Response → 200, trace_id: 395689098b3f65d4192dec7c66e7f8b5", "status": "passed", "attachments": [{"name": "response.headers", "source": "20ca8a2c-7113-4c22-9b33-aaa1451ebe42-attachment.json", "type": "application/json"}], "start": 1775347132097, "stop": 1775347132097}], "attachments": [{"name": "cURL", "source": "5bda7b8b-e506-4c0d-bd94-0e1e82b2659e-attachment.txt", "type": "text/plain"}], "start": 1775347132096, "stop": 1775347132097}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "5b6e0a4d-474e-4090-86f1-7de3c0e3968d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "51b2ee68-cd92-4169-9724-adb6a07026dd-attachment.json", "type": "application/json"}], "start": 1775347132158, "stop": 1775347132158}, {"name": "Response → 200, trace_id: e8f0ba3cf8d41ddc5535f89ac61aaac1", "status": "passed", "attachments": [{"name": "response.headers", "source": "d2f5ef20-b83f-4c51-8f63-510af61b4b47-attachment.json", "type": "application/json"}], "start": 1775347132158, "stop": 1775347132158}], "attachments": [{"name": "cURL", "source": "d36c9e71-2502-4065-88c4-90c4e187793d-attachment.txt", "type": "text/plain"}], "start": 1775347132158, "stop": 1775347132158}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f5db13d3-98f5-4a91-9083-c7e0661c9be9-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "88afde9a-5588-4c64-a5c8-238241f3e5ea-attachment.json", "type": "application/json"}], "start": 1775347132226, "stop": 1775347132227}, {"name": "Response → 200, trace_id: 02fc2d2daa545fe0e0b3308460d645f3", "status": "passed", "attachments": [{"name": "response.headers", "source": "d4306cc4-7f77-446d-a7d7-8b0365b798b2-attachment.json", "type": "application/json"}], "start": 1775347132227, "stop": 1775347132227}], "attachments": [{"name": "cURL", "source": "681367c3-0930-4d22-ac30-f74c12f2bb8f-attachment.txt", "type": "text/plain"}], "start": 1775347132226, "stop": 1775347132227}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "8c988e8f-a0f1-4e2c-b36d-420890f8ed67-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c59e281a-ec79-416a-b2d5-b8f85d20dc65-attachment.json", "type": "application/json"}], "start": 1775347132292, "stop": 1775347132292}, {"name": "Response → 200, trace_id: 552fd1a2364520ccad4892fd0b28b887", "status": "passed", "attachments": [{"name": "response.headers", "source": "5a3853b7-68f3-4ce0-a708-954df6f69c53-attachment.json", "type": "application/json"}], "start": 1775347132293, "stop": 1775347132293}], "attachments": [{"name": "cURL", "source": "3e91d5f9-33d2-4198-bc01-bd4f4a98c826-attachment.txt", "type": "text/plain"}], "start": 1775347132292, "stop": 1775347132293}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "b7d3d8ed-64e5-4bc7-a9bb-f6960a63dc51-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "1d991ab5-001e-4dae-9d33-7c4f21ab57dc-attachment.json", "type": "application/json"}], "start": 1775347132361, "stop": 1775347132361}, {"name": "Response → 200, trace_id: a95bf076192d7c7128740dfdb9ecff1a", "status": "passed", "attachments": [{"name": "response.headers", "source": "0ec57b21-6ed4-47b9-a8ad-adf2717a1a9b-attachment.json", "type": "application/json"}], "start": 1775347132361, "stop": 1775347132361}], "attachments": [{"name": "cURL", "source": "c9c98102-9151-4025-9a1a-7eebc02594e5-attachment.txt", "type": "text/plain"}], "start": 1775347132361, "stop": 1775347132361}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "3b010e64-d23b-4c19-bf8c-553eb0571290-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e0dc49b4-a71b-4d7f-bd8e-555faa3aa522-attachment.json", "type": "application/json"}], "start": 1775347132429, "stop": 1775347132430}, {"name": "Response → 200, trace_id: 161836aed32835393040977bfc5e34d3", "status": "passed", "attachments": [{"name": "response.headers", "source": "da891189-69d8-4d0a-9db8-84f0632b88fe-attachment.json", "type": "application/json"}], "start": 1775347132430, "stop": 1775347132430}], "attachments": [{"name": "cURL", "source": "2a19a8a2-edc8-46ed-acdc-ecbbe83c466d-attachment.txt", "type": "text/plain"}], "start": 1775347132429, "stop": 1775347132430}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "12457a71-d930-485d-b485-329554d839a6-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "941d579c-6774-4445-b3b0-4cdd1f947c50-attachment.json", "type": "application/json"}], "start": 1775347132499, "stop": 1775347132499}, {"name": "Response → 200, trace_id: fabbcf5f646acf36a01dac4d495714f5", "status": "passed", "attachments": [{"name": "response.headers", "source": "1d69fa42-675a-4c79-8798-b24b4b144c82-attachment.json", "type": "application/json"}], "start": 1775347132499, "stop": 1775347132499}], "attachments": [{"name": "cURL", "source": "239a65e8-8955-4fab-b293-4a22f6637312-attachment.txt", "type": "text/plain"}], "start": 1775347132498, "stop": 1775347132499}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "4a58f5f6-5ec1-46fe-b291-98fc4d74b5de-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "50bc7a71-eddb-4167-b708-61b25a03c831-attachment.json", "type": "application/json"}], "start": 1775347132563, "stop": 1775347132563}, {"name": "Response → 200, trace_id: a067104da8c03fecf2b98c08d0bb3bf2", "status": "passed", "attachments": [{"name": "response.headers", "source": "fddf89d5-b27d-46a9-ac54-078161af6f1a-attachment.json", "type": "application/json"}], "start": 1775347132564, "stop": 1775347132564}], "attachments": [{"name": "cURL", "source": "7b43cbf9-4761-44c7-a02a-f343a960f967-attachment.txt", "type": "text/plain"}], "start": 1775347132563, "stop": 1775347132564}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "b3463bfa-9d50-4f6d-aa8a-42c393865c19-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "cb77cec6-b741-4653-b4b8-da1e6c515e8d-attachment.json", "type": "application/json"}], "start": 1775347132628, "stop": 1775347132629}, {"name": "Response → 200, trace_id: 18da507de0fff7314b5a68d6cd4e43d0", "status": "passed", "attachments": [{"name": "response.headers", "source": "0525fee7-1dc6-4051-a04d-4f12c1bcc493-attachment.json", "type": "application/json"}], "start": 1775347132629, "stop": 1775347132629}], "attachments": [{"name": "cURL", "source": "29ee5450-507b-4fb6-8943-bae1e7b54011-attachment.txt", "type": "text/plain"}], "start": 1775347132628, "stop": 1775347132629}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "74de1cba-d7ae-4e4b-9ff2-42a13e8457d9-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "20b30045-2dfc-40b2-947c-07215a602cbe-attachment.json", "type": "application/json"}], "start": 1775347132690, "stop": 1775347132690}, {"name": "Response → 200, trace_id: aaf01e0331456377428af64f8a7854c8", "status": "passed", "attachments": [{"name": "response.headers", "source": "201dbefe-b2a7-4158-8e30-a678c5442730-attachment.json", "type": "application/json"}], "start": 1775347132690, "stop": 1775347132690}], "attachments": [{"name": "cURL", "source": "87effa70-9b19-4520-85a7-91a90517bc1c-attachment.txt", "type": "text/plain"}], "start": 1775347132690, "stop": 1775347132690}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "cef09589-4386-4e5d-b142-b81b51a0d763-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "05c41fb0-3184-4b96-b752-0de35b4f1908-attachment.json", "type": "application/json"}], "start": 1775347132757, "stop": 1775347132758}, {"name": "Response → 200, trace_id: 4e1c247d35470df7e37c3ad0c5a5cec1", "status": "passed", "attachments": [{"name": "response.headers", "source": "3f05dc0c-6f0d-46ca-b003-fe8d6f66a278-attachment.json", "type": "application/json"}], "start": 1775347132758, "stop": 1775347132758}], "attachments": [{"name": "cURL", "source": "da033d14-4bb9-4e3b-bfec-75634343402c-attachment.txt", "type": "text/plain"}], "start": 1775347132757, "stop": 1775347132758}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "1fdc31bc-917f-4945-94f3-5649b8aaee3b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "dbd8ac24-5b62-4992-b427-ad3e29326e51-attachment.json", "type": "application/json"}], "start": 1775347132823, "stop": 1775347132823}, {"name": "Response → 200, trace_id: 9c8bb15a23385d03de48dc0019df1b10", "status": "passed", "attachments": [{"name": "response.headers", "source": "7702f518-5cb7-4bd4-9020-288ae6cede19-attachment.json", "type": "application/json"}], "start": 1775347132824, "stop": 1775347132824}], "attachments": [{"name": "cURL", "source": "f4c418c8-4944-44c8-86a8-c1051d94225d-attachment.txt", "type": "text/plain"}], "start": 1775347132823, "stop": 1775347132824}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "0ab54570-efb7-49a3-855f-170d79d98964-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5ed5f26a-3c90-46ab-a8ff-29bf0736fb66-attachment.json", "type": "application/json"}], "start": 1775347132898, "stop": 1775347132899}, {"name": "Response → 200, trace_id: 2bcfa9163fb3534e3dc9337cb2a08be4", "status": "passed", "attachments": [{"name": "response.headers", "source": "c7215cc3-059b-46e9-b5f8-d503aa547934-attachment.json", "type": "application/json"}], "start": 1775347132899, "stop": 1775347132899}], "attachments": [{"name": "cURL", "source": "c21537ac-eb44-4ba0-a88f-93b57325193c-attachment.txt", "type": "text/plain"}], "start": 1775347132898, "stop": 1775347132899}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d3b9bc0f-b20c-45bd-a192-e51625b99c45-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d2d2d32b-b19d-447c-8f93-76ebd6686969-attachment.json", "type": "application/json"}], "start": 1775347132962, "stop": 1775347132963}, {"name": "Response → 200, trace_id: a98c1e1bf4dae55da4d9702c70535ef4", "status": "passed", "attachments": [{"name": "response.headers", "source": "2f5c6cf0-3c64-4cdd-af41-97748ee4297d-attachment.json", "type": "application/json"}], "start": 1775347132963, "stop": 1775347132963}], "attachments": [{"name": "cURL", "source": "b6128e2d-bc3e-49cf-9647-2e672fdf3f26-attachment.txt", "type": "text/plain"}], "start": 1775347132962, "stop": 1775347132963}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a4dcfe42-425c-4268-a4dd-bfddf776f0a8-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "24eb6a29-ab9c-43d1-ac88-42890c444d0c-attachment.json", "type": "application/json"}], "start": 1775347133029, "stop": 1775347133029}, {"name": "Response → 200, trace_id: 2da9874e52be198767b575cb10af69ee", "status": "passed", "attachments": [{"name": "response.headers", "source": "8f96e702-60c3-426f-9cb4-9caa0ea04358-attachment.json", "type": "application/json"}], "start": 1775347133029, "stop": 1775347133029}], "attachments": [{"name": "cURL", "source": "9ff541bf-62d0-4711-aa30-632b9e2ca925-attachment.txt", "type": "text/plain"}], "start": 1775347133029, "stop": 1775347133029}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "2d9afba3-ca15-425e-a4ca-e6ea7a87f4a1-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "06e11a50-d9b3-4a42-ac85-14c467abb3ff-attachment.json", "type": "application/json"}], "start": 1775347133095, "stop": 1775347133095}, {"name": "Response → 200, trace_id: e1f0e38b30035c8293582213b33f2d61", "status": "passed", "attachments": [{"name": "response.headers", "source": "2011c0e7-bdd4-45ed-b3db-e67b29830dd5-attachment.json", "type": "application/json"}], "start": 1775347133095, "stop": 1775347133095}], "attachments": [{"name": "cURL", "source": "a9f3aa81-227b-4dd4-b0c5-eaa01729e77e-attachment.txt", "type": "text/plain"}], "start": 1775347133095, "stop": 1775347133095}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "32308f60-b7b5-4e18-a4ea-bea8cb306259-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "8453b068-8f8e-4b56-bf8a-bec75d1f73d8-attachment.json", "type": "application/json"}], "start": 1775347133161, "stop": 1775347133162}, {"name": "Response → 200, trace_id: 1b3b4ad9e62eae4f3c636dcdf129dcfa", "status": "passed", "attachments": [{"name": "response.headers", "source": "01274e47-be4f-4822-a8c1-bd7cc9ca941f-attachment.json", "type": "application/json"}], "start": 1775347133162, "stop": 1775347133162}], "attachments": [{"name": "cURL", "source": "6f62688c-052c-42cb-8c3d-0abdd87cfd5a-attachment.txt", "type": "text/plain"}], "start": 1775347133161, "stop": 1775347133162}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "b935debd-6967-4b6b-a329-1270be980f74-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "bf757edb-2fad-4e48-ac72-9ba2be58893c-attachment.json", "type": "application/json"}], "start": 1775347133227, "stop": 1775347133227}, {"name": "Response → 200, trace_id: 262a33155301de251c0938754cdcc130", "status": "passed", "attachments": [{"name": "response.headers", "source": "45f0e8b8-8d8d-4c0c-ade9-7c458dc0d864-attachment.json", "type": "application/json"}], "start": 1775347133227, "stop": 1775347133227}], "attachments": [{"name": "cURL", "source": "0ea2952f-a2d1-49bc-ac28-d0b7e4d288f1-attachment.txt", "type": "text/plain"}], "start": 1775347133227, "stop": 1775347133227}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "bf1f000d-80c0-4272-a912-f5f8b9e0760d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "fb8611d5-21a6-49ef-bb84-b49dcd527251-attachment.json", "type": "application/json"}], "start": 1775347133297, "stop": 1775347133298}, {"name": "Response → 200, trace_id: aa30589000c3d654e7a8cc0577420c42", "status": "passed", "attachments": [{"name": "response.headers", "source": "6c0d62d3-516e-4328-8540-bc8630c8bdb5-attachment.json", "type": "application/json"}], "start": 1775347133298, "stop": 1775347133298}], "attachments": [{"name": "cURL", "source": "99b156d5-df1a-4385-b433-7fcdc40cab30-attachment.txt", "type": "text/plain"}], "start": 1775347133297, "stop": 1775347133298}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "83ec0bfb-8690-4bc5-bf5f-a52111b6285d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "222d0770-5943-46ef-a01b-bb938cd788e8-attachment.json", "type": "application/json"}], "start": 1775347133365, "stop": 1775347133366}, {"name": "Response → 200, trace_id: 0ba58b519a84bdad99c1c0ac5666c685", "status": "passed", "attachments": [{"name": "response.headers", "source": "f08fcdac-8525-4d73-9be7-d4714571ec7f-attachment.json", "type": "application/json"}], "start": 1775347133366, "stop": 1775347133366}], "attachments": [{"name": "cURL", "source": "48cab737-1df7-4d46-a5f8-2247511e1b54-attachment.txt", "type": "text/plain"}], "start": 1775347133365, "stop": 1775347133366}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "3912980d-b48f-4cbb-938b-359f40e0fe1b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "dc9acd02-50f4-466c-b81e-1b051b0cbf00-attachment.json", "type": "application/json"}], "start": 1775347133433, "stop": 1775347133433}, {"name": "Response → 200, trace_id: c3c786a6cb5daa285240331cf0e6d5ff", "status": "passed", "attachments": [{"name": "response.headers", "source": "2bf2a8b9-4d6b-4ea0-9592-1452fe2a10a5-attachment.json", "type": "application/json"}], "start": 1775347133433, "stop": 1775347133434}], "attachments": [{"name": "cURL", "source": "69706f66-016c-42ee-879b-b5e0bbd5f51e-attachment.txt", "type": "text/plain"}], "start": 1775347133433, "stop": 1775347133434}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "73d7ce96-775b-4bc0-9bac-a927b7452497-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e83622a2-63ba-451f-9fc8-3b48ebaf4dd5-attachment.json", "type": "application/json"}], "start": 1775347133500, "stop": 1775347133501}, {"name": "Response → 200, trace_id: cadff40920a7a87e9afb3f30f4f42d11", "status": "passed", "attachments": [{"name": "response.headers", "source": "cce42f70-c693-4e46-b3df-b60ad94ea6cb-attachment.json", "type": "application/json"}], "start": 1775347133501, "stop": 1775347133501}], "attachments": [{"name": "cURL", "source": "f36a6a0b-a73f-4af3-9fae-26e76765d7a2-attachment.txt", "type": "text/plain"}], "start": 1775347133500, "stop": 1775347133501}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/close-count-box", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "2bede35f-e98d-415d-9dca-f567ecda87a3-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5c20f263-b2cf-4c12-b964-1fe9aa29fd36-attachment.json", "type": "application/json"}], "start": 1775347133532, "stop": 1775347133532}, {"name": "Response → 200, trace_id: d3dfc8775c3966cb84d5c8f7166a6d98", "status": "passed", "attachments": [{"name": "response.headers", "source": "6f11e66a-9537-4460-8dbf-02fa2965e266-attachment.json", "type": "application/json"}], "start": 1775347133532, "stop": 1775347133532}], "attachments": [{"name": "cURL", "source": "2e72705f-259b-419c-8525-d4c14b2bbc96-attachment.txt", "type": "text/plain"}], "start": 1775347133532, "stop": 1775347133532}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/link-box-to-zone", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e79760dc-b4fb-4a66-87e7-e4f525e647a2-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "021a0d55-b956-469a-809b-704bfe4d6a36-attachment.json", "type": "application/json"}], "start": 1775347134321, "stop": 1775347134322}, {"name": "Response → 200, trace_id: 648f37f32b237267c41f2eb160af3c18", "status": "passed", "attachments": [{"name": "response.headers", "source": "847bf07a-f28f-4fc3-80c6-f4febfda6bf2-attachment.json", "type": "application/json"}], "start": 1775347134322, "stop": 1775347134322}], "attachments": [{"name": "cURL", "source": "d95c7e5d-2b08-441d-a8e9-9bdfcbed3066-attachment.txt", "type": "text/plain"}], "start": 1775347134321, "stop": 1775347134322}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/sorting/{sortingType}/box/create", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "0c12da9f-0246-4c3d-9232-06ad6b9274a8-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c1938232-5935-4124-9331-d39adcb2ecae-attachment.json", "type": "application/json"}], "start": 1775347134354, "stop": 1775347134354}, {"name": "Response → 200, trace_id: 6e53caa5453f0b1250796a062ee96f52", "status": "passed", "attachments": [{"name": "response.headers", "source": "04fd62c6-5ecd-43b0-91a4-1b1a5377d800-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "1ef8b64d-9093-47d6-946a-2d359eeffc5d-attachment.txt", "type": "text/plain"}], "start": 1775347134354, "stop": 1775347134354}], "attachments": [{"name": "cURL", "source": "24b0e6fb-7994-4eff-b5ab-e26d38e116a3-attachment.txt", "type": "text/plain"}], "start": 1775347134354, "stop": 1775347134354}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-count-box-to-table", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "75ebf265-29d0-49b7-b5ae-c110f5fe85a2-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5597bf7e-6ea0-4fa2-99a7-59d628861e0a-attachment.json", "type": "application/json"}], "start": 1775347134398, "stop": 1775347134398}, {"name": "Response → 200, trace_id: 1a5fff49b6308090d02a742f5a433f99", "status": "passed", "attachments": [{"name": "response.headers", "source": "7834ced6-2759-4c74-81ac-d662270d0457-attachment.json", "type": "application/json"}], "start": 1775347134398, "stop": 1775347134399}], "attachments": [{"name": "cURL", "source": "a119c19e-0264-4761-bbdc-c78c9ba39ebf-attachment.txt", "type": "text/plain"}], "start": 1775347134398, "stop": 1775347134399}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c0cedc76-b4f6-4b5d-b513-582d80ba2083-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "851d3cd1-a045-44a4-a936-880855b72fe0-attachment.json", "type": "application/json"}], "start": 1775347134468, "stop": 1775347134468}, {"name": "Response → 200, trace_id: 2b779c4b96ba9eb7c907a70cd8cf168c", "status": "passed", "attachments": [{"name": "response.headers", "source": "b9eff3db-17db-4ebc-aa1d-e677af999bab-attachment.json", "type": "application/json"}], "start": 1775347134468, "stop": 1775347134468}], "attachments": [{"name": "cURL", "source": "8e0380cf-3a9a-4386-b832-70028c60a4b2-attachment.txt", "type": "text/plain"}], "start": 1775347134468, "stop": 1775347134468}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "fc9eb46b-f8c2-4efb-93c0-8e1189d123fb-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d1df66fc-3798-4010-8673-f1be8f13d319-attachment.json", "type": "application/json"}], "start": 1775347134535, "stop": 1775347134536}, {"name": "Response → 200, trace_id: 0099d19886f6dc88a55b56017ac4546e", "status": "passed", "attachments": [{"name": "response.headers", "source": "9421c7b3-7618-4b91-921a-267088bf2ebb-attachment.json", "type": "application/json"}], "start": 1775347134536, "stop": 1775347134536}], "attachments": [{"name": "cURL", "source": "275553fa-7bde-49ce-84a9-9a1096f76c43-attachment.txt", "type": "text/plain"}], "start": 1775347134535, "stop": 1775347134536}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "193f9d74-0c2d-4d29-a6d2-0b198f36ef99-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "294867dd-a97a-4bba-bdde-19e2f4b38cda-attachment.json", "type": "application/json"}], "start": 1775347134603, "stop": 1775347134604}, {"name": "Response → 200, trace_id: 75ceed5b45041054a4ccb24e0fdfc767", "status": "passed", "attachments": [{"name": "response.headers", "source": "e120ef04-eb15-45fc-b4c0-080fb55ab6af-attachment.json", "type": "application/json"}], "start": 1775347134604, "stop": 1775347134604}], "attachments": [{"name": "cURL", "source": "26dfc74d-b577-409e-835b-3c2269c90a52-attachment.txt", "type": "text/plain"}], "start": 1775347134603, "stop": 1775347134604}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9177202b-2027-492a-88b2-491ef2879892-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "dccebe67-a361-43a3-8070-5fc6bf232cc3-attachment.json", "type": "application/json"}], "start": 1775347134669, "stop": 1775347134669}, {"name": "Response → 200, trace_id: 3961b7d8dafb432aa6d5a71bd09ea692", "status": "passed", "attachments": [{"name": "response.headers", "source": "ca7d6a00-fbf3-4c84-a28a-06f883318dbd-attachment.json", "type": "application/json"}], "start": 1775347134669, "stop": 1775347134669}], "attachments": [{"name": "cURL", "source": "4146dec9-becb-446a-9eef-277699e69b55-attachment.txt", "type": "text/plain"}], "start": 1775347134669, "stop": 1775347134669}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f85c09ed-fc4a-492e-8434-b8e07b3a7192-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "1bbaeb10-f412-4de5-b16e-652115fe1599-attachment.json", "type": "application/json"}], "start": 1775347134737, "stop": 1775347134738}, {"name": "Response → 200, trace_id: f5c44ce4c487f5cedef464b75a1a4cf5", "status": "passed", "attachments": [{"name": "response.headers", "source": "30547b0d-9705-4f93-ae65-77cdbfcbf8c4-attachment.json", "type": "application/json"}], "start": 1775347134738, "stop": 1775347134738}], "attachments": [{"name": "cURL", "source": "d9e31973-c0dd-4a93-b6d0-f5424a7c7963-attachment.txt", "type": "text/plain"}], "start": 1775347134737, "stop": 1775347134738}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "5816b795-8e84-4caf-9a40-72b5670b3c33-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "cf9d3a98-71f9-4872-87a9-e07da678a2c6-attachment.json", "type": "application/json"}], "start": 1775347134803, "stop": 1775347134804}, {"name": "Response → 200, trace_id: 6064b8472c5ec49f2a455fb76c279323", "status": "passed", "attachments": [{"name": "response.headers", "source": "27b35edb-3a3f-4072-9663-6742dceda9ba-attachment.json", "type": "application/json"}], "start": 1775347134804, "stop": 1775347134804}], "attachments": [{"name": "cURL", "source": "7f6fd1f0-9a52-4b91-ba19-b15d7572bcd2-attachment.txt", "type": "text/plain"}], "start": 1775347134803, "stop": 1775347134804}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "7dc9400c-e319-4077-b3f2-6708cae5ba92-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4a66cdd0-d14b-48f1-be8d-9ccd8398a8c2-attachment.json", "type": "application/json"}], "start": 1775347134870, "stop": 1775347134871}, {"name": "Response → 200, trace_id: 565b68628e9f86a36a8db1229dfd23d7", "status": "passed", "attachments": [{"name": "response.headers", "source": "533afe7d-6d7c-4ce2-be58-642890d65675-attachment.json", "type": "application/json"}], "start": 1775347134871, "stop": 1775347134871}], "attachments": [{"name": "cURL", "source": "d2ee6786-f660-4e76-b5d7-64d2e155d50f-attachment.txt", "type": "text/plain"}], "start": 1775347134870, "stop": 1775347134871}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ed4a9fbc-29f9-41ae-88b3-f82700630586-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "ca9bced4-7fbd-4166-88af-e554d9c1bd0d-attachment.json", "type": "application/json"}], "start": 1775347134938, "stop": 1775347134938}, {"name": "Response → 200, trace_id: 9a912b1f4a4a567fc8b1bae0b490ad05", "status": "passed", "attachments": [{"name": "response.headers", "source": "46fee478-738d-4f45-9b7a-ab98b4e57cbc-attachment.json", "type": "application/json"}], "start": 1775347134938, "stop": 1775347134938}], "attachments": [{"name": "cURL", "source": "d42aa061-cf40-4ec3-b0c7-ddf64653286d-attachment.txt", "type": "text/plain"}], "start": 1775347134938, "stop": 1775347134938}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e35dfd19-b962-482d-9480-d177ad11f9f6-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "fc25d0c1-7f83-49b7-a015-761957c3ea62-attachment.json", "type": "application/json"}], "start": 1775347135003, "stop": 1775347135003}, {"name": "Response → 200, trace_id: cee42f3b5959f8abdd65644e63216c6c", "status": "passed", "attachments": [{"name": "response.headers", "source": "e4da2f0d-cb7d-482d-9955-5748cc23e363-attachment.json", "type": "application/json"}], "start": 1775347135003, "stop": 1775347135003}], "attachments": [{"name": "cURL", "source": "2c4bab3e-5ae8-41a2-8433-e21cbe3ba802-attachment.txt", "type": "text/plain"}], "start": 1775347135003, "stop": 1775347135003}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "b662f6e4-aa9e-47b8-a9ed-26c0eb8f230b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "cffad154-2521-4c39-99e2-1c035c9a424b-attachment.json", "type": "application/json"}], "start": 1775347135070, "stop": 1775347135070}, {"name": "Response → 200, trace_id: 8ebae12419ed5caf2dba9cbff7290dd9", "status": "passed", "attachments": [{"name": "response.headers", "source": "dfdcb0f0-c9a0-44a4-bdc8-41688cfc0664-attachment.json", "type": "application/json"}], "start": 1775347135070, "stop": 1775347135071}], "attachments": [{"name": "cURL", "source": "6eeba519-46cb-45ee-9eda-732bd3b80b55-attachment.txt", "type": "text/plain"}], "start": 1775347135070, "stop": 1775347135071}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a28882a4-7a74-4fd0-83b1-0c71b2209573-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "9ac41437-cd22-4f70-af30-a5f4fd3f1294-attachment.json", "type": "application/json"}], "start": 1775347135142, "stop": 1775347135142}, {"name": "Response → 200, trace_id: cbbfd63b12b89679187cfff7fd5810cb", "status": "passed", "attachments": [{"name": "response.headers", "source": "c71763c5-bbb4-4482-9ba1-5a5ea9ec923a-attachment.json", "type": "application/json"}], "start": 1775347135142, "stop": 1775347135142}], "attachments": [{"name": "cURL", "source": "2479b87f-49ec-42c1-91a0-f565392557c5-attachment.txt", "type": "text/plain"}], "start": 1775347135141, "stop": 1775347135142}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c521afaf-1a40-41df-8f1f-14e5be4389be-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "40c8be9b-6119-4607-a408-c64efa6c84fe-attachment.json", "type": "application/json"}], "start": 1775347135210, "stop": 1775347135210}, {"name": "Response → 200, trace_id: b80b4dbd9840c9a46317a2b29cd24dc8", "status": "passed", "attachments": [{"name": "response.headers", "source": "6a3a6325-32d5-48b4-ae5a-f487ca0774e7-attachment.json", "type": "application/json"}], "start": 1775347135210, "stop": 1775347135210}], "attachments": [{"name": "cURL", "source": "f318de32-cea9-4957-b297-35118dcda4db-attachment.txt", "type": "text/plain"}], "start": 1775347135210, "stop": 1775347135210}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "bf0fdd3e-461b-4924-91b8-f36dc25b0803-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "fa67369b-f22a-457e-958c-66c0c68553f8-attachment.json", "type": "application/json"}], "start": 1775347135279, "stop": 1775347135279}, {"name": "Response → 200, trace_id: fe6636dc36de0a7864071e99dd58f398", "status": "passed", "attachments": [{"name": "response.headers", "source": "4bba39b6-624a-4fc1-9955-fd1fab6d5a7c-attachment.json", "type": "application/json"}], "start": 1775347135279, "stop": 1775347135280}], "attachments": [{"name": "cURL", "source": "d3f4d979-ec61-4fcb-a5da-18f0376a4b8c-attachment.txt", "type": "text/plain"}], "start": 1775347135279, "stop": 1775347135280}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a2a8f580-047f-4765-bc85-6ff8e28bae4f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "9a1d8aff-033a-4841-91aa-a4bb4e1e195c-attachment.json", "type": "application/json"}], "start": 1775347135346, "stop": 1775347135346}, {"name": "Response → 200, trace_id: e54dda90da640d1b609557ad417f71c7", "status": "passed", "attachments": [{"name": "response.headers", "source": "85b0e1df-199a-48f1-bb66-d9e63016bd3d-attachment.json", "type": "application/json"}], "start": 1775347135346, "stop": 1775347135346}], "attachments": [{"name": "cURL", "source": "55c21e07-1492-48f3-a463-bb075cc423b6-attachment.txt", "type": "text/plain"}], "start": 1775347135346, "stop": 1775347135346}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "841ceaa7-e7b5-4e95-829d-6158c2b37441-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "64336c84-0004-4f9b-95f1-9e941945436a-attachment.json", "type": "application/json"}], "start": 1775347135413, "stop": 1775347135413}, {"name": "Response → 200, trace_id: 0bc8130f4588081757b10c839d6f9eac", "status": "passed", "attachments": [{"name": "response.headers", "source": "eaf65c9d-3a5c-46e4-9d01-6344b6dbbcbc-attachment.json", "type": "application/json"}], "start": 1775347135414, "stop": 1775347135414}], "attachments": [{"name": "cURL", "source": "7d3ea4a6-7784-4bca-8f58-eed7b358a56e-attachment.txt", "type": "text/plain"}], "start": 1775347135413, "stop": 1775347135414}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "574f0f3f-3183-4049-ab69-bcf12f82058b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "612438c2-2c15-4c89-8182-8e246bf4d115-attachment.json", "type": "application/json"}], "start": 1775347135479, "stop": 1775347135480}, {"name": "Response → 200, trace_id: 68c358511962a045e56569fdcebba4ec", "status": "passed", "attachments": [{"name": "response.headers", "source": "a87b8769-3417-4690-a97f-b22c419f7109-attachment.json", "type": "application/json"}], "start": 1775347135480, "stop": 1775347135480}], "attachments": [{"name": "cURL", "source": "885edc68-7ed7-4471-9289-8cc3ebefd3bd-attachment.txt", "type": "text/plain"}], "start": 1775347135479, "stop": 1775347135480}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e113cf33-75d5-4d41-bf1c-b97e953e8bb2-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "08c8e2a0-2454-4a35-9ff6-e660edc2d203-attachment.json", "type": "application/json"}], "start": 1775347135546, "stop": 1775347135546}, {"name": "Response → 200, trace_id: 3222eef56b40c0992f615252df106022", "status": "passed", "attachments": [{"name": "response.headers", "source": "de61d6b6-57b1-4327-9204-66fb2c1fc0e1-attachment.json", "type": "application/json"}], "start": 1775347135546, "stop": 1775347135546}], "attachments": [{"name": "cURL", "source": "db38d0e6-2eff-401c-b5ae-997266ae8a87-attachment.txt", "type": "text/plain"}], "start": 1775347135546, "stop": 1775347135546}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "79e0a7aa-e6c7-4128-8650-adff2cd2df40-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "fcca0f43-343f-46f8-b3ba-d7a94c18300b-attachment.json", "type": "application/json"}], "start": 1775347135610, "stop": 1775347135610}, {"name": "Response → 200, trace_id: 40c4253eedb610a479c96254ffc60fdf", "status": "passed", "attachments": [{"name": "response.headers", "source": "b3273e27-a4d5-4cca-b01f-acb6e3f7b5f7-attachment.json", "type": "application/json"}], "start": 1775347135610, "stop": 1775347135610}], "attachments": [{"name": "cURL", "source": "773f6348-58e8-4627-aabd-ce8de212559e-attachment.txt", "type": "text/plain"}], "start": 1775347135610, "stop": 1775347135610}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "4863bcf7-3460-4d01-9152-ff0964db7ae6-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "3df4333a-709a-4915-815f-37ae04c26bd4-attachment.json", "type": "application/json"}], "start": 1775347135675, "stop": 1775347135675}, {"name": "Response → 200, trace_id: f8be5e7fdea315b748e63a2eaecdc452", "status": "passed", "attachments": [{"name": "response.headers", "source": "c108f055-57ba-48fd-af45-3feaa5f2b6a7-attachment.json", "type": "application/json"}], "start": 1775347135675, "stop": 1775347135675}], "attachments": [{"name": "cURL", "source": "1795f907-490e-427f-8b3c-a6d70af18f31-attachment.txt", "type": "text/plain"}], "start": 1775347135674, "stop": 1775347135675}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "745eaca2-c618-453a-a926-816dbf74eae8-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "41ccb320-a74d-44eb-8c35-80dc2f688393-attachment.json", "type": "application/json"}], "start": 1775347135736, "stop": 1775347135737}, {"name": "Response → 200, trace_id: 8f833f52ddaef82465ae7bd1b6d6ecb0", "status": "passed", "attachments": [{"name": "response.headers", "source": "5d5ed003-950d-4e26-ab5f-7296b93731a7-attachment.json", "type": "application/json"}], "start": 1775347135737, "stop": 1775347135737}], "attachments": [{"name": "cURL", "source": "2f5b7749-5240-474c-8455-7146866ae339-attachment.txt", "type": "text/plain"}], "start": 1775347135736, "stop": 1775347135737}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "0b449f50-2db8-440b-b713-6c2681f4d5bc-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c93770fe-2c2b-4b65-aa2a-1a479ef65abd-attachment.json", "type": "application/json"}], "start": 1775347135806, "stop": 1775347135807}, {"name": "Response → 200, trace_id: 6ccaf0b2683a1c3530ac902dd3c55f49", "status": "passed", "attachments": [{"name": "response.headers", "source": "4a11b32b-1936-4d66-a83f-6829cb8efd4d-attachment.json", "type": "application/json"}], "start": 1775347135807, "stop": 1775347135807}], "attachments": [{"name": "cURL", "source": "acecc1f3-545b-417b-aad1-ab77c591c0db-attachment.txt", "type": "text/plain"}], "start": 1775347135806, "stop": 1775347135807}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "92f57d5c-08a0-4640-8a2f-6aec8d31b6da-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5c01d7e6-85d1-488e-aad9-41c004197a78-attachment.json", "type": "application/json"}], "start": 1775347135870, "stop": 1775347135870}, {"name": "Response → 200, trace_id: f424848c6fd5067ca6773a4525f1abee", "status": "passed", "attachments": [{"name": "response.headers", "source": "d4f81bdf-4f39-42be-984f-e95dc6f58dd3-attachment.json", "type": "application/json"}], "start": 1775347135870, "stop": 1775347135870}], "attachments": [{"name": "cURL", "source": "620ecffc-6188-436f-a9e5-2109a7a0474e-attachment.txt", "type": "text/plain"}], "start": 1775347135870, "stop": 1775347135870}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "989ffe55-8bfb-45d9-beef-92fd27602527-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "2c480124-77cc-4580-b7df-7e3541b15c58-attachment.json", "type": "application/json"}], "start": 1775347135934, "stop": 1775347135934}, {"name": "Response → 200, trace_id: 0dd184b9df7d7930604ab4c16c789641", "status": "passed", "attachments": [{"name": "response.headers", "source": "da13a6fc-45cd-476c-8fef-03e23dc44eb4-attachment.json", "type": "application/json"}], "start": 1775347135934, "stop": 1775347135934}], "attachments": [{"name": "cURL", "source": "cf03d85a-6fbd-4b89-b681-c9c38d086c79-attachment.txt", "type": "text/plain"}], "start": 1775347135934, "stop": 1775347135934}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "08fabae2-53b9-4bee-8e16-534e530ed40d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f1eb56fc-1235-491c-8ac8-f0eced382707-attachment.json", "type": "application/json"}], "start": 1775347135996, "stop": 1775347135996}, {"name": "Response → 200, trace_id: d0ee386b43780429076a4b9604e6cd7f", "status": "passed", "attachments": [{"name": "response.headers", "source": "54e9dedb-dbe6-40dc-a262-b3818fb9d9b5-attachment.json", "type": "application/json"}], "start": 1775347135996, "stop": 1775347135996}], "attachments": [{"name": "cURL", "source": "df26da75-f724-434e-961e-47e7ffd1ba17-attachment.txt", "type": "text/plain"}], "start": 1775347135996, "stop": 1775347135996}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e1567c40-b65a-4c88-a0c6-3d2262000e89-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "73297d9d-5ddf-45a2-976e-87ff9d996c6d-attachment.json", "type": "application/json"}], "start": 1775347136061, "stop": 1775347136062}, {"name": "Response → 200, trace_id: 77c77678a7e932d2d0c7e597f13b8b6a", "status": "passed", "attachments": [{"name": "response.headers", "source": "8f8ecc85-9ec5-406f-9b8d-b3cd2f293c8f-attachment.json", "type": "application/json"}], "start": 1775347136062, "stop": 1775347136062}], "attachments": [{"name": "cURL", "source": "f0bfface-2d33-4833-9f65-95ef95317218-attachment.txt", "type": "text/plain"}], "start": 1775347136061, "stop": 1775347136062}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "787ffec4-dadb-4b25-86a7-00b4f91d272c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "36e95590-3bf8-4f5b-b2ac-e6412fdfe307-attachment.json", "type": "application/json"}], "start": 1775347136127, "stop": 1775347136127}, {"name": "Response → 200, trace_id: 45e6ed9cf168d093cc7fbf88ec6e3d9c", "status": "passed", "attachments": [{"name": "response.headers", "source": "2af64980-c1af-4640-9c8a-5ba541fa7216-attachment.json", "type": "application/json"}], "start": 1775347136127, "stop": 1775347136127}], "attachments": [{"name": "cURL", "source": "4b1f79c9-6350-4105-9651-e1fd0a08da94-attachment.txt", "type": "text/plain"}], "start": 1775347136127, "stop": 1775347136127}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "eff58da2-21de-4384-b1eb-ba8efc2a3a32-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "347cebd7-d19c-4107-98a6-3f14b95b95ca-attachment.json", "type": "application/json"}], "start": 1775347136194, "stop": 1775347136194}, {"name": "Response → 200, trace_id: 5f8ef87fb304a7ab83d0c444276eecaf", "status": "passed", "attachments": [{"name": "response.headers", "source": "39ac6f39-7b68-416b-b790-4da0559a1d29-attachment.json", "type": "application/json"}], "start": 1775347136194, "stop": 1775347136194}], "attachments": [{"name": "cURL", "source": "7f59fc1f-e06d-4274-b781-3708f2f3adae-attachment.txt", "type": "text/plain"}], "start": 1775347136194, "stop": 1775347136194}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "6132acaf-cb73-4943-abdb-470b0ba01018-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "8a0bf6c9-6e23-4a51-922d-2a8f6971850a-attachment.json", "type": "application/json"}], "start": 1775347136259, "stop": 1775347136259}, {"name": "Response → 200, trace_id: 55edf23b91daef9da43e0eb128bf82cc", "status": "passed", "attachments": [{"name": "response.headers", "source": "70476058-b1bb-4a39-8367-04d4aad240c7-attachment.json", "type": "application/json"}], "start": 1775347136259, "stop": 1775347136259}], "attachments": [{"name": "cURL", "source": "ec960b11-2e63-48c1-9f54-59043c901a19-attachment.txt", "type": "text/plain"}], "start": 1775347136259, "stop": 1775347136259}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e5a83154-2079-433b-a99c-e524b7149888-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "96e26429-0db8-4e81-8762-5e11c91a28ce-attachment.json", "type": "application/json"}], "start": 1775347136326, "stop": 1775347136326}, {"name": "Response → 200, trace_id: 1e118f8213324e9446e62bf5ad31fae0", "status": "passed", "attachments": [{"name": "response.headers", "source": "1766f2b5-d4a4-4b05-8ecd-d563852043af-attachment.json", "type": "application/json"}], "start": 1775347136326, "stop": 1775347136327}], "attachments": [{"name": "cURL", "source": "c4ed9abb-bfb9-4746-b290-7ee5167037bd-attachment.txt", "type": "text/plain"}], "start": 1775347136326, "stop": 1775347136327}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c4632920-13dc-4744-a005-cd981752d737-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d9e3ded9-efb3-45cb-9f49-ea29567b3de7-attachment.json", "type": "application/json"}], "start": 1775347136389, "stop": 1775347136389}, {"name": "Response → 200, trace_id: 1af990df00ca5e5cf3eb0c0339e40671", "status": "passed", "attachments": [{"name": "response.headers", "source": "b79a87d9-c57f-44ae-8b10-373aab690451-attachment.json", "type": "application/json"}], "start": 1775347136389, "stop": 1775347136389}], "attachments": [{"name": "cURL", "source": "e11189d2-0064-4b42-bbb1-ec78ab9ffda5-attachment.txt", "type": "text/plain"}], "start": 1775347136389, "stop": 1775347136390}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/close-count-box", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "389b36e0-281e-45bf-95f7-b84a62167ee9-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "72aea452-2e1e-4bdd-8241-47b5637c6b71-attachment.json", "type": "application/json"}], "start": 1775347136425, "stop": 1775347136426}, {"name": "Response → 200, trace_id: 25f79a991f0b606e5fa529fae7a60560", "status": "passed", "attachments": [{"name": "response.headers", "source": "270b132a-8b32-4843-920a-a345a2838713-attachment.json", "type": "application/json"}], "start": 1775347136426, "stop": 1775347136426}], "attachments": [{"name": "cURL", "source": "50762c6a-3ade-402d-b2b2-9239592edf0a-attachment.txt", "type": "text/plain"}], "start": 1775347136425, "stop": 1775347136426}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/link-box-to-zone", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "578eabe6-f2e0-4154-8a9d-b84a57b4f04e-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d95dbec0-95f4-4b52-8beb-4d7d3a584745-attachment.json", "type": "application/json"}], "start": 1775347137617, "stop": 1775347137617}, {"name": "Response → 200, trace_id: e88359758700b565615624ca39403955", "status": "passed", "attachments": [{"name": "response.headers", "source": "7f3b5811-d357-4d31-9036-682c0349b2e1-attachment.json", "type": "application/json"}], "start": 1775347137617, "stop": 1775347137617}], "attachments": [{"name": "cURL", "source": "635b225a-a366-4200-ab58-7684ec130fbb-attachment.txt", "type": "text/plain"}], "start": 1775347137617, "stop": 1775347137617}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/sorting/{sortingType}/box/create", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "bcce7a52-0abc-46f0-a24a-75f3d7a48f24-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "b3ba3d8c-0aa2-46b4-8c87-7d15113229a0-attachment.json", "type": "application/json"}], "start": 1775347137647, "stop": 1775347137647}, {"name": "Response → 200, trace_id: b4e521a76873ab8f8d1b47e226b0c8ae", "status": "passed", "attachments": [{"name": "response.headers", "source": "adb6b17b-278d-4c05-8d18-9093c2860d21-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "f9f7a89a-56c8-4631-8845-ae9509d7335e-attachment.txt", "type": "text/plain"}], "start": 1775347137647, "stop": 1775347137647}], "attachments": [{"name": "cURL", "source": "979307b5-1d72-40d2-a87d-922f554075c0-attachment.txt", "type": "text/plain"}], "start": 1775347137647, "stop": 1775347137647}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-count-box-to-table", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "b65490bf-0020-4603-b5f3-c33c7777407e-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "8f9dd0a1-eced-40e9-b4bf-d5b09502284f-attachment.json", "type": "application/json"}], "start": 1775347137686, "stop": 1775347137687}, {"name": "Response → 200, trace_id: f04ccd9e99f5a517dd68c03da834df3b", "status": "passed", "attachments": [{"name": "response.headers", "source": "575f7c72-4fe5-4546-8f6f-42a3ccb65c0b-attachment.json", "type": "application/json"}], "start": 1775347137687, "stop": 1775347137687}], "attachments": [{"name": "cURL", "source": "3f97ec31-c1b9-49d8-815f-f99ec5007526-attachment.txt", "type": "text/plain"}], "start": 1775347137686, "stop": 1775347137687}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "7c69741c-2701-4a00-a1a9-91943f9a3250-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "91efe5cc-3f2b-4ad4-8d15-dcf9060e3a73-attachment.json", "type": "application/json"}], "start": 1775347137751, "stop": 1775347137751}, {"name": "Response → 200, trace_id: c32cc653be64518d3cb27b8415f26c73", "status": "passed", "attachments": [{"name": "response.headers", "source": "7b475cfc-ee3a-420f-aff5-08b0b8a8aaef-attachment.json", "type": "application/json"}], "start": 1775347137751, "stop": 1775347137751}], "attachments": [{"name": "cURL", "source": "43854e95-f9cc-4187-80dc-e5737d114711-attachment.txt", "type": "text/plain"}], "start": 1775347137751, "stop": 1775347137751}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "65e6ff7b-1fa7-4e87-8933-8067b3db3f58-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "3e533464-a2c2-408b-a9ea-84d467fb30ab-attachment.json", "type": "application/json"}], "start": 1775347137813, "stop": 1775347137814}, {"name": "Response → 200, trace_id: 9cade6c1d65638588983726a970f6236", "status": "passed", "attachments": [{"name": "response.headers", "source": "63fc0f00-170e-4f57-b78a-a1279da14934-attachment.json", "type": "application/json"}], "start": 1775347137814, "stop": 1775347137814}], "attachments": [{"name": "cURL", "source": "2081f7e6-5733-4370-b58c-3f2797c2d2ec-attachment.txt", "type": "text/plain"}], "start": 1775347137813, "stop": 1775347137814}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "5509e3a3-34ec-4b17-87aa-4a6b6c7663be-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f2af9cba-7c2b-48fb-9736-426f77f28024-attachment.json", "type": "application/json"}], "start": 1775347137876, "stop": 1775347137876}, {"name": "Response → 200, trace_id: 7de9d54d27b94e74d60df06041319747", "status": "passed", "attachments": [{"name": "response.headers", "source": "df5c3119-5a95-4a3e-a18a-259214622de1-attachment.json", "type": "application/json"}], "start": 1775347137876, "stop": 1775347137876}], "attachments": [{"name": "cURL", "source": "ce481a28-052a-4932-a01a-275037a0c0b5-attachment.txt", "type": "text/plain"}], "start": 1775347137876, "stop": 1775347137876}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "268bd753-22a8-435c-804c-2c2f663e3df1-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5d201ca6-79c0-40f4-84e9-1509ea60675d-attachment.json", "type": "application/json"}], "start": 1775347137936, "stop": 1775347137936}, {"name": "Response → 200, trace_id: 265ae06e6c91d73bd3c922a5bc0d4a9f", "status": "passed", "attachments": [{"name": "response.headers", "source": "18295da7-d190-4769-9387-f0ffe437c756-attachment.json", "type": "application/json"}], "start": 1775347137936, "stop": 1775347137937}], "attachments": [{"name": "cURL", "source": "68cbea40-29c8-444f-b9ad-6beb78c8b8e2-attachment.txt", "type": "text/plain"}], "start": 1775347137936, "stop": 1775347137937}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c5844b62-00c5-4f23-8368-c90401b4da37-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "797dea2f-af4a-4154-96a8-2bcdddcaf6a5-attachment.json", "type": "application/json"}], "start": 1775347137992, "stop": 1775347137992}, {"name": "Response → 200, trace_id: 8f723857cca829ffb018015c083524f2", "status": "passed", "attachments": [{"name": "response.headers", "source": "35b65f35-f92a-4029-86e3-b315de95dafc-attachment.json", "type": "application/json"}], "start": 1775347137992, "stop": 1775347137992}], "attachments": [{"name": "cURL", "source": "c4cf83ef-3e79-4a3a-a521-2699ea46a3d4-attachment.txt", "type": "text/plain"}], "start": 1775347137992, "stop": 1775347137992}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "90fa8a2d-3e6a-4529-8129-f66b83d6eef4-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "88047b43-94f9-456e-96e0-40f64a59cdb9-attachment.json", "type": "application/json"}], "start": 1775347138054, "stop": 1775347138055}, {"name": "Response → 200, trace_id: 4399848ff3d2ba8e69dd9a5dbd40c5af", "status": "passed", "attachments": [{"name": "response.headers", "source": "5c729691-6e7a-489a-9de7-93de93008a81-attachment.json", "type": "application/json"}], "start": 1775347138055, "stop": 1775347138055}], "attachments": [{"name": "cURL", "source": "35545d39-90b4-4e4b-a041-61e6df6e756d-attachment.txt", "type": "text/plain"}], "start": 1775347138054, "stop": 1775347138055}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "6ef52d90-5cde-4bb6-a5a1-c965093cf0be-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "42fb991f-93cd-454d-b1eb-ee74f5523f4c-attachment.json", "type": "application/json"}], "start": 1775347138115, "stop": 1775347138115}, {"name": "Response → 200, trace_id: 5945bb1dc2a0a04a5c111bd807921ec4", "status": "passed", "attachments": [{"name": "response.headers", "source": "e6f137b7-eb0b-4765-9ea0-df3db51bb93f-attachment.json", "type": "application/json"}], "start": 1775347138115, "stop": 1775347138115}], "attachments": [{"name": "cURL", "source": "a1cff787-9253-4740-ae96-650016452751-attachment.txt", "type": "text/plain"}], "start": 1775347138115, "stop": 1775347138115}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "5d237c33-ec02-4860-8360-c4bbf458e21f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c8fa3d80-37ce-4036-b99e-4cbf1d275197-attachment.json", "type": "application/json"}], "start": 1775347138175, "stop": 1775347138176}, {"name": "Response → 200, trace_id: 69395c30f392f478338fa82e84f18272", "status": "passed", "attachments": [{"name": "response.headers", "source": "b371fb5e-0fb7-4021-9b38-5e7fad77d58e-attachment.json", "type": "application/json"}], "start": 1775347138176, "stop": 1775347138176}], "attachments": [{"name": "cURL", "source": "571d9e8e-4f17-48bf-a859-66ed51b6ba33-attachment.txt", "type": "text/plain"}], "start": 1775347138175, "stop": 1775347138176}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "1d699844-26a5-4297-aecf-817de5aaae5d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "920844de-88f6-4c14-aff1-5a2d7d600e0a-attachment.json", "type": "application/json"}], "start": 1775347138243, "stop": 1775347138244}, {"name": "Response → 200, trace_id: 71c9684783bfedf6161bf66f69d1f383", "status": "passed", "attachments": [{"name": "response.headers", "source": "58d02ce5-a562-4a88-9be1-e1248a26ccbd-attachment.json", "type": "application/json"}], "start": 1775347138244, "stop": 1775347138244}], "attachments": [{"name": "cURL", "source": "726a03ed-4442-4830-b001-0f0f7e6fe2c8-attachment.txt", "type": "text/plain"}], "start": 1775347138243, "stop": 1775347138244}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e8d8ccd6-66eb-4253-888b-7c3d62964127-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "ceefab7e-c984-43eb-98da-0ee871e826bd-attachment.json", "type": "application/json"}], "start": 1775347138302, "stop": 1775347138303}, {"name": "Response → 200, trace_id: 4616f59966b36989b6341f4db2b2a2fb", "status": "passed", "attachments": [{"name": "response.headers", "source": "d50d33f7-3b48-42b3-966a-a3c51cc95fd4-attachment.json", "type": "application/json"}], "start": 1775347138303, "stop": 1775347138303}], "attachments": [{"name": "cURL", "source": "cffad5d1-1a73-42a5-97ea-1556a47a1dc7-attachment.txt", "type": "text/plain"}], "start": 1775347138302, "stop": 1775347138303}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "56949a80-37ba-4f24-a096-86e92a6f939f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "effdbd49-6cfd-44a8-b30e-dfcfdf6029b0-attachment.json", "type": "application/json"}], "start": 1775347138367, "stop": 1775347138367}, {"name": "Response → 200, trace_id: 42f64b680e7154bae942cd181451dee3", "status": "passed", "attachments": [{"name": "response.headers", "source": "c8c09c6c-e6f6-4936-a2d4-988ac5d66cb8-attachment.json", "type": "application/json"}], "start": 1775347138367, "stop": 1775347138367}], "attachments": [{"name": "cURL", "source": "941cf4f1-9e4b-49ad-9ded-7f5a05baa1a5-attachment.txt", "type": "text/plain"}], "start": 1775347138366, "stop": 1775347138367}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9fcb77d2-3163-4c00-898d-46597f370a6c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "0d5d8405-066b-4ad1-8dc8-7c1d626dea2e-attachment.json", "type": "application/json"}], "start": 1775347138430, "stop": 1775347138430}, {"name": "Response → 200, trace_id: e17905e750a907188b4d677cc4a700a9", "status": "passed", "attachments": [{"name": "response.headers", "source": "ff72b491-702c-42fd-9a21-f67854800287-attachment.json", "type": "application/json"}], "start": 1775347138430, "stop": 1775347138430}], "attachments": [{"name": "cURL", "source": "b8ab4267-bb9e-4a57-ad2d-23e1f7412d5d-attachment.txt", "type": "text/plain"}], "start": 1775347138430, "stop": 1775347138430}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "6eba86f9-4d77-4563-8deb-4e124f23520c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e5045393-29bc-4aac-a0ae-75f1b43d4d9a-attachment.json", "type": "application/json"}], "start": 1775347138491, "stop": 1775347138491}, {"name": "Response → 200, trace_id: b9d8e081dee5c6125fbf71b90fb57e8c", "status": "passed", "attachments": [{"name": "response.headers", "source": "77bef233-3545-4b2f-a95d-3178e0359253-attachment.json", "type": "application/json"}], "start": 1775347138491, "stop": 1775347138492}], "attachments": [{"name": "cURL", "source": "2e20ac95-a7bb-476b-81c2-a088191b2bb2-attachment.txt", "type": "text/plain"}], "start": 1775347138491, "stop": 1775347138492}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "1d11049f-6bde-4bef-bb9a-f5d0660721eb-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "06373721-85ee-47ad-a650-a7666594b555-attachment.json", "type": "application/json"}], "start": 1775347138553, "stop": 1775347138553}, {"name": "Response → 200, trace_id: 28c14523f3d296e437009525359bcc7c", "status": "passed", "attachments": [{"name": "response.headers", "source": "66f03076-e12a-416b-91f9-70c72c946250-attachment.json", "type": "application/json"}], "start": 1775347138553, "stop": 1775347138553}], "attachments": [{"name": "cURL", "source": "8d1ee381-734d-4746-b07b-cfa55f1ce6eb-attachment.txt", "type": "text/plain"}], "start": 1775347138553, "stop": 1775347138553}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d8be6106-04a4-4bfc-955f-9c2dbdb8e075-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "dedc7847-21a0-4d76-890e-2e367ec06563-attachment.json", "type": "application/json"}], "start": 1775347138612, "stop": 1775347138612}, {"name": "Response → 200, trace_id: cb29a58bada934e9ef348d6b4bdca64b", "status": "passed", "attachments": [{"name": "response.headers", "source": "a04ca122-7b71-43be-9d9d-9f16a15ca416-attachment.json", "type": "application/json"}], "start": 1775347138612, "stop": 1775347138612}], "attachments": [{"name": "cURL", "source": "38826b1e-3cc7-4e84-b6fa-340d90160ed8-attachment.txt", "type": "text/plain"}], "start": 1775347138612, "stop": 1775347138612}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c6a32b66-4c0c-43f1-a3a2-7d03721cfdfa-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a5dd45ee-20ad-4013-8f31-b6327048eb24-attachment.json", "type": "application/json"}], "start": 1775347138675, "stop": 1775347138675}, {"name": "Response → 200, trace_id: c9c479fda6aad0baf9ff49da2a9dffce", "status": "passed", "attachments": [{"name": "response.headers", "source": "cd34a977-0641-4a9c-be01-48e4e7b8b9fc-attachment.json", "type": "application/json"}], "start": 1775347138675, "stop": 1775347138675}], "attachments": [{"name": "cURL", "source": "201fe20b-bf9f-4e0f-a882-3c930249d7a4-attachment.txt", "type": "text/plain"}], "start": 1775347138675, "stop": 1775347138675}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d2d1a652-fb92-4daf-ab68-16bb8d6a63ec-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "88b1527f-bcfa-4747-b928-380af4a7c9b6-attachment.json", "type": "application/json"}], "start": 1775347138738, "stop": 1775347138738}, {"name": "Response → 200, trace_id: de012636462d75d9b07b845041f4aa0a", "status": "passed", "attachments": [{"name": "response.headers", "source": "00da8935-2a9e-4b14-a4ee-3152ab38ecac-attachment.json", "type": "application/json"}], "start": 1775347138738, "stop": 1775347138738}], "attachments": [{"name": "cURL", "source": "1efb48af-b353-455e-96d6-0f1a4bc52461-attachment.txt", "type": "text/plain"}], "start": 1775347138738, "stop": 1775347138738}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "60c8f295-c17d-453c-b497-0f347d1e047e-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "7f47b183-b87f-44ec-9d8a-a39cdba58565-attachment.json", "type": "application/json"}], "start": 1775347138799, "stop": 1775347138799}, {"name": "Response → 200, trace_id: 09aa02ebf3a67e6282e2e0fa3e601d18", "status": "passed", "attachments": [{"name": "response.headers", "source": "2ad6f2d2-0078-47d2-ac3c-07f9d39d9e33-attachment.json", "type": "application/json"}], "start": 1775347138799, "stop": 1775347138799}], "attachments": [{"name": "cURL", "source": "f075e885-bbf8-49ab-ac60-505f5f5f89ff-attachment.txt", "type": "text/plain"}], "start": 1775347138799, "stop": 1775347138799}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "0449d202-3780-4553-9954-0cf3419fe756-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a2015c0b-6eb2-40bb-acd5-752d448ee3c2-attachment.json", "type": "application/json"}], "start": 1775347138861, "stop": 1775347138861}, {"name": "Response → 200, trace_id: 6061e052c11230878e815a417abcfade", "status": "passed", "attachments": [{"name": "response.headers", "source": "96982826-1251-4dc0-b23b-2844c4933b06-attachment.json", "type": "application/json"}], "start": 1775347138861, "stop": 1775347138861}], "attachments": [{"name": "cURL", "source": "a1e99478-c47e-466c-ac49-b71a0aa4e7cf-attachment.txt", "type": "text/plain"}], "start": 1775347138861, "stop": 1775347138861}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "0f8ceff7-957b-4a64-9f04-a676b86d738d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "71d7ff16-d8ff-4bbc-a87f-31f9cb6560f0-attachment.json", "type": "application/json"}], "start": 1775347138923, "stop": 1775347138923}, {"name": "Response → 200, trace_id: 468dee6a639e5c4ee74e5f6a8b0a7693", "status": "passed", "attachments": [{"name": "response.headers", "source": "156049b8-5015-43e9-9f15-75e690ac0479-attachment.json", "type": "application/json"}], "start": 1775347138923, "stop": 1775347138923}], "attachments": [{"name": "cURL", "source": "fee9c385-e51d-47a4-9af6-573667eae16e-attachment.txt", "type": "text/plain"}], "start": 1775347138923, "stop": 1775347138924}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "6a379d0f-3ca6-4904-8340-175a370a17d1-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "12ee9b5f-d63f-40b6-96b3-b762c976fa3d-attachment.json", "type": "application/json"}], "start": 1775347138985, "stop": 1775347138986}, {"name": "Response → 200, trace_id: 2aa4dd5055459d0249ebbbc4f8f2a789", "status": "passed", "attachments": [{"name": "response.headers", "source": "8dc5b97e-3ccf-4948-97c9-6b5410b28e21-attachment.json", "type": "application/json"}], "start": 1775347138986, "stop": 1775347138986}], "attachments": [{"name": "cURL", "source": "93dad2e0-44b8-4efc-a4fd-900303668501-attachment.txt", "type": "text/plain"}], "start": 1775347138985, "stop": 1775347138986}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ace90fab-af31-4805-acda-c3ff9c650b5c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "db4ba90e-5202-4f77-aceb-28f3abb2345f-attachment.json", "type": "application/json"}], "start": 1775347139045, "stop": 1775347139046}, {"name": "Response → 200, trace_id: bd1754ee9bcbddc92db6591e0d0ffb6f", "status": "passed", "attachments": [{"name": "response.headers", "source": "ba97c1f8-5f46-425e-8100-c95e912fbb12-attachment.json", "type": "application/json"}], "start": 1775347139046, "stop": 1775347139046}], "attachments": [{"name": "cURL", "source": "c7b11009-71a9-44a7-8564-1927b55bfd59-attachment.txt", "type": "text/plain"}], "start": 1775347139045, "stop": 1775347139046}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f2956593-8d3d-4c11-95f1-c60f8f492b98-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "ed3b35df-4f3b-462f-9a37-20a1907f9731-attachment.json", "type": "application/json"}], "start": 1775347139104, "stop": 1775347139105}, {"name": "Response → 200, trace_id: 437e5d075dd9f35d08ca7a7ddbf0f1b0", "status": "passed", "attachments": [{"name": "response.headers", "source": "f45bf22a-b9de-45f0-8192-aa39fc741b20-attachment.json", "type": "application/json"}], "start": 1775347139105, "stop": 1775347139105}], "attachments": [{"name": "cURL", "source": "83f173b5-fe52-47be-be17-b4b7be2bb162-attachment.txt", "type": "text/plain"}], "start": 1775347139104, "stop": 1775347139105}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "bb6b3542-6d5f-444e-ba62-b8c1dc192f10-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "afa6b4a3-155a-497f-9ebc-a7695f78afe0-attachment.json", "type": "application/json"}], "start": 1775347139166, "stop": 1775347139167}, {"name": "Response → 200, trace_id: f502d526ed2cc9366a5ed43896e671bf", "status": "passed", "attachments": [{"name": "response.headers", "source": "509d7d10-e8b6-4a12-a8b3-eb324d22adf7-attachment.json", "type": "application/json"}], "start": 1775347139167, "stop": 1775347139167}], "attachments": [{"name": "cURL", "source": "2210c893-d3a8-4640-aeba-70bb6669e618-attachment.txt", "type": "text/plain"}], "start": 1775347139166, "stop": 1775347139167}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "1d7b2145-899c-4969-a817-762c7c3bc70f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f2af097f-fafc-4bfb-8f2f-c83a7ee1600c-attachment.json", "type": "application/json"}], "start": 1775347139232, "stop": 1775347139232}, {"name": "Response → 200, trace_id: 1d5bfc7cceeb5e7509e800381ec3f01d", "status": "passed", "attachments": [{"name": "response.headers", "source": "a394b6a3-586b-4fe6-b5d4-42622438a9ec-attachment.json", "type": "application/json"}], "start": 1775347139232, "stop": 1775347139232}], "attachments": [{"name": "cURL", "source": "b9ba562f-9b69-4454-9b15-4cae324536d0-attachment.txt", "type": "text/plain"}], "start": 1775347139232, "stop": 1775347139232}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "bd1f80e9-0bf0-430b-b5f7-ae11b71cec6d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "cef3c230-569a-438f-94cf-4457f6a3ad9f-attachment.json", "type": "application/json"}], "start": 1775347139295, "stop": 1775347139296}, {"name": "Response → 200, trace_id: aa88e40990653b531b5989dfbdb5d80d", "status": "passed", "attachments": [{"name": "response.headers", "source": "9b170837-f782-4da2-a2d0-6977a74b6190-attachment.json", "type": "application/json"}], "start": 1775347139296, "stop": 1775347139296}], "attachments": [{"name": "cURL", "source": "2ae740db-f8f0-4260-87d2-bb01adcbc9a2-attachment.txt", "type": "text/plain"}], "start": 1775347139295, "stop": 1775347139296}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "10c6db57-666c-4a9a-a80c-85f5cdcfa63c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "ae71a960-e34a-49be-868b-0f64b6f09b53-attachment.json", "type": "application/json"}], "start": 1775347139356, "stop": 1775347139357}, {"name": "Response → 200, trace_id: d70a8958f13d8a9a3e0fce460de2ccd5", "status": "passed", "attachments": [{"name": "response.headers", "source": "3ce455d7-e0c5-41da-821c-dbaecdb95239-attachment.json", "type": "application/json"}], "start": 1775347139357, "stop": 1775347139357}], "attachments": [{"name": "cURL", "source": "f43aff1a-1bf1-49cb-98ff-0e6275aa4d6f-attachment.txt", "type": "text/plain"}], "start": 1775347139356, "stop": 1775347139357}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "314da217-6805-4282-8a73-ca8be8d79bf5-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c234124e-65b0-4669-911f-44c74ebc4e5b-attachment.json", "type": "application/json"}], "start": 1775347139419, "stop": 1775347139419}, {"name": "Response → 200, trace_id: 11bc9a5a1ec92b632e84a957860efd82", "status": "passed", "attachments": [{"name": "response.headers", "source": "ca223a90-ba2a-47c9-8795-8b31aa74318a-attachment.json", "type": "application/json"}], "start": 1775347139419, "stop": 1775347139419}], "attachments": [{"name": "cURL", "source": "792186a1-5f65-46b9-a9e1-03526acf9e2c-attachment.txt", "type": "text/plain"}], "start": 1775347139419, "stop": 1775347139419}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "abbc528d-d2b6-4f1c-9770-a3bb57e99164-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "8439283c-2dda-4685-910c-51842ef33680-attachment.json", "type": "application/json"}], "start": 1775347139479, "stop": 1775347139480}, {"name": "Response → 200, trace_id: 62efe0f58a78c076680440c74f8c2a92", "status": "passed", "attachments": [{"name": "response.headers", "source": "952f093f-a508-44ac-9bc7-45d6823e9d74-attachment.json", "type": "application/json"}], "start": 1775347139480, "stop": 1775347139480}], "attachments": [{"name": "cURL", "source": "24ead2c3-e1b3-4bf5-9563-c8f543e43a63-attachment.txt", "type": "text/plain"}], "start": 1775347139479, "stop": 1775347139480}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "3059ca3f-935b-4d3d-b3b2-4f0bf6410d00-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "520dd512-42e9-45c7-8fec-72ed7da64bc4-attachment.json", "type": "application/json"}], "start": 1775347139553, "stop": 1775347139553}, {"name": "Response → 200, trace_id: 8dc0cb4403a17c10eaabbd8cc1d5b151", "status": "passed", "attachments": [{"name": "response.headers", "source": "a4fd9ed3-2220-4d89-82c5-583ab958c2cc-attachment.json", "type": "application/json"}], "start": 1775347139553, "stop": 1775347139554}], "attachments": [{"name": "cURL", "source": "df28f85b-d7ef-4f07-b970-e3fbf26c635e-attachment.txt", "type": "text/plain"}], "start": 1775347139553, "stop": 1775347139554}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "2978ee5d-32f6-4eea-abf2-a8e35165761c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "27044f19-650e-4b48-be9f-f039c1eb6361-attachment.json", "type": "application/json"}], "start": 1775347139615, "stop": 1775347139616}, {"name": "Response → 200, trace_id: c9ab301d61698c56a9d89f99adb4864e", "status": "passed", "attachments": [{"name": "response.headers", "source": "7c779947-0dc5-4bbc-8e5d-5c4952afa60f-attachment.json", "type": "application/json"}], "start": 1775347139616, "stop": 1775347139616}], "attachments": [{"name": "cURL", "source": "906c7c96-07cd-465f-aa76-8ece4825b063-attachment.txt", "type": "text/plain"}], "start": 1775347139615, "stop": 1775347139616}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "7f2817d3-ab4c-4102-a17d-ef01653ed7aa-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "9bcbe80a-22e1-46d9-a106-d67aaa0738c7-attachment.json", "type": "application/json"}], "start": 1775347139678, "stop": 1775347139678}, {"name": "Response → 200, trace_id: ef1452a9e2b10f543b922a77d0360382", "status": "passed", "attachments": [{"name": "response.headers", "source": "75ce68e0-c7cf-48b8-965b-23f2dcf6fc55-attachment.json", "type": "application/json"}], "start": 1775347139678, "stop": 1775347139678}], "attachments": [{"name": "cURL", "source": "c9f98a69-6fe6-4689-9991-574cbbf0d3f8-attachment.txt", "type": "text/plain"}], "start": 1775347139678, "stop": 1775347139678}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "21bfdb9d-0360-4a9a-ad4f-0d1d4c388aab-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5e2370fc-d4a7-4a6c-917a-badc3414be99-attachment.json", "type": "application/json"}], "start": 1775347139740, "stop": 1775347139740}, {"name": "Response → 200, trace_id: e8fa96d51e4d61a13f1e5d07701665d0", "status": "passed", "attachments": [{"name": "response.headers", "source": "d4cf1313-6b55-4106-a8a5-9a055f31da71-attachment.json", "type": "application/json"}], "start": 1775347139740, "stop": 1775347139740}], "attachments": [{"name": "cURL", "source": "16ef66a5-b9d7-4e4a-b4bd-c5adc6f58498-attachment.txt", "type": "text/plain"}], "start": 1775347139740, "stop": 1775347139741}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d8b00408-49af-42fe-8f30-e409eb2544b0-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "06032205-d868-498c-ae40-3919cebac1eb-attachment.json", "type": "application/json"}], "start": 1775347139798, "stop": 1775347139798}, {"name": "Response → 200, trace_id: 5c3cd03756afaa8f410e221cc6e3b9e8", "status": "passed", "attachments": [{"name": "response.headers", "source": "f3b62d02-aefb-428d-94ea-138979323686-attachment.json", "type": "application/json"}], "start": 1775347139799, "stop": 1775347139799}], "attachments": [{"name": "cURL", "source": "bd44a826-3726-484d-90d3-24c23a8d66c4-attachment.txt", "type": "text/plain"}], "start": 1775347139798, "stop": 1775347139799}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "7185dcba-86a0-47a6-adb2-90bab8c2363b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "9db6d435-e395-4a93-881d-d7f9221720d8-attachment.json", "type": "application/json"}], "start": 1775347139856, "stop": 1775347139856}, {"name": "Response → 200, trace_id: 719a7c41d139331907c040c4db7d59d2", "status": "passed", "attachments": [{"name": "response.headers", "source": "cf283ed7-4416-4ab5-9ff8-939f80aaddd2-attachment.json", "type": "application/json"}], "start": 1775347139856, "stop": 1775347139856}], "attachments": [{"name": "cURL", "source": "143fc261-aee3-47ea-afae-55ddd7da746c-attachment.txt", "type": "text/plain"}], "start": 1775347139856, "stop": 1775347139856}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "eb4d32ad-c108-4479-a55a-d17a344c5425-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "3293e575-be33-4f94-b46c-819fcc5ef12a-attachment.json", "type": "application/json"}], "start": 1775347139916, "stop": 1775347139916}, {"name": "Response → 200, trace_id: 06ee683bd4ed8e666b63cdd6627761c6", "status": "passed", "attachments": [{"name": "response.headers", "source": "0d369457-7e79-4a7b-bd3f-6a7ba1ca8687-attachment.json", "type": "application/json"}], "start": 1775347139916, "stop": 1775347139916}], "attachments": [{"name": "cURL", "source": "fcb00f15-1c17-4763-96ef-7cc619d7bf2a-attachment.txt", "type": "text/plain"}], "start": 1775347139916, "stop": 1775347139916}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "fab4fedd-c857-48b5-8e1c-e5727e83fb66-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "22cca3d8-13b8-4793-a84f-085bad4852f2-attachment.json", "type": "application/json"}], "start": 1775347139976, "stop": 1775347139976}, {"name": "Response → 200, trace_id: 83c06a36a6339afb628480f8d7477afb", "status": "passed", "attachments": [{"name": "response.headers", "source": "a9ab9f1c-50d7-4199-abc4-9a023b053534-attachment.json", "type": "application/json"}], "start": 1775347139976, "stop": 1775347139976}], "attachments": [{"name": "cURL", "source": "9da34855-d1b4-44f8-a749-3d73dbd097a3-attachment.txt", "type": "text/plain"}], "start": 1775347139976, "stop": 1775347139976}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "27ca203f-321c-44f5-bd52-95535cc5a66b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "aac677a4-edaf-4dc9-9738-d33bf5cf5fe1-attachment.json", "type": "application/json"}], "start": 1775347140039, "stop": 1775347140039}, {"name": "Response → 200, trace_id: 688d5b5c15d970bbe7b145a8c07de582", "status": "passed", "attachments": [{"name": "response.headers", "source": "43f2affd-a735-45fe-afed-d8d4efa16ab1-attachment.json", "type": "application/json"}], "start": 1775347140039, "stop": 1775347140039}], "attachments": [{"name": "cURL", "source": "a92b17ce-0198-4276-89b6-a84874308d53-attachment.txt", "type": "text/plain"}], "start": 1775347140039, "stop": 1775347140040}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "780c312b-6bd9-4f32-88d2-aa0031599a36-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "44084971-e6d0-4710-a816-9e1f1651a4bd-attachment.json", "type": "application/json"}], "start": 1775347140102, "stop": 1775347140102}, {"name": "Response → 200, trace_id: 39ed30eac8df1319bc05717f9fb55f29", "status": "passed", "attachments": [{"name": "response.headers", "source": "4bd22036-25bf-477c-9d16-ed235c8e422a-attachment.json", "type": "application/json"}], "start": 1775347140102, "stop": 1775347140102}], "attachments": [{"name": "cURL", "source": "06c39948-643e-4755-9f95-0ba8c3a9c8b9-attachment.txt", "type": "text/plain"}], "start": 1775347140102, "stop": 1775347140102}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ab3bef05-5468-43de-a53f-d6b67e94afb2-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a3897506-3a5d-43d9-b8d3-8885be41d518-attachment.json", "type": "application/json"}], "start": 1775347140162, "stop": 1775347140163}, {"name": "Response → 200, trace_id: 55059f73c4836fab725cfe53a6ceab88", "status": "passed", "attachments": [{"name": "response.headers", "source": "519a3806-655a-4531-8983-97fd383e9bec-attachment.json", "type": "application/json"}], "start": 1775347140163, "stop": 1775347140163}], "attachments": [{"name": "cURL", "source": "941a9642-39fc-4af2-8020-a8a3fdc15e2e-attachment.txt", "type": "text/plain"}], "start": 1775347140162, "stop": 1775347140163}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a900db80-8880-494f-8f4c-dee1bde881ca-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d8048625-c574-4039-a4c1-838b0a13fd71-attachment.json", "type": "application/json"}], "start": 1775347140226, "stop": 1775347140226}, {"name": "Response → 200, trace_id: 4aec126e261e4d2e534a4e0dabb95f20", "status": "passed", "attachments": [{"name": "response.headers", "source": "16a0dda1-34bd-4f8c-9d37-6aa7fad54f68-attachment.json", "type": "application/json"}], "start": 1775347140226, "stop": 1775347140226}], "attachments": [{"name": "cURL", "source": "49b59ca5-9d6f-4cef-ac84-d43eafc2317f-attachment.txt", "type": "text/plain"}], "start": 1775347140226, "stop": 1775347140226}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a1aa4527-9491-4dfe-9b6e-0395860a0800-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "69347359-5b70-4b96-b44b-2d5728bd7253-attachment.json", "type": "application/json"}], "start": 1775347140290, "stop": 1775347140290}, {"name": "Response → 200, trace_id: c59fc8d4b2f2e50b336b5a6deb73ca6b", "status": "passed", "attachments": [{"name": "response.headers", "source": "231c2827-6975-496f-babc-574a69d5e081-attachment.json", "type": "application/json"}], "start": 1775347140290, "stop": 1775347140291}], "attachments": [{"name": "cURL", "source": "cbe3ad90-3ba6-4af3-b9a5-75e28d3cd8d1-attachment.txt", "type": "text/plain"}], "start": 1775347140290, "stop": 1775347140291}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "13692063-ed79-4a22-bd8c-a4d5a11e3644-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "91de7070-a48a-4358-9dbf-6be1cefd0cfd-attachment.json", "type": "application/json"}], "start": 1775347140360, "stop": 1775347140361}, {"name": "Response → 200, trace_id: ef70e2024b5dd0e0290c7d6a21de23fb", "status": "passed", "attachments": [{"name": "response.headers", "source": "45836bd2-fe32-4322-90d5-ecfdba9d5000-attachment.json", "type": "application/json"}], "start": 1775347140361, "stop": 1775347140361}], "attachments": [{"name": "cURL", "source": "c9a5731c-4745-4149-8ca8-573ca89fc4a7-attachment.txt", "type": "text/plain"}], "start": 1775347140360, "stop": 1775347140361}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ed07bd42-4ca4-4e0a-93b2-86cf1dbd1c2f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "8cc22f99-77f3-4d7a-a659-a885d5fa4781-attachment.json", "type": "application/json"}], "start": 1775347140458, "stop": 1775347140458}, {"name": "Response → 200, trace_id: 2e415c71ce6c7820ea49ee64def983cb", "status": "passed", "attachments": [{"name": "response.headers", "source": "e07191c0-7ccb-4130-aca7-72feb8424dd1-attachment.json", "type": "application/json"}], "start": 1775347140458, "stop": 1775347140458}], "attachments": [{"name": "cURL", "source": "9c33a0e3-f227-4804-bb75-a27995710f5c-attachment.txt", "type": "text/plain"}], "start": 1775347140458, "stop": 1775347140458}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "472444c9-802d-4224-875e-e0c56e5e14b9-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "18bac65d-7375-437b-b037-a776083996c0-attachment.json", "type": "application/json"}], "start": 1775347140565, "stop": 1775347140565}, {"name": "Response → 200, trace_id: 59e1ef2e565d69c29a3743a779e856c9", "status": "passed", "attachments": [{"name": "response.headers", "source": "cce59135-5d61-423a-916d-3f60d44c15f9-attachment.json", "type": "application/json"}], "start": 1775347140565, "stop": 1775347140565}], "attachments": [{"name": "cURL", "source": "fada2593-12f7-41de-b676-885acc8673ed-attachment.txt", "type": "text/plain"}], "start": 1775347140565, "stop": 1775347140565}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "edeba628-3d14-4d58-9b64-4c9567f856e2-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "aab0b937-c203-4e2f-bd8c-5468b62df6eb-attachment.json", "type": "application/json"}], "start": 1775347140632, "stop": 1775347140633}, {"name": "Response → 200, trace_id: e733b64e98f7052b1fa8e59f05a3b1b5", "status": "passed", "attachments": [{"name": "response.headers", "source": "04291de9-e7d9-4f62-8f5d-796c360a0f68-attachment.json", "type": "application/json"}], "start": 1775347140633, "stop": 1775347140633}], "attachments": [{"name": "cURL", "source": "a670999b-469a-4ba3-bc81-13b37f782efd-attachment.txt", "type": "text/plain"}], "start": 1775347140632, "stop": 1775347140633}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "109c1474-b7b2-42f1-abc5-f1919d1b72cb-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "20476b15-8daa-4c45-ba7f-06c39989dcb7-attachment.json", "type": "application/json"}], "start": 1775347140692, "stop": 1775347140693}, {"name": "Response → 200, trace_id: 9d8b41a8c6836585a869a6ecc0b35425", "status": "passed", "attachments": [{"name": "response.headers", "source": "6c98b2a5-cabd-40af-b12c-6e9f8377ef34-attachment.json", "type": "application/json"}], "start": 1775347140693, "stop": 1775347140693}], "attachments": [{"name": "cURL", "source": "8edc6f59-3954-4207-baae-390737a01dcb-attachment.txt", "type": "text/plain"}], "start": 1775347140692, "stop": 1775347140693}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a4033430-0a98-4196-b80a-096f5f814c7b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5d4849e7-44f1-47cb-a474-0af3a4879323-attachment.json", "type": "application/json"}], "start": 1775347140757, "stop": 1775347140757}, {"name": "Response → 200, trace_id: 3ab1fadea654e388ba3fa76cd8a00fd8", "status": "passed", "attachments": [{"name": "response.headers", "source": "1f9c3969-60b2-4da2-bec4-3eaa8eea1e60-attachment.json", "type": "application/json"}], "start": 1775347140757, "stop": 1775347140757}], "attachments": [{"name": "cURL", "source": "3b3539f8-0d58-48e6-ab04-5997f9806c49-attachment.txt", "type": "text/plain"}], "start": 1775347140757, "stop": 1775347140757}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "87d97f8e-4ef0-4776-9522-b385db8e7f60-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f5fbe05c-030c-4966-8ecc-7502d661418a-attachment.json", "type": "application/json"}], "start": 1775347140816, "stop": 1775347140816}, {"name": "Response → 200, trace_id: 97a6c9f4661b31114855f5710d8270b1", "status": "passed", "attachments": [{"name": "response.headers", "source": "5e2feb1a-4735-47eb-a064-070acbb703d0-attachment.json", "type": "application/json"}], "start": 1775347140816, "stop": 1775347140816}], "attachments": [{"name": "cURL", "source": "86f1e269-1ad8-41f0-964b-f9aadf5ec520-attachment.txt", "type": "text/plain"}], "start": 1775347140816, "stop": 1775347140816}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d82ae05f-e076-41eb-b7f5-dde8d0fc80dd-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d6743aeb-bf5c-4b2e-957c-533066997efa-attachment.json", "type": "application/json"}], "start": 1775347140872, "stop": 1775347140872}, {"name": "Response → 200, trace_id: e8cc40aa83eaa364509ee393f0c90ec1", "status": "passed", "attachments": [{"name": "response.headers", "source": "3ce62fc4-29a5-4686-b616-6187ab29f251-attachment.json", "type": "application/json"}], "start": 1775347140872, "stop": 1775347140872}], "attachments": [{"name": "cURL", "source": "48bd1e4d-2b53-4e35-a459-a1ef7488f242-attachment.txt", "type": "text/plain"}], "start": 1775347140872, "stop": 1775347140872}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "355e5b53-8549-4e70-849a-686dbd049536-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "b836d260-b083-455d-9b01-7602fcad229d-attachment.json", "type": "application/json"}], "start": 1775347140931, "stop": 1775347140932}, {"name": "Response → 200, trace_id: 77c0d511e9fba7bab62a96019b6cbdbb", "status": "passed", "attachments": [{"name": "response.headers", "source": "3274d0b2-01bb-4a3a-ade8-86d0754b6037-attachment.json", "type": "application/json"}], "start": 1775347140932, "stop": 1775347140932}], "attachments": [{"name": "cURL", "source": "16fd606d-667b-40c2-b490-f8bbc94d5edf-attachment.txt", "type": "text/plain"}], "start": 1775347140931, "stop": 1775347140932}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c894f0b8-2bfe-47a4-b907-320005445f6b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "7803623e-d1af-44a9-8bd0-df9dfb015b63-attachment.json", "type": "application/json"}], "start": 1775347140992, "stop": 1775347140992}, {"name": "Response → 200, trace_id: 8a4dfb9c7b9e7d291a583846eb8e9f0d", "status": "passed", "attachments": [{"name": "response.headers", "source": "157a4d76-358e-401d-be69-87a5ed607d3a-attachment.json", "type": "application/json"}], "start": 1775347140992, "stop": 1775347140992}], "attachments": [{"name": "cURL", "source": "6baa58e9-3756-48e5-ae02-2171d24d4a0c-attachment.txt", "type": "text/plain"}], "start": 1775347140992, "stop": 1775347140993}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "bddf4634-d631-4712-82c5-0528db946add-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "953ddb81-2805-4910-b7a1-ba086924b0c5-attachment.json", "type": "application/json"}], "start": 1775347141053, "stop": 1775347141053}, {"name": "Response → 200, trace_id: 36325bc36d346db0148f0535b87d818c", "status": "passed", "attachments": [{"name": "response.headers", "source": "ad494744-b214-4ec0-9b38-24b8eec55093-attachment.json", "type": "application/json"}], "start": 1775347141053, "stop": 1775347141053}], "attachments": [{"name": "cURL", "source": "b5aeb079-7644-494d-9df3-546445e40768-attachment.txt", "type": "text/plain"}], "start": 1775347141053, "stop": 1775347141053}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9c0b6933-b89b-4c0c-9292-f94844c5d69c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d0cdc5da-e50b-44a9-9e98-fe194466ccbe-attachment.json", "type": "application/json"}], "start": 1775347141113, "stop": 1775347141113}, {"name": "Response → 200, trace_id: 3ae7155ce2b5dfaaa4d3cca8b0ad56bd", "status": "passed", "attachments": [{"name": "response.headers", "source": "c5f30caa-8e2d-4b0b-9a17-e77a9514c37c-attachment.json", "type": "application/json"}], "start": 1775347141113, "stop": 1775347141113}], "attachments": [{"name": "cURL", "source": "58942106-8d6a-4635-a678-b35c4ce4b819-attachment.txt", "type": "text/plain"}], "start": 1775347141113, "stop": 1775347141113}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "0bc83420-154f-44fa-b927-3abf0c9671b0-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a4f7b57f-954b-4376-9b53-5a0ea4c8907b-attachment.json", "type": "application/json"}], "start": 1775347141174, "stop": 1775347141175}, {"name": "Response → 200, trace_id: 9ae1f4333980a44d914ae5a87c87faf4", "status": "passed", "attachments": [{"name": "response.headers", "source": "952ee31f-c3dc-46be-9e7e-17a4bfaba306-attachment.json", "type": "application/json"}], "start": 1775347141175, "stop": 1775347141175}], "attachments": [{"name": "cURL", "source": "462843ef-3c81-449c-b4b4-bba59f7faef2-attachment.txt", "type": "text/plain"}], "start": 1775347141174, "stop": 1775347141175}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "438ba0c5-cec7-447d-ade0-6e81a7ee627d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "83ee26c2-fbc5-4591-bd0b-7f5eeff248f3-attachment.json", "type": "application/json"}], "start": 1775347141238, "stop": 1775347141238}, {"name": "Response → 200, trace_id: 2b3521111412fa792d540c1d3f00d66f", "status": "passed", "attachments": [{"name": "response.headers", "source": "84489478-6412-4dcf-9991-11fa3bababf7-attachment.json", "type": "application/json"}], "start": 1775347141238, "stop": 1775347141238}], "attachments": [{"name": "cURL", "source": "8bd6b9a0-50aa-4614-a024-93ec5a1308d7-attachment.txt", "type": "text/plain"}], "start": 1775347141238, "stop": 1775347141238}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "514763ca-e4f9-4b32-8c9a-b20f0eaf1754-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "0ade6ea6-aaaf-483a-a00c-9fb77c727b86-attachment.json", "type": "application/json"}], "start": 1775347141298, "stop": 1775347141298}, {"name": "Response → 200, trace_id: 4f6ba1306fd8098ab3b46afd073abec0", "status": "passed", "attachments": [{"name": "response.headers", "source": "7b380f63-3770-41d8-a3ea-475dcb8d77b5-attachment.json", "type": "application/json"}], "start": 1775347141298, "stop": 1775347141299}], "attachments": [{"name": "cURL", "source": "d08b5fe9-c274-48b6-83a1-3fac86b96588-attachment.txt", "type": "text/plain"}], "start": 1775347141298, "stop": 1775347141299}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "498bc2e6-2c6f-43f6-9a6f-f0b2bad341f9-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c9e25ce5-0cc0-43c0-844d-f655d969dbb0-attachment.json", "type": "application/json"}], "start": 1775347141357, "stop": 1775347141357}, {"name": "Response → 200, trace_id: 40289b1a0fb85b86703f79cd9e58103a", "status": "passed", "attachments": [{"name": "response.headers", "source": "645a0668-bf0e-4a13-a2d0-6ef80587aab5-attachment.json", "type": "application/json"}], "start": 1775347141357, "stop": 1775347141357}], "attachments": [{"name": "cURL", "source": "2c84b6a6-02e0-474b-9b9d-26a182fdaa44-attachment.txt", "type": "text/plain"}], "start": 1775347141357, "stop": 1775347141357}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "8d0ab3f2-17a2-40c6-980c-54c0937924b8-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "1601199f-aceb-446a-aa76-a07c365894c8-attachment.json", "type": "application/json"}], "start": 1775347141421, "stop": 1775347141421}, {"name": "Response → 200, trace_id: 8d290c42678a8aeed4bcc275d2ff881a", "status": "passed", "attachments": [{"name": "response.headers", "source": "bfedadbb-3bbf-4d8a-8c0e-9f13cce50556-attachment.json", "type": "application/json"}], "start": 1775347141421, "stop": 1775347141421}], "attachments": [{"name": "cURL", "source": "25a74499-1c3f-4b7f-a967-c83f1b2e5aac-attachment.txt", "type": "text/plain"}], "start": 1775347141421, "stop": 1775347141421}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "75c414d9-aa93-4ed1-a665-2f73434192b4-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "44698992-9692-4cf8-a5ec-436fdb3ea24a-attachment.json", "type": "application/json"}], "start": 1775347141484, "stop": 1775347141485}, {"name": "Response → 200, trace_id: 6021e36e3c3401d140f10021be577274", "status": "passed", "attachments": [{"name": "response.headers", "source": "38f5da77-fded-46d5-ba05-7ae2a1959a0a-attachment.json", "type": "application/json"}], "start": 1775347141485, "stop": 1775347141485}], "attachments": [{"name": "cURL", "source": "8a5174af-50c9-4ccd-a05b-47feebc4ef78-attachment.txt", "type": "text/plain"}], "start": 1775347141484, "stop": 1775347141485}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "dcaf197d-f16c-4537-b8cd-25ed0e00a2f0-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "8037375d-ceee-4938-9a46-49bfc1fe3ad5-attachment.json", "type": "application/json"}], "start": 1775347141546, "stop": 1775347141546}, {"name": "Response → 200, trace_id: b9411ae0554838bfc4d7f57c8a4a5dd9", "status": "passed", "attachments": [{"name": "response.headers", "source": "008688b7-fdff-416f-8a6d-6b82bf812bf1-attachment.json", "type": "application/json"}], "start": 1775347141546, "stop": 1775347141546}], "attachments": [{"name": "cURL", "source": "bdd5ec27-426a-40f9-a97a-65be1b4c396a-attachment.txt", "type": "text/plain"}], "start": 1775347141546, "stop": 1775347141546}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "60588d06-d53d-4322-abcc-c3b13f49994c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "6d9f9c0f-d2e5-40c3-9b0b-62834de0fc31-attachment.json", "type": "application/json"}], "start": 1775347141606, "stop": 1775347141606}, {"name": "Response → 200, trace_id: 71c79b0ec392a5dca62aa92f9c139d83", "status": "passed", "attachments": [{"name": "response.headers", "source": "d87fbf4d-db6f-49c9-8ec9-10a2003837e2-attachment.json", "type": "application/json"}], "start": 1775347141606, "stop": 1775347141606}], "attachments": [{"name": "cURL", "source": "245cc8e1-176f-4435-b747-17e1fd343821-attachment.txt", "type": "text/plain"}], "start": 1775347141606, "stop": 1775347141606}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "8f939afd-3db6-47c2-ae04-f0029da326de-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "0aebc6e6-d871-4723-9fa1-dfb03c4b66f0-attachment.json", "type": "application/json"}], "start": 1775347141666, "stop": 1775347141666}, {"name": "Response → 200, trace_id: 43504c1fc3227820bf3c1095a9f61c7d", "status": "passed", "attachments": [{"name": "response.headers", "source": "e868736b-cbf5-4146-99e6-6a88386aef4a-attachment.json", "type": "application/json"}], "start": 1775347141666, "stop": 1775347141666}], "attachments": [{"name": "cURL", "source": "751223cc-9b84-43e9-b352-1d089f0f6bcc-attachment.txt", "type": "text/plain"}], "start": 1775347141666, "stop": 1775347141667}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d969c173-38f0-46d6-834c-60e7c0e18a2b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "908fd9d3-3432-4cee-84e4-09bea8865c92-attachment.json", "type": "application/json"}], "start": 1775347141728, "stop": 1775347141728}, {"name": "Response → 200, trace_id: 5aac899115af03023582d40dbae17ddb", "status": "passed", "attachments": [{"name": "response.headers", "source": "404391f1-73ef-423c-9ea5-b7952ef994d1-attachment.json", "type": "application/json"}], "start": 1775347141728, "stop": 1775347141728}], "attachments": [{"name": "cURL", "source": "1fb50e19-a76d-4fe6-943a-a1fef00a9c44-attachment.txt", "type": "text/plain"}], "start": 1775347141728, "stop": 1775347141728}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d9b0c629-ed2b-4ed5-920f-cb404032b77b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "3087a922-ba08-4850-8426-1bf626d49f05-attachment.json", "type": "application/json"}], "start": 1775347141793, "stop": 1775347141793}, {"name": "Response → 200, trace_id: 7f20b5f30e053695f78780f00383b91c", "status": "passed", "attachments": [{"name": "response.headers", "source": "cd0c6094-cd0a-4830-8623-43d29764fb7b-attachment.json", "type": "application/json"}], "start": 1775347141793, "stop": 1775347141793}], "attachments": [{"name": "cURL", "source": "0ab9b11c-67fe-4245-9068-81ae1de6ae16-attachment.txt", "type": "text/plain"}], "start": 1775347141793, "stop": 1775347141793}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "fc7b75e5-8721-4f37-85a5-07bd605b48e3-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "bb423db3-9a78-4a77-a40f-d2d7a69ef8ef-attachment.json", "type": "application/json"}], "start": 1775347141853, "stop": 1775347141854}, {"name": "Response → 200, trace_id: 5a4e42d5fc1cd21581edeb6ac5ced568", "status": "passed", "attachments": [{"name": "response.headers", "source": "708a6617-4285-4e53-b062-a22b15d44f53-attachment.json", "type": "application/json"}], "start": 1775347141854, "stop": 1775347141854}], "attachments": [{"name": "cURL", "source": "5f605864-a524-4542-8db9-bb341252bae3-attachment.txt", "type": "text/plain"}], "start": 1775347141853, "stop": 1775347141854}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "4d3eded1-8311-4747-b94f-6d721ec03703-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "55b6983b-0e8a-497a-9588-0296abff8f16-attachment.json", "type": "application/json"}], "start": 1775347141914, "stop": 1775347141914}, {"name": "Response → 200, trace_id: ad4ca5fe74a5f6b354a039ed4afe952b", "status": "passed", "attachments": [{"name": "response.headers", "source": "cefb152b-d229-48c3-9416-d1de8c8958d6-attachment.json", "type": "application/json"}], "start": 1775347141914, "stop": 1775347141914}], "attachments": [{"name": "cURL", "source": "e9b5693a-0673-444d-b1e5-86d3d99faafe-attachment.txt", "type": "text/plain"}], "start": 1775347141913, "stop": 1775347141914}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "853a13fa-90a9-4335-bebb-b414e23f1a9b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5108cdb1-7d7e-4470-862d-a05357009fcf-attachment.json", "type": "application/json"}], "start": 1775347141974, "stop": 1775347141974}, {"name": "Response → 200, trace_id: a9ec7e4eb3bbb2a4d9fcf5e4531fa5a2", "status": "passed", "attachments": [{"name": "response.headers", "source": "6b836603-94dd-4d7e-9c90-96f7b69cce4c-attachment.json", "type": "application/json"}], "start": 1775347141974, "stop": 1775347141975}], "attachments": [{"name": "cURL", "source": "c8324e93-7f73-41ba-97a5-c5e164c010ef-attachment.txt", "type": "text/plain"}], "start": 1775347141974, "stop": 1775347141975}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "8a3f1725-9129-44d6-abc2-a6a2b375c1f7-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e0df586e-f708-4f39-981c-fcad8bf4e2fe-attachment.json", "type": "application/json"}], "start": 1775347142035, "stop": 1775347142035}, {"name": "Response → 200, trace_id: 24dae3b18c0f7f730c512373512a6422", "status": "passed", "attachments": [{"name": "response.headers", "source": "1c82897b-d9e1-4409-a025-ef743f0976fc-attachment.json", "type": "application/json"}], "start": 1775347142035, "stop": 1775347142035}], "attachments": [{"name": "cURL", "source": "d8bd5e8d-4d0d-45f6-a232-411a049d5ef1-attachment.txt", "type": "text/plain"}], "start": 1775347142035, "stop": 1775347142035}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ecab8c58-d967-4416-9f2e-30fb07acbf16-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "76745859-8ff9-42ee-8b28-af2ce31e309f-attachment.json", "type": "application/json"}], "start": 1775347142093, "stop": 1775347142093}, {"name": "Response → 200, trace_id: aa78163eea91e7ffb983313abd96e2b3", "status": "passed", "attachments": [{"name": "response.headers", "source": "93cac37d-4b00-4b0b-ae24-d2ef7973a592-attachment.json", "type": "application/json"}], "start": 1775347142093, "stop": 1775347142093}], "attachments": [{"name": "cURL", "source": "1e71499d-e099-4fec-a772-62fcb80a04d0-attachment.txt", "type": "text/plain"}], "start": 1775347142093, "stop": 1775347142093}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "223a5d23-07e4-493a-986f-439e8f7ff694-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "26287ad0-88ad-4094-bafc-e4f7eeec6400-attachment.json", "type": "application/json"}], "start": 1775347142155, "stop": 1775347142155}, {"name": "Response → 200, trace_id: 3cb40fc34b08d391bc981c560ea5d1da", "status": "passed", "attachments": [{"name": "response.headers", "source": "be59df1e-fe78-4f6b-80c0-8effabc58ca2-attachment.json", "type": "application/json"}], "start": 1775347142155, "stop": 1775347142155}], "attachments": [{"name": "cURL", "source": "157a5588-4608-4fe0-a5fd-c9fe6ac4aa74-attachment.txt", "type": "text/plain"}], "start": 1775347142155, "stop": 1775347142155}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "dce7277b-5c82-4666-8599-270ab1a497cc-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "205dd502-ecc1-406c-849a-02f16d55c80d-attachment.json", "type": "application/json"}], "start": 1775347142215, "stop": 1775347142215}, {"name": "Response → 200, trace_id: af2f5f55acafa849910137436bfacca6", "status": "passed", "attachments": [{"name": "response.headers", "source": "b17ac521-187b-4c39-921b-a0f783a17507-attachment.json", "type": "application/json"}], "start": 1775347142215, "stop": 1775347142215}], "attachments": [{"name": "cURL", "source": "768b9840-f355-4d23-b54e-152e634b674a-attachment.txt", "type": "text/plain"}], "start": 1775347142215, "stop": 1775347142215}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "226fc2b3-194e-4e4b-9786-3b4f39fe50ac-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "3720f0ed-e697-418a-b533-d7ae6d635511-attachment.json", "type": "application/json"}], "start": 1775347142274, "stop": 1775347142274}, {"name": "Response → 200, trace_id: 82246b985364a845d258ffa7f94ca7c8", "status": "passed", "attachments": [{"name": "response.headers", "source": "6e38768f-e816-45a5-9359-5898c06b58ef-attachment.json", "type": "application/json"}], "start": 1775347142274, "stop": 1775347142274}], "attachments": [{"name": "cURL", "source": "12e6a24f-739d-41e2-8d9b-43e9d2c1f33b-attachment.txt", "type": "text/plain"}], "start": 1775347142273, "stop": 1775347142274}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "946ac8fc-1e36-47e9-9e87-bfdbe1003e2b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "0efb0ea7-8d39-4192-95f4-8b3cae499722-attachment.json", "type": "application/json"}], "start": 1775347142335, "stop": 1775347142335}, {"name": "Response → 200, trace_id: 40a4340d12467f53e735f2734a32089a", "status": "passed", "attachments": [{"name": "response.headers", "source": "7eff41ab-2681-4c51-8a78-1363998c2613-attachment.json", "type": "application/json"}], "start": 1775347142335, "stop": 1775347142335}], "attachments": [{"name": "cURL", "source": "fc88e37c-a080-42a7-94b1-336973961d2c-attachment.txt", "type": "text/plain"}], "start": 1775347142335, "stop": 1775347142335}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "96d581f3-7a25-4ec5-b2cb-2a295d495825-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "26598e7c-e4f1-4311-b229-1bcb90221c76-attachment.json", "type": "application/json"}], "start": 1775347142395, "stop": 1775347142395}, {"name": "Response → 200, trace_id: 49455c94b2d0cc96c2b98b2899f303b5", "status": "passed", "attachments": [{"name": "response.headers", "source": "5323d605-955c-4b7f-8162-6e782125925f-attachment.json", "type": "application/json"}], "start": 1775347142395, "stop": 1775347142395}], "attachments": [{"name": "cURL", "source": "2b324368-09d0-4cd7-90b4-8068be56b607-attachment.txt", "type": "text/plain"}], "start": 1775347142395, "stop": 1775347142395}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "001b92e4-972e-4d3f-badd-eda2b4e3af73-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "b6496750-1738-46e5-9739-dc1edbfc94be-attachment.json", "type": "application/json"}], "start": 1775347142454, "stop": 1775347142455}, {"name": "Response → 200, trace_id: f94e243972171d7a004e9629c41b2aad", "status": "passed", "attachments": [{"name": "response.headers", "source": "3c4b8f41-a5f7-4606-b5f0-65379ed65171-attachment.json", "type": "application/json"}], "start": 1775347142455, "stop": 1775347142455}], "attachments": [{"name": "cURL", "source": "bdf7fb1b-5c7c-489a-a891-2fd67e635f65-attachment.txt", "type": "text/plain"}], "start": 1775347142454, "stop": 1775347142455}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "203e041b-6847-4ae8-b4d9-1ecc2df741df-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "9ea84459-b426-4081-835c-44e1377e7855-attachment.json", "type": "application/json"}], "start": 1775347142515, "stop": 1775347142515}, {"name": "Response → 200, trace_id: 23b3ea526132d3f8f59a91cdd965080b", "status": "passed", "attachments": [{"name": "response.headers", "source": "7d0c8b56-9b5a-48fb-98c2-79ec79d85aca-attachment.json", "type": "application/json"}], "start": 1775347142515, "stop": 1775347142516}], "attachments": [{"name": "cURL", "source": "12e95f07-5491-43ba-abbb-d7d5589501b6-attachment.txt", "type": "text/plain"}], "start": 1775347142515, "stop": 1775347142516}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "60a4e3c7-9c1c-450e-be5c-98d65e0a5404-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d143dccb-7bd3-42ff-87a5-d4d565a606bf-attachment.json", "type": "application/json"}], "start": 1775347142578, "stop": 1775347142578}, {"name": "Response → 200, trace_id: 4d066b2751a6dfb9838526821ec6ed60", "status": "passed", "attachments": [{"name": "response.headers", "source": "1eeae69f-a2ad-4ec9-b82b-1f22ad530830-attachment.json", "type": "application/json"}], "start": 1775347142578, "stop": 1775347142578}], "attachments": [{"name": "cURL", "source": "b8238e11-c028-43bc-9588-7c3f15c37fe4-attachment.txt", "type": "text/plain"}], "start": 1775347142578, "stop": 1775347142578}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "eba8f077-2a35-48ca-abb3-551919fc33ad-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "46476750-f914-491f-bbd8-8f117ed5947f-attachment.json", "type": "application/json"}], "start": 1775347142640, "stop": 1775347142640}, {"name": "Response → 200, trace_id: 55f074a45b59bbaa5782c73689370e61", "status": "passed", "attachments": [{"name": "response.headers", "source": "8318df82-ad06-4382-af75-02f1f40b9545-attachment.json", "type": "application/json"}], "start": 1775347142640, "stop": 1775347142640}], "attachments": [{"name": "cURL", "source": "22e52c5e-203b-44c1-a849-d3acea689af1-attachment.txt", "type": "text/plain"}], "start": 1775347142640, "stop": 1775347142640}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d0cf2fa1-bd10-41b8-947a-7790fa92f8b0-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "8282a6a6-71cd-4df1-9580-299c924ab684-attachment.json", "type": "application/json"}], "start": 1775347142703, "stop": 1775347142703}, {"name": "Response → 200, trace_id: 27576e7ee6c2ee021b8768674a3111b0", "status": "passed", "attachments": [{"name": "response.headers", "source": "d0f8179e-4e4f-4fc7-893c-62d9d145dba7-attachment.json", "type": "application/json"}], "start": 1775347142703, "stop": 1775347142703}], "attachments": [{"name": "cURL", "source": "fcc9e7f3-df2e-495b-8d7c-e357d697481b-attachment.txt", "type": "text/plain"}], "start": 1775347142703, "stop": 1775347142703}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "b58257e4-1e70-4d04-97e4-9e35ec2af372-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "df43a93e-eb2b-4268-92b1-ad06c237d5a4-attachment.json", "type": "application/json"}], "start": 1775347142764, "stop": 1775347142765}, {"name": "Response → 200, trace_id: 4f9782fe63eb6bd9b33be263295827ad", "status": "passed", "attachments": [{"name": "response.headers", "source": "651ed4e2-e647-4bfd-b3b0-a6573bb9e2c7-attachment.json", "type": "application/json"}], "start": 1775347142765, "stop": 1775347142765}], "attachments": [{"name": "cURL", "source": "1d177967-5449-4b5e-be73-9f5c2ef5ac96-attachment.txt", "type": "text/plain"}], "start": 1775347142764, "stop": 1775347142765}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "2dec607a-287a-4c44-ae10-bd41546a54d0-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "12d5cd86-51c3-4ac8-98f5-036243e7aebb-attachment.json", "type": "application/json"}], "start": 1775347142822, "stop": 1775347142822}, {"name": "Response → 200, trace_id: 90b04d2ee698dfb85a3573b0d173c263", "status": "passed", "attachments": [{"name": "response.headers", "source": "acda9568-7e33-48b2-8322-8c4fed3aa9c0-attachment.json", "type": "application/json"}], "start": 1775347142823, "stop": 1775347142823}], "attachments": [{"name": "cURL", "source": "76bbb9f2-bb77-4899-b36a-f97d3022693a-attachment.txt", "type": "text/plain"}], "start": 1775347142822, "stop": 1775347142823}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "32c03e04-63eb-421a-9525-b3e3564afefb-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4ae77382-b8d5-46b8-b105-799346257ba3-attachment.json", "type": "application/json"}], "start": 1775347142883, "stop": 1775347142884}, {"name": "Response → 200, trace_id: f11c9edfcdf0b3514b4f29463743452a", "status": "passed", "attachments": [{"name": "response.headers", "source": "71ad2a90-87cb-45c7-806f-2c72ab8344b4-attachment.json", "type": "application/json"}], "start": 1775347142884, "stop": 1775347142884}], "attachments": [{"name": "cURL", "source": "7b487cdd-ced7-45c2-a9c1-eeecba9d0651-attachment.txt", "type": "text/plain"}], "start": 1775347142883, "stop": 1775347142884}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c1132dff-670d-49ea-8559-87d423dbfb2a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "9bfb7a4f-cd58-41e2-93da-9addd44ca635-attachment.json", "type": "application/json"}], "start": 1775347142945, "stop": 1775347142945}, {"name": "Response → 200, trace_id: d591c62a5b65557de4e9ba8773700ad5", "status": "passed", "attachments": [{"name": "response.headers", "source": "118d73e4-6d39-44a5-935b-75425d54cc89-attachment.json", "type": "application/json"}], "start": 1775347142945, "stop": 1775347142945}], "attachments": [{"name": "cURL", "source": "24118325-f936-4009-b46f-b36062153cd9-attachment.txt", "type": "text/plain"}], "start": 1775347142945, "stop": 1775347142945}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a1e1b2de-f66e-42de-82e8-8fca68b54ba5-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "87afee5d-939f-47fd-bbfc-2c602299344a-attachment.json", "type": "application/json"}], "start": 1775347143010, "stop": 1775347143010}, {"name": "Response → 200, trace_id: 1eb0b90a9a7aa70fbb36fd4c3e7c9b16", "status": "passed", "attachments": [{"name": "response.headers", "source": "4ff2fcc9-9101-46c3-aec9-d54218b1e341-attachment.json", "type": "application/json"}], "start": 1775347143010, "stop": 1775347143010}], "attachments": [{"name": "cURL", "source": "b27cce10-4189-4aec-b9db-ee789dab3d12-attachment.txt", "type": "text/plain"}], "start": 1775347143009, "stop": 1775347143010}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "dd7f8b09-94ed-452b-bf0b-ba6717b6c8d6-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5698473c-42ab-4abd-9cb3-17194cc61ba3-attachment.json", "type": "application/json"}], "start": 1775347143070, "stop": 1775347143070}, {"name": "Response → 200, trace_id: b1017d9355e01ea0caccc45478a56a3d", "status": "passed", "attachments": [{"name": "response.headers", "source": "8880f2b2-db79-4940-9419-a958838174cb-attachment.json", "type": "application/json"}], "start": 1775347143070, "stop": 1775347143070}], "attachments": [{"name": "cURL", "source": "53f61bc3-fab7-47fb-985a-78e0321b30d0-attachment.txt", "type": "text/plain"}], "start": 1775347143070, "stop": 1775347143070}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "761d1346-4b73-4771-abd3-03f41a38a417-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "cc4c2e54-ba50-4843-807b-b1a9cb11bf2b-attachment.json", "type": "application/json"}], "start": 1775347143128, "stop": 1775347143128}, {"name": "Response → 200, trace_id: 89b8b4eb310d8035a19ac80c75defbb6", "status": "passed", "attachments": [{"name": "response.headers", "source": "4c094cab-271a-46e1-977e-030b793f73ae-attachment.json", "type": "application/json"}], "start": 1775347143128, "stop": 1775347143128}], "attachments": [{"name": "cURL", "source": "0c2f1617-23f0-459a-90e6-a6b8a078f5d8-attachment.txt", "type": "text/plain"}], "start": 1775347143128, "stop": 1775347143128}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "93a0368c-8b5d-405b-9b22-ffcfd400646f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "3e0e1ec1-6423-4dfc-a8cd-4a5e3da74a60-attachment.json", "type": "application/json"}], "start": 1775347143191, "stop": 1775347143191}, {"name": "Response → 200, trace_id: 436cacb1bbc8c39a51d124920ef0d364", "status": "passed", "attachments": [{"name": "response.headers", "source": "1dff5f5d-9507-49bf-af8d-bd8cc9e7af76-attachment.json", "type": "application/json"}], "start": 1775347143191, "stop": 1775347143191}], "attachments": [{"name": "cURL", "source": "1a875dda-44b1-46a2-a19e-fb808caacfa1-attachment.txt", "type": "text/plain"}], "start": 1775347143191, "stop": 1775347143191}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "fc640cdb-3d88-4935-92fc-8e15b727e38d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4aa15b1e-e625-41da-a2b8-4849140a6b3d-attachment.json", "type": "application/json"}], "start": 1775347143250, "stop": 1775347143251}, {"name": "Response → 200, trace_id: 649f5133bbd58a14fee05d88a24e8cf6", "status": "passed", "attachments": [{"name": "response.headers", "source": "7961596c-4a3b-4b4b-af79-c589e8c1be7d-attachment.json", "type": "application/json"}], "start": 1775347143251, "stop": 1775347143251}], "attachments": [{"name": "cURL", "source": "1c91db91-7cc4-48d4-9a49-dd76c182fc56-attachment.txt", "type": "text/plain"}], "start": 1775347143250, "stop": 1775347143251}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "de9bb6bb-d865-4e9b-9a5e-5ed4127910bb-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "11a5d9dc-0526-4d78-9f18-3cb4f448403d-attachment.json", "type": "application/json"}], "start": 1775347143313, "stop": 1775347143313}, {"name": "Response → 200, trace_id: da4c0d6182a54555d9031d7841ccfdfa", "status": "passed", "attachments": [{"name": "response.headers", "source": "e89f6037-3545-449c-ab97-0a51b1a1ccb2-attachment.json", "type": "application/json"}], "start": 1775347143313, "stop": 1775347143313}], "attachments": [{"name": "cURL", "source": "b1ff8009-5a72-4ac5-b2cc-5271f9c402d5-attachment.txt", "type": "text/plain"}], "start": 1775347143313, "stop": 1775347143313}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "609b0579-23cb-40c8-9d83-18a7f32c056f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "82329e12-1136-423f-97a3-df2a5905dba5-attachment.json", "type": "application/json"}], "start": 1775347143373, "stop": 1775347143374}, {"name": "Response → 200, trace_id: fb00ed4635b02d8486289446231e3cf5", "status": "passed", "attachments": [{"name": "response.headers", "source": "f5cd4ade-aca6-4683-9ee6-0a5e1d057bd5-attachment.json", "type": "application/json"}], "start": 1775347143374, "stop": 1775347143374}], "attachments": [{"name": "cURL", "source": "b213f53d-9a19-44e7-ae34-399b7ff9cb2d-attachment.txt", "type": "text/plain"}], "start": 1775347143373, "stop": 1775347143374}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "73a48e22-abf7-4ee6-828d-7f2319972bdc-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "dd433d61-ff35-4eac-9823-f9608853a454-attachment.json", "type": "application/json"}], "start": 1775347143432, "stop": 1775347143432}, {"name": "Response → 200, trace_id: 8dc675b0c0390e25fefae3700aea1ed0", "status": "passed", "attachments": [{"name": "response.headers", "source": "e8e20f43-e3ff-4ba9-8c60-da6ae359a3dd-attachment.json", "type": "application/json"}], "start": 1775347143432, "stop": 1775347143432}], "attachments": [{"name": "cURL", "source": "0d1ca942-50b4-4cfe-bda6-8591a3ec9db0-attachment.txt", "type": "text/plain"}], "start": 1775347143432, "stop": 1775347143432}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a8c6f057-5295-4c4f-8f9b-e8f20dede6a0-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "92963825-0d93-4a2c-9a8f-a3348b9e7d5c-attachment.json", "type": "application/json"}], "start": 1775347143492, "stop": 1775347143493}, {"name": "Response → 200, trace_id: db1348c3b2f1ab9e87492c36b3635f95", "status": "passed", "attachments": [{"name": "response.headers", "source": "664616ba-98ee-4716-a4d4-8e128fdcd8fa-attachment.json", "type": "application/json"}], "start": 1775347143493, "stop": 1775347143493}], "attachments": [{"name": "cURL", "source": "337ad528-44aa-4fdb-be1d-d460ad632287-attachment.txt", "type": "text/plain"}], "start": 1775347143492, "stop": 1775347143493}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "280dac74-a29f-4c55-8516-a433a7d2e971-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f2035462-4f97-414d-8f50-ed5df282b02c-attachment.json", "type": "application/json"}], "start": 1775347143552, "stop": 1775347143552}, {"name": "Response → 200, trace_id: 1c8fa253e51859eb01cea93ff7605857", "status": "passed", "attachments": [{"name": "response.headers", "source": "300dbd4e-21f3-4ac9-b4e9-207a61af1516-attachment.json", "type": "application/json"}], "start": 1775347143552, "stop": 1775347143552}], "attachments": [{"name": "cURL", "source": "b5de4ca1-e8c4-49e9-8283-c9ad0099340c-attachment.txt", "type": "text/plain"}], "start": 1775347143552, "stop": 1775347143552}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "8e63a450-91a1-4dde-b7a4-921a07bf3371-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a18ef7ee-b01c-41f4-b7fc-733a4b89eab7-attachment.json", "type": "application/json"}], "start": 1775347143615, "stop": 1775347143615}, {"name": "Response → 200, trace_id: e3f42428bb76059283a8aff3a2616e74", "status": "passed", "attachments": [{"name": "response.headers", "source": "bcfbdc7d-0d56-4353-863b-c473ab2fdaca-attachment.json", "type": "application/json"}], "start": 1775347143615, "stop": 1775347143616}], "attachments": [{"name": "cURL", "source": "0206152b-9aeb-47bf-8ed3-638cb66512d9-attachment.txt", "type": "text/plain"}], "start": 1775347143615, "stop": 1775347143616}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "fc8617d2-8e03-4718-8437-8fa879783318-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "83294615-4676-4ff7-bc41-acb66259019c-attachment.json", "type": "application/json"}], "start": 1775347143674, "stop": 1775347143674}, {"name": "Response → 200, trace_id: d081dae853fb23d23b7e8583fdaa0588", "status": "passed", "attachments": [{"name": "response.headers", "source": "85479aa5-bbcc-4575-80d3-fc9e532abc8b-attachment.json", "type": "application/json"}], "start": 1775347143674, "stop": 1775347143674}], "attachments": [{"name": "cURL", "source": "2a1ce9ce-fc06-491f-bff9-623a0cbb8826-attachment.txt", "type": "text/plain"}], "start": 1775347143674, "stop": 1775347143674}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ec3f587f-e1cd-427f-a225-bdee0aba3dcd-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "805014e2-b5e0-4c34-abbf-febd93a1e3ec-attachment.json", "type": "application/json"}], "start": 1775347143736, "stop": 1775347143736}, {"name": "Response → 200, trace_id: 6462bf11eb5bec51c58e9d3e15d87978", "status": "passed", "attachments": [{"name": "response.headers", "source": "e2625354-676a-4ab7-95b5-be3d15dc131a-attachment.json", "type": "application/json"}], "start": 1775347143736, "stop": 1775347143736}], "attachments": [{"name": "cURL", "source": "1da1c106-c89b-4556-8b18-62f0b38a96ec-attachment.txt", "type": "text/plain"}], "start": 1775347143736, "stop": 1775347143736}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "622214c3-b5be-4cf5-9773-5992c06d6258-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c6df0e8b-e033-4133-9a8e-e49c58742e2d-attachment.json", "type": "application/json"}], "start": 1775347143797, "stop": 1775347143797}, {"name": "Response → 200, trace_id: 0aad4d6456c9455796a82509007a3873", "status": "passed", "attachments": [{"name": "response.headers", "source": "ca62189c-3d10-47fa-a7a0-5313365adc3f-attachment.json", "type": "application/json"}], "start": 1775347143797, "stop": 1775347143797}], "attachments": [{"name": "cURL", "source": "6d7db783-2a35-4da6-9c57-8de2f98530a1-attachment.txt", "type": "text/plain"}], "start": 1775347143797, "stop": 1775347143797}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e8813992-d0f1-4431-b254-72b1b64bbf10-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a3f25c08-8501-4556-81dc-a6b3d6e84fea-attachment.json", "type": "application/json"}], "start": 1775347143859, "stop": 1775347143859}, {"name": "Response → 200, trace_id: e10a64ea77862272c4e664da037d0a02", "status": "passed", "attachments": [{"name": "response.headers", "source": "452aeb12-8a35-497b-be9a-51603d2eb5b9-attachment.json", "type": "application/json"}], "start": 1775347143859, "stop": 1775347143859}], "attachments": [{"name": "cURL", "source": "d76aedae-d01f-4282-b428-85fd2add29b7-attachment.txt", "type": "text/plain"}], "start": 1775347143858, "stop": 1775347143859}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e6a4c549-a0bc-4bff-82f4-08e149d58273-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "7f6f14ad-aba6-434f-b624-004820ce350e-attachment.json", "type": "application/json"}], "start": 1775347143920, "stop": 1775347143921}, {"name": "Response → 200, trace_id: 8f2f7459dbb3b898b8b4b97d07ce1b9e", "status": "passed", "attachments": [{"name": "response.headers", "source": "e64d397d-f361-425d-871e-57352cb1b893-attachment.json", "type": "application/json"}], "start": 1775347143921, "stop": 1775347143921}], "attachments": [{"name": "cURL", "source": "41c6d005-4f0c-4433-8094-addb72a5aef7-attachment.txt", "type": "text/plain"}], "start": 1775347143920, "stop": 1775347143921}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/close-count-box", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ab2748a0-3075-4f3c-ab61-4e9caffc8fe3-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "1cb4a99c-2888-4924-bf72-a0c04732737f-attachment.json", "type": "application/json"}], "start": 1775347143952, "stop": 1775347143952}, {"name": "Response → 200, trace_id: b8039cecaf1fba33ee570ac928614e35", "status": "passed", "attachments": [{"name": "response.headers", "source": "c3d1bb7f-fdb8-4a71-8dec-3eae86f8d62b-attachment.json", "type": "application/json"}], "start": 1775347143952, "stop": 1775347143953}], "attachments": [{"name": "cURL", "source": "a2649041-2869-41c5-b0d3-cbd7462f9107-attachment.txt", "type": "text/plain"}], "start": 1775347143952, "stop": 1775347143953}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/link-box-to-zone", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "0bca4f6e-52c2-4593-bfc7-9e3700e3ff2a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "7e9c7da8-a3d1-4a61-8404-5bd77313ca05-attachment.json", "type": "application/json"}], "start": 1775347144791, "stop": 1775347144791}, {"name": "Response → 200, trace_id: ee6a28ba05391d59775f26fe1f4de19e", "status": "passed", "attachments": [{"name": "response.headers", "source": "fa26b620-b9bb-4f4c-8bc9-17062d92b1a4-attachment.json", "type": "application/json"}], "start": 1775347144791, "stop": 1775347144791}], "attachments": [{"name": "cURL", "source": "72074e91-793a-41f9-9f55-7738f01b618b-attachment.txt", "type": "text/plain"}], "start": 1775347144791, "stop": 1775347144791}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/close-pallet-count", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "48815dd3-1bdc-4c67-8803-7159725a129b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "28ab3e53-8da8-470d-a4ed-e334773bcd0c-attachment.json", "type": "application/json"}], "start": 1775347144878, "stop": 1775347144878}, {"name": "Response → 200, trace_id: c494a53b3a747785846960cd77c56998", "status": "passed", "attachments": [{"name": "response.headers", "source": "7dd5ea48-41c2-407b-9eb7-ab6c6499ba61-attachment.json", "type": "application/json"}], "start": 1775347144878, "stop": 1775347144879}], "attachments": [{"name": "cURL", "source": "b68e47b4-9ce8-4dfb-865e-5910ee11ad13-attachment.txt", "type": "text/plain"}], "start": 1775347144878, "stop": 1775347144879}, {"name": "Waiter function: wait_cell_status", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "75d506de-a369-4408-a2a2-ed0896ade0da-attachment.txt", "type": "text/plain"}], "start": 1775347144886, "stop": 1775347144886}], "start": 1775347144881, "stop": 1775347144886}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "3532c4dc-f34d-429c-9a72-1d3ff89956e6-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "0e266e23-77b8-4086-9447-42806a069091-attachment.json", "type": "application/json"}], "start": 1775347144898, "stop": 1775347144898}], "start": 1775347144886, "stop": 1775347144898}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/invoice/7534712898/items", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c2c413e2-160a-41bf-bd5c-b1226d4e5446-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "25a6fc80-593f-423e-b645-f0bd5e7f4a92-attachment.json", "type": "application/json"}], "start": 1775347144941, "stop": 1775347144942}, {"name": "Response → 200, trace_id: b8df6fc6167e3063145118cd53e3b4ef", "status": "passed", "attachments": [{"name": "response.headers", "source": "580b7a17-e3be-4ac0-9c52-053bcbbbbd81-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "edac85da-f0d9-401d-80aa-9ee39f76f093-attachment.json", "type": "application/json"}], "start": 1775347144942, "stop": 1775347144942}], "attachments": [{"name": "cURL", "source": "bce6faee-81b3-4c81-8a41-8599e2c46c90-attachment.txt", "type": "text/plain"}], "start": 1775347144941, "stop": 1775347144942}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/box/get-active-for-invoice", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "1016d41d-33e9-4883-8fcd-ae7c02942866-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "46403ada-e2cf-4181-90a2-3efbfc1cbd48-attachment.json", "type": "application/json"}], "start": 1775347144968, "stop": 1775347144968}, {"name": "Response → 200, trace_id: 9bce46f26d8020cf7b5b1b8bd01a83df", "status": "passed", "attachments": [{"name": "response.headers", "source": "c0ca4306-4b9c-4860-aad9-203d10d106a6-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "5e2313af-0ae4-4b0e-b348-02c2c2480172-attachment.json", "type": "application/json"}], "start": 1775347144968, "stop": 1775347144968}], "attachments": [{"name": "cURL", "source": "d8d18756-dbce-4f88-a80c-5d07d83706ea-attachment.txt", "type": "text/plain"}], "start": 1775347144968, "stop": 1775347144968}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/box/get-box-items", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "fc77707c-cd75-4a6b-b384-f98f221e0eaa-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "8ca2d1b3-b3b8-43c5-96d3-1663ef389167-attachment.json", "type": "application/json"}], "start": 1775347145014, "stop": 1775347145014}, {"name": "Response → 200, trace_id: 6e3ab2b3b29f1460e76b652c1dee63fb", "status": "passed", "attachments": [{"name": "response.headers", "source": "5ba80265-1de7-46b2-aae6-b99826210e21-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "68565f80-9d1d-4491-bbfd-43ca5122eb2c-attachment.json", "type": "application/json"}], "start": 1775347145014, "stop": 1775347145015}], "attachments": [{"name": "cURL", "source": "691ba41d-7279-4e9e-85d7-89fb90e2d9ba-attachment.txt", "type": "text/plain"}], "start": 1775347145014, "stop": 1775347145015}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/box/get-box-items", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "dbb32af1-a438-444b-af3b-9234305ba69e-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "1e14fdab-ae57-4d45-a717-26852dd6b0a0-attachment.json", "type": "application/json"}], "start": 1775347145082, "stop": 1775347145082}, {"name": "Response → 200, trace_id: 684f57ff9442b6c7ec9a522d122f4445", "status": "passed", "attachments": [{"name": "response.headers", "source": "09df62dc-ef6e-463e-a8d8-ca82261149c3-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "1c65e35f-e27b-42b2-b427-e5818dc668a8-attachment.json", "type": "application/json"}], "start": 1775347145082, "stop": 1775347145083}], "attachments": [{"name": "cURL", "source": "b50e53d6-f272-454e-a9ed-1e77f3f95f02-attachment.txt", "type": "text/plain"}], "start": 1775347145082, "stop": 1775347145083}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/box/get-box-items", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "3f8ef340-2019-42c6-9f6e-e0ef5202729d-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "880af2e9-cd3a-4782-be92-206c6f4038cb-attachment.json", "type": "application/json"}], "start": 1775347145133, "stop": 1775347145133}, {"name": "Response → 200, trace_id: 4bd6a5c8158e3581ad81f252413ef396", "status": "passed", "attachments": [{"name": "response.headers", "source": "6f57484c-b0b8-496b-b322-66b483c6cda3-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "6cb323e7-a65f-4966-80a6-3ac45f4363f6-attachment.json", "type": "application/json"}], "start": 1775347145133, "stop": 1775347145134}], "attachments": [{"name": "cURL", "source": "c03501ff-fe71-49a9-9824-36eef6707189-attachment.txt", "type": "text/plain"}], "start": 1775347145133, "stop": 1775347145134}], "start": 1775347131255, "stop": 1775347145137}, {"name": "declaration request", "status": "failed", "statusDetails": {"message": "AssertionError: invoice 7534712898 not in status: INVOICE_DOC_REQUESTED, actual status: READY_FOR_DECLARATION\nassert 'READY_FOR_DECLARATION' == <WMSInvoiceSt...OC_REQUESTED'>\n  \n  - INVOICE_DOC_REQUESTED\n  + READY_FOR_DECLARATION\n", "trace": "  File \"/app/src/framework/wms/builders/acceptance/invoice/invoice.py\", line 791, in full_acceptance\n    (self.state_awaiting_doc().state_invoice_doc_waiting().state_invoice_doc_requested())\n     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/app/src/framework/wms/builders/acceptance/invoice/invoice.py\", line 613, in state_invoice_doc_waiting\n    wait_invoice(self.invoice_id, status=wait_state)\n  File \"/app/src/framework/common/utils/utils.py\", line 218, in wrapped_f\n    return Retrying(\n           ^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/retrying.py\", line 289, in call\n    raise attempt.get()\n          ^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/retrying.py\", line 326, in get\n    raise exc.with_traceback(tb)\n  File \"/usr/local/lib/python3.11/site-packages/retrying.py\", line 273, in call\n    attempt = Attempt(fn(*args, **kwargs), attempt_number, False)\n                      ^^^^^^^^^^^^^^^^^^^\n  File \"/app/src/framework/wms/validation/waiters/acceptance.py\", line 40, in wait_invoice\n    assert invoice.status == status, f\"invoice {supply_id} not in status: {status}, actual status: {invoice.status}\"\n"}, "steps": [{"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "d9925d8f-e6b4-4853-afe4-4f303a3e168a-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "eec509d3-8a87-4d12-83cf-3f7c4987871c-attachment.json", "type": "application/json"}], "start": 1775347145142, "stop": 1775347145142}], "start": 1775347145137, "stop": 1775347145142}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/invoices/send-to-declaration?invoice_ids=7534712898", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "035610eb-01f8-4cfc-a882-ece65ca5bd5c-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "30ed42fc-63b2-4fca-948c-123c4f6a0fb6-attachment.json", "type": "application/json"}], "start": 1775347145183, "stop": 1775347145184}, {"name": "Response → 200, trace_id: 628c21e9cd964fc0d194b662554a216b", "status": "passed", "attachments": [{"name": "response.headers", "source": "21d6e529-cb5f-4e19-8feb-a6791114272f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "fc6f6329-c70e-43ab-a23a-9aa64367d905-attachment.json", "type": "application/json"}], "start": 1775347145184, "stop": 1775347145184}], "attachments": [{"name": "cURL", "source": "b05d0973-920a-4013-aa34-60e2d4ef0a33-attachment.txt", "type": "text/plain"}], "start": 1775347145183, "stop": 1775347145184}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "8203f928-5ff5-4a96-a034-cb34f5b2af12-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "4732217c-1e87-4caa-ab38-a35b778fc252-attachment.json", "type": "application/json"}], "start": 1775347145193, "stop": 1775347145193}], "start": 1775347145188, "stop": 1775347145193}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "7c9289d8-d755-4daf-8d83-0289eaa1220c-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "dd58cacc-e247-4ad4-b2d6-f5a44dad3908-attachment.json", "type": "application/json"}], "start": 1775347145205, "stop": 1775347145206}], "start": 1775347145193, "stop": 1775347145206}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/declaration-requests/create", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e648c3c2-2c8d-4531-ab58-2e07b725c658-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f20a0376-affc-4967-ad51-fdd583dfe8c0-attachment.json", "type": "application/json"}], "start": 1775347145418, "stop": 1775347145418}, {"name": "Response → 200, trace_id: dbebf6fe9da094c1e0372da512b98e78", "status": "passed", "attachments": [{"name": "response.headers", "source": "8a97df7f-b41d-4cd1-9ee7-f25e216468a3-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c16d5dc9-e54b-42f9-94bc-f59f82c13f7a-attachment.json", "type": "application/json"}], "start": 1775347145418, "stop": 1775347145418}], "attachments": [{"name": "cURL", "source": "d618b9d1-1375-4fdd-abaa-7488b476737e-attachment.txt", "type": "text/plain"}], "start": 1775347145418, "stop": 1775347145418}, {"name": "Waiter function: wait_invoice", "status": "failed", "statusDetails": {"message": "AssertionError: invoice 7534712898 not in status: INVOICE_DOC_REQUESTED, actual status: READY_FOR_DECLARATION\nassert 'READY_FOR_DECLARATION' == <WMSInvoiceSt...OC_REQUESTED'>\n  \n  - INVOICE_DOC_REQUESTED\n  + READY_FOR_DECLARATION\n", "trace": "  File \"/app/src/framework/common/utils/utils.py\", line 218, in wrapped_f\n    return Retrying(\n           ^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/retrying.py\", line 289, in call\n    raise attempt.get()\n          ^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/retrying.py\", line 326, in get\n    raise exc.with_traceback(tb)\n  File \"/usr/local/lib/python3.11/site-packages/retrying.py\", line 273, in call\n    attempt = Attempt(fn(*args, **kwargs), attempt_number, False)\n                      ^^^^^^^^^^^^^^^^^^^\n  File \"/app/src/framework/wms/validation/waiters/acceptance.py\", line 40, in wait_invoice\n    assert invoice.status == status, f\"invoice {supply_id} not in status: {status}, actual status: {invoice.status}\"\n"}, "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "7dfc5215-b9a0-45f8-82b4-fe2e3ed73f18-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "a805897d-12e6-4d42-88f7-5864e21366b6-attachment.json", "type": "application/json"}], "start": 1775347145427, "stop": 1775347145427}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "aaa57066-9e7a-41de-84bb-4c4fec949e3f-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "f8ee7bd5-ab5a-443f-aec2-67d44cf090e1-attachment.json", "type": "application/json"}], "start": 1775347165441, "stop": 1775347165442}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "2e0863c2-a773-40e1-8d2f-ef2f1afd682f-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "4db0e41f-0fa3-4461-8590-b4a1c2bc01ed-attachment.json", "type": "application/json"}], "start": 1775347185447, "stop": 1775347185447}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "0b260bca-9517-4ed2-9bef-83be12937521-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "0020200f-2f12-48e8-85e9-e20a3bc9b355-attachment.json", "type": "application/json"}], "start": 1775347205462, "stop": 1775347205463}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "7e910c15-4484-4339-82f4-cd994eb863ff-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "174da15a-ac6a-438a-9fba-3fa39a1209a8-attachment.json", "type": "application/json"}], "start": 1775347225478, "stop": 1775347225478}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "f1b1f086-0b82-4563-a277-a66182ec3cdb-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "717898cd-d192-4593-ac8c-aa93864a8841-attachment.json", "type": "application/json"}], "start": 1775347245494, "stop": 1775347245494}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "4804fa7d-ab16-4fcf-b57c-db1f1e90f3cf-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "18198956-8f36-445d-b61a-ecb47b14b436-attachment.json", "type": "application/json"}], "start": 1775347265509, "stop": 1775347265509}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "9df1ba83-8e91-426a-9451-2ec117da59fb-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "a36f3753-baab-4494-b720-80b0b39d703c-attachment.json", "type": "application/json"}], "start": 1775347285515, "stop": 1775347285515}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "6b5cf502-4636-40d9-82bb-c3adc293d43a-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "fa5749e1-3dd8-4c7e-bd0b-049d73631c26-attachment.json", "type": "application/json"}], "start": 1775347305529, "stop": 1775347305529}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "1b6cde5f-45d4-40bd-a948-0f406fa71802-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "684b4b8b-7296-45c5-9dbb-a982bbb9d637-attachment.json", "type": "application/json"}], "start": 1775347325544, "stop": 1775347325544}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "c50f2190-e0da-40e1-8ec4-71a1a66696df-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "f7a481cd-5c22-44f7-8bf8-da00eb5e8822-attachment.json", "type": "application/json"}], "start": 1775347345550, "stop": 1775347345550}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "a6cc6dfe-2e62-424e-9ff1-9908842d059e-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "16222ceb-ebc2-49eb-b9d1-15548310b2fe-attachment.json", "type": "application/json"}], "start": 1775347365564, "stop": 1775347365565}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "79744711-6420-41be-8abf-7a58886d75a7-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "10984dd7-30f3-408d-b22e-c610c31bed8c-attachment.json", "type": "application/json"}], "start": 1775347385579, "stop": 1775347385579}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "99f9456d-4ab5-4951-a58a-b791e8dded87-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "0c177455-29f9-45cc-8d9d-cb2ccbc6137a-attachment.json", "type": "application/json"}], "start": 1775347405584, "stop": 1775347405584}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "b15584a9-7571-4dec-b1f4-4d74948c115b-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "0c3a06d7-ee45-47e1-bcd7-ed9aee9c56fb-attachment.json", "type": "application/json"}], "start": 1775347425598, "stop": 1775347425598}], "start": 1775347145422, "stop": 1775347425598}], "start": 1775347145137, "stop": 1775347425599}], "attachments": [{"name": "log", "source": "5f2ac9aa-9077-469d-a23b-e326d4b93cb0-attachment.txt", "type": "text/plain"}], "parameters": [{"name": "wms_inbound_e2e", "value": "{'warehouse': WMSWarehouse(id=1693627, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, ff_id='WH_TASHKENT', hub_last_mile_id=0, providers=[WMSProvider(last_mile=<DeliveryLastMile.TANAIS: 'TANAIS'>, city_id=<DeliveryCityId.ALIEXPRESS_UZ: 11>, delivery_point_id=<DeliveryPointId.TANAIS: 13>, last_mile_id=<DeliveryLastMileId.TANAIS: 13>, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, assembly_group_id=<AssemblyGroupId.TANAIS: 13>, order_source=<OrderSource.GLOBAL: 'GLOBAL'>, provider_name=<DeliveryLastMile.TANAIS: 'TANAIS'>), WMSProvider(last_mile='YaMarket', city_id=<DeliveryCityId.ALIEXPRESS_UZ: 11>, delivery_point_id=<DeliveryPointId.ALIEXPRESS_UZ: 12>, last_mile_id=<DeliveryLastMileId.ALIEXPRESS_UZ: 12>, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, assembly_group_id=<AssemblyGroupId.ALIEXPRESS_UZ: 12>, order_source=<OrderSource.YaMarket: 'YaMarket'>, provider_name='YaMarket')], name='Uzbekistan', description='Бонд Узбекистан', use_datamatrix=False, user=WMSAccount(wms_id=100046, phone='1000100046', role_wms_id=23, zone_id=None, patronymic='autotest UZ', last_name='Lancer', password='1234', first_name='Phantom', token='e232d2ce-fbe9-4bb5-93f6-ba7cc86f01de', refresh_token=''), storage_cell=<StorageCells.MA1_1_1_01: 'MA1-1-1-01'>, defected_cell=<DefectedCells.BR_01_01_1_05: 'BR-01-01-1-05'>, overage_cell=<OverageCells.IZ_1_01_01_1_05: 'IZ-1-01-01-1-05'>, weighing_cell=<WeighingCells.WT_1_11_1: 'WT-1-01-1'>, packing_table=<PackingTable.UP_AUTOTEST_01: 'UP-AUTOTEST-01'>, packing_zone_id='', qa_zone=<WMSZoneIds.QA_UZ_ZONE: 31>, email=None, phone=None), 'zone_id': 31, 'cell': <src.framework.wms.builders.db.cell.AvailableCell object at 0x752970601ed0>, 'count_types': {'proper': True, 'defected': True, 'overage': True, 'zero': False}}"}, {"name": "params", "value": "{'sku_amount': 3, 'barcode_count': 5, 'quantity': 4}"}], "start": 1775347128276, "stop": 1775347425599, "uuid": "20210fb6-d766-489f-9952-8739be4f1ec8", "historyId": "5808163037b55cb54d9cc86b09825257", "testCaseId": "8492d9fb49209f19f0fcdca811418779", "fullName": "tests.wms.test_e2e_inbound.test_inbound.TestE2EInbound#test_e2e_inbound", "labels": [{"name": "feature", "value": "WMS e2e inbound"}, {"name": "tag", "value": "wms-end-to-end-inbound"}, {"name": "parentSuite", "value": "tests.wms.test_e2e_inbound"}, {"name": "suite", "value": "test_inbound"}, {"name": "subSuite", "value": "TestE2EInbound"}, {"name": "host", "value": "runner-1rdl4o-mi-project-9-concurrent-7-j6yh7vn1"}, {"name": "thread", "value": "22-MainThread"}, {"name": "framework", "value": "pytest"}, {"name": "language", "value": "cpython3"}, {"name": "package", "value": "tests.wms.test_e2e_inbound.test_inbound"}], "titlePath": ["tests", "wms", "test_e2e_inbound", "test_inbound.py", "TestE2EInbound"]}