{"info":{"_postman_id":"1168f0e0-6407-4674-9e46-2d9a4e087b31","name":"EHR","description":"<html><head></head><body><h2 id=\"introduction-to-the-ehr-api\">Introduction to the EHR API</h2>\n<p>Welcome to the Electronic Health Record (EHR) API, a powerful tool designed to help you efficiently manage patients and create orders within a healthcare system. This API allows healthcare providers, developers, and administrators to seamlessly interact with patient data, handle orders, and integrate with other medical systems.</p>\n<h3 id=\"key-features\">Key Features:</h3>\n<ul>\n<li><p><strong>Patient Management:</strong> Create, update, retrieve, and manage patient records with ease.</p>\n</li>\n<li><p><strong>Order Management:</strong> Generate and manage orders such as lab tests, prescriptions, and other medical services.</p>\n</li>\n<li><p><strong>Secure Access:</strong> All interactions with the API are secured using Bearer tokens, ensuring that patient data remains protected.</p>\n</li>\n</ul>\n<h3 id=\"getting-started\">Getting Started:</h3>\n<ol>\n<li><p><strong>Access the EHR Admin Website:</strong><br> To begin using the EHR API, visit the EHR Admin website. Here, you can register or log in to your account.</p>\n</li>\n<li><p><strong>Generate Bearer Token:</strong><br> After logging in, navigate to the API section of the EHR Admin website. Generate a Bearer token, which will be used to authenticate your API requests.</p>\n</li>\n<li><p>Authorization: Bearer YOUR_TOKEN_HERE</p>\n<p> This token will authorize your access to the API endpoints, allowing you to manage patients and create orders.</p>\n</li>\n</ol>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"37052654","collectionId":"1168f0e0-6407-4674-9e46-2d9a4e087b31","publishedId":"2sA3s4nWRu","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"6558F5"},"publishDate":"2024-08-13T09:30:34.000Z"},"item":[{"name":"Orders","item":[{"name":"get all orders","id":"dd284d4e-b55f-4de5-8ced-d128f25c27f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"1|7KRgaxfaOvHSNCfIjKtHViwK4xYEY5zsA95Olwy9fd98fa09"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"ehr-api.10qbit.com/api/v1/orders?organization_id=1","description":"<p>This endpoint retrieves a list of orders based on the provided organization ID. The response of this request can be represented as a JSON schema with the structure and data types of the returned order information.</p>\n","urlObject":{"path":["api","v1","orders"],"host":["ehr-api.10qbit.com"],"query":[{"key":"organization_id","value":"1"}],"variable":[]}},"response":[{"id":"e7b7051d-1a98-46d1-87fa-37eb789a2c65","name":"get all orders","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"ehr-api.10qbit.com/api/v1/orders?organization_id=1","host":["ehr-api.10qbit.com"],"path":["api","v1","orders"],"query":[{"key":"organization_id","value":"1"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"dd284d4e-b55f-4de5-8ced-d128f25c27f8"},{"name":"view order","id":"02c3c6b4-8bc1-4357-acb2-215604a9456c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"1|7KRgaxfaOvHSNCfIjKtHViwK4xYEY5zsA95Olwy9fd98fa09"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"ehr-api.10qbit.com/api/v1/orders/1?organization_id=1","description":"<p>This endpoint retrieves the details of a specific order by making an HTTP GET request to /api/v1/orders/1. It includes a query parameter organization_id to specify the organization from which the order is being fetched.</p>\n<h3 id=\"response\">Response</h3>\n<p>The response of this request can be documented as a JSON schema. The schema will outline the structure of the response data, including the type and format of each field.</p>\n","urlObject":{"path":["api","v1","orders","1"],"host":["ehr-api.10qbit.com"],"query":[{"key":"organization_id","value":"1"}],"variable":[]}},"response":[{"id":"376ffc24-316e-4dd5-b2cf-fd09a302f026","name":"view order","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"ehr-api.10qbit.com/api/v1/orders/1?organization_id=1","host":["ehr-api.10qbit.com"],"path":["api","v1","orders","1"],"query":[{"key":"organization_id","value":"1"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"patient_id\": 278,\n      \"items\": [\n        {\n          \"id\": 67,\n          \"quantity\": 3,\n          \"note\": \"test\",\n          \"terms_accepted\": null,\n          \"face_to_face_consulted_date\": null,\n          \"patient_bmi\": null,\n          \"bmi_recorded_date\": null\n        }\n      ],\n      \"street_address_1\": \"123 Baker Street\",\n      \"street_address_2\": \"Flat 4B\",\n      \"city\": \"London\",\n      \"post_code\": \"NW1 6XE\",\n      \"country\": \"united kingdom\",\n      \"assigned_to\": null,\n      \"custom_reference\": \"Test\",\n      \"order_reference_id\": 4,\n      \"organization_id\": 3\n    },\n    {\n      \"patient_id\": 279,\n      \"items\": [\n        {\n          \"id\": 68,\n          \"quantity\": 1,\n          \"note\": \"urgent\",\n          \"terms_accepted\": true,\n          \"face_to_face_consulted_date\": \"2024-08-12\",\n          \"patient_bmi\": 22.5,\n          \"bmi_recorded_date\": \"2024-08-12\"\n        }\n      ],\n      \"street_address_1\": \"456 Elm Street\",\n      \"street_address_2\": \"Apt 7\",\n      \"city\": \"Manchester\",\n      \"post_code\": \"M1 2AB\",\n      \"country\": \"united kingdom\",\n      \"assigned_to\": 5,\n      \"custom_reference\": \"Urgent\",\n      \"order_reference_id\": 5,\n      \"organization_id\": 4\n    },\n    {\n      \"patient_id\": 280,\n      \"items\": [\n        {\n          \"id\": 69,\n          \"quantity\": 2,\n          \"note\": \"routine check\",\n          \"terms_accepted\": false,\n          \"face_to_face_consulted_date\": null,\n          \"patient_bmi\": 24.0,\n          \"bmi_recorded_date\": \"2024-08-10\"\n        }\n      ],\n      \"street_address_1\": \"789 Pine Street\",\n      \"street_address_2\": \"Suite 3\",\n      \"city\": \"Birmingham\",\n      \"post_code\": \"B1 1BB\",\n      \"country\": \"united kingdom\",\n      \"assigned_to\": 8,\n      \"custom_reference\": \"Routine\",\n      \"order_reference_id\": 6,\n      \"organization_id\": 5\n    }\n  ]\n}\n"}],"_postman_id":"02c3c6b4-8bc1-4357-acb2-215604a9456c"},{"name":"create order","id":"f755a68c-603e-4fdf-9b53-d6de2e069399","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"1|7KRgaxfaOvHSNCfIjKtHViwK4xYEY5zsA95Olwy9fd98fa09"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"patient_id\": 6,              // integer: Unique identifier for the patient\n    \"items\": [\n        {\n            \"id\": 450,             // integer: Unique identifier for the item\n            \"quantity\": 1,         // integer: Quantity of the item\n            \"face_to_face_consulted_date\": null, // datetime (ISO 8601 date format) or null: Date of face-to-face consultation, if applicable\n            \"patient_bmi\": null,   // float or null: Patient's BMI (Body Mass Index), if recorded\n            \"bmi_recorded_date\": null, // datetime (ISO 8601 date format) or null: Date when BMI was recorded\n            \"note\": \"note\",        // string (long): Additional notes or comments\n            \"terms_accepted\": true // boolean: Indicates whether terms and conditions have been accepted\n        },\n        {\n            \"id\": 510,             // integer: Unique identifier for the item\n            \"quantity\": 3,         // integer: Quantity of the item\n            \"face_to_face_consulted_date\": null, // datetime (ISO 8601 date format) or null: Date of face-to-face consultation, if applicable\n            \"patient_bmi\": null,   // float or null: Patient's BMI (Body Mass Index), if recorded\n            \"bmi_recorded_date\": null, // datetime (ISO 8601 date format) or null: Date when BMI was recorded\n            \"note\": \"note\",        // string (long): Additional notes or comments\n            \"terms_accepted\": true // boolean: Indicates whether terms and conditions have been accepted\n        }\n    ],\n    \"questionnaire\": [\n        {\n            \"question\": \"question?\", // string: The question text\n            \"answer\": \"answer\"        // string: The corresponding answer\n        }\n    ],\n    \"order_reference_id\": \"odr 123\",      // string: required, Reference ID for the order max:255 |min:1\n    \"order_note\": \"order note\"      // string, optional, Additional notes or comments about the order. max:255\n}\n","options":{"raw":{"language":"json"}}},"url":"ehr-api.10qbit.com/api/v1/orders?organization_id=1","description":"<h3 id=\"create-order\">Create Order</h3>\n<p>This endpoint allows you to create a new order for a specific organization.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: POST</p>\n</li>\n<li><p>URL: <code>ehr-api.10qbit.com/api/v1/orders?organization_id=1</code></p>\n</li>\n<li><p>Headers:</p>\n<ul>\n<li>Content-Type: application/json</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response of this request is a JSON schema representing the structure of the order created. The specific properties and their types will be defined in the JSON schema.</p>\n","urlObject":{"path":["api","v1","orders"],"host":["ehr-api.10qbit.com"],"query":[{"key":"organization_id","value":"1"}],"variable":[]}},"response":[{"id":"33623673-7c12-4d7d-af88-ecd88022c6f2","name":"create order","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"patient_id\": 278,\n    \"items\": [\n        {\n            \"id\": 67,\n            \"quantity\": 3,\n            \"face_to_face_consulted_date\":null,\n            \"patient_bmi\":null,\n            \"bmi_recorded_date\":null,\n            \"note\":\"note\",\n            \"terms_accepted\":true\n        }\n    ],\n     \"questionnaire\": [\n        {\n            \"question\": \"question?\",\n            \"answer\": \"answer\"\n        }\n    ],\n    \"order_reference_id\": \"custom_id\",\n    \"order_note\": \"order note\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"ehr-api.10qbit.com/api/v1/orders?organization_id=1","host":["ehr-api.10qbit.com"],"path":["api","v1","orders"],"query":[{"key":"organization_id","value":"1"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"patient_id\": 278,\n        \"items\": [\n            {\n                \"id\": 67,\n                \"quantity\": 3,\n                \"note\": \"test\",\n                \"terms_accepted\": null,\n                \"face_to_face_consulted_date\": null,\n                \"patient_bmi\": null,\n                \"bmi_recorded_date\": null\n            }\n        ],\n        \"questionnaire\": [\n        {\n            \"question\": \"question?\",\n            \"answer\": \"answer\"\n        }],\n        \"street_address_1\": \"123 Baker Street\",\n        \"street_address_2\": \"Flat 4B\",\n        \"city\": \"London\",\n        \"post_code\": \"NW1 6XE\",\n        \"country\": \"united kingdom\",\n        \"order_reference_id\": \"custom_id\",\n        \"order_note\":\"order note\",\n        \"organization_id\": 3\n    }\n}"}],"_postman_id":"f755a68c-603e-4fdf-9b53-d6de2e069399"},{"name":"New Request","id":"f16ff41c-0b38-429a-8435-49de139803a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1168f0e0-6407-4674-9e46-2d9a4e087b31","id":"1168f0e0-6407-4674-9e46-2d9a4e087b31","name":"EHR","type":"collection"}},"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"f16ff41c-0b38-429a-8435-49de139803a6"}],"id":"0ae68859-5c3f-4f6f-8a05-75074259bd2b","_postman_id":"0ae68859-5c3f-4f6f-8a05-75074259bd2b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1168f0e0-6407-4674-9e46-2d9a4e087b31","id":"1168f0e0-6407-4674-9e46-2d9a4e087b31","name":"EHR","type":"collection"}}},{"name":"Patients","item":[{"name":"get all patients","id":"6e3bafd2-2b33-4d78-a7a8-80eaff7f31fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"1|7KRgaxfaOvHSNCfIjKtHViwK4xYEY5zsA95Olwy9fd98fa09"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"ehr-api.10qbit.com/api/v1/patients?organization_id=1","description":"<h3 id=\"get-patients\">Get Patients</h3>\n<p>This endpoint retrieves a list of patients based on the provided organization ID.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>URL: <code>ehr-api.10qbit.com/api/v1/patients</code></p>\n</li>\n<li><p>Query Parameters:</p>\n<ul>\n<li><code>organization_id</code> (integer, required): The ID of the organization for which the patients are being retrieved.</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<ul>\n<li><p>Type: JSON</p>\n</li>\n<li><p>Body:</p>\n<ul>\n<li><p><code>patients</code> (array): An array of patient objects containing their details.</p>\n<ul>\n<li><p><code>id</code> (string): The unique identifier for the patient.</p>\n</li>\n<li><p><code>name</code> (string): The name of the patient.</p>\n</li>\n<li><p><code>age</code> (integer): The age of the patient.</p>\n</li>\n<li><p><code>gender</code> (string): The gender of the patient.</p>\n</li>\n<li><p><code>contact_number</code> (string): The contact number of the patient.</p>\n</li>\n<li><p><code>address</code> (string): The address of the patient.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["api","v1","patients"],"host":["ehr-api.10qbit.com"],"query":[{"key":"organization_id","value":"1"}],"variable":[]}},"response":[{"id":"94f10efc-eeb1-4c45-b1f1-e2be278f2d00","name":"get all patients","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"ehr-api.10qbit.com/api/v1i/{{org_id}}/patients"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\":[ {\n        \"id\": 2357,\n        \"clinic_id\": 4,\n        \"old_system_id\": null,\n        \"old_system_clinic_id\": null,\n        \"first_name\": \"Rem aliquam sit cill\",\n        \"last_name\": \"Eiusmod provident i\",\n        \"email\": \"zini@mailinator.com\",\n        \"date_of_birth\": \"1904-12-31 00:00:00\",\n        \"gender\": \"male\",\n        \"phone_no\": \"+44214234234\",\n        \"note\": null,\n        \"created_at\": \"2024-07-15T12:36:02.000000Z\",\n        \"updated_at\": \"2024-07-15T12:36:02.000000Z\",\n        \"addresses\": [\n            {\n                \"street_address_1\": \"123 Baker Street\",\n                \"street_address_2\": \"Flat 4B\",\n                \"city\": \"London\",\n                \"post_code\": \"NW1 6XE\",\n                \"country\": \"united kingdom\",\n                \"type\": \"shipping\"\n            }\n        ]\n    } ,\n    {\n        \"id\": 2357,\n        \"clinic_id\": 4,\n        \"old_system_id\": null,\n        \"old_system_clinic_id\": null,\n        \"first_name\": \"Rem aliquam sit cill\",\n        \"last_name\": \"Eiusmod provident i\",\n        \"email\": \"zini@mailinator.com\",\n        \"date_of_birth\": \"1904-12-31 00:00:00\",\n        \"gender\": \"male\",\n        \"phone_no\": \"+44214234234\",\n        \"note\": null,\n        \"created_at\": \"2024-07-15T12:36:02.000000Z\",\n        \"updated_at\": \"2024-07-15T12:36:02.000000Z\",\n        \"addresses\": [\n            {\n                \"street_address_1\": \"123 Baker Street\",\n                \"street_address_2\": \"Flat 4B\",\n                \"city\": \"London\",\n                \"post_code\": \"NW1 6XE\",\n                \"country\": \"united kingdom\",\n                \"type\": \"shipping\"\n            }\n        ]\n    }\n    ]\n}"}],"_postman_id":"6e3bafd2-2b33-4d78-a7a8-80eaff7f31fa"},{"name":"view patient","id":"3d4df342-6b93-44f2-9fdc-e4110d9fae98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"1|7KRgaxfaOvHSNCfIjKtHViwK4xYEY5zsA95Olwy9fd98fa09"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"ehr-api.10qbit.com/api/v1/patients/{{patient_id}}?organization_id=1","description":"<p>This endpoint retrieves information about a specific patient within the organization. It makes an HTTP GET request to the specified URL with the patient's ID as a path parameter and the organization ID as a query parameter.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p>Method: GET</p>\n</li>\n<li><p>URL: ehr-api.10qbit.com/api/v1/patients/{{patient_id}}</p>\n</li>\n<li><p>Query Parameters:</p>\n<ul>\n<li>organization_id (required, number): The ID of the organization to which the patient belongs.</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response of this request can be documented as a JSON schema.</p>\n","urlObject":{"path":["api","v1","patients","{{patient_id}}"],"host":["ehr-api.10qbit.com"],"query":[{"key":"organization_id","value":"1"}],"variable":[]}},"response":[{"id":"1e41a0a5-ab9b-4c2b-a28c-29c68c6c9168","name":"view patient","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"ehr-api.10qbit.com/api/v1/{{org_id}}/patient/{{patient_id}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"\n{\n    \"data\": {\n        \"id\": 2357,\n        \"clinic_id\": 4,\n        \"old_system_id\": null,\n        \"old_system_clinic_id\": null,\n        \"first_name\": \"Rem aliquam sit cill\",\n        \"last_name\": \"Eiusmod provident i\",\n        \"email\": \"zini@mailinator.com\",\n        \"date_of_birth\": \"1904-12-31 00:00:00\",\n        \"gender\": \"male\",\n        \"phone_no\": \"+44214234234\",\n        \"note\": null,\n        \"created_at\": \"2024-07-15T12:36:02.000000Z\",\n        \"updated_at\": \"2024-07-15T12:36:02.000000Z\",\n        \"addresses\": [\n        {\n            \"street_address_1\": \"123 Baker Street\",\n            \"street_address_2\": \"Flat 4B\",\n            \"city\": \"London\",\n            \"post_code\": \"NW1 6XE\",\n            \"country\": \"united kingdom\",\n            \"type\":\"shipping\"\n        }\n    ]\n    }\n}"}],"_postman_id":"3d4df342-6b93-44f2-9fdc-e4110d9fae98"},{"name":"create patient","id":"bc7de237-c530-4099-8dce-027c487520da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"1|7KRgaxfaOvHSNCfIjKtHViwK4xYEY5zsA95Olwy9fd98fa09"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Xidian\",         // string: First name of the patient. max:255\n    \"last_name\": \"Xavier\",          // string: Last name of the patient. max:255\n    \"email\": \"xavier19498@gmail.com\", // string: Email address of the patient. max:255\n    \"date_of_birth\": \"1998-04-13\",  // datetime (ISO 8601 date format): Date of birth of the patient. Age over 18\n    \"gender\": \"male\",               // string: Gender of the patient (e.g., \"male\", \"female\", etc.) max:255\n    \"phone_1\": \"+44778923324\",     // string: Phone number of the patient, including country code. max:20, Must beUK phone number\n    \"addresses\": [\n        {\n            \"street_address_1\": \"123 Baker Street\", // string: Primary street address max:255 min:1'\n            \"street_address_2\": \"Flat 4B\",          // string (optional): Secondary street address (e.g., apartment, suite, etc.) max:255'\n            \"city\": \"London\",            // string: City of the address max:255 min:1'\n            \"post_code\": \"NW1 6XE\",      // string: Postal code of the address max:255 min:1'\n            \"country\": \"united kingdom\", // string: Country of the address max:255 min:1'\n            \"type\": \"shipping\"           // string: Address type (e.g., \"billing\", \"shipping\", persona;.). Shipping address is required. max:255 min:1'\n        }\n    ],\n    \"note\": \"custom note\"             // string, optional Additional notes or comments about the patient max:255'\n}\n","options":{"raw":{"language":"json"}}},"url":"ehr-api.10qbit.com/api/v1/patients?organization_id=1","description":"<h3 id=\"create-new-patient\">Create New Patient</h3>\n<p>This endpoint allows you to create a new patient under a specific organization.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>first_name</code> (string): First name of the patient</p>\n</li>\n<li><p><code>last_name</code> (string): Last name of the patient</p>\n</li>\n<li><p><code>email</code> (string): Email address of the patient</p>\n</li>\n<li><p><code>date_of_birth</code> (string, ISO 8601 date format): Date of birth of the patient</p>\n</li>\n<li><p><code>gender</code> (string): Gender of the patient (e.g., \"male\", \"female\", etc.)</p>\n</li>\n<li><p><code>phone_no</code> (string): Phone number of the patient, including country code</p>\n</li>\n<li><p><code>addresses</code> (array): Array of addresses containing:</p>\n<ul>\n<li><p><code>street_address_1</code> (string): Primary street address</p>\n</li>\n<li><p><code>street_address_2</code> (string, optional): Secondary street address (e.g., apartment, suite, etc.)</p>\n</li>\n<li><p><code>city</code> (string): City of the address</p>\n</li>\n<li><p><code>post_code</code> (string): Postal code of the address</p>\n</li>\n<li><p><code>country</code> (string): Country of the address</p>\n</li>\n<li><p><code>type</code> (string): Address type (e.g., \"billing\", \"shipping\", etc.)</p>\n</li>\n</ul>\n</li>\n<li><p><code>note</code> (string, long): Additional notes or comments about the patient</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response for this request will be a JSON object conforming to the following schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"id\": {\n      \"type\": \"string\"\n    },\n    \"first_name\": {\n      \"type\": \"string\"\n    },\n    \"last_name\": {\n      \"type\": \"string\"\n    },\n    \"email\": {\n      \"type\": \"string\"\n    },\n    \"date_of_birth\": {\n      \"type\": \"string\",\n      \"format\": \"date\"\n    },\n    \"gender\": {\n      \"type\": \"string\"\n    },\n    \"phone_no\": {\n      \"type\": \"string\"\n    },\n    \"addresses\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"street_address_1\": {\n            \"type\": \"string\"\n          },\n          \"street_address_2\": {\n            \"type\": \"string\"\n          },\n          \"city\": {\n            \"type\": \"string\"\n          },\n          \"post_code\": {\n            \"type\": \"string\"\n          },\n          \"country\": {\n            \"type\": \"string\"\n          },\n          \"type\": {\n            \"type\": \"string\"\n          }\n        }\n      }\n    },\n    \"note\": {\n      \"type\": \"string\"\n    }\n  }\n}\n\n</code></pre>\n","urlObject":{"path":["api","v1","patients"],"host":["ehr-api.10qbit.com"],"query":[{"key":"organization_id","value":"1"}],"variable":[]}},"response":[{"id":"debaf2a9-492a-4799-97e2-8994057c8bae","name":"create patient","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Xidian\",\n    \"last_name\": \"Xavier\",\n    \"email\": \"xavier1998@gmail.com\",\n    \"date_of_birth\": \"1998-04-13\",\n    \"gender\": \"male\",\n    \"phone_no\": \"+44778923324\",\n    \"addresses\": [\n        {\n            \"street_address_1\": \"123 Baker Street\",\n            \"street_address_2\": \"Flat 4B\",\n            \"city\": \"London\",\n            \"post_code\": \"NW1 6XE\",\n            \"country\": \"united kingdom\",\n            \"type\" : \"shipping\"\n        }\n    ],\n    \"note\": \"test\"\n}\n","options":{"raw":{"language":"json"}}},"url":"ehr-api.10qbit.com/api/ehr-api/{{org_id}}/patients"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2357,\n        \"clinic_id\": 4,\n        \"old_system_id\": null,\n        \"old_system_clinic_id\": null,\n        \"first_name\": \"Rem aliquam sit cill\",\n        \"last_name\": \"Eiusmod provident i\",\n        \"email\": \"zini@mailinator.com\",\n        \"date_of_birth\": \"1904-12-31 00:00:00\",\n        \"gender\": \"male\",\n        \"phone_no\": \"+44214234234\",\n        \"note\": null,\n        \"created_at\": \"2024-07-15T12:36:02.000000Z\",\n        \"updated_at\": \"2024-07-15T12:36:02.000000Z\",\n        \"addresses\": [\n            {\n                \"street_address_1\": \"123 Baker Street\",\n                \"street_address_2\": \"Flat 4B\",\n                \"city\": \"London\",\n                \"post_code\": \"NW1 6XE\",\n                \"country\": \"united kingdom\",\n                \"type\": \"shipping\"\n            }\n        ]\n    }\n}"}],"_postman_id":"bc7de237-c530-4099-8dce-027c487520da"},{"name":"patient update","id":"e68c7b3d-7b0f-492e-9d6f-af307adfcf01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"first_name\": \"Xidian\",         // string: First name of the patient. max: 255\r\n    \"last_name\": \"Xavier\",          // string: Last name of the patient. max: 255\r\n    \"email\": \"xavier1998@gmail.com\", // string: Email address of the patient. max: 255\r\n    \"date_of_birth\": \"1998-04-13\",  // datetime (ISO 8601 date format): Date of birth of the patient. Age must be over 18\r\n    \"gender\": \"male\",               // string: Gender of the patient (e.g., \"male\", \"female\"). max: 255\r\n    \"phone_no\": \"+44778923324\",     // string: Phone number of the patient, including country code. max: 20, must be a UK phone number\r\n    \"addresses\": [\r\n        {\r\n            \"street_address_1\": \"123 Baker Street\", // string: Primary street address. max: 255, min: 1\r\n            \"street_address_2\": \"Flat 4B\",          // string (optional): Secondary street address. max: 255\r\n            \"city\": \"London\",            // string: City of the address. max: 255, min: 1\r\n            \"post_code\": \"NW1 6XE\",      // string: Postal code of the address. max: 255, min: 1\r\n            \"country\": \"united kingdom\", // string: Country of the address. max: 255, min: 1\r\n            \"type\": \"shipping\"           // string: Address type (e.g., \"billing\", \"shipping\"). max: 255, min: 1\r\n        }\r\n    ],\r\n    \"note\": \"custom note\"             // string: optional, Additional notes or comments about the patient. max: 255\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"ehr-api.10qbit.com/api/v1/patients?organization_id=1","description":"<p>The API updates the information of a patient with the provided payload. The request should be a HTTP PUT to the specified endpoint with the organization_id as a query parameter. The payload should include the patient's first name, last name, email, date of birth, gender, phone number, addresses, and a note.</p>\n<h3 id=\"response\">Response</h3>\n<p>The response of this request is a JSON schema representing the updated patient information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1168f0e0-6407-4674-9e46-2d9a4e087b31","id":"1168f0e0-6407-4674-9e46-2d9a4e087b31","name":"EHR","type":"collection"}},"urlObject":{"path":["api","v1","patients"],"host":["ehr-api.10qbit.com"],"query":[{"key":"organization_id","value":"1"}],"variable":[]}},"response":[{"id":"ee8ebb3a-1a6c-41b6-852c-ceca2a01164a","name":"patient update","originalRequest":{"method":"GET","header":[]},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2357,\n        \"clinic_id\": 4,\n        \"old_system_id\": null,\n        \"old_system_clinic_id\": null,\n        \"first_name\": \"Rem aliquam sit cill\",\n        \"last_name\": \"Eiusmod provident i\",\n        \"email\": \"zini@mailinator.com\",\n        \"date_of_birth\": \"1904-12-31 00:00:00\",\n        \"gender\": \"male\",\n        \"phone_no\": \"+44214234234\",\n        \"note\": null,\n        \"created_at\": \"2024-07-15T12:36:02.000000Z\",\n        \"updated_at\": \"2024-07-15T12:36:02.000000Z\",\n        \"addresses\": [\n            {\n                \"street_address_1\": \"123 Baker Street\",\n                \"street_address_2\": \"Flat 4B\",\n                \"city\": \"London\",\n                \"post_code\": \"NW1 6XE\",\n                \"country\": \"united kingdom\",\n                \"type\": \"shipping\"\n            }\n        ]\n    }\n}"}],"_postman_id":"e68c7b3d-7b0f-492e-9d6f-af307adfcf01"}],"id":"19ccc3fa-9862-40f4-ac77-86d2e0f077ff","_postman_id":"19ccc3fa-9862-40f4-ac77-86d2e0f077ff","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1168f0e0-6407-4674-9e46-2d9a4e087b31","id":"1168f0e0-6407-4674-9e46-2d9a4e087b31","name":"EHR","type":"collection"}}},{"name":"Items","item":[{"name":"get all items","id":"bf836ae6-7a3a-4d78-9f8f-cdf0ba03e993","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"1|7KRgaxfaOvHSNCfIjKtHViwK4xYEY5zsA95Olwy9fd98fa09"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"ehr-api.10qbit.com/api/v1/items?organization_id=1","urlObject":{"path":["api","v1","items"],"host":["ehr-api.10qbit.com"],"query":[{"key":"organization_id","value":"1"}],"variable":[]}},"response":[{"id":"ed91cb8b-3882-4da0-b378-e2d60460bed2","name":"get all items","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"ehr-api.10qbit.com/api/ehr-api/items","host":["ehr-api.10qbit.com"],"path":["api","ehr-api","items"],"query":[{"key":"clinic_id","value":"1","disabled":true}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 659,\n            \"monday_com_id\": \"6380823865\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": \"0\",\n            \"clinic_per_quota\": \"0\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Aaertiy tablet\",\n            \"cost_price\": null,\n            \"price\": 100,\n            \"stock\": 310,\n            \"reorder_limit\": null,\n            \"item_category_id\": 4,\n            \"clinic_limit\": 2,\n            \"sku\": \"\",\n            \"unit\": \"cm\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"gte\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 1,\n            \"is_bmi_required\": 1,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-12-22T14:32:13.000000Z\",\n            \"updated_at\": \"2024-05-08T06:40:25.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/2c421a7b-b264-4a1f-9ed6-2c93a4d22842.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=8e191810311926f6bcab023767703512374d548bd9949e78269b87f62c5b6316\",\n            \"item_stocks\": [\n                {\n                    \"id\": 550,\n                    \"reference_id\": \"#POI-550\",\n                    \"stock_order_id\": 328,\n                    \"item_id\": 659,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5733957376\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-12-22T10:22:06.000000Z\",\n                    \"updated_at\": \"2023-12-22T10:22:07.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 1,\n            \"monday_com_id\": \"5945641052\",\n            \"vendor_id\": 44,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"100\",\n            \"clinic_per_quota_term\": \"7\",\n            \"delivery_delay\": \"test delivery delay text test delivery delay text test delivery delay text test delivery delay text test delivery delay text test delivery delay text test delivery delay text test delivery delay text\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": null,\n            \"name\": \"Aciclovir 200mg Tablets\",\n            \"cost_price\": 3,\n            \"price\": 0.94,\n            \"stock\": 99965,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": 1,\n            \"sku\": \"ACIC200\",\n            \"unit\": \"1 x 25\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": \"\",\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 0,\n            \"status\": \"active\",\n            \"is_note_required\": 0,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 1,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-06-14T09:53:21.000000Z\",\n            \"item_stocks_sum_received_quantity\": 3,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/9f0267e8-4221-4f2f-abc2-5b6a5f306f9e.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=bfab96bb178c9b8cd3a34a031d42fbc73903260ce82c104ffcb1139c66920fab\",\n            \"item_stocks\": [\n                {\n                    \"id\": 1,\n                    \"reference_id\": \"#POI-1\",\n                    \"stock_order_id\": 1,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 100,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"50\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-18 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-18T12:50:23.000000Z\",\n                    \"updated_at\": \"2022-07-27T16:58:17.000000Z\"\n                },\n                {\n                    \"id\": 2,\n                    \"reference_id\": \"#POI-1\",\n                    \"stock_order_id\": 1,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 50,\n                    \"received_quantity\": 50,\n                    \"initial_quantity\": \"50\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-19 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2022-07-18T12:52:52.000000Z\",\n                    \"updated_at\": \"2023-06-19T05:49:08.000000Z\"\n                },\n                {\n                    \"id\": 3,\n                    \"reference_id\": \"#POI-3\",\n                    \"stock_order_id\": 2,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 100,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"20\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-18 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-18T13:29:45.000000Z\",\n                    \"updated_at\": \"2022-08-04T08:48:40.000000Z\"\n                },\n                {\n                    \"id\": 4,\n                    \"reference_id\": \"#POI-3\",\n                    \"stock_order_id\": 2,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 80,\n                    \"received_quantity\": 80,\n                    \"initial_quantity\": \"80\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-18 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2022-07-18T13:30:15.000000Z\",\n                    \"updated_at\": \"2022-07-18T13:53:13.000000Z\"\n                },\n                {\n                    \"id\": 8,\n                    \"reference_id\": \"#POI-8\",\n                    \"stock_order_id\": 4,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-12 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-18T13:58:20.000000Z\",\n                    \"updated_at\": \"2022-08-04T08:48:40.000000Z\"\n                },\n                {\n                    \"id\": 11,\n                    \"reference_id\": \"#POI-11\",\n                    \"stock_order_id\": 6,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 100,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-07-18T14:03:55.000000Z\",\n                    \"updated_at\": \"2022-07-18T14:03:55.000000Z\"\n                },\n                {\n                    \"id\": 14,\n                    \"reference_id\": \"#POI-14\",\n                    \"stock_order_id\": 8,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 20,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-07-18T18:34:11.000000Z\",\n                    \"updated_at\": \"2022-07-18T18:34:11.000000Z\"\n                },\n                {\n                    \"id\": 15,\n                    \"reference_id\": \"#POI-15\",\n                    \"stock_order_id\": 9,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 45,\n                    \"received_quantity\": 45,\n                    \"initial_quantity\": \"45\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-19 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2022-07-18T18:53:52.000000Z\",\n                    \"updated_at\": \"2022-07-18T18:54:39.000000Z\"\n                },\n                {\n                    \"id\": 16,\n                    \"reference_id\": \"#POI-16\",\n                    \"stock_order_id\": 10,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 6,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-07-18T19:02:16.000000Z\",\n                    \"updated_at\": \"2022-07-18T19:02:16.000000Z\"\n                },\n                {\n                    \"id\": 19,\n                    \"reference_id\": \"#POI-19\",\n                    \"stock_order_id\": 13,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-21 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-21T09:45:33.000000Z\",\n                    \"updated_at\": \"2022-08-04T08:48:40.000000Z\"\n                },\n                {\n                    \"id\": 21,\n                    \"reference_id\": \"#POI-21\",\n                    \"stock_order_id\": 13,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 1,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2022-07-21T11:32:17.000000Z\",\n                    \"updated_at\": \"2022-07-21T11:38:31.000000Z\"\n                },\n                {\n                    \"id\": 23,\n                    \"reference_id\": \"#POI-23\",\n                    \"stock_order_id\": 14,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-07-21T12:09:57.000000Z\",\n                    \"updated_at\": \"2022-07-21T12:09:57.000000Z\"\n                },\n                {\n                    \"id\": 28,\n                    \"reference_id\": \"#POI-28\",\n                    \"stock_order_id\": 18,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 1,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-07-25T06:27:16.000000Z\",\n                    \"updated_at\": \"2022-07-25T06:27:16.000000Z\"\n                },\n                {\n                    \"id\": 29,\n                    \"reference_id\": \"#POI-29\",\n                    \"stock_order_id\": 19,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-07-26T08:22:36.000000Z\",\n                    \"updated_at\": \"2022-07-26T08:22:36.000000Z\"\n                },\n                {\n                    \"id\": 48,\n                    \"reference_id\": \"#POI-48\",\n                    \"stock_order_id\": 27,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-20 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-27T16:47:06.000000Z\",\n                    \"updated_at\": \"2022-08-04T08:48:40.000000Z\"\n                },\n                {\n                    \"id\": 51,\n                    \"reference_id\": \"#POI-51\",\n                    \"stock_order_id\": 27,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 4,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"owning\",\n                    \"created_at\": \"2022-07-27T16:48:35.000000Z\",\n                    \"updated_at\": \"2022-07-27T16:48:35.000000Z\"\n                },\n                {\n                    \"id\": 67,\n                    \"reference_id\": \"#POI-67\",\n                    \"stock_order_id\": 31,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-08-01T09:26:29.000000Z\",\n                    \"updated_at\": \"2022-08-01T09:26:29.000000Z\"\n                },\n                {\n                    \"id\": 68,\n                    \"reference_id\": \"#POI-68\",\n                    \"stock_order_id\": 32,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 1,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-08-01T09:49:48.000000Z\",\n                    \"updated_at\": \"2022-08-01T09:49:48.000000Z\"\n                },\n                {\n                    \"id\": 98,\n                    \"reference_id\": \"#POI-98\",\n                    \"stock_order_id\": 43,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 20,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-31 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-03T09:32:51.000000Z\",\n                    \"updated_at\": \"2022-08-04T08:48:40.000000Z\"\n                },\n                {\n                    \"id\": 99,\n                    \"reference_id\": \"#POI-99\",\n                    \"stock_order_id\": 43,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 19,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-01 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-03T11:20:57.000000Z\",\n                    \"updated_at\": \"2022-08-09T13:54:43.000000Z\"\n                },\n                {\n                    \"id\": 100,\n                    \"reference_id\": \"#POI-100\",\n                    \"stock_order_id\": 43,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 17,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"owning\",\n                    \"created_at\": \"2022-08-03T11:21:33.000000Z\",\n                    \"updated_at\": \"2022-08-03T11:21:33.000000Z\"\n                },\n                {\n                    \"id\": 106,\n                    \"reference_id\": \"#POI-106\",\n                    \"stock_order_id\": 48,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-08-04T09:23:14.000000Z\",\n                    \"updated_at\": \"2022-08-04T09:23:14.000000Z\"\n                },\n                {\n                    \"id\": 117,\n                    \"reference_id\": \"#POI-117\",\n                    \"stock_order_id\": 57,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 8,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"8\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-12-28 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-08T16:27:03.000000Z\",\n                    \"updated_at\": \"2023-02-16T10:33:02.000000Z\"\n                },\n                {\n                    \"id\": 122,\n                    \"reference_id\": \"#POI-122\",\n                    \"stock_order_id\": 61,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-08 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-09T14:19:29.000000Z\",\n                    \"updated_at\": \"2022-08-16T10:49:01.000000Z\"\n                },\n                {\n                    \"id\": 123,\n                    \"reference_id\": \"#POI-123\",\n                    \"stock_order_id\": 62,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-09 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-09T14:24:21.000000Z\",\n                    \"updated_at\": \"2022-08-19T13:31:27.000000Z\"\n                },\n                {\n                    \"id\": 124,\n                    \"reference_id\": \"#POI-124\",\n                    \"stock_order_id\": 62,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-09 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-09T14:25:56.000000Z\",\n                    \"updated_at\": \"2022-08-19T13:31:27.000000Z\"\n                },\n                {\n                    \"id\": 125,\n                    \"reference_id\": \"#POI-125\",\n                    \"stock_order_id\": 63,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-09 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-09T14:31:20.000000Z\",\n                    \"updated_at\": \"2022-08-24T08:16:59.000000Z\"\n                },\n                {\n                    \"id\": 126,\n                    \"reference_id\": \"#POI-126\",\n                    \"stock_order_id\": 63,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-08 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-09T14:31:54.000000Z\",\n                    \"updated_at\": \"2022-08-29T09:24:39.000000Z\"\n                },\n                {\n                    \"id\": 127,\n                    \"reference_id\": \"#POI-127\",\n                    \"stock_order_id\": 64,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-09 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-09T14:35:38.000000Z\",\n                    \"updated_at\": \"2022-08-31T09:00:29.000000Z\"\n                },\n                {\n                    \"id\": 128,\n                    \"reference_id\": \"#POI-128\",\n                    \"stock_order_id\": 64,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-08 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-09T14:36:09.000000Z\",\n                    \"updated_at\": \"2022-08-31T09:00:29.000000Z\"\n                },\n                {\n                    \"id\": 159,\n                    \"reference_id\": \"#POI-159\",\n                    \"stock_order_id\": 82,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"4\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-09-01 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-31T15:06:49.000000Z\",\n                    \"updated_at\": \"2022-09-08T13:26:39.000000Z\"\n                },\n                {\n                    \"id\": 161,\n                    \"reference_id\": \"#POI-161\",\n                    \"stock_order_id\": 82,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 6,\n                    \"received_quantity\": 4,\n                    \"initial_quantity\": \"4\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-09-01 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2022-09-01T14:07:05.000000Z\",\n                    \"updated_at\": \"2022-09-01T17:16:32.000000Z\"\n                },\n                {\n                    \"id\": 163,\n                    \"reference_id\": \"#POI-163\",\n                    \"stock_order_id\": 82,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-09-01 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-09-01T17:15:24.000000Z\",\n                    \"updated_at\": \"2022-09-08T15:37:52.000000Z\"\n                },\n                {\n                    \"id\": 185,\n                    \"reference_id\": \"#POI-185\",\n                    \"stock_order_id\": 95,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 20,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-10-04 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2022-10-12T13:19:44.000000Z\",\n                    \"updated_at\": \"2022-10-12T13:21:23.000000Z\"\n                },\n                {\n                    \"id\": 187,\n                    \"reference_id\": \"#POI-187\",\n                    \"stock_order_id\": 95,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 18,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"18\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-10-12 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-10-12T13:21:13.000000Z\",\n                    \"updated_at\": \"2022-10-26T15:32:05.000000Z\"\n                },\n                {\n                    \"id\": 190,\n                    \"reference_id\": \"#POI-190\",\n                    \"stock_order_id\": 96,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-10-10 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-10-17T12:28:58.000000Z\",\n                    \"updated_at\": \"2022-10-27T09:48:22.000000Z\"\n                },\n                {\n                    \"id\": 191,\n                    \"reference_id\": \"#POI-191\",\n                    \"stock_order_id\": 96,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 1,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-10-10 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2022-10-17T12:30:24.000000Z\",\n                    \"updated_at\": \"2022-10-17T12:31:17.000000Z\"\n                },\n                {\n                    \"id\": 198,\n                    \"reference_id\": \"#POI-198\",\n                    \"stock_order_id\": 101,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-10-28 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-10-28T15:11:41.000000Z\",\n                    \"updated_at\": \"2022-11-02T14:09:37.000000Z\"\n                },\n                {\n                    \"id\": 225,\n                    \"reference_id\": \"#POI-225\",\n                    \"stock_order_id\": 120,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 100,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"100\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-03-09 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-03-09T13:55:58.000000Z\",\n                    \"updated_at\": \"2024-01-31T14:04:14.000000Z\"\n                },\n                {\n                    \"id\": 228,\n                    \"reference_id\": \"#POI-228\",\n                    \"stock_order_id\": 121,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 14,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"14\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-03-17 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-03-16T20:30:22.000000Z\",\n                    \"updated_at\": \"2024-04-02T12:34:47.000000Z\"\n                },\n                {\n                    \"id\": 309,\n                    \"reference_id\": \"#POI-309\",\n                    \"stock_order_id\": 177,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-04 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4587897144\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-06-05T10:00:55.000000Z\",\n                    \"updated_at\": \"2024-04-02T12:34:47.000000Z\"\n                },\n                {\n                    \"id\": 310,\n                    \"reference_id\": \"#POI-310\",\n                    \"stock_order_id\": 177,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 5,\n                    \"received_quantity\": 5,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-04 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4587901312\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-05T10:01:56.000000Z\",\n                    \"updated_at\": \"2023-06-21T17:00:08.000000Z\"\n                },\n                {\n                    \"id\": 317,\n                    \"reference_id\": \"#POI-317\",\n                    \"stock_order_id\": 183,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4627211410\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-12T13:39:58.000000Z\",\n                    \"updated_at\": \"2023-06-12T13:40:21.000000Z\"\n                },\n                {\n                    \"id\": 319,\n                    \"reference_id\": \"#POI-319\",\n                    \"stock_order_id\": 184,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4627236280\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-06-12T13:42:17.000000Z\",\n                    \"updated_at\": \"2024-04-02T12:34:47.000000Z\"\n                },\n                {\n                    \"id\": 321,\n                    \"reference_id\": \"#POI-321\",\n                    \"stock_order_id\": 185,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-05 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4627266160\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-06-12T13:45:17.000000Z\",\n                    \"updated_at\": \"2024-04-02T12:34:47.000000Z\"\n                },\n                {\n                    \"id\": 324,\n                    \"reference_id\": \"#POI-324\",\n                    \"stock_order_id\": 186,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 5,\n                    \"received_quantity\": 5,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-16 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4627869050\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-12T14:46:54.000000Z\",\n                    \"updated_at\": \"2023-07-06T14:19:13.000000Z\"\n                },\n                {\n                    \"id\": 336,\n                    \"reference_id\": \"#POI-335\",\n                    \"stock_order_id\": 191,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 36,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"32\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-15 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4648826248\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-06-15T09:29:39.000000Z\",\n                    \"updated_at\": \"2024-04-02T12:35:11.000000Z\"\n                },\n                {\n                    \"id\": 337,\n                    \"reference_id\": \"#POI-337\",\n                    \"stock_order_id\": 191,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-15 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4648839462\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-06-15T09:33:17.000000Z\",\n                    \"updated_at\": \"2024-04-02T12:35:11.000000Z\"\n                },\n                {\n                    \"id\": 338,\n                    \"reference_id\": \"#POI-338\",\n                    \"stock_order_id\": 191,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 2,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-15 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4648840134\",\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2023-06-15T09:33:32.000000Z\",\n                    \"updated_at\": \"2023-06-15T09:34:25.000000Z\"\n                },\n                {\n                    \"id\": 347,\n                    \"reference_id\": \"#POI-347\",\n                    \"stock_order_id\": 200,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-15 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4649867334\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-06-15T09:41:45.000000Z\",\n                    \"updated_at\": \"2024-04-02T12:35:11.000000Z\"\n                },\n                {\n                    \"id\": 348,\n                    \"reference_id\": \"#POI-347\",\n                    \"stock_order_id\": 201,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4682591560\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-15T09:41:45.000000Z\",\n                    \"updated_at\": \"2023-06-21T16:50:25.000000Z\"\n                },\n                {\n                    \"id\": 349,\n                    \"reference_id\": \"#POI-347\",\n                    \"stock_order_id\": 202,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-15 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4649873383\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-06-15T09:41:45.000000Z\",\n                    \"updated_at\": \"2024-04-02T12:35:11.000000Z\"\n                },\n                {\n                    \"id\": 355,\n                    \"reference_id\": \"#POI-355\",\n                    \"stock_order_id\": 206,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-16 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4655660972\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-06-16T08:56:07.000000Z\",\n                    \"updated_at\": \"2024-04-02T12:35:11.000000Z\"\n                },\n                {\n                    \"id\": 391,\n                    \"reference_id\": \"#POI-391\",\n                    \"stock_order_id\": 222,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"4\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-27 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4710302871\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-06-27T08:17:14.000000Z\",\n                    \"updated_at\": \"2024-04-02T12:35:11.000000Z\"\n                },\n                {\n                    \"id\": 393,\n                    \"reference_id\": \"#POI-393\",\n                    \"stock_order_id\": 222,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 6,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4710306856\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-06-27T08:18:04.000000Z\",\n                    \"updated_at\": \"2023-06-27T08:18:05.000000Z\"\n                },\n                {\n                    \"id\": 415,\n                    \"reference_id\": \"#POI-415\",\n                    \"stock_order_id\": 231,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 10,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4763168944\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-07-06T12:09:24.000000Z\",\n                    \"updated_at\": \"2023-07-06T12:10:44.000000Z\"\n                },\n                {\n                    \"id\": 438,\n                    \"reference_id\": \"#POI-438\",\n                    \"stock_order_id\": 246,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4769994290\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-07-07T11:27:51.000000Z\",\n                    \"updated_at\": \"2023-07-07T11:27:51.000000Z\"\n                },\n                {\n                    \"id\": 459,\n                    \"reference_id\": \"#POI-459\",\n                    \"stock_order_id\": 258,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-17 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4819410836\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-07-17T12:12:09.000000Z\",\n                    \"updated_at\": \"2024-04-02T12:35:11.000000Z\"\n                },\n                {\n                    \"id\": 460,\n                    \"reference_id\": \"#POI-460\",\n                    \"stock_order_id\": 258,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4819418784\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-07-17T12:13:33.000000Z\",\n                    \"updated_at\": \"2023-07-17T12:13:33.000000Z\"\n                },\n                {\n                    \"id\": 485,\n                    \"reference_id\": \"#POI-484\",\n                    \"stock_order_id\": 277,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-11 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5115092890\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-09-06T14:05:32.000000Z\",\n                    \"updated_at\": \"2024-04-02T12:35:11.000000Z\"\n                },\n                {\n                    \"id\": 515,\n                    \"reference_id\": \"#POI-515\",\n                    \"stock_order_id\": 296,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-10-13 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5325480723\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-10-13T11:05:19.000000Z\",\n                    \"updated_at\": \"2024-04-02T14:27:03.000000Z\"\n                },\n                {\n                    \"id\": 534,\n                    \"reference_id\": \"#POI-532\",\n                    \"stock_order_id\": 314,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 3,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-11 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5660735511\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-12-11T09:25:04.000000Z\",\n                    \"updated_at\": \"2024-04-02T14:27:03.000000Z\"\n                },\n                {\n                    \"id\": 551,\n                    \"reference_id\": \"#POI-551\",\n                    \"stock_order_id\": 329,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5733963673\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-12-22T10:24:53.000000Z\",\n                    \"updated_at\": \"2023-12-22T10:24:54.000000Z\"\n                },\n                {\n                    \"id\": 552,\n                    \"reference_id\": \"#POI-552\",\n                    \"stock_order_id\": 330,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5734799906\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-12-22T14:17:01.000000Z\",\n                    \"updated_at\": \"2023-12-22T14:17:02.000000Z\"\n                },\n                {\n                    \"id\": 555,\n                    \"reference_id\": \"#POI-555\",\n                    \"stock_order_id\": 332,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 7,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5735096195\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-12-22T15:11:50.000000Z\",\n                    \"updated_at\": \"2023-12-22T15:11:50.000000Z\"\n                },\n                {\n                    \"id\": 557,\n                    \"reference_id\": \"#POI-557\",\n                    \"stock_order_id\": 334,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 1,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-01-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5772296828\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2024-01-02T17:15:26.000000Z\",\n                    \"updated_at\": \"2024-01-02T17:16:14.000000Z\"\n                },\n                {\n                    \"id\": 563,\n                    \"reference_id\": \"#POI-563\",\n                    \"stock_order_id\": 339,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5890474232\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-01-19T11:38:48.000000Z\",\n                    \"updated_at\": \"2024-01-19T11:38:48.000000Z\"\n                },\n                {\n                    \"id\": 564,\n                    \"reference_id\": \"#POI-563\",\n                    \"stock_order_id\": 340,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-01-19 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5890474243\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-01-19T11:38:48.000000Z\",\n                    \"updated_at\": \"2024-04-02T14:27:03.000000Z\"\n                },\n                {\n                    \"id\": 565,\n                    \"reference_id\": \"#POI-565\",\n                    \"stock_order_id\": 340,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-01-19 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"5891416016\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-01-19T14:32:23.000000Z\",\n                    \"updated_at\": \"2024-04-02T14:27:03.000000Z\"\n                },\n                {\n                    \"id\": 707,\n                    \"reference_id\": \"#POI-707\",\n                    \"stock_order_id\": 433,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6380527367\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-04-03T08:06:59.000000Z\",\n                    \"updated_at\": \"2024-04-03T08:06:59.000000Z\"\n                },\n                {\n                    \"id\": 711,\n                    \"reference_id\": \"#POI-711\",\n                    \"stock_order_id\": 437,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 11,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6429253920\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-04-10T15:47:02.000000Z\",\n                    \"updated_at\": \"2024-04-10T15:47:03.000000Z\"\n                },\n                {\n                    \"id\": 715,\n                    \"reference_id\": \"#POI-715\",\n                    \"stock_order_id\": 441,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 6,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6550883342\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-04-30T14:10:47.000000Z\",\n                    \"updated_at\": \"2024-05-01T13:28:54.000000Z\"\n                },\n                {\n                    \"id\": 731,\n                    \"reference_id\": \"#POI-731\",\n                    \"stock_order_id\": 452,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 5,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-05-16 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6661859297\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-05-17T14:34:25.000000Z\",\n                    \"updated_at\": \"2024-05-17T15:35:13.000000Z\"\n                },\n                {\n                    \"id\": 732,\n                    \"reference_id\": \"#POI-732\",\n                    \"stock_order_id\": 452,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 3,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-05-16 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6662358281\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2024-05-17T15:35:12.000000Z\",\n                    \"updated_at\": \"2024-05-17T15:38:18.000000Z\"\n                },\n                {\n                    \"id\": 733,\n                    \"reference_id\": \"#POI-733\",\n                    \"stock_order_id\": 452,\n                    \"item_id\": 1,\n                    \"price\": 3,\n                    \"quantity\": 1,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-05-15 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6662373053\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-05-17T15:37:02.000000Z\",\n                    \"updated_at\": \"2024-05-17T15:41:54.000000Z\"\n                }\n            ],\n            \"terms\": [\n                {\n                    \"id\": 229,\n                    \"item_id\": 1,\n                    \"term_id\": 28,\n                    \"created_at\": \"2024-01-31T13:54:12.000000Z\",\n                    \"updated_at\": \"2024-01-31T13:54:12.000000Z\",\n                    \"term\": {\n                        \"id\": 28,\n                        \"item_description\": \"The packaging may differ for this product\",\n                        \"created_at\": \"2022-12-07T09:04:48.000000Z\",\n                        \"updated_at\": \"2022-12-07T09:04:48.000000Z\"\n                    }\n                },\n                {\n                    \"id\": 230,\n                    \"item_id\": 1,\n                    \"term_id\": 24,\n                    \"created_at\": \"2024-01-31T13:54:13.000000Z\",\n                    \"updated_at\": \"2024-01-31T13:54:13.000000Z\",\n                    \"term\": {\n                        \"id\": 24,\n                        \"item_description\": \"I confirm a physical face to face consultation has been carried with the patient before this treatment has been prescribed.\",\n                        \"created_at\": \"2022-10-19T09:21:49.000000Z\",\n                        \"updated_at\": \"2022-10-19T09:21:49.000000Z\"\n                    }\n                }\n            ],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 498,\n            \"monday_com_id\": \"4270470399\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"2\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"1 monthggggggggggg gggg ggggggggggggggggggggggggggg gggggg ggg gggggg ggg ggggg gggggg gggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg dkkd dkkd\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Aciclovir 400mg Tablets (36)\",\n            \"cost_price\": 1.5899999999999999,\n            \"price\": 0.01,\n            \"stock\": 0,\n            \"reorder_limit\": 1,\n            \"item_category_id\": 1,\n            \"clinic_limit\": null,\n            \"sku\": \"ACIC400\",\n            \"unit\": \"1 x 35\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit,\",\n            \"out_of_stock_note\": \"\",\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 1,\n            \"is_dangerous_item\": 1,\n            \"is_controlled_drug\": 1,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-07-17T13:55:20.000000Z\",\n            \"item_stocks_sum_received_quantity\": 32,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/f82d0b61-5ac1-420c-b777-4fe6fab60ef9.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=b6d55c6d37820edfd5f3d33aeeaa3f23c116e49b2ba10e891a0eb7339503f29c\",\n            \"item_stocks\": [\n                {\n                    \"id\": 9,\n                    \"reference_id\": \"#POI-9\",\n                    \"stock_order_id\": 5,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-10 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-18T14:02:03.000000Z\",\n                    \"updated_at\": \"2022-07-26T09:36:53.000000Z\"\n                },\n                {\n                    \"id\": 10,\n                    \"reference_id\": \"#POI-9\",\n                    \"stock_order_id\": 5,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 1,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"owning\",\n                    \"created_at\": \"2022-07-18T14:03:16.000000Z\",\n                    \"updated_at\": \"2022-07-18T14:03:16.000000Z\"\n                },\n                {\n                    \"id\": 24,\n                    \"reference_id\": \"#POI-24\",\n                    \"stock_order_id\": 15,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-09-15 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-21T13:52:50.000000Z\",\n                    \"updated_at\": \"2022-09-19T11:10:06.000000Z\"\n                },\n                {\n                    \"id\": 27,\n                    \"reference_id\": \"#POI-27\",\n                    \"stock_order_id\": 17,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 20,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"20\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-09-01 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-22T11:55:07.000000Z\",\n                    \"updated_at\": \"2022-09-21T11:52:15.000000Z\"\n                },\n                {\n                    \"id\": 47,\n                    \"reference_id\": \"#POI-47\",\n                    \"stock_order_id\": 26,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 6,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-28 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-27T16:44:55.000000Z\",\n                    \"updated_at\": \"2022-08-02T15:33:10.000000Z\"\n                },\n                {\n                    \"id\": 59,\n                    \"reference_id\": \"#POI-59\",\n                    \"stock_order_id\": 26,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 4,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"owning\",\n                    \"created_at\": \"2022-07-28T15:47:04.000000Z\",\n                    \"updated_at\": \"2022-07-28T15:47:04.000000Z\"\n                },\n                {\n                    \"id\": 72,\n                    \"reference_id\": \"#POI-72\",\n                    \"stock_order_id\": 34,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 123,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-08-01T14:42:31.000000Z\",\n                    \"updated_at\": \"2022-08-01T14:42:31.000000Z\"\n                },\n                {\n                    \"id\": 97,\n                    \"reference_id\": \"#POI-97\",\n                    \"stock_order_id\": 42,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 8,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-08-03T09:18:41.000000Z\",\n                    \"updated_at\": \"2022-08-03T09:18:41.000000Z\"\n                },\n                {\n                    \"id\": 105,\n                    \"reference_id\": \"#POI-105\",\n                    \"stock_order_id\": 47,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 1,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-16 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2022-08-03T15:59:42.000000Z\",\n                    \"updated_at\": \"2022-08-16T15:48:20.000000Z\"\n                },\n                {\n                    \"id\": 130,\n                    \"reference_id\": \"#POI-130\",\n                    \"stock_order_id\": 65,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-08 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-09T15:52:17.000000Z\",\n                    \"updated_at\": \"2022-08-10T09:50:08.000000Z\"\n                },\n                {\n                    \"id\": 131,\n                    \"reference_id\": \"#POI-131\",\n                    \"stock_order_id\": 65,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-08 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-09T15:53:52.000000Z\",\n                    \"updated_at\": \"2022-08-10T10:06:17.000000Z\"\n                },\n                {\n                    \"id\": 133,\n                    \"reference_id\": \"#POI-133\",\n                    \"stock_order_id\": 67,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-09 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-10T16:02:07.000000Z\",\n                    \"updated_at\": \"2022-08-15T16:21:35.000000Z\"\n                },\n                {\n                    \"id\": 134,\n                    \"reference_id\": \"#POI-134\",\n                    \"stock_order_id\": 67,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-09 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-10T16:03:25.000000Z\",\n                    \"updated_at\": \"2022-08-15T16:21:35.000000Z\"\n                },\n                {\n                    \"id\": 135,\n                    \"reference_id\": \"#POI-135\",\n                    \"stock_order_id\": 68,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-09 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-12T12:15:41.000000Z\",\n                    \"updated_at\": \"2022-08-15T16:21:35.000000Z\"\n                },\n                {\n                    \"id\": 136,\n                    \"reference_id\": \"#POI-136\",\n                    \"stock_order_id\": 68,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 1,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"owning\",\n                    \"created_at\": \"2022-08-12T12:16:14.000000Z\",\n                    \"updated_at\": \"2022-08-12T12:16:14.000000Z\"\n                },\n                {\n                    \"id\": 140,\n                    \"reference_id\": \"#POI-140\",\n                    \"stock_order_id\": 72,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 1,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-15 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2022-08-16T10:53:20.000000Z\",\n                    \"updated_at\": \"2022-08-16T10:57:17.000000Z\"\n                },\n                {\n                    \"id\": 143,\n                    \"reference_id\": \"#POI-143\",\n                    \"stock_order_id\": 75,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-17 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-17T11:42:55.000000Z\",\n                    \"updated_at\": \"2022-08-22T06:46:15.000000Z\"\n                },\n                {\n                    \"id\": 144,\n                    \"reference_id\": \"#POI-144\",\n                    \"stock_order_id\": 75,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 5,\n                    \"received_quantity\": 5,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-17 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2022-08-17T11:43:44.000000Z\",\n                    \"updated_at\": \"2022-08-17T11:45:29.000000Z\"\n                },\n                {\n                    \"id\": 196,\n                    \"reference_id\": \"#POI-196\",\n                    \"stock_order_id\": 100,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 10,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-10-07 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2022-10-27T08:42:36.000000Z\",\n                    \"updated_at\": \"2022-10-27T08:44:29.000000Z\"\n                },\n                {\n                    \"id\": 197,\n                    \"reference_id\": \"#POI-197\",\n                    \"stock_order_id\": 100,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 9,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"9\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-10-27 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-10-27T08:44:24.000000Z\",\n                    \"updated_at\": \"2022-10-31T10:19:02.000000Z\"\n                },\n                {\n                    \"id\": 226,\n                    \"reference_id\": \"#POI-226\",\n                    \"stock_order_id\": 120,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 100,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-03-09 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-03-09T13:55:58.000000Z\",\n                    \"updated_at\": \"2023-03-09T13:56:42.000000Z\"\n                },\n                {\n                    \"id\": 227,\n                    \"reference_id\": \"#POI-227\",\n                    \"stock_order_id\": 120,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 90,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"90\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-03-07 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-03-09T13:56:37.000000Z\",\n                    \"updated_at\": \"2024-04-02T14:29:45.000000Z\"\n                },\n                {\n                    \"id\": 229,\n                    \"reference_id\": \"#POI-229\",\n                    \"stock_order_id\": 122,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"9\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-03-20 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-03-21T10:12:45.000000Z\",\n                    \"updated_at\": \"2024-05-21T08:52:39.000000Z\"\n                },\n                {\n                    \"id\": 230,\n                    \"reference_id\": \"#POI-230\",\n                    \"stock_order_id\": 122,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 1,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-03-21 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-03-21T11:11:32.000000Z\",\n                    \"updated_at\": \"2023-03-21T11:13:12.000000Z\"\n                },\n                {\n                    \"id\": 299,\n                    \"reference_id\": \"#POI-299\",\n                    \"stock_order_id\": 168,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 1,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-11 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4626723251\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-05-31T16:38:10.000000Z\",\n                    \"updated_at\": \"2024-05-27T09:47:10.000000Z\"\n                },\n                {\n                    \"id\": 303,\n                    \"reference_id\": \"#POI-303\",\n                    \"stock_order_id\": 174,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4571412282\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-01T12:56:47.000000Z\",\n                    \"updated_at\": \"2023-06-01T12:57:59.000000Z\"\n                },\n                {\n                    \"id\": 316,\n                    \"reference_id\": \"#POI-316\",\n                    \"stock_order_id\": 182,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-15 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4626105910\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-06-12T10:47:24.000000Z\",\n                    \"updated_at\": \"2024-05-28T14:36:28.000000Z\"\n                },\n                {\n                    \"id\": 318,\n                    \"reference_id\": \"#POI-318\",\n                    \"stock_order_id\": 183,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4627211566\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-12T13:39:58.000000Z\",\n                    \"updated_at\": \"2023-06-12T13:40:22.000000Z\"\n                },\n                {\n                    \"id\": 320,\n                    \"reference_id\": \"#POI-320\",\n                    \"stock_order_id\": 184,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4627236407\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-12T13:42:17.000000Z\",\n                    \"updated_at\": \"2023-06-12T13:42:50.000000Z\"\n                },\n                {\n                    \"id\": 322,\n                    \"reference_id\": \"#POI-322\",\n                    \"stock_order_id\": 185,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4627266251\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-06-12T13:45:18.000000Z\",\n                    \"updated_at\": \"2024-05-31T08:53:09.000000Z\"\n                },\n                {\n                    \"id\": 323,\n                    \"reference_id\": \"#POI-323\",\n                    \"stock_order_id\": 186,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-05 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4627868935\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-06-12T14:46:53.000000Z\",\n                    \"updated_at\": \"2024-06-05T09:54:18.000000Z\"\n                },\n                {\n                    \"id\": 351,\n                    \"reference_id\": \"#POI-351\",\n                    \"stock_order_id\": 204,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 10,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-16 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4655641744\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-15T11:34:14.000000Z\",\n                    \"updated_at\": \"2023-06-21T14:26:24.000000Z\"\n                },\n                {\n                    \"id\": 353,\n                    \"reference_id\": \"#POI-353\",\n                    \"stock_order_id\": 205,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-16 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4655628645\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-06-16T08:47:09.000000Z\",\n                    \"updated_at\": \"2024-06-25T04:16:30.000000Z\"\n                },\n                {\n                    \"id\": 375,\n                    \"reference_id\": \"#POI-375\",\n                    \"stock_order_id\": 212,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 25,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-20 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4674849656\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-06-20T16:12:30.000000Z\",\n                    \"updated_at\": \"2024-06-26T16:44:12.000000Z\"\n                },\n                {\n                    \"id\": 376,\n                    \"reference_id\": \"#POI-376\",\n                    \"stock_order_id\": 212,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 2,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-20 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4674885980\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-06-20T16:17:41.000000Z\",\n                    \"updated_at\": \"2023-06-20T16:19:30.000000Z\"\n                },\n                {\n                    \"id\": 377,\n                    \"reference_id\": \"#POI-377\",\n                    \"stock_order_id\": 212,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 18,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-20 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4674887540\",\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2023-06-20T16:17:54.000000Z\",\n                    \"updated_at\": \"2023-06-20T16:19:46.000000Z\"\n                },\n                {\n                    \"id\": 378,\n                    \"reference_id\": \"#POI-378\",\n                    \"stock_order_id\": 212,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 1,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4674899141\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-06-20T16:19:40.000000Z\",\n                    \"updated_at\": \"2023-06-21T14:29:09.000000Z\"\n                },\n                {\n                    \"id\": 379,\n                    \"reference_id\": \"#POI-379\",\n                    \"stock_order_id\": 213,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 10,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-21 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4681851123\",\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2023-06-21T14:29:41.000000Z\",\n                    \"updated_at\": \"2023-06-21T15:55:34.000000Z\"\n                },\n                {\n                    \"id\": 380,\n                    \"reference_id\": \"#POI-380\",\n                    \"stock_order_id\": 213,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4681898121\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-06-21T15:26:14.000000Z\",\n                    \"updated_at\": \"2023-06-21T15:27:28.000000Z\"\n                },\n                {\n                    \"id\": 381,\n                    \"reference_id\": \"#POI-381\",\n                    \"stock_order_id\": 214,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4686695490\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-22T08:11:24.000000Z\",\n                    \"updated_at\": \"2023-06-22T08:11:46.000000Z\"\n                },\n                {\n                    \"id\": 392,\n                    \"reference_id\": \"#POI-392\",\n                    \"stock_order_id\": 222,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 19,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-27 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4710302900\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-06-27T08:17:15.000000Z\",\n                    \"updated_at\": \"2024-07-01T12:38:25.000000Z\"\n                },\n                {\n                    \"id\": 394,\n                    \"reference_id\": \"#POI-394\",\n                    \"stock_order_id\": 222,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 9,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4710308071\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-06-27T08:18:21.000000Z\",\n                    \"updated_at\": \"2023-06-27T08:18:21.000000Z\"\n                },\n                {\n                    \"id\": 399,\n                    \"reference_id\": \"#POI-399\",\n                    \"stock_order_id\": 225,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-05 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4755424022\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-07-05T10:31:49.000000Z\",\n                    \"updated_at\": \"2023-07-24T15:00:19.000000Z\"\n                },\n                {\n                    \"id\": 400,\n                    \"reference_id\": \"#POI-400\",\n                    \"stock_order_id\": 225,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 10,\n                    \"received_quantity\": 9,\n                    \"initial_quantity\": \"9\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-05 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4755424828\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-07-05T10:41:56.000000Z\",\n                    \"updated_at\": \"2023-07-05T10:50:23.000000Z\"\n                },\n                {\n                    \"id\": 401,\n                    \"reference_id\": \"#POI-401\",\n                    \"stock_order_id\": 225,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 8,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4755430579\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-07-05T10:43:49.000000Z\",\n                    \"updated_at\": \"2023-07-05T10:46:04.000000Z\"\n                },\n                {\n                    \"id\": 559,\n                    \"reference_id\": \"#POI-559\",\n                    \"stock_order_id\": 336,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5845817335\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-01-12T13:06:58.000000Z\",\n                    \"updated_at\": \"2024-01-12T13:06:59.000000Z\"\n                },\n                {\n                    \"id\": 575,\n                    \"reference_id\": \"#POI-575\",\n                    \"stock_order_id\": 344,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-01-31 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5969347912\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-01-31T14:54:18.000000Z\",\n                    \"updated_at\": \"2024-07-12T10:53:50.000000Z\"\n                },\n                {\n                    \"id\": 580,\n                    \"reference_id\": \"#POI-580\",\n                    \"stock_order_id\": 347,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 5,\n                    \"received_quantity\": 3,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5987412307\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-02-02T14:35:29.000000Z\",\n                    \"updated_at\": \"2024-07-18T11:04:24.000000Z\"\n                },\n                {\n                    \"id\": 581,\n                    \"reference_id\": \"#POI-581\",\n                    \"stock_order_id\": 348,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5987430794\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-02T14:37:33.000000Z\",\n                    \"updated_at\": \"2024-02-02T14:37:34.000000Z\"\n                },\n                {\n                    \"id\": 582,\n                    \"reference_id\": \"#POI-582\",\n                    \"stock_order_id\": 349,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5988131309\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-02T15:48:29.000000Z\",\n                    \"updated_at\": \"2024-02-02T15:48:30.000000Z\"\n                },\n                {\n                    \"id\": 585,\n                    \"reference_id\": \"#POI-585\",\n                    \"stock_order_id\": 352,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6006881232\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-06T09:01:48.000000Z\",\n                    \"updated_at\": \"2024-02-06T09:01:49.000000Z\"\n                },\n                {\n                    \"id\": 591,\n                    \"reference_id\": \"#POI-591\",\n                    \"stock_order_id\": 354,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 20,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6016604244\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-07T09:10:16.000000Z\",\n                    \"updated_at\": \"2024-02-07T09:10:17.000000Z\"\n                },\n                {\n                    \"id\": 595,\n                    \"reference_id\": \"#POI-595\",\n                    \"stock_order_id\": 355,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6016606914\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-07T09:10:58.000000Z\",\n                    \"updated_at\": \"2024-02-07T09:10:58.000000Z\"\n                },\n                {\n                    \"id\": 596,\n                    \"reference_id\": \"#POI-596\",\n                    \"stock_order_id\": 356,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6017590497\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-07T12:03:13.000000Z\",\n                    \"updated_at\": \"2024-02-07T12:03:14.000000Z\"\n                },\n                {\n                    \"id\": 598,\n                    \"reference_id\": \"#POI-598\",\n                    \"stock_order_id\": 357,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6034270439\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-09T11:06:40.000000Z\",\n                    \"updated_at\": \"2024-02-09T11:06:41.000000Z\"\n                },\n                {\n                    \"id\": 601,\n                    \"reference_id\": \"#POI-599\",\n                    \"stock_order_id\": 359,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6034319969\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-09T11:19:08.000000Z\",\n                    \"updated_at\": \"2024-02-09T11:19:09.000000Z\"\n                },\n                {\n                    \"id\": 603,\n                    \"reference_id\": \"#POI-603\",\n                    \"stock_order_id\": 360,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 3,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6034321194\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-09T11:19:37.000000Z\",\n                    \"updated_at\": \"2024-02-09T11:19:38.000000Z\"\n                },\n                {\n                    \"id\": 607,\n                    \"reference_id\": \"#POI-607\",\n                    \"stock_order_id\": 363,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6034326086\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-09T11:21:31.000000Z\",\n                    \"updated_at\": \"2024-02-09T11:21:31.000000Z\"\n                },\n                {\n                    \"id\": 611,\n                    \"reference_id\": \"#POI-611\",\n                    \"stock_order_id\": 366,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 3,\n                    \"received_quantity\": 3,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-09 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6034383787\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-02-09T11:36:33.000000Z\",\n                    \"updated_at\": \"2024-02-09T11:41:06.000000Z\"\n                },\n                {\n                    \"id\": 613,\n                    \"reference_id\": \"#POI-613\",\n                    \"stock_order_id\": 367,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 4,\n                    \"received_quantity\": 4,\n                    \"initial_quantity\": \"4\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-08 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6035949306\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-02-09T15:34:45.000000Z\",\n                    \"updated_at\": \"2024-02-12T08:55:04.000000Z\"\n                },\n                {\n                    \"id\": 616,\n                    \"reference_id\": \"#POI-616\",\n                    \"stock_order_id\": 369,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 6,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6044360818\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-12T09:50:39.000000Z\",\n                    \"updated_at\": \"2024-02-12T09:50:40.000000Z\"\n                },\n                {\n                    \"id\": 618,\n                    \"reference_id\": \"#POI-618\",\n                    \"stock_order_id\": 371,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 5,\n                    \"received_quantity\": 5,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-13 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6051769219\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-02-13T05:15:41.000000Z\",\n                    \"updated_at\": \"2024-02-13T08:16:15.000000Z\"\n                },\n                {\n                    \"id\": 620,\n                    \"reference_id\": \"#POI-620\",\n                    \"stock_order_id\": 372,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 2,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-07 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6051800307\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2024-02-13T05:25:31.000000Z\",\n                    \"updated_at\": \"2024-02-13T07:49:12.000000Z\"\n                },\n                {\n                    \"id\": 623,\n                    \"reference_id\": \"#POI-623\",\n                    \"stock_order_id\": 373,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6052315071\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-13T08:28:12.000000Z\",\n                    \"updated_at\": \"2024-02-13T08:28:13.000000Z\"\n                },\n                {\n                    \"id\": 630,\n                    \"reference_id\": \"#POI-630\",\n                    \"stock_order_id\": 375,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 4,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6052506447\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-02-13T09:17:36.000000Z\",\n                    \"updated_at\": \"2024-02-13T09:21:43.000000Z\"\n                },\n                {\n                    \"id\": 631,\n                    \"reference_id\": \"#POI-631\",\n                    \"stock_order_id\": 375,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6052526729\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2024-02-13T09:21:41.000000Z\",\n                    \"updated_at\": \"2024-02-13T09:21:43.000000Z\"\n                },\n                {\n                    \"id\": 632,\n                    \"reference_id\": \"#POI-632\",\n                    \"stock_order_id\": 376,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6052650566\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-13T09:42:31.000000Z\",\n                    \"updated_at\": \"2024-02-13T09:42:31.000000Z\"\n                },\n                {\n                    \"id\": 633,\n                    \"reference_id\": \"#POI-633\",\n                    \"stock_order_id\": 377,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 3,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6052767042\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-13T10:04:17.000000Z\",\n                    \"updated_at\": \"2024-02-13T10:04:18.000000Z\"\n                },\n                {\n                    \"id\": 634,\n                    \"reference_id\": \"#POI-634\",\n                    \"stock_order_id\": 378,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 3,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6052789918\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-13T10:09:56.000000Z\",\n                    \"updated_at\": \"2024-02-13T10:09:57.000000Z\"\n                },\n                {\n                    \"id\": 635,\n                    \"reference_id\": \"#POI-635\",\n                    \"stock_order_id\": 379,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6053813503\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-13T13:29:48.000000Z\",\n                    \"updated_at\": \"2024-02-13T13:29:49.000000Z\"\n                },\n                {\n                    \"id\": 647,\n                    \"reference_id\": \"#POI-646\",\n                    \"stock_order_id\": 385,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6061781332\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-14T12:40:52.000000Z\",\n                    \"updated_at\": \"2024-02-14T12:40:53.000000Z\"\n                },\n                {\n                    \"id\": 648,\n                    \"reference_id\": \"#POI-648\",\n                    \"stock_order_id\": 386,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6062829787\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-14T15:02:22.000000Z\",\n                    \"updated_at\": \"2024-02-14T15:02:23.000000Z\"\n                },\n                {\n                    \"id\": 659,\n                    \"reference_id\": \"#POI-659\",\n                    \"stock_order_id\": 392,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 10,\n                    \"received_quantity\": 3,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-15 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6070985804\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-02-15T14:16:04.000000Z\",\n                    \"updated_at\": \"2024-02-15T14:17:23.000000Z\"\n                },\n                {\n                    \"id\": 660,\n                    \"reference_id\": \"#POI-660\",\n                    \"stock_order_id\": 392,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 7,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6070996249\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2024-02-15T14:17:23.000000Z\",\n                    \"updated_at\": \"2024-02-15T14:17:23.000000Z\"\n                },\n                {\n                    \"id\": 666,\n                    \"reference_id\": \"#POI-666\",\n                    \"stock_order_id\": 396,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6146257494\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-27T15:06:59.000000Z\",\n                    \"updated_at\": \"2024-02-27T15:07:00.000000Z\"\n                },\n                {\n                    \"id\": 668,\n                    \"reference_id\": \"#POI-668\",\n                    \"stock_order_id\": 398,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 7,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6162927855\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-29T11:15:52.000000Z\",\n                    \"updated_at\": \"2024-02-29T11:15:52.000000Z\"\n                },\n                {\n                    \"id\": 696,\n                    \"reference_id\": \"#POI-696\",\n                    \"stock_order_id\": 422,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6329705856\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-03-26T09:07:28.000000Z\",\n                    \"updated_at\": \"2024-03-26T09:07:29.000000Z\"\n                },\n                {\n                    \"id\": 701,\n                    \"reference_id\": \"#POI-698\",\n                    \"stock_order_id\": 427,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 2,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-03-19 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6347081883\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-03-28T12:08:04.000000Z\",\n                    \"updated_at\": \"2024-03-28T12:08:35.000000Z\"\n                },\n                {\n                    \"id\": 704,\n                    \"reference_id\": \"#POI-704\",\n                    \"stock_order_id\": 430,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 11,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6347091464\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-03-28T12:09:58.000000Z\",\n                    \"updated_at\": \"2024-03-28T12:09:59.000000Z\"\n                },\n                {\n                    \"id\": 706,\n                    \"reference_id\": \"#POI-706\",\n                    \"stock_order_id\": 432,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 1,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6347100423\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-03-28T12:11:36.000000Z\",\n                    \"updated_at\": \"2024-03-28T12:11:37.000000Z\"\n                },\n                {\n                    \"id\": 709,\n                    \"reference_id\": \"#POI-709\",\n                    \"stock_order_id\": 435,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 1,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6382432085\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-04-03T13:40:27.000000Z\",\n                    \"updated_at\": \"2024-04-03T13:40:27.000000Z\"\n                },\n                {\n                    \"id\": 713,\n                    \"reference_id\": \"#POI-713\",\n                    \"stock_order_id\": 439,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 11,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6530200192\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-04-26T11:27:31.000000Z\",\n                    \"updated_at\": \"2024-04-26T11:27:32.000000Z\"\n                },\n                {\n                    \"id\": 718,\n                    \"reference_id\": \"#POI-718\",\n                    \"stock_order_id\": 444,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 90,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-05-08 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6602316007\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-05-08T14:03:16.000000Z\",\n                    \"updated_at\": \"2024-05-08T14:04:48.000000Z\"\n                },\n                {\n                    \"id\": 719,\n                    \"reference_id\": \"#POI-719\",\n                    \"stock_order_id\": 444,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 80,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-05-08 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6602328371\",\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2024-05-08T14:04:47.000000Z\",\n                    \"updated_at\": \"2024-05-08T14:05:09.000000Z\"\n                },\n                {\n                    \"id\": 720,\n                    \"reference_id\": \"#POI-720\",\n                    \"stock_order_id\": 444,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 70,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-05-08 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6602331251\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2024-05-08T14:05:02.000000Z\",\n                    \"updated_at\": \"2024-05-08T14:05:48.000000Z\"\n                },\n                {\n                    \"id\": 721,\n                    \"reference_id\": \"#POI-721\",\n                    \"stock_order_id\": 444,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 60,\n                    \"received_quantity\": 60,\n                    \"initial_quantity\": \"60\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-05-08 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6602336765\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2024-05-08T14:05:41.000000Z\",\n                    \"updated_at\": \"2024-05-08T14:08:15.000000Z\"\n                },\n                {\n                    \"id\": 727,\n                    \"reference_id\": \"#POI-727\",\n                    \"stock_order_id\": 448,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 100,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6602433896\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-05-08T14:14:32.000000Z\",\n                    \"updated_at\": \"2024-05-08T14:14:32.000000Z\"\n                },\n                {\n                    \"id\": 742,\n                    \"reference_id\": \"#POI-734\",\n                    \"stock_order_id\": 461,\n                    \"item_id\": 498,\n                    \"price\": 1.5899999999999999,\n                    \"quantity\": 123,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6804633786\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-06-10T15:49:44.000000Z\",\n                    \"updated_at\": \"2024-06-10T15:49:45.000000Z\"\n                }\n            ],\n            \"terms\": [\n                {\n                    \"id\": 246,\n                    \"item_id\": 498,\n                    \"term_id\": 25,\n                    \"created_at\": \"2024-07-17T13:55:25.000000Z\",\n                    \"updated_at\": \"2024-07-17T13:55:25.000000Z\",\n                    \"term\": {\n                        \"id\": 25,\n                        \"item_description\": \"Clomid (Clomifene Citrate BP) is indicated for the treatment of ovulatory failure in women desiring pregnancy. I am aware that any usage outside of this indication remains strictly off-label.\",\n                        \"created_at\": \"2022-10-19T09:23:12.000000Z\",\n                        \"updated_at\": \"2022-10-19T09:23:12.000000Z\"\n                    }\n                }\n            ],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 499,\n            \"monday_com_id\": \"4325771521\",\n            \"vendor_id\": 43,\n            \"agreed_stock_level\": \"10\",\n            \"clinic_per_quota\": \"10\",\n            \"clinic_per_quota_term\": \"2\",\n            \"delivery_delay\": \"csff\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Aciclovir Tabs 800mg (35)\",\n            \"cost_price\": null,\n            \"price\": 5.9399999999999995,\n            \"stock\": 0,\n            \"reorder_limit\": 60,\n            \"item_category_id\": 6,\n            \"clinic_limit\": null,\n            \"sku\": \"ACIC800MG\",\n            \"unit\": \"1 x 35\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"testingg\",\n            \"out_of_stock_note\": \"testtss\",\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 0,\n            \"status\": \"active\",\n            \"is_note_required\": 0,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 1,\n            \"is_controlled_drug\": 1,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-06-14T08:31:22.000000Z\",\n            \"item_stocks_sum_received_quantity\": 5,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/9a0adc33-7c70-47cc-b21f-6f390d335d2e.webp?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=875c0d1888255531a72c76f61ad0a92d868321570a0e950588f86f5a562e6a6c\",\n            \"item_stocks\": [\n                {\n                    \"id\": 516,\n                    \"reference_id\": \"#POI-516\",\n                    \"stock_order_id\": 297,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 100,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"100\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-11-07 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5466244080\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-11-07T12:02:36.000000Z\",\n                    \"updated_at\": \"2024-03-14T13:44:48.000000Z\"\n                },\n                {\n                    \"id\": 574,\n                    \"reference_id\": \"#POI-574\",\n                    \"stock_order_id\": 344,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 15,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-01-31 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5969347820\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-01-31T14:54:17.000000Z\",\n                    \"updated_at\": \"2024-03-14T13:44:48.000000Z\"\n                },\n                {\n                    \"id\": 576,\n                    \"reference_id\": \"#POI-576\",\n                    \"stock_order_id\": 344,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 5,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-01-31 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"5969362440\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2024-01-31T14:55:44.000000Z\",\n                    \"updated_at\": \"2024-01-31T14:56:19.000000Z\"\n                },\n                {\n                    \"id\": 577,\n                    \"reference_id\": \"#POI-577\",\n                    \"stock_order_id\": 344,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 3,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-01-31 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"5969367714\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-01-31T14:56:06.000000Z\",\n                    \"updated_at\": \"2024-03-14T13:44:48.000000Z\"\n                },\n                {\n                    \"id\": 586,\n                    \"reference_id\": \"#POI-586\",\n                    \"stock_order_id\": 352,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6006881267\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-06T09:01:49.000000Z\",\n                    \"updated_at\": \"2024-02-06T09:01:50.000000Z\"\n                },\n                {\n                    \"id\": 597,\n                    \"reference_id\": \"#POI-597\",\n                    \"stock_order_id\": 356,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6017590574\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-07T12:03:14.000000Z\",\n                    \"updated_at\": \"2024-02-07T12:03:14.000000Z\"\n                },\n                {\n                    \"id\": 602,\n                    \"reference_id\": \"#POI-600\",\n                    \"stock_order_id\": 359,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6034320003\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-09T11:19:09.000000Z\",\n                    \"updated_at\": \"2024-02-09T11:19:09.000000Z\"\n                },\n                {\n                    \"id\": 604,\n                    \"reference_id\": \"#POI-604\",\n                    \"stock_order_id\": 360,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 3,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6034321210\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-09T11:19:38.000000Z\",\n                    \"updated_at\": \"2024-02-09T11:19:38.000000Z\"\n                },\n                {\n                    \"id\": 605,\n                    \"reference_id\": \"#POI-605\",\n                    \"stock_order_id\": 361,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6034325068\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-09T11:21:06.000000Z\",\n                    \"updated_at\": \"2024-02-09T11:21:07.000000Z\"\n                },\n                {\n                    \"id\": 606,\n                    \"reference_id\": \"#POI-605\",\n                    \"stock_order_id\": 362,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6034325071\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-09T11:21:06.000000Z\",\n                    \"updated_at\": \"2024-02-09T11:21:07.000000Z\"\n                },\n                {\n                    \"id\": 608,\n                    \"reference_id\": \"#POI-608\",\n                    \"stock_order_id\": 363,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6034326096\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-09T11:21:31.000000Z\",\n                    \"updated_at\": \"2024-02-09T11:21:32.000000Z\"\n                },\n                {\n                    \"id\": 662,\n                    \"reference_id\": \"#POI-662\",\n                    \"stock_order_id\": 394,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 100,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"50\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-16 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6077772595\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-02-16T10:58:43.000000Z\",\n                    \"updated_at\": \"2024-03-14T13:44:48.000000Z\"\n                },\n                {\n                    \"id\": 663,\n                    \"reference_id\": \"#POI-663\",\n                    \"stock_order_id\": 394,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 50,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-16 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6077798381\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2024-02-16T11:04:40.000000Z\",\n                    \"updated_at\": \"2024-02-16T11:04:55.000000Z\"\n                },\n                {\n                    \"id\": 664,\n                    \"reference_id\": \"#POI-664\",\n                    \"stock_order_id\": 394,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 40,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6077798943\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2024-02-16T11:04:55.000000Z\",\n                    \"updated_at\": \"2024-02-16T11:04:55.000000Z\"\n                },\n                {\n                    \"id\": 669,\n                    \"reference_id\": \"#POI-669\",\n                    \"stock_order_id\": 398,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6162927874\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-29T11:15:53.000000Z\",\n                    \"updated_at\": \"2024-02-29T11:15:53.000000Z\"\n                },\n                {\n                    \"id\": 674,\n                    \"reference_id\": \"#POI-674\",\n                    \"stock_order_id\": 403,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6174891195\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-03-01T16:56:14.000000Z\",\n                    \"updated_at\": \"2024-03-01T16:56:14.000000Z\"\n                },\n                {\n                    \"id\": 678,\n                    \"reference_id\": \"#POI-678\",\n                    \"stock_order_id\": 407,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6203708681\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-03-06T10:48:53.000000Z\",\n                    \"updated_at\": \"2024-03-06T10:48:53.000000Z\"\n                },\n                {\n                    \"id\": 689,\n                    \"reference_id\": \"#POI-689\",\n                    \"stock_order_id\": 415,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6249158834\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-03-13T09:20:24.000000Z\",\n                    \"updated_at\": \"2024-03-13T09:20:24.000000Z\"\n                },\n                {\n                    \"id\": 702,\n                    \"reference_id\": \"#POI-702\",\n                    \"stock_order_id\": 428,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6347087757\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-03-28T12:09:18.000000Z\",\n                    \"updated_at\": \"2024-03-28T12:09:19.000000Z\"\n                },\n                {\n                    \"id\": 703,\n                    \"reference_id\": \"#POI-703\",\n                    \"stock_order_id\": 429,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6347087825\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-03-28T12:09:19.000000Z\",\n                    \"updated_at\": \"2024-03-28T12:09:20.000000Z\"\n                },\n                {\n                    \"id\": 708,\n                    \"reference_id\": \"#POI-708\",\n                    \"stock_order_id\": 434,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6380579004\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-04-03T08:18:14.000000Z\",\n                    \"updated_at\": \"2024-04-03T08:18:15.000000Z\"\n                },\n                {\n                    \"id\": 725,\n                    \"reference_id\": \"#POI-722\",\n                    \"stock_order_id\": 447,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 100,\n                    \"received_quantity\": 5,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-05-08 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6602418749\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-05-08T14:13:22.000000Z\",\n                    \"updated_at\": \"2024-05-09T13:30:14.000000Z\"\n                },\n                {\n                    \"id\": 726,\n                    \"reference_id\": \"#POI-726\",\n                    \"stock_order_id\": 447,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 90,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6602426153\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2024-05-08T14:13:58.000000Z\",\n                    \"updated_at\": \"2024-05-08T14:13:59.000000Z\"\n                },\n                {\n                    \"id\": 728,\n                    \"reference_id\": \"#POI-728\",\n                    \"stock_order_id\": 449,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-05-08 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6602463299\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2024-05-08T14:17:57.000000Z\",\n                    \"updated_at\": \"2024-05-08T14:19:00.000000Z\"\n                },\n                {\n                    \"id\": 729,\n                    \"reference_id\": \"#POI-729\",\n                    \"stock_order_id\": 450,\n                    \"item_id\": 499,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6602487799\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-05-08T14:19:40.000000Z\",\n                    \"updated_at\": \"2024-05-08T14:19:40.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 661,\n            \"monday_com_id\": null,\n            \"vendor_id\": 44,\n            \"agreed_stock_level\": \"50\",\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"1 week\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Acroil Av\",\n            \"cost_price\": 23,\n            \"price\": 15,\n            \"stock\": 6,\n            \"reorder_limit\": 10,\n            \"item_category_id\": 3,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"cm\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 1,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 1,\n            \"created_at\": \"2022-01-12T09:38:09.000000Z\",\n            \"updated_at\": \"2024-05-07T16:43:18.000000Z\",\n            \"item_stocks_sum_received_quantity\": 85,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/0e602a91-7ffe-4349-8fe4-966a3e5ea73e.webp?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=47db29357786673f5303c005c1a74af8e6028a222d472b71e547ce3cc69cbd76\",\n            \"item_stocks\": [\n                {\n                    \"id\": 578,\n                    \"reference_id\": \"#POI-578\",\n                    \"stock_order_id\": 345,\n                    \"item_id\": 661,\n                    \"price\": 0,\n                    \"quantity\": 1,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-01-31 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5969773909\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-01-31T15:28:20.000000Z\",\n                    \"updated_at\": \"2024-02-05T12:41:17.000000Z\"\n                },\n                {\n                    \"id\": 584,\n                    \"reference_id\": \"#POI-584\",\n                    \"stock_order_id\": 351,\n                    \"item_id\": 661,\n                    \"price\": 0,\n                    \"quantity\": 20,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5997545682\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-05T09:53:24.000000Z\",\n                    \"updated_at\": \"2024-02-05T09:53:24.000000Z\"\n                },\n                {\n                    \"id\": 587,\n                    \"reference_id\": \"#POI-587\",\n                    \"stock_order_id\": 352,\n                    \"item_id\": 661,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6006881304\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-06T09:01:50.000000Z\",\n                    \"updated_at\": \"2024-02-06T09:01:50.000000Z\"\n                },\n                {\n                    \"id\": 588,\n                    \"reference_id\": \"#POI-588\",\n                    \"stock_order_id\": 353,\n                    \"item_id\": 661,\n                    \"price\": 0,\n                    \"quantity\": 30,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6016598354\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-07T09:08:42.000000Z\",\n                    \"updated_at\": \"2024-02-07T09:08:43.000000Z\"\n                },\n                {\n                    \"id\": 667,\n                    \"reference_id\": \"#POI-667\",\n                    \"stock_order_id\": 397,\n                    \"item_id\": 661,\n                    \"price\": 23,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6162432531\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-29T09:30:25.000000Z\",\n                    \"updated_at\": \"2024-02-29T09:30:26.000000Z\"\n                },\n                {\n                    \"id\": 675,\n                    \"reference_id\": \"#POI-675\",\n                    \"stock_order_id\": 404,\n                    \"item_id\": 661,\n                    \"price\": 23,\n                    \"quantity\": 3,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-03-04 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6194590916\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-03-05T10:51:25.000000Z\",\n                    \"updated_at\": \"2024-03-11T14:18:16.000000Z\"\n                },\n                {\n                    \"id\": 676,\n                    \"reference_id\": \"#POI-676\",\n                    \"stock_order_id\": 405,\n                    \"item_id\": 661,\n                    \"price\": 23,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-03-04 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6196420520\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-03-05T14:56:54.000000Z\",\n                    \"updated_at\": \"2024-04-26T13:48:48.000000Z\"\n                },\n                {\n                    \"id\": 684,\n                    \"reference_id\": \"#POI-684\",\n                    \"stock_order_id\": 410,\n                    \"item_id\": 661,\n                    \"price\": 23,\n                    \"quantity\": 1,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6205356749\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-03-06T14:58:22.000000Z\",\n                    \"updated_at\": \"2024-03-06T14:58:23.000000Z\"\n                },\n                {\n                    \"id\": 685,\n                    \"reference_id\": \"#POI-685\",\n                    \"stock_order_id\": 411,\n                    \"item_id\": 661,\n                    \"price\": 23,\n                    \"quantity\": 100,\n                    \"received_quantity\": 85,\n                    \"initial_quantity\": \"100\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-03-07 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6213148583\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-03-07T13:23:06.000000Z\",\n                    \"updated_at\": \"2024-07-12T10:53:50.000000Z\"\n                }\n            ],\n            \"terms\": [\n                {\n                    \"id\": 240,\n                    \"item_id\": 661,\n                    \"term_id\": 24,\n                    \"created_at\": \"2024-03-12T14:24:44.000000Z\",\n                    \"updated_at\": \"2024-03-12T14:24:44.000000Z\",\n                    \"term\": {\n                        \"id\": 24,\n                        \"item_description\": \"I confirm a physical face to face consultation has been carried with the patient before this treatment has been prescribed.\",\n                        \"created_at\": \"2022-10-19T09:21:49.000000Z\",\n                        \"updated_at\": \"2022-10-19T09:21:49.000000Z\"\n                    }\n                },\n                {\n                    \"id\": 241,\n                    \"item_id\": 661,\n                    \"term_id\": 23,\n                    \"created_at\": \"2024-03-12T14:24:44.000000Z\",\n                    \"updated_at\": \"2024-03-12T14:24:44.000000Z\",\n                    \"term\": {\n                        \"id\": 23,\n                        \"item_description\": \"I confirm that the patient will be monitored during their treatment for weight loss. \\n\\nI confirm that a consultation has been carried out with the patient to assess their suitability for this treatment.\\n\\nI am aware that if a patient does not lose a minimum of 5% of their initial bodyweight within 12 weeks of treatment, treatment should be discontinued.\",\n                        \"created_at\": \"2022-10-19T09:20:38.000000Z\",\n                        \"updated_at\": \"2022-10-19T09:20:38.000000Z\"\n                    }\n                }\n            ],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 2,\n            \"monday_com_id\": \"6499045679\",\n            \"vendor_id\": 38,\n            \"agreed_stock_level\": \"40\",\n            \"clinic_per_quota\": \"3\",\n            \"clinic_per_quota_term\": \"2\",\n            \"delivery_delay\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc in semper est. Suspendisse a risus nisi. Sed et commodo dui. Quisque auctor pellentesque malesuada. Curabitur ac tempor ligula. Donec id\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": \"2024-07-12 13:18:26\",\n            \"name\": \"Adrenaline (1:1000) (1 x 1ml)\",\n            \"cost_price\": 2,\n            \"price\": 2.3,\n            \"stock\": 9994,\n            \"reorder_limit\": 50,\n            \"item_category_id\": 4,\n            \"clinic_limit\": null,\n            \"sku\": \"ADR1X1\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"Primed’s mission is to make aesthetic medicine accessible to every person striving for positive change. An aesthetics pharmacy with a difference we help healthcare professionals deliver improved patient outcomes in aesthetic medicine. Place your order ONLINE and get your medical supplies without having to wait! Start to Order Now !!!\",\n            \"out_of_stock_note\": \"\",\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-07-12T13:18:26.000000Z\",\n            \"item_stocks_sum_received_quantity\": 39,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/53f36aa0-7ddc-4b9b-9682-9c7783c4704f.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=6688e0a773f9b8133818850ac7ca4c03a71a80f7ba824821f482c45003a7bdcf\",\n            \"item_stocks\": [\n                {\n                    \"id\": 12,\n                    \"reference_id\": \"#POI-12\",\n                    \"stock_order_id\": 7,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 100,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"50\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-12 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-18T14:18:07.000000Z\",\n                    \"updated_at\": \"2022-09-13T15:08:40.000000Z\"\n                },\n                {\n                    \"id\": 13,\n                    \"reference_id\": \"#POI-12\",\n                    \"stock_order_id\": 7,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 50,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"-1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-18T14:19:18.000000Z\",\n                    \"updated_at\": \"2022-09-13T15:16:13.000000Z\"\n                },\n                {\n                    \"id\": 49,\n                    \"reference_id\": \"#POI-49\",\n                    \"stock_order_id\": 27,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-07-27T16:47:06.000000Z\",\n                    \"updated_at\": \"2022-07-27T16:47:06.000000Z\"\n                },\n                {\n                    \"id\": 82,\n                    \"reference_id\": \"#POI-82\",\n                    \"stock_order_id\": 7,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 51,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"owning\",\n                    \"created_at\": \"2022-08-02T14:54:47.000000Z\",\n                    \"updated_at\": \"2022-08-02T14:54:47.000000Z\"\n                },\n                {\n                    \"id\": 145,\n                    \"reference_id\": \"#POI-145\",\n                    \"stock_order_id\": 76,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 4,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-17 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-17T11:46:55.000000Z\",\n                    \"updated_at\": \"2022-09-13T15:16:13.000000Z\"\n                },\n                {\n                    \"id\": 146,\n                    \"reference_id\": \"#POI-146\",\n                    \"stock_order_id\": 76,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-17 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-17T11:50:27.000000Z\",\n                    \"updated_at\": \"2022-09-13T16:00:50.000000Z\"\n                },\n                {\n                    \"id\": 184,\n                    \"reference_id\": \"#POI-184\",\n                    \"stock_order_id\": 95,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 30,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-10-12 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-10-12T13:19:44.000000Z\",\n                    \"updated_at\": \"2022-10-20T18:15:10.000000Z\"\n                },\n                {\n                    \"id\": 186,\n                    \"reference_id\": \"#POI-186\",\n                    \"stock_order_id\": 95,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 20,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"15\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-10-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-10-12T13:20:58.000000Z\",\n                    \"updated_at\": \"2022-10-26T08:51:51.000000Z\"\n                },\n                {\n                    \"id\": 188,\n                    \"reference_id\": \"#POI-188\",\n                    \"stock_order_id\": 95,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 5,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-10-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2022-10-12T13:22:09.000000Z\",\n                    \"updated_at\": \"2022-10-12T13:22:30.000000Z\"\n                },\n                {\n                    \"id\": 189,\n                    \"reference_id\": \"#POI-189\",\n                    \"stock_order_id\": 95,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 3,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-02-03 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-10-12T13:22:24.000000Z\",\n                    \"updated_at\": \"2023-02-16T10:35:33.000000Z\"\n                },\n                {\n                    \"id\": 232,\n                    \"reference_id\": \"#POI-232\",\n                    \"stock_order_id\": 123,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 100,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"95\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-03-23 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-03-23T14:27:16.000000Z\",\n                    \"updated_at\": \"2023-11-15T14:26:47.000000Z\"\n                },\n                {\n                    \"id\": 233,\n                    \"reference_id\": \"#POI-233\",\n                    \"stock_order_id\": 123,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 5,\n                    \"received_quantity\": 5,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-03-23 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-03-23T14:28:23.000000Z\",\n                    \"updated_at\": \"2023-03-23T14:28:39.000000Z\"\n                },\n                {\n                    \"id\": 288,\n                    \"reference_id\": \"#POI-288\",\n                    \"stock_order_id\": 160,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-26 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4541389737\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-05-26T12:28:06.000000Z\",\n                    \"updated_at\": \"2023-08-04T14:57:28.000000Z\"\n                },\n                {\n                    \"id\": 314,\n                    \"reference_id\": \"#POI-311\",\n                    \"stock_order_id\": 181,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 6,\n                    \"received_quantity\": 5,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-12 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4588970323\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-05T13:16:27.000000Z\",\n                    \"updated_at\": \"2023-06-12T13:38:20.000000Z\"\n                },\n                {\n                    \"id\": 325,\n                    \"reference_id\": \"#POI-325\",\n                    \"stock_order_id\": 187,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 15,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4641817350\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-14T12:04:56.000000Z\",\n                    \"updated_at\": \"2023-06-14T12:28:29.000000Z\"\n                },\n                {\n                    \"id\": 354,\n                    \"reference_id\": \"#POI-354\",\n                    \"stock_order_id\": 205,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 90,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-05 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4655628657\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-16T08:47:09.000000Z\",\n                    \"updated_at\": \"2023-07-07T11:39:07.000000Z\"\n                },\n                {\n                    \"id\": 504,\n                    \"reference_id\": \"#POI-504\",\n                    \"stock_order_id\": 291,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 100,\n                    \"received_quantity\": 4,\n                    \"initial_quantity\": \"50\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-09-20 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5193896275\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-09-20T14:37:03.000000Z\",\n                    \"updated_at\": \"2024-07-12T13:18:26.000000Z\"\n                },\n                {\n                    \"id\": 506,\n                    \"reference_id\": \"#POI-506\",\n                    \"stock_order_id\": 291,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 50,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-09-20 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"5193919991\",\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2023-09-20T14:39:44.000000Z\",\n                    \"updated_at\": \"2023-09-20T14:40:10.000000Z\"\n                },\n                {\n                    \"id\": 507,\n                    \"reference_id\": \"#POI-507\",\n                    \"stock_order_id\": 291,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 40,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-09-20 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"5193922023\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-09-20T14:40:01.000000Z\",\n                    \"updated_at\": \"2023-09-20T14:40:29.000000Z\"\n                },\n                {\n                    \"id\": 508,\n                    \"reference_id\": \"#POI-508\",\n                    \"stock_order_id\": 291,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 10,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-09-20 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"5193926923\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-09-20T14:40:22.000000Z\",\n                    \"updated_at\": \"2023-09-20T14:47:55.000000Z\"\n                },\n                {\n                    \"id\": 509,\n                    \"reference_id\": \"#POI-509\",\n                    \"stock_order_id\": 291,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 20,\n                    \"received_quantity\": 20,\n                    \"initial_quantity\": \"20\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-09-20 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"5193929381\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-09-20T14:40:42.000000Z\",\n                    \"updated_at\": \"2023-09-20T14:47:40.000000Z\"\n                },\n                {\n                    \"id\": 561,\n                    \"reference_id\": \"#POI-561\",\n                    \"stock_order_id\": 337,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 6,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5863946927\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-01-16T09:35:10.000000Z\",\n                    \"updated_at\": \"2024-01-16T09:35:11.000000Z\"\n                },\n                {\n                    \"id\": 621,\n                    \"reference_id\": \"#POI-621\",\n                    \"stock_order_id\": 372,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 5,\n                    \"received_quantity\": 5,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-13 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6051800323\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-02-13T05:25:31.000000Z\",\n                    \"updated_at\": \"2024-02-13T08:13:13.000000Z\"\n                },\n                {\n                    \"id\": 651,\n                    \"reference_id\": \"#POI-651\",\n                    \"stock_order_id\": 389,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6064376407\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-14T17:34:12.000000Z\",\n                    \"updated_at\": \"2024-02-14T17:34:13.000000Z\"\n                },\n                {\n                    \"id\": 677,\n                    \"reference_id\": \"#POI-677\",\n                    \"stock_order_id\": 406,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6196778762\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-03-05T15:28:09.000000Z\",\n                    \"updated_at\": \"2024-03-05T15:28:11.000000Z\"\n                },\n                {\n                    \"id\": 686,\n                    \"reference_id\": \"#POI-686\",\n                    \"stock_order_id\": 412,\n                    \"item_id\": 2,\n                    \"price\": 2,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6213162767\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-03-07T13:25:20.000000Z\",\n                    \"updated_at\": \"2024-03-07T13:25:20.000000Z\"\n                }\n            ],\n            \"terms\": [\n                {\n                    \"id\": 233,\n                    \"item_id\": 2,\n                    \"term_id\": 22,\n                    \"created_at\": \"2024-02-22T09:11:56.000000Z\",\n                    \"updated_at\": \"2024-02-22T09:11:56.000000Z\",\n                    \"term\": {\n                        \"id\": 22,\n                        \"item_description\": \"I can confirm that I am aware Ozempic is licensed for type 2 diabetes. Its usage for the treatment of obesity is off-label. I can confirm that the patient has been made aware of this products off-label status. I have made the patient aware of the difference between an off-label and licensed medicine.\\n\\nI can confirm that as part of this treatment the patient will be monitored.\",\n                        \"created_at\": \"2022-10-19T09:17:11.000000Z\",\n                        \"updated_at\": \"2022-10-19T09:24:01.000000Z\"\n                    }\n                }\n            ],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 3,\n            \"monday_com_id\": \"4333618448\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"5\",\n            \"clinic_per_quota_term\": \"1\",\n            \"delivery_delay\": \"10\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Adrenaline (1:1000) (10 x 1ml)\",\n            \"cost_price\": 14,\n            \"price\": 14.95,\n            \"stock\": -3,\n            \"reorder_limit\": null,\n            \"item_category_id\": 2,\n            \"clinic_limit\": null,\n            \"sku\": \"ADR1X1X10\",\n            \"unit\": \"10 x 1ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": \"\",\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-05-10T14:57:28.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/142c2aea-ff62-4ef2-9d74-f8fbb418964d.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=c9e026fc8b3122dd3e1fade0957167f9b8e82c9af64c16b50773ecca99f5fd8a\",\n            \"item_stocks\": [\n                {\n                    \"id\": 160,\n                    \"reference_id\": \"#POI-160\",\n                    \"stock_order_id\": 82,\n                    \"item_id\": 3,\n                    \"price\": 14,\n                    \"quantity\": 5,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-09-01 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2022-08-31T15:06:49.000000Z\",\n                    \"updated_at\": \"2022-09-01T17:07:03.000000Z\"\n                },\n                {\n                    \"id\": 162,\n                    \"reference_id\": \"#POI-162\",\n                    \"stock_order_id\": 82,\n                    \"item_id\": 3,\n                    \"price\": 14,\n                    \"quantity\": 3,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-09-01 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-09-01T14:14:19.000000Z\",\n                    \"updated_at\": \"2022-09-08T11:14:22.000000Z\"\n                },\n                {\n                    \"id\": 212,\n                    \"reference_id\": \"#POI-212\",\n                    \"stock_order_id\": 110,\n                    \"item_id\": 3,\n                    \"price\": 14,\n                    \"quantity\": 12,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"6\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-01-25 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-01-25T11:11:29.000000Z\",\n                    \"updated_at\": \"2023-02-01T10:28:47.000000Z\"\n                },\n                {\n                    \"id\": 213,\n                    \"reference_id\": \"#POI-213\",\n                    \"stock_order_id\": 110,\n                    \"item_id\": 3,\n                    \"price\": 14,\n                    \"quantity\": 6,\n                    \"received_quantity\": 3,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-01-25 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-01-25T11:13:11.000000Z\",\n                    \"updated_at\": \"2023-01-25T11:13:56.000000Z\"\n                },\n                {\n                    \"id\": 214,\n                    \"reference_id\": \"#POI-214\",\n                    \"stock_order_id\": 110,\n                    \"item_id\": 3,\n                    \"price\": 14,\n                    \"quantity\": 3,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-01-25 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-01-25T11:13:50.000000Z\",\n                    \"updated_at\": \"2023-02-06T10:56:44.000000Z\"\n                },\n                {\n                    \"id\": 231,\n                    \"reference_id\": \"#POI-231\",\n                    \"stock_order_id\": 123,\n                    \"item_id\": 3,\n                    \"price\": 14,\n                    \"quantity\": 100,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"100\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-03-16 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-03-23T14:27:16.000000Z\",\n                    \"updated_at\": \"2024-03-14T11:32:49.000000Z\"\n                },\n                {\n                    \"id\": 289,\n                    \"reference_id\": \"#POI-289\",\n                    \"stock_order_id\": 160,\n                    \"item_id\": 3,\n                    \"price\": 14,\n                    \"quantity\": 50,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"50\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-26 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4541389795\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-05-26T12:28:06.000000Z\",\n                    \"updated_at\": \"2024-03-14T11:32:49.000000Z\"\n                },\n                {\n                    \"id\": 505,\n                    \"reference_id\": \"#POI-505\",\n                    \"stock_order_id\": 291,\n                    \"item_id\": 3,\n                    \"price\": 14,\n                    \"quantity\": 100,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"100\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-09-16 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5193896340\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-09-20T14:37:04.000000Z\",\n                    \"updated_at\": \"2024-03-14T11:32:49.000000Z\"\n                },\n                {\n                    \"id\": 579,\n                    \"reference_id\": \"#POI-579\",\n                    \"stock_order_id\": 346,\n                    \"item_id\": 3,\n                    \"price\": 14,\n                    \"quantity\": 30,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5986077366\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-02T10:47:12.000000Z\",\n                    \"updated_at\": \"2024-02-02T11:02:28.000000Z\"\n                },\n                {\n                    \"id\": 642,\n                    \"reference_id\": \"#POI-642\",\n                    \"stock_order_id\": 383,\n                    \"item_id\": 3,\n                    \"price\": 14,\n                    \"quantity\": 10,\n                    \"received_quantity\": 4,\n                    \"initial_quantity\": \"4\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-13 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6055365830\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2024-02-13T16:14:58.000000Z\",\n                    \"updated_at\": \"2024-02-13T16:15:28.000000Z\"\n                },\n                {\n                    \"id\": 643,\n                    \"reference_id\": \"#POI-643\",\n                    \"stock_order_id\": 383,\n                    \"item_id\": 3,\n                    \"price\": 14,\n                    \"quantity\": 6,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"6\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-13 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6055370032\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-02-13T16:15:27.000000Z\",\n                    \"updated_at\": \"2024-03-14T11:35:37.000000Z\"\n                },\n                {\n                    \"id\": 649,\n                    \"reference_id\": \"#POI-649\",\n                    \"stock_order_id\": 387,\n                    \"item_id\": 3,\n                    \"price\": 14,\n                    \"quantity\": 10,\n                    \"received_quantity\": 5,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-14 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6062859817\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2024-02-14T15:06:13.000000Z\",\n                    \"updated_at\": \"2024-02-15T12:51:18.000000Z\"\n                },\n                {\n                    \"id\": 655,\n                    \"reference_id\": \"#POI-655\",\n                    \"stock_order_id\": 387,\n                    \"item_id\": 3,\n                    \"price\": 14,\n                    \"quantity\": 5,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-07 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6070411201\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2024-02-15T12:51:18.000000Z\",\n                    \"updated_at\": \"2024-02-15T13:14:10.000000Z\"\n                },\n                {\n                    \"id\": 656,\n                    \"reference_id\": \"#POI-656\",\n                    \"stock_order_id\": 387,\n                    \"item_id\": 3,\n                    \"price\": 14,\n                    \"quantity\": 4,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6070544477\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2024-02-15T13:14:10.000000Z\",\n                    \"updated_at\": \"2024-02-15T13:14:10.000000Z\"\n                },\n                {\n                    \"id\": 672,\n                    \"reference_id\": \"#POI-672\",\n                    \"stock_order_id\": 401,\n                    \"item_id\": 3,\n                    \"price\": 14,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6173745339\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-03-01T15:12:07.000000Z\",\n                    \"updated_at\": \"2024-03-01T15:12:08.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 4,\n            \"monday_com_id\": \"6242274990\",\n            \"vendor_id\": 39,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"10\",\n            \"clinic_per_quota_term\": \"1\",\n            \"delivery_delay\": \"ggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": \"2024-04-26 11:57:22\",\n            \"name\": \"Adrenaline Injection 1:10,000 PFS\",\n            \"cost_price\": 6.87,\n            \"price\": 10.49,\n            \"stock\": -3,\n            \"reorder_limit\": 2,\n            \"item_category_id\": 3,\n            \"clinic_limit\": null,\n            \"sku\": \"ADRPFS10\",\n            \"unit\": \"1 x 10ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": \"Test note's view icon\",\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-06-17T08:39:19.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/e3142df9-45a3-4816-a95f-4f8dd557aa05.webp?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=e284484829e025e0911d0f3d00be2752744e396bfadf8d33e53f10a369ab4dd8\",\n            \"item_stocks\": [\n                {\n                    \"id\": 50,\n                    \"reference_id\": \"#POI-50\",\n                    \"stock_order_id\": 27,\n                    \"item_id\": 4,\n                    \"price\": 6.87,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-21 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-27T16:47:06.000000Z\",\n                    \"updated_at\": \"2022-07-28T13:42:52.000000Z\"\n                },\n                {\n                    \"id\": 52,\n                    \"reference_id\": \"#POI-52\",\n                    \"stock_order_id\": 27,\n                    \"item_id\": 4,\n                    \"price\": 6.87,\n                    \"quantity\": 4,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"owning\",\n                    \"created_at\": \"2022-07-27T17:29:18.000000Z\",\n                    \"updated_at\": \"2022-07-27T17:29:18.000000Z\"\n                },\n                {\n                    \"id\": 137,\n                    \"reference_id\": \"#POI-137\",\n                    \"stock_order_id\": 69,\n                    \"item_id\": 4,\n                    \"price\": 6.87,\n                    \"quantity\": 12,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"12\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-12 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-12T15:19:32.000000Z\",\n                    \"updated_at\": \"2022-08-15T16:34:54.000000Z\"\n                },\n                {\n                    \"id\": 153,\n                    \"reference_id\": \"#POI-153\",\n                    \"stock_order_id\": 78,\n                    \"item_id\": 4,\n                    \"price\": 6.87,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-25 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-17T13:51:05.000000Z\",\n                    \"updated_at\": \"2022-08-31T15:53:24.000000Z\"\n                },\n                {\n                    \"id\": 340,\n                    \"reference_id\": \"#POI-340\",\n                    \"stock_order_id\": 193,\n                    \"item_id\": 4,\n                    \"price\": 6.87,\n                    \"quantity\": 200,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4648848847\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-15T09:36:25.000000Z\",\n                    \"updated_at\": \"2023-06-15T09:36:25.000000Z\"\n                },\n                {\n                    \"id\": 714,\n                    \"reference_id\": \"#POI-714\",\n                    \"stock_order_id\": 440,\n                    \"item_id\": 4,\n                    \"price\": 6.87,\n                    \"quantity\": 4,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"4\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-04-26 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6530335006\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-04-26T11:54:26.000000Z\",\n                    \"updated_at\": \"2024-04-26T11:57:22.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 5,\n            \"monday_com_id\": \"6090316715\",\n            \"vendor_id\": 42,\n            \"agreed_stock_level\": \"2\",\n            \"clinic_per_quota\": \"5\",\n            \"clinic_per_quota_term\": \"1\",\n            \"delivery_delay\": \"3\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Aerochamber Plus (Adult with mask) (1)\",\n            \"cost_price\": 8.33,\n            \"price\": 10.99,\n            \"stock\": -1,\n            \"reorder_limit\": null,\n            \"item_category_id\": 2,\n            \"clinic_limit\": null,\n            \"sku\": \"HAER78W\",\n            \"unit\": \"1OP\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"note\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 0,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-06-25T15:58:46.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/c3b0dcd6-ae0a-4a12-bb66-a2e7b47eacda.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=68680be9569c9481516f41e5aa4c6bcf9b924b1ece23418dfa91aa0af59d7f4f\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 500,\n            \"monday_com_id\": \"4270475975\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": \"10\",\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": \"2023-06-29 13:44:28\",\n            \"name\": \"Agomelatine 25mg Tablets (28)\",\n            \"cost_price\": 19,\n            \"price\": 28.5,\n            \"stock\": 0,\n            \"reorder_limit\": 8,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"AGO25\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": \"\",\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 1,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-04-26T08:44:39.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/5c4e6e25-6c55-44e1-9ff2-1ad612f811a9.webp?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=40cc4a5c4353c0256110cecaebabdb616debcc69c876c04700fe23e22988c846\",\n            \"item_stocks\": [\n                {\n                    \"id\": 80,\n                    \"reference_id\": \"#POI-80\",\n                    \"stock_order_id\": 37,\n                    \"item_id\": 500,\n                    \"price\": 19,\n                    \"quantity\": 9,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"9\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-02T14:48:50.000000Z\",\n                    \"updated_at\": \"2022-08-10T10:48:29.000000Z\"\n                },\n                {\n                    \"id\": 339,\n                    \"reference_id\": \"#POI-339\",\n                    \"stock_order_id\": 192,\n                    \"item_id\": 500,\n                    \"price\": 19,\n                    \"quantity\": 100,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4648847489\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-15T09:36:02.000000Z\",\n                    \"updated_at\": \"2023-06-15T09:36:02.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 6,\n            \"monday_com_id\": \"4356448440\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"6 to 5 business days\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": null,\n            \"name\": \"Alcohol 70% (Incidin) (600ml)\",\n            \"cost_price\": 6.5,\n            \"price\": 8.99,\n            \"stock\": 9999236,\n            \"reorder_limit\": null,\n            \"item_category_id\": 3,\n            \"clinic_limit\": null,\n            \"sku\": \"INC600\",\n            \"unit\": \"1 x 600ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 1,\n            \"is_bmi_required\": 1,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 1,\n            \"is_controlled_drug\": 1,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-07-17T13:58:37.000000Z\",\n            \"item_stocks_sum_received_quantity\": 29,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/4116a466-1615-42a9-a406-c18ed16d1bc0.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=3ca4ff3bd2f7fff77d02fa0aed38f05cddcb4d2b7aa136f01bdf0b81ad938cf2\",\n            \"item_stocks\": [\n                {\n                    \"id\": 222,\n                    \"reference_id\": \"#POI-222\",\n                    \"stock_order_id\": 117,\n                    \"item_id\": 6,\n                    \"price\": 6.5,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-02-14 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-02-14T12:08:28.000000Z\",\n                    \"updated_at\": \"2023-03-01T11:43:22.000000Z\"\n                },\n                {\n                    \"id\": 262,\n                    \"reference_id\": \"#POI-262\",\n                    \"stock_order_id\": 143,\n                    \"item_id\": 6,\n                    \"price\": 6.5,\n                    \"quantity\": 1,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-21 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4348793619\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-04-21T15:37:23.000000Z\",\n                    \"updated_at\": \"2023-04-21T15:42:28.000000Z\"\n                },\n                {\n                    \"id\": 285,\n                    \"reference_id\": \"#POI-285\",\n                    \"stock_order_id\": 158,\n                    \"item_id\": 6,\n                    \"price\": 6.5,\n                    \"quantity\": 100,\n                    \"received_quantity\": 26,\n                    \"initial_quantity\": \"50\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-24 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4529758038\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-05-24T16:48:01.000000Z\",\n                    \"updated_at\": \"2024-03-07T13:10:18.000000Z\"\n                },\n                {\n                    \"id\": 286,\n                    \"reference_id\": \"#POI-286\",\n                    \"stock_order_id\": 158,\n                    \"item_id\": 6,\n                    \"price\": 6.5,\n                    \"quantity\": 50,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"50\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-24 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4529759610\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-05-24T16:49:30.000000Z\",\n                    \"updated_at\": \"2024-01-17T17:52:45.000000Z\"\n                },\n                {\n                    \"id\": 589,\n                    \"reference_id\": \"#POI-589\",\n                    \"stock_order_id\": 353,\n                    \"item_id\": 6,\n                    \"price\": 6.5,\n                    \"quantity\": 30,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6016598390\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-07T09:08:43.000000Z\",\n                    \"updated_at\": \"2024-02-07T09:08:44.000000Z\"\n                },\n                {\n                    \"id\": 592,\n                    \"reference_id\": \"#POI-592\",\n                    \"stock_order_id\": 354,\n                    \"item_id\": 6,\n                    \"price\": 6.5,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6016604265\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-07T09:10:17.000000Z\",\n                    \"updated_at\": \"2024-02-07T09:10:17.000000Z\"\n                },\n                {\n                    \"id\": 594,\n                    \"reference_id\": \"#POI-594\",\n                    \"stock_order_id\": 355,\n                    \"item_id\": 6,\n                    \"price\": 6.5,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6016606894\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-07T09:10:57.000000Z\",\n                    \"updated_at\": \"2024-02-07T09:10:58.000000Z\"\n                },\n                {\n                    \"id\": 612,\n                    \"reference_id\": \"#POI-612\",\n                    \"stock_order_id\": 366,\n                    \"item_id\": 6,\n                    \"price\": 6.5,\n                    \"quantity\": 3,\n                    \"received_quantity\": 3,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-09 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6034383825\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-02-09T11:36:33.000000Z\",\n                    \"updated_at\": \"2024-02-09T11:40:59.000000Z\"\n                },\n                {\n                    \"id\": 636,\n                    \"reference_id\": \"#POI-636\",\n                    \"stock_order_id\": 379,\n                    \"item_id\": 6,\n                    \"price\": 6.5,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6053813522\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-13T13:29:49.000000Z\",\n                    \"updated_at\": \"2024-02-13T13:29:49.000000Z\"\n                },\n                {\n                    \"id\": 688,\n                    \"reference_id\": \"#POI-688\",\n                    \"stock_order_id\": 414,\n                    \"item_id\": 6,\n                    \"price\": 6.5,\n                    \"quantity\": 100,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6249141142\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-03-13T09:16:37.000000Z\",\n                    \"updated_at\": \"2024-03-13T09:16:38.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 7,\n            \"monday_com_id\": \"4698945516\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"2\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": null,\n            \"name\": \"Aliaxin EV (2x1ml)\",\n            \"cost_price\": 130,\n            \"price\": 149,\n            \"stock\": 999997,\n            \"reorder_limit\": 5,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ALIEV\",\n            \"unit\": \"2x1ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 0,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 1,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-04-02T16:52:55.000000Z\",\n            \"item_stocks_sum_received_quantity\": 164,\n            \"item_stocks\": [\n                {\n                    \"id\": 234,\n                    \"reference_id\": \"#POI-234\",\n                    \"stock_order_id\": 124,\n                    \"item_id\": 7,\n                    \"price\": 130,\n                    \"quantity\": 100,\n                    \"received_quantity\": 44,\n                    \"initial_quantity\": \"100\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-04-03T10:57:39.000000Z\",\n                    \"updated_at\": \"2024-04-02T13:32:54.000000Z\"\n                },\n                {\n                    \"id\": 235,\n                    \"reference_id\": \"#POI-235\",\n                    \"stock_order_id\": 125,\n                    \"item_id\": 7,\n                    \"price\": 130,\n                    \"quantity\": 10,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-04-03T11:06:39.000000Z\",\n                    \"updated_at\": \"2023-04-03T11:07:17.000000Z\"\n                },\n                {\n                    \"id\": 236,\n                    \"reference_id\": \"#POI-236\",\n                    \"stock_order_id\": 126,\n                    \"item_id\": 7,\n                    \"price\": 130,\n                    \"quantity\": 10,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-01 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-04-03T11:17:28.000000Z\",\n                    \"updated_at\": \"2023-04-03T11:17:57.000000Z\"\n                },\n                {\n                    \"id\": 463,\n                    \"reference_id\": \"#POI-463\",\n                    \"stock_order_id\": 261,\n                    \"item_id\": 7,\n                    \"price\": 130,\n                    \"quantity\": 3,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-20 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4852816360\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-07-21T18:37:29.000000Z\",\n                    \"updated_at\": \"2023-07-21T18:38:37.000000Z\"\n                },\n                {\n                    \"id\": 554,\n                    \"reference_id\": \"#POI-554\",\n                    \"stock_order_id\": 331,\n                    \"item_id\": 7,\n                    \"price\": 130,\n                    \"quantity\": 100,\n                    \"received_quantity\": 100,\n                    \"initial_quantity\": \"100\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-22 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5734822040\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-12-22T14:21:28.000000Z\",\n                    \"updated_at\": \"2023-12-22T14:23:35.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 8,\n            \"monday_com_id\": \"4270475612\",\n            \"vendor_id\": 38,\n            \"agreed_stock_level\": \"10\",\n            \"clinic_per_quota\": \"0\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": null,\n            \"name\": \"Aliaxin FL (2x1ml)\",\n            \"cost_price\": 130,\n            \"price\": 149.95,\n            \"stock\": -16,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ALIFL\",\n            \"unit\": \"2x1ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": \"test\",\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 0,\n            \"status\": \"active\",\n            \"is_note_required\": 0,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-05-16T09:05:21.000000Z\",\n            \"item_stocks_sum_received_quantity\": 50,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/84106f1f-7c79-4789-ad02-d9a5c204a22c.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=33df9a1be0f786356eef9db0b255965696c5ed4f310fe1e2f3e1a0df05300e72\",\n            \"item_stocks\": [\n                {\n                    \"id\": 388,\n                    \"reference_id\": \"#POI-388\",\n                    \"stock_order_id\": 221,\n                    \"item_id\": 8,\n                    \"price\": 130,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-26 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4702985360\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-06-26T09:25:10.000000Z\",\n                    \"updated_at\": \"2023-08-04T14:58:30.000000Z\"\n                },\n                {\n                    \"id\": 390,\n                    \"reference_id\": \"#POI-390\",\n                    \"stock_order_id\": 221,\n                    \"item_id\": 8,\n                    \"price\": 130,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4702996915\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-06-26T09:29:11.000000Z\",\n                    \"updated_at\": \"2023-06-26T09:29:12.000000Z\"\n                },\n                {\n                    \"id\": 467,\n                    \"reference_id\": \"#POI-467\",\n                    \"stock_order_id\": 265,\n                    \"item_id\": 8,\n                    \"price\": 130,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-08-04 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4933036811\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-08-04T14:58:51.000000Z\",\n                    \"updated_at\": \"2023-08-04T15:20:29.000000Z\"\n                },\n                {\n                    \"id\": 468,\n                    \"reference_id\": \"#POI-468\",\n                    \"stock_order_id\": 266,\n                    \"item_id\": 8,\n                    \"price\": 130,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-08-04 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4933210802\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-08-04T15:20:55.000000Z\",\n                    \"updated_at\": \"2023-10-24T15:10:51.000000Z\"\n                },\n                {\n                    \"id\": 566,\n                    \"reference_id\": \"#POI-566\",\n                    \"stock_order_id\": 341,\n                    \"item_id\": 8,\n                    \"price\": 130,\n                    \"quantity\": 50,\n                    \"received_quantity\": 50,\n                    \"initial_quantity\": \"50\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-01-23 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5913854796\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-01-23T15:37:11.000000Z\",\n                    \"updated_at\": \"2024-01-23T15:38:40.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 9,\n            \"monday_com_id\": \"4698945778\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"45\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": \"2023-08-07 16:48:39\",\n            \"name\": \"Aliaxin GP (2x1ml)\",\n            \"cost_price\": 130,\n            \"price\": 159.95,\n            \"stock\": -6,\n            \"reorder_limit\": 9,\n            \"item_category_id\": 2,\n            \"clinic_limit\": null,\n            \"sku\": \"ALIGP\",\n            \"unit\": \"2x1ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": \"\",\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 0,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-05-29T13:30:20.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/1e4c4f5a-818d-4617-9d75-2c0d7c60319f.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=1c4be576a4f9f1ff59eaaa8db718db3c33c7b8ade4d3c7423a10612bfd558e83\",\n            \"item_stocks\": [\n                {\n                    \"id\": 92,\n                    \"reference_id\": \"#POI-92\",\n                    \"stock_order_id\": 41,\n                    \"item_id\": 9,\n                    \"price\": 130,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-02T17:20:49.000000Z\",\n                    \"updated_at\": \"2022-08-09T13:54:43.000000Z\"\n                },\n                {\n                    \"id\": 93,\n                    \"reference_id\": \"#POI-93\",\n                    \"stock_order_id\": 41,\n                    \"item_id\": 9,\n                    \"price\": 130,\n                    \"quantity\": 8,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-02T17:33:44.000000Z\",\n                    \"updated_at\": \"2022-08-09T13:54:43.000000Z\"\n                },\n                {\n                    \"id\": 94,\n                    \"reference_id\": \"#POI-94\",\n                    \"stock_order_id\": 41,\n                    \"item_id\": 9,\n                    \"price\": 130,\n                    \"quantity\": 7,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2022-08-02T17:33:57.000000Z\",\n                    \"updated_at\": \"2022-08-02T17:34:07.000000Z\"\n                },\n                {\n                    \"id\": 95,\n                    \"reference_id\": \"#POI-95\",\n                    \"stock_order_id\": 41,\n                    \"item_id\": 9,\n                    \"price\": 130,\n                    \"quantity\": 6,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"owning\",\n                    \"created_at\": \"2022-08-02T17:34:07.000000Z\",\n                    \"updated_at\": \"2022-08-02T17:34:07.000000Z\"\n                },\n                {\n                    \"id\": 96,\n                    \"reference_id\": \"#POI-96\",\n                    \"stock_order_id\": 42,\n                    \"item_id\": 9,\n                    \"price\": 130,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-08-03T09:18:41.000000Z\",\n                    \"updated_at\": \"2022-08-03T09:18:41.000000Z\"\n                },\n                {\n                    \"id\": 104,\n                    \"reference_id\": \"#POI-104\",\n                    \"stock_order_id\": 46,\n                    \"item_id\": 9,\n                    \"price\": 130,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-08-03T15:40:37.000000Z\",\n                    \"updated_at\": \"2022-08-03T15:40:37.000000Z\"\n                },\n                {\n                    \"id\": 147,\n                    \"reference_id\": \"#POI-147\",\n                    \"stock_order_id\": 77,\n                    \"item_id\": 9,\n                    \"price\": 130,\n                    \"quantity\": 50,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-17 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-17T12:23:42.000000Z\",\n                    \"updated_at\": \"2022-09-01T09:50:45.000000Z\"\n                },\n                {\n                    \"id\": 148,\n                    \"reference_id\": \"#POI-148\",\n                    \"stock_order_id\": 77,\n                    \"item_id\": 9,\n                    \"price\": 130,\n                    \"quantity\": 40,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-17 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-17T12:24:28.000000Z\",\n                    \"updated_at\": \"2022-09-14T14:05:58.000000Z\"\n                },\n                {\n                    \"id\": 149,\n                    \"reference_id\": \"#POI-149\",\n                    \"stock_order_id\": 77,\n                    \"item_id\": 9,\n                    \"price\": 130,\n                    \"quantity\": 30,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-17 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2022-08-17T12:24:47.000000Z\",\n                    \"updated_at\": \"2022-08-17T12:25:20.000000Z\"\n                },\n                {\n                    \"id\": 150,\n                    \"reference_id\": \"#POI-150\",\n                    \"stock_order_id\": 77,\n                    \"item_id\": 9,\n                    \"price\": 130,\n                    \"quantity\": 20,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-17 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-17T12:25:10.000000Z\",\n                    \"updated_at\": \"2022-09-15T13:36:44.000000Z\"\n                },\n                {\n                    \"id\": 151,\n                    \"reference_id\": \"#POI-151\",\n                    \"stock_order_id\": 77,\n                    \"item_id\": 9,\n                    \"price\": 130,\n                    \"quantity\": 18,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"owning\",\n                    \"created_at\": \"2022-08-17T12:25:48.000000Z\",\n                    \"updated_at\": \"2022-08-17T12:25:48.000000Z\"\n                },\n                {\n                    \"id\": 239,\n                    \"reference_id\": \"#POI-239\",\n                    \"stock_order_id\": 129,\n                    \"item_id\": 9,\n                    \"price\": 130,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-03 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-04-03T14:37:01.000000Z\",\n                    \"updated_at\": \"2023-05-09T11:17:59.000000Z\"\n                },\n                {\n                    \"id\": 389,\n                    \"reference_id\": \"#POI-389\",\n                    \"stock_order_id\": 221,\n                    \"item_id\": 9,\n                    \"price\": 130,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4702985411\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-26T09:25:11.000000Z\",\n                    \"updated_at\": \"2023-06-26T09:27:23.000000Z\"\n                },\n                {\n                    \"id\": 466,\n                    \"reference_id\": \"#POI-466\",\n                    \"stock_order_id\": 264,\n                    \"item_id\": 9,\n                    \"price\": 130,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-08-04 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4932996284\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-08-04T14:53:25.000000Z\",\n                    \"updated_at\": \"2023-08-07T16:48:39.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 10,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"2\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Aliaxin SR (2x1ml)\",\n            \"cost_price\": 130,\n            \"price\": 149.95,\n            \"stock\": 9998,\n            \"reorder_limit\": null,\n            \"item_category_id\": 3,\n            \"clinic_limit\": null,\n            \"sku\": \"ALISR\",\n            \"unit\": \"2x1ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"1111\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 1,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-03-22T12:45:37.000000Z\",\n            \"item_stocks_sum_received_quantity\": 398,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/5c1e67c8-4187-4e35-ace2-dd39e86178b8.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=8fa0845063cf19f28e5fd160edc67595f0174c08f079884917cc37565d4d29e9\",\n            \"item_stocks\": [\n                {\n                    \"id\": 223,\n                    \"reference_id\": \"#POI-223\",\n                    \"stock_order_id\": 118,\n                    \"item_id\": 10,\n                    \"price\": 130,\n                    \"quantity\": 15,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"15\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-02-20 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-02-20T10:15:14.000000Z\",\n                    \"updated_at\": \"2023-03-20T11:19:44.000000Z\"\n                },\n                {\n                    \"id\": 341,\n                    \"reference_id\": \"#POI-341\",\n                    \"stock_order_id\": 194,\n                    \"item_id\": 10,\n                    \"price\": 130,\n                    \"quantity\": 50,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4648850492\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-15T09:37:03.000000Z\",\n                    \"updated_at\": \"2023-06-15T09:37:04.000000Z\"\n                },\n                {\n                    \"id\": 342,\n                    \"reference_id\": \"#POI-341\",\n                    \"stock_order_id\": 195,\n                    \"item_id\": 10,\n                    \"price\": 130,\n                    \"quantity\": 50,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4770043633\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-15T09:37:03.000000Z\",\n                    \"updated_at\": \"2023-07-07T11:44:47.000000Z\"\n                },\n                {\n                    \"id\": 437,\n                    \"reference_id\": \"#POI-435\",\n                    \"stock_order_id\": 245,\n                    \"item_id\": 10,\n                    \"price\": 130,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-07 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4770015912\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-07-07T11:27:02.000000Z\",\n                    \"updated_at\": \"2023-07-19T13:39:41.000000Z\"\n                },\n                {\n                    \"id\": 439,\n                    \"reference_id\": \"#POI-439\",\n                    \"stock_order_id\": 245,\n                    \"item_id\": 10,\n                    \"price\": 130,\n                    \"quantity\": 1,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-07 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4770018852\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-07-07T11:36:40.000000Z\",\n                    \"updated_at\": \"2023-10-24T15:10:51.000000Z\"\n                },\n                {\n                    \"id\": 440,\n                    \"reference_id\": \"#POI-440\",\n                    \"stock_order_id\": 245,\n                    \"item_id\": 10,\n                    \"price\": 130,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-07 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4770020798\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-07-07T11:37:33.000000Z\",\n                    \"updated_at\": \"2023-10-25T15:03:05.000000Z\"\n                },\n                {\n                    \"id\": 441,\n                    \"reference_id\": \"#POI-441\",\n                    \"stock_order_id\": 245,\n                    \"item_id\": 10,\n                    \"price\": 130,\n                    \"quantity\": 1,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-07 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4770032564\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-07-07T11:40:50.000000Z\",\n                    \"updated_at\": \"2023-07-07T11:41:17.000000Z\"\n                },\n                {\n                    \"id\": 694,\n                    \"reference_id\": \"#POI-694\",\n                    \"stock_order_id\": 420,\n                    \"item_id\": 10,\n                    \"price\": 130,\n                    \"quantity\": 50,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6329702214\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-03-26T09:06:24.000000Z\",\n                    \"updated_at\": \"2024-03-26T09:06:25.000000Z\"\n                },\n                {\n                    \"id\": 695,\n                    \"reference_id\": \"#POI-695\",\n                    \"stock_order_id\": 421,\n                    \"item_id\": 10,\n                    \"price\": 130,\n                    \"quantity\": 50,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6329702820\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-03-26T09:06:37.000000Z\",\n                    \"updated_at\": \"2024-03-26T09:06:37.000000Z\"\n                },\n                {\n                    \"id\": 743,\n                    \"reference_id\": \"#POI-743\",\n                    \"stock_order_id\": 462,\n                    \"item_id\": 10,\n                    \"price\": 130,\n                    \"quantity\": 1000,\n                    \"received_quantity\": 98,\n                    \"initial_quantity\": \"100\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-06-19 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6864107276\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-06-19T11:27:33.000000Z\",\n                    \"updated_at\": \"2024-07-12T10:33:10.000000Z\"\n                },\n                {\n                    \"id\": 744,\n                    \"reference_id\": \"#POI-744\",\n                    \"stock_order_id\": 462,\n                    \"item_id\": 10,\n                    \"price\": 130,\n                    \"quantity\": 900,\n                    \"received_quantity\": 100,\n                    \"initial_quantity\": \"100\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-06-19 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6864110882\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2024-06-19T11:28:43.000000Z\",\n                    \"updated_at\": \"2024-06-19T11:29:15.000000Z\"\n                },\n                {\n                    \"id\": 745,\n                    \"reference_id\": \"#POI-745\",\n                    \"stock_order_id\": 462,\n                    \"item_id\": 10,\n                    \"price\": 130,\n                    \"quantity\": 800,\n                    \"received_quantity\": 100,\n                    \"initial_quantity\": \"100\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-06-19 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6864112590\",\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2024-06-19T11:29:04.000000Z\",\n                    \"updated_at\": \"2024-06-19T11:29:29.000000Z\"\n                },\n                {\n                    \"id\": 746,\n                    \"reference_id\": \"#POI-746\",\n                    \"stock_order_id\": 462,\n                    \"item_id\": 10,\n                    \"price\": 130,\n                    \"quantity\": 700,\n                    \"received_quantity\": 300,\n                    \"initial_quantity\": \"300\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-06-19 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6864113704\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-06-19T11:29:23.000000Z\",\n                    \"updated_at\": \"2024-06-19T11:29:44.000000Z\"\n                },\n                {\n                    \"id\": 747,\n                    \"reference_id\": \"#POI-747\",\n                    \"stock_order_id\": 462,\n                    \"item_id\": 10,\n                    \"price\": 130,\n                    \"quantity\": 400,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6864115367\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2024-06-19T11:29:44.000000Z\",\n                    \"updated_at\": \"2024-06-19T11:29:44.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 11,\n            \"monday_com_id\": null,\n            \"vendor_id\": 35,\n            \"agreed_stock_level\": \"5\",\n            \"clinic_per_quota\": \"2\",\n            \"clinic_per_quota_term\": \"1\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": null,\n            \"name\": \"Aliaxin SV (2x1.1ml)\",\n            \"cost_price\": 130,\n            \"price\": 164.95,\n            \"stock\": -5,\n            \"reorder_limit\": 0,\n            \"item_category_id\": null,\n            \"clinic_limit\": 1,\n            \"sku\": \"ALISV\",\n            \"unit\": \"2x1.1ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 1,\n            \"is_bmi_required\": 1,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-03-11T12:59:15.000000Z\",\n            \"item_stocks_sum_received_quantity\": 193,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/c0e36a88-5b45-45c2-be4a-28cde9538d18.webp?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=01d6c58fe35d74de5340783d5d8543a2c0869ec2f233d77c781df62a01ddcf8a\",\n            \"item_stocks\": [\n                {\n                    \"id\": 39,\n                    \"reference_id\": \"#POI-39\",\n                    \"stock_order_id\": 22,\n                    \"item_id\": 11,\n                    \"price\": 130,\n                    \"quantity\": 7,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-27 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-27T13:21:42.000000Z\",\n                    \"updated_at\": \"2022-07-28T14:11:31.000000Z\"\n                },\n                {\n                    \"id\": 43,\n                    \"reference_id\": \"#POI-43\",\n                    \"stock_order_id\": 22,\n                    \"item_id\": 11,\n                    \"price\": 130,\n                    \"quantity\": 5,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-26 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2022-07-27T16:22:20.000000Z\",\n                    \"updated_at\": \"2022-09-07T13:46:41.000000Z\"\n                },\n                {\n                    \"id\": 46,\n                    \"reference_id\": \"#POI-46\",\n                    \"stock_order_id\": 22,\n                    \"item_id\": 11,\n                    \"price\": 130,\n                    \"quantity\": 4,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-28 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2022-07-27T16:36:06.000000Z\",\n                    \"updated_at\": \"2022-07-28T10:54:56.000000Z\"\n                },\n                {\n                    \"id\": 55,\n                    \"reference_id\": \"#POI-55\",\n                    \"stock_order_id\": 22,\n                    \"item_id\": 11,\n                    \"price\": 130,\n                    \"quantity\": 3,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-31 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-28T10:54:56.000000Z\",\n                    \"updated_at\": \"2022-09-13T15:16:13.000000Z\"\n                },\n                {\n                    \"id\": 119,\n                    \"reference_id\": \"#POI-119\",\n                    \"stock_order_id\": 59,\n                    \"item_id\": 11,\n                    \"price\": 130,\n                    \"quantity\": 9,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"9\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-07 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-08T16:36:00.000000Z\",\n                    \"updated_at\": \"2022-08-08T16:42:16.000000Z\"\n                },\n                {\n                    \"id\": 238,\n                    \"reference_id\": \"#POI-238\",\n                    \"stock_order_id\": 128,\n                    \"item_id\": 11,\n                    \"price\": 130,\n                    \"quantity\": 1,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-04-03T14:23:07.000000Z\",\n                    \"updated_at\": \"2023-04-03T14:23:07.000000Z\"\n                },\n                {\n                    \"id\": 240,\n                    \"reference_id\": \"#POI-240\",\n                    \"stock_order_id\": 130,\n                    \"item_id\": 11,\n                    \"price\": 130,\n                    \"quantity\": 1,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-04-03T15:04:26.000000Z\",\n                    \"updated_at\": \"2023-04-03T15:04:26.000000Z\"\n                },\n                {\n                    \"id\": 356,\n                    \"reference_id\": \"#POI-356\",\n                    \"stock_order_id\": 206,\n                    \"item_id\": 11,\n                    \"price\": 130,\n                    \"quantity\": 10,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-13 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4655661014\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-06-16T08:56:08.000000Z\",\n                    \"updated_at\": \"2023-06-16T09:24:09.000000Z\"\n                },\n                {\n                    \"id\": 387,\n                    \"reference_id\": \"#POI-387\",\n                    \"stock_order_id\": 220,\n                    \"item_id\": 11,\n                    \"price\": 130,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-24 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4698981076\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-06-24T15:16:32.000000Z\",\n                    \"updated_at\": \"2023-06-24T15:18:13.000000Z\"\n                },\n                {\n                    \"id\": 465,\n                    \"reference_id\": \"#POI-465\",\n                    \"stock_order_id\": 263,\n                    \"item_id\": 11,\n                    \"price\": 130,\n                    \"quantity\": 200,\n                    \"received_quantity\": 192,\n                    \"initial_quantity\": \"200\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-08-04 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4932800909\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-08-04T14:27:19.000000Z\",\n                    \"updated_at\": \"2023-10-06T12:41:15.000000Z\"\n                },\n                {\n                    \"id\": 567,\n                    \"reference_id\": \"#POI-567\",\n                    \"stock_order_id\": 342,\n                    \"item_id\": 11,\n                    \"price\": 130,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5920826330\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-01-24T11:53:59.000000Z\",\n                    \"updated_at\": \"2024-01-24T11:54:00.000000Z\"\n                },\n                {\n                    \"id\": 652,\n                    \"reference_id\": \"#POI-652\",\n                    \"stock_order_id\": 390,\n                    \"item_id\": 11,\n                    \"price\": 130,\n                    \"quantity\": 5,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-15 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6069914109\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2024-02-15T11:10:56.000000Z\",\n                    \"updated_at\": \"2024-02-15T11:28:50.000000Z\"\n                },\n                {\n                    \"id\": 653,\n                    \"reference_id\": \"#POI-653\",\n                    \"stock_order_id\": 390,\n                    \"item_id\": 11,\n                    \"price\": 130,\n                    \"quantity\": 3,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-15 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6069990456\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-02-15T11:28:49.000000Z\",\n                    \"updated_at\": \"2024-02-15T11:29:52.000000Z\"\n                },\n                {\n                    \"id\": 654,\n                    \"reference_id\": \"#POI-654\",\n                    \"stock_order_id\": 390,\n                    \"item_id\": 11,\n                    \"price\": 130,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6069994293\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2024-02-15T11:29:52.000000Z\",\n                    \"updated_at\": \"2024-02-15T11:29:52.000000Z\"\n                }\n            ],\n            \"terms\": [\n                {\n                    \"id\": 236,\n                    \"item_id\": 11,\n                    \"term_id\": 25,\n                    \"created_at\": \"2024-03-05T12:21:18.000000Z\",\n                    \"updated_at\": \"2024-03-05T12:21:18.000000Z\",\n                    \"term\": {\n                        \"id\": 25,\n                        \"item_description\": \"Clomid (Clomifene Citrate BP) is indicated for the treatment of ovulatory failure in women desiring pregnancy. I am aware that any usage outside of this indication remains strictly off-label.\",\n                        \"created_at\": \"2022-10-19T09:23:12.000000Z\",\n                        \"updated_at\": \"2022-10-19T09:23:12.000000Z\"\n                    }\n                }\n            ],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 12,\n            \"monday_com_id\": \"5950457573\",\n            \"vendor_id\": 40,\n            \"agreed_stock_level\": \"8\",\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"2\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": null,\n            \"name\": \"Allopurinol 300mg Tabs\",\n            \"cost_price\": 1.62,\n            \"price\": 4.7,\n            \"stock\": 0,\n            \"reorder_limit\": 2,\n            \"item_category_id\": 2,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 0,\n            \"status\": \"active\",\n            \"is_note_required\": 0,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-04-04T12:07:53.000000Z\",\n            \"item_stocks_sum_received_quantity\": 95,\n            \"item_stocks\": [\n                {\n                    \"id\": 31,\n                    \"reference_id\": \"#POI-31\",\n                    \"stock_order_id\": 20,\n                    \"item_id\": 12,\n                    \"price\": 1.62,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-25 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-26T13:13:34.000000Z\",\n                    \"updated_at\": \"2022-07-26T14:45:00.000000Z\"\n                },\n                {\n                    \"id\": 32,\n                    \"reference_id\": \"#POI-32\",\n                    \"stock_order_id\": 20,\n                    \"item_id\": 12,\n                    \"price\": 1.62,\n                    \"quantity\": 3,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-26 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-26T13:14:38.000000Z\",\n                    \"updated_at\": \"2022-07-26T15:00:48.000000Z\"\n                },\n                {\n                    \"id\": 33,\n                    \"reference_id\": \"#POI-33\",\n                    \"stock_order_id\": 20,\n                    \"item_id\": 12,\n                    \"price\": 1.62,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-26 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-26T13:18:27.000000Z\",\n                    \"updated_at\": \"2022-07-26T15:00:48.000000Z\"\n                },\n                {\n                    \"id\": 34,\n                    \"reference_id\": \"#POI-34\",\n                    \"stock_order_id\": 20,\n                    \"item_id\": 12,\n                    \"price\": 1.62,\n                    \"quantity\": 1,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-01 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2022-07-26T14:21:52.000000Z\",\n                    \"updated_at\": \"2022-08-01T09:58:45.000000Z\"\n                },\n                {\n                    \"id\": 257,\n                    \"reference_id\": \"#POI-257\",\n                    \"stock_order_id\": 142,\n                    \"item_id\": 12,\n                    \"price\": 1.62,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-20 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4343020035\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-04-20T16:21:41.000000Z\",\n                    \"updated_at\": \"2023-04-27T12:34:43.000000Z\"\n                },\n                {\n                    \"id\": 258,\n                    \"reference_id\": \"#POI-258\",\n                    \"stock_order_id\": 142,\n                    \"item_id\": 12,\n                    \"price\": 1.62,\n                    \"quantity\": 9,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-19 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4343034427\",\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2023-04-20T16:25:06.000000Z\",\n                    \"updated_at\": \"2023-04-20T16:33:09.000000Z\"\n                },\n                {\n                    \"id\": 259,\n                    \"reference_id\": \"#POI-259\",\n                    \"stock_order_id\": 142,\n                    \"item_id\": 12,\n                    \"price\": 1.62,\n                    \"quantity\": 7,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-20 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4343071220\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-04-20T16:30:26.000000Z\",\n                    \"updated_at\": \"2023-04-20T17:14:21.000000Z\"\n                },\n                {\n                    \"id\": 260,\n                    \"reference_id\": \"#POI-260\",\n                    \"stock_order_id\": 142,\n                    \"item_id\": 12,\n                    \"price\": 1.62,\n                    \"quantity\": 6,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-20 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4343405147\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-04-20T17:14:10.000000Z\",\n                    \"updated_at\": \"2023-04-20T17:15:07.000000Z\"\n                },\n                {\n                    \"id\": 261,\n                    \"reference_id\": \"#POI-261\",\n                    \"stock_order_id\": 142,\n                    \"item_id\": 12,\n                    \"price\": 1.62,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-24 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4343411715\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-04-20T17:15:07.000000Z\",\n                    \"updated_at\": \"2023-05-18T12:18:40.000000Z\"\n                },\n                {\n                    \"id\": 386,\n                    \"reference_id\": \"#POI-385\",\n                    \"stock_order_id\": 219,\n                    \"item_id\": 12,\n                    \"price\": 1.62,\n                    \"quantity\": 2,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-24 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4702771977\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-06-22T10:40:56.000000Z\",\n                    \"updated_at\": \"2023-07-24T15:18:20.000000Z\"\n                },\n                {\n                    \"id\": 464,\n                    \"reference_id\": \"#POI-464\",\n                    \"stock_order_id\": 262,\n                    \"item_id\": 12,\n                    \"price\": 1.62,\n                    \"quantity\": 3,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-14 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4852903394\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-07-21T18:49:34.000000Z\",\n                    \"updated_at\": \"2023-07-24T15:01:23.000000Z\"\n                },\n                {\n                    \"id\": 476,\n                    \"reference_id\": \"#POI-476\",\n                    \"stock_order_id\": 273,\n                    \"item_id\": 12,\n                    \"price\": 1.62,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-08-22 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5028471243\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-08-22T12:03:53.000000Z\",\n                    \"updated_at\": \"2023-12-22T14:18:25.000000Z\"\n                },\n                {\n                    \"id\": 553,\n                    \"reference_id\": \"#POI-553\",\n                    \"stock_order_id\": 331,\n                    \"item_id\": 12,\n                    \"price\": 1.62,\n                    \"quantity\": 100,\n                    \"received_quantity\": 95,\n                    \"initial_quantity\": \"100\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-22 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5734822001\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-12-22T14:21:28.000000Z\",\n                    \"updated_at\": \"2024-01-17T18:01:35.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 13,\n            \"monday_com_id\": \"6055398380\",\n            \"vendor_id\": 41,\n            \"agreed_stock_level\": \"10\",\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"1 dayhddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx                       liiiiiiiiiiiiiiiiiiiiii\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Aloe Vera Gel (1 x 100ml)\",\n            \"cost_price\": 0,\n            \"price\": 3.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"AVG100\",\n            \"unit\": \"1 x 100ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": \"\",\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 0,\n            \"status\": \"active\",\n            \"is_note_required\": 0,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 1,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-05-07T16:39:21.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/20114d6b-0a64-45c6-a734-28519bd5d590.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=81e2b2a75f5554a54541f05334e5ce5eb90dad0728b1924a77311d70864b77aa\",\n            \"item_stocks\": [\n                {\n                    \"id\": 38,\n                    \"reference_id\": \"#POI-38\",\n                    \"stock_order_id\": 22,\n                    \"item_id\": 13,\n                    \"price\": 1.97,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-25 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-27T13:21:42.000000Z\",\n                    \"updated_at\": \"2022-07-28T12:51:51.000000Z\"\n                },\n                {\n                    \"id\": 42,\n                    \"reference_id\": \"#POI-42\",\n                    \"stock_order_id\": 25,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 1,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"-1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-01 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-27T16:10:10.000000Z\",\n                    \"updated_at\": \"2022-08-01T12:33:33.000000Z\"\n                },\n                {\n                    \"id\": 44,\n                    \"reference_id\": \"#POI-44\",\n                    \"stock_order_id\": 22,\n                    \"item_id\": 13,\n                    \"price\": 1.97,\n                    \"quantity\": 7,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-26 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-27T16:34:51.000000Z\",\n                    \"updated_at\": \"2022-07-28T12:51:51.000000Z\"\n                },\n                {\n                    \"id\": 45,\n                    \"reference_id\": \"#POI-45\",\n                    \"stock_order_id\": 22,\n                    \"item_id\": 13,\n                    \"price\": 1.97,\n                    \"quantity\": 5,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-27 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2022-07-27T16:35:49.000000Z\",\n                    \"updated_at\": \"2022-07-28T10:54:05.000000Z\"\n                },\n                {\n                    \"id\": 53,\n                    \"reference_id\": \"#POI-53\",\n                    \"stock_order_id\": 22,\n                    \"item_id\": 13,\n                    \"price\": 1.97,\n                    \"quantity\": 4,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-27 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2022-07-27T17:59:05.000000Z\",\n                    \"updated_at\": \"2022-07-27T18:00:25.000000Z\"\n                },\n                {\n                    \"id\": 54,\n                    \"reference_id\": \"#POI-54\",\n                    \"stock_order_id\": 22,\n                    \"item_id\": 13,\n                    \"price\": 1.97,\n                    \"quantity\": 3,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-27 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2022-07-27T18:00:19.000000Z\",\n                    \"updated_at\": \"2022-07-28T10:55:38.000000Z\"\n                },\n                {\n                    \"id\": 56,\n                    \"reference_id\": \"#POI-56\",\n                    \"stock_order_id\": 22,\n                    \"item_id\": 13,\n                    \"price\": 1.97,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"owning\",\n                    \"created_at\": \"2022-07-28T10:55:38.000000Z\",\n                    \"updated_at\": \"2022-07-28T10:55:38.000000Z\"\n                },\n                {\n                    \"id\": 57,\n                    \"reference_id\": \"#POI-57\",\n                    \"stock_order_id\": 28,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-28 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-28T15:38:15.000000Z\",\n                    \"updated_at\": \"2022-07-28T17:35:06.000000Z\"\n                },\n                {\n                    \"id\": 58,\n                    \"reference_id\": \"#POI-58\",\n                    \"stock_order_id\": 28,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"owning\",\n                    \"created_at\": \"2022-07-28T15:40:32.000000Z\",\n                    \"updated_at\": \"2022-07-28T15:40:32.000000Z\"\n                },\n                {\n                    \"id\": 62,\n                    \"reference_id\": \"#POI-62\",\n                    \"stock_order_id\": 30,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-28 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-29T16:58:40.000000Z\",\n                    \"updated_at\": \"2022-08-01T17:23:15.000000Z\"\n                },\n                {\n                    \"id\": 63,\n                    \"reference_id\": \"#POI-63\",\n                    \"stock_order_id\": 30,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-16 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-29T17:13:44.000000Z\",\n                    \"updated_at\": \"2022-08-02T10:34:50.000000Z\"\n                },\n                {\n                    \"id\": 64,\n                    \"reference_id\": \"#POI-64\",\n                    \"stock_order_id\": 30,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 3,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"owning\",\n                    \"created_at\": \"2022-07-29T17:26:25.000000Z\",\n                    \"updated_at\": \"2022-07-29T17:26:25.000000Z\"\n                },\n                {\n                    \"id\": 65,\n                    \"reference_id\": \"#POI-65\",\n                    \"stock_order_id\": 25,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"-5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-01 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-01T08:16:52.000000Z\",\n                    \"updated_at\": \"2022-08-02T10:34:50.000000Z\"\n                },\n                {\n                    \"id\": 66,\n                    \"reference_id\": \"#POI-66\",\n                    \"stock_order_id\": 25,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 7,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"owning\",\n                    \"created_at\": \"2022-08-01T08:20:10.000000Z\",\n                    \"updated_at\": \"2022-08-01T08:20:10.000000Z\"\n                },\n                {\n                    \"id\": 69,\n                    \"reference_id\": \"#POI-69\",\n                    \"stock_order_id\": 33,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 12,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-01 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-01T10:05:32.000000Z\",\n                    \"updated_at\": \"2022-08-02T10:34:50.000000Z\"\n                },\n                {\n                    \"id\": 70,\n                    \"reference_id\": \"#POI-70\",\n                    \"stock_order_id\": 33,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-06-15 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-01T10:34:58.000000Z\",\n                    \"updated_at\": \"2022-08-02T10:34:50.000000Z\"\n                },\n                {\n                    \"id\": 71,\n                    \"reference_id\": \"#POI-71\",\n                    \"stock_order_id\": 33,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 7,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-01T10:35:55.000000Z\",\n                    \"updated_at\": \"2022-08-02T10:34:50.000000Z\"\n                },\n                {\n                    \"id\": 73,\n                    \"reference_id\": \"#POI-73\",\n                    \"stock_order_id\": 35,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-01 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-01T17:24:40.000000Z\",\n                    \"updated_at\": \"2022-08-02T10:43:21.000000Z\"\n                },\n                {\n                    \"id\": 76,\n                    \"reference_id\": \"#POI-76\",\n                    \"stock_order_id\": 35,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 1,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-01 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-01T17:40:41.000000Z\",\n                    \"updated_at\": \"2022-08-02T10:43:21.000000Z\"\n                },\n                {\n                    \"id\": 77,\n                    \"reference_id\": \"#POI-77\",\n                    \"stock_order_id\": 33,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 6,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"owning\",\n                    \"created_at\": \"2022-08-02T09:27:05.000000Z\",\n                    \"updated_at\": \"2022-08-02T09:27:05.000000Z\"\n                },\n                {\n                    \"id\": 78,\n                    \"reference_id\": \"#POI-78\",\n                    \"stock_order_id\": 36,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-02T12:26:53.000000Z\",\n                    \"updated_at\": \"2022-08-02T14:08:55.000000Z\"\n                },\n                {\n                    \"id\": 79,\n                    \"reference_id\": \"#POI-79\",\n                    \"stock_order_id\": 36,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 9,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-02T12:28:01.000000Z\",\n                    \"updated_at\": \"2022-08-05T14:12:37.000000Z\"\n                },\n                {\n                    \"id\": 81,\n                    \"reference_id\": \"#POI-81\",\n                    \"stock_order_id\": 38,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 1,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-08-02T14:51:02.000000Z\",\n                    \"updated_at\": \"2022-08-02T14:51:02.000000Z\"\n                },\n                {\n                    \"id\": 83,\n                    \"reference_id\": \"#POI-83\",\n                    \"stock_order_id\": 39,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 4,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-02T14:56:04.000000Z\",\n                    \"updated_at\": \"2022-08-05T14:12:37.000000Z\"\n                },\n                {\n                    \"id\": 84,\n                    \"reference_id\": \"#POI-84\",\n                    \"stock_order_id\": 39,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 3,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"-1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-02T14:56:44.000000Z\",\n                    \"updated_at\": \"2022-08-05T14:12:37.000000Z\"\n                },\n                {\n                    \"id\": 85,\n                    \"reference_id\": \"#POI-85\",\n                    \"stock_order_id\": 39,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 4,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"-1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-02T15:39:42.000000Z\",\n                    \"updated_at\": \"2022-08-05T14:12:37.000000Z\"\n                },\n                {\n                    \"id\": 86,\n                    \"reference_id\": \"#POI-86\",\n                    \"stock_order_id\": 39,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"-1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-02T15:42:17.000000Z\",\n                    \"updated_at\": \"2022-08-05T14:12:37.000000Z\"\n                },\n                {\n                    \"id\": 87,\n                    \"reference_id\": \"#POI-87\",\n                    \"stock_order_id\": 39,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 6,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"-1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-02T15:44:26.000000Z\",\n                    \"updated_at\": \"2022-08-05T14:12:37.000000Z\"\n                },\n                {\n                    \"id\": 88,\n                    \"reference_id\": \"#POI-88\",\n                    \"stock_order_id\": 39,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 7,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"7\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-02T15:48:56.000000Z\",\n                    \"updated_at\": \"2022-08-05T14:27:04.000000Z\"\n                },\n                {\n                    \"id\": 89,\n                    \"reference_id\": \"#POI-89\",\n                    \"stock_order_id\": 40,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 6,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-08 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-02T15:51:47.000000Z\",\n                    \"updated_at\": \"2022-08-10T10:58:03.000000Z\"\n                },\n                {\n                    \"id\": 90,\n                    \"reference_id\": \"#POI-90\",\n                    \"stock_order_id\": 36,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 6,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2022-08-02T17:09:37.000000Z\",\n                    \"updated_at\": \"2022-08-02T17:10:04.000000Z\"\n                },\n                {\n                    \"id\": 91,\n                    \"reference_id\": \"#POI-91\",\n                    \"stock_order_id\": 36,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-01-03 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-02T17:10:04.000000Z\",\n                    \"updated_at\": \"2023-01-04T15:16:53.000000Z\"\n                },\n                {\n                    \"id\": 116,\n                    \"reference_id\": \"#POI-116\",\n                    \"stock_order_id\": 56,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 1,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-08 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-08T14:43:43.000000Z\",\n                    \"updated_at\": \"2022-08-10T10:58:03.000000Z\"\n                },\n                {\n                    \"id\": 118,\n                    \"reference_id\": \"#POI-118\",\n                    \"stock_order_id\": 58,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 8,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"8\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-08 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-08T16:27:19.000000Z\",\n                    \"updated_at\": \"2022-08-10T10:58:03.000000Z\"\n                },\n                {\n                    \"id\": 129,\n                    \"reference_id\": \"#POI-129\",\n                    \"stock_order_id\": 40,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 3,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"owning\",\n                    \"created_at\": \"2022-08-09T14:39:41.000000Z\",\n                    \"updated_at\": \"2022-08-09T14:39:41.000000Z\"\n                },\n                {\n                    \"id\": 138,\n                    \"reference_id\": \"#POI-138\",\n                    \"stock_order_id\": 70,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-14 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-15T14:12:06.000000Z\",\n                    \"updated_at\": \"2022-10-06T10:32:55.000000Z\"\n                },\n                {\n                    \"id\": 139,\n                    \"reference_id\": \"#POI-139\",\n                    \"stock_order_id\": 71,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 4,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"4\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-11 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-15T16:23:45.000000Z\",\n                    \"updated_at\": \"2022-09-05T13:24:39.000000Z\"\n                },\n                {\n                    \"id\": 141,\n                    \"reference_id\": \"#POI-141\",\n                    \"stock_order_id\": 73,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 1,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-16 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2022-08-16T11:02:19.000000Z\",\n                    \"updated_at\": \"2022-08-16T11:03:30.000000Z\"\n                },\n                {\n                    \"id\": 167,\n                    \"reference_id\": \"#POI-167\",\n                    \"stock_order_id\": 84,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"8\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-09-05 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-09-09T11:41:39.000000Z\",\n                    \"updated_at\": \"2022-09-15T09:16:03.000000Z\"\n                },\n                {\n                    \"id\": 168,\n                    \"reference_id\": \"#POI-168\",\n                    \"stock_order_id\": 84,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 2,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-09-15 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2022-09-09T11:43:59.000000Z\",\n                    \"updated_at\": \"2022-09-15T10:04:44.000000Z\"\n                },\n                {\n                    \"id\": 177,\n                    \"reference_id\": \"#POI-177\",\n                    \"stock_order_id\": 89,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-09-20 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-09-20T11:48:04.000000Z\",\n                    \"updated_at\": \"2024-02-09T14:03:35.000000Z\"\n                },\n                {\n                    \"id\": 178,\n                    \"reference_id\": \"#POI-178\",\n                    \"stock_order_id\": 90,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-09-26 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-09-26T08:40:56.000000Z\",\n                    \"updated_at\": \"2022-09-28T10:37:13.000000Z\"\n                },\n                {\n                    \"id\": 179,\n                    \"reference_id\": \"#POI-179\",\n                    \"stock_order_id\": 91,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 20,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"20\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-09-28 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-09-28T10:38:42.000000Z\",\n                    \"updated_at\": \"2024-03-06T08:36:03.000000Z\"\n                },\n                {\n                    \"id\": 199,\n                    \"reference_id\": \"#POI-199\",\n                    \"stock_order_id\": 102,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-11-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-11-02T18:15:24.000000Z\",\n                    \"updated_at\": \"2022-11-02T18:17:04.000000Z\"\n                },\n                {\n                    \"id\": 200,\n                    \"reference_id\": \"#POI-200\",\n                    \"stock_order_id\": 103,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-11-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-11-02T18:17:29.000000Z\",\n                    \"updated_at\": \"2022-11-02T18:19:53.000000Z\"\n                },\n                {\n                    \"id\": 201,\n                    \"reference_id\": \"#POI-201\",\n                    \"stock_order_id\": 104,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-11-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-11-02T18:21:45.000000Z\",\n                    \"updated_at\": \"2022-11-14T11:17:41.000000Z\"\n                },\n                {\n                    \"id\": 202,\n                    \"reference_id\": \"#POI-202\",\n                    \"stock_order_id\": 105,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-11-15 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-11-15T16:22:54.000000Z\",\n                    \"updated_at\": \"2022-11-23T15:44:07.000000Z\"\n                },\n                {\n                    \"id\": 203,\n                    \"reference_id\": \"#POI-203\",\n                    \"stock_order_id\": 106,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-11-23 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-11-22T09:23:11.000000Z\",\n                    \"updated_at\": \"2022-12-02T09:12:58.000000Z\"\n                },\n                {\n                    \"id\": 204,\n                    \"reference_id\": \"#POI-204\",\n                    \"stock_order_id\": 106,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-02-08 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-11-23T17:06:38.000000Z\",\n                    \"updated_at\": \"2023-02-09T16:53:12.000000Z\"\n                },\n                {\n                    \"id\": 205,\n                    \"reference_id\": \"#POI-205\",\n                    \"stock_order_id\": 107,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 4,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"4\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-01-03 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-11-29T08:29:57.000000Z\",\n                    \"updated_at\": \"2023-01-27T13:10:31.000000Z\"\n                },\n                {\n                    \"id\": 206,\n                    \"reference_id\": \"#POI-206\",\n                    \"stock_order_id\": 108,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 20,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"20\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-12-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-12-02T12:33:17.000000Z\",\n                    \"updated_at\": \"2023-09-19T10:21:02.000000Z\"\n                },\n                {\n                    \"id\": 215,\n                    \"reference_id\": \"#POI-215\",\n                    \"stock_order_id\": 111,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-01-27 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-01-27T14:26:57.000000Z\",\n                    \"updated_at\": \"2023-09-20T12:05:10.000000Z\"\n                },\n                {\n                    \"id\": 224,\n                    \"reference_id\": \"#POI-224\",\n                    \"stock_order_id\": 119,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 20,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"20\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-02-20 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-02-20T14:02:37.000000Z\",\n                    \"updated_at\": \"2023-06-05T14:23:04.000000Z\"\n                },\n                {\n                    \"id\": 241,\n                    \"reference_id\": \"#POI-241\",\n                    \"stock_order_id\": 131,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-04 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-04-04T15:23:54.000000Z\",\n                    \"updated_at\": \"2023-07-07T10:28:25.000000Z\"\n                },\n                {\n                    \"id\": 242,\n                    \"reference_id\": \"#POI-242\",\n                    \"stock_order_id\": 132,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-04-06T09:37:47.000000Z\",\n                    \"updated_at\": \"2023-07-21T18:44:17.000000Z\"\n                },\n                {\n                    \"id\": 243,\n                    \"reference_id\": \"#POI-243\",\n                    \"stock_order_id\": 133,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 1,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-04-06T09:45:59.000000Z\",\n                    \"updated_at\": \"2023-07-21T18:44:17.000000Z\"\n                },\n                {\n                    \"id\": 244,\n                    \"reference_id\": \"#POI-244\",\n                    \"stock_order_id\": 134,\n                    \"item_id\": 13,\n                    \"price\": 1.98,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-10 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4281064742\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-04-10T09:09:08.000000Z\",\n                    \"updated_at\": \"2023-08-07T16:40:57.000000Z\"\n                },\n                {\n                    \"id\": 270,\n                    \"reference_id\": \"#POI-270\",\n                    \"stock_order_id\": 149,\n                    \"item_id\": 13,\n                    \"price\": 1,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-09 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4617527568\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-05-19T11:15:07.000000Z\",\n                    \"updated_at\": \"2023-08-07T16:52:03.000000Z\"\n                },\n                {\n                    \"id\": 327,\n                    \"reference_id\": \"#POI-327\",\n                    \"stock_order_id\": 188,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 1000,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4641697756\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-14T12:06:13.000000Z\",\n                    \"updated_at\": \"2023-06-14T12:24:38.000000Z\"\n                },\n                {\n                    \"id\": 382,\n                    \"reference_id\": \"#POI-382\",\n                    \"stock_order_id\": 215,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4687211527\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-22T10:23:37.000000Z\",\n                    \"updated_at\": \"2023-06-22T10:23:37.000000Z\"\n                },\n                {\n                    \"id\": 454,\n                    \"reference_id\": \"#POI-454\",\n                    \"stock_order_id\": 254,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 23,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-11 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4789755226\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-07-11T16:53:55.000000Z\",\n                    \"updated_at\": \"2023-07-11T17:03:38.000000Z\"\n                },\n                {\n                    \"id\": 456,\n                    \"reference_id\": \"#POI-456\",\n                    \"stock_order_id\": 254,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 13,\n                    \"received_quantity\": 13,\n                    \"initial_quantity\": \"13\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-10 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4789760765\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-07-11T17:03:37.000000Z\",\n                    \"updated_at\": \"2023-07-17T12:04:23.000000Z\"\n                },\n                {\n                    \"id\": 473,\n                    \"reference_id\": \"#POI-473\",\n                    \"stock_order_id\": 271,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-08-07 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4943960676\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-08-07T16:54:22.000000Z\",\n                    \"updated_at\": \"2024-01-29T16:38:56.000000Z\"\n                },\n                {\n                    \"id\": 529,\n                    \"reference_id\": \"#POI-529\",\n                    \"stock_order_id\": 309,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-13 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5660689483\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-12-11T09:14:00.000000Z\",\n                    \"updated_at\": \"2024-03-06T10:08:15.000000Z\"\n                },\n                {\n                    \"id\": 562,\n                    \"reference_id\": \"#POI-562\",\n                    \"stock_order_id\": 338,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5863967602\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-01-16T09:40:05.000000Z\",\n                    \"updated_at\": \"2024-01-16T09:40:05.000000Z\"\n                },\n                {\n                    \"id\": 568,\n                    \"reference_id\": \"#POI-568\",\n                    \"stock_order_id\": 342,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5920826351\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-01-24T11:54:00.000000Z\",\n                    \"updated_at\": \"2024-01-24T11:54:00.000000Z\"\n                },\n                {\n                    \"id\": 569,\n                    \"reference_id\": \"#POI-569\",\n                    \"stock_order_id\": 343,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 50,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"40\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-01-31 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5967465439\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-01-31T10:40:35.000000Z\",\n                    \"updated_at\": \"2024-04-26T09:07:08.000000Z\"\n                },\n                {\n                    \"id\": 570,\n                    \"reference_id\": \"#POI-570\",\n                    \"stock_order_id\": 343,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-01-31 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"5967468523\",\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2024-01-31T10:41:38.000000Z\",\n                    \"updated_at\": \"2024-01-31T10:42:11.000000Z\"\n                },\n                {\n                    \"id\": 571,\n                    \"reference_id\": \"#POI-571\",\n                    \"stock_order_id\": 343,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 8,\n                    \"received_quantity\": 3,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-01-31 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"5967469494\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2024-01-31T10:41:58.000000Z\",\n                    \"updated_at\": \"2024-01-31T10:42:23.000000Z\"\n                },\n                {\n                    \"id\": 572,\n                    \"reference_id\": \"#POI-572\",\n                    \"stock_order_id\": 343,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-01-31 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"5967470313\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-01-31T10:42:16.000000Z\",\n                    \"updated_at\": \"2024-04-26T09:07:08.000000Z\"\n                },\n                {\n                    \"id\": 573,\n                    \"reference_id\": \"#POI-573\",\n                    \"stock_order_id\": 343,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 4,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"5967471218\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2024-01-31T10:42:35.000000Z\",\n                    \"updated_at\": \"2024-01-31T10:42:36.000000Z\"\n                },\n                {\n                    \"id\": 590,\n                    \"reference_id\": \"#POI-590\",\n                    \"stock_order_id\": 353,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 40,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6016598415\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-07T09:08:44.000000Z\",\n                    \"updated_at\": \"2024-02-07T09:08:44.000000Z\"\n                },\n                {\n                    \"id\": 593,\n                    \"reference_id\": \"#POI-593\",\n                    \"stock_order_id\": 354,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6016604299\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-07T09:10:17.000000Z\",\n                    \"updated_at\": \"2024-02-07T09:10:18.000000Z\"\n                },\n                {\n                    \"id\": 614,\n                    \"reference_id\": \"#POI-614\",\n                    \"stock_order_id\": 368,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 20,\n                    \"received_quantity\": 20,\n                    \"initial_quantity\": \"20\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-09 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6036268684\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-09T16:06:28.000000Z\",\n                    \"updated_at\": \"2024-02-09T16:22:23.000000Z\"\n                },\n                {\n                    \"id\": 619,\n                    \"reference_id\": \"#POI-619\",\n                    \"stock_order_id\": 372,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 1,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-13 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6051800284\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-02-13T05:25:30.000000Z\",\n                    \"updated_at\": \"2024-04-26T09:07:08.000000Z\"\n                },\n                {\n                    \"id\": 622,\n                    \"reference_id\": \"#POI-622\",\n                    \"stock_order_id\": 373,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6052315047\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-13T08:28:11.000000Z\",\n                    \"updated_at\": \"2024-02-13T08:28:12.000000Z\"\n                },\n                {\n                    \"id\": 626,\n                    \"reference_id\": \"#POI-626\",\n                    \"stock_order_id\": 374,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6052430285\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-13T09:01:16.000000Z\",\n                    \"updated_at\": \"2024-02-13T09:01:17.000000Z\"\n                },\n                {\n                    \"id\": 629,\n                    \"reference_id\": \"#POI-629\",\n                    \"stock_order_id\": 375,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 2,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-09 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6052506403\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2024-02-13T09:17:35.000000Z\",\n                    \"updated_at\": \"2024-02-13T09:20:30.000000Z\"\n                },\n                {\n                    \"id\": 637,\n                    \"reference_id\": \"#POI-637\",\n                    \"stock_order_id\": 379,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6053813553\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-13T13:29:49.000000Z\",\n                    \"updated_at\": \"2024-02-13T13:29:50.000000Z\"\n                },\n                {\n                    \"id\": 645,\n                    \"reference_id\": \"#POI-644\",\n                    \"stock_order_id\": 385,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6061781190\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-14T12:40:51.000000Z\",\n                    \"updated_at\": \"2024-02-14T12:40:52.000000Z\"\n                },\n                {\n                    \"id\": 650,\n                    \"reference_id\": \"#POI-650\",\n                    \"stock_order_id\": 388,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6064339926\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-14T17:29:43.000000Z\",\n                    \"updated_at\": \"2024-02-14T17:29:44.000000Z\"\n                },\n                {\n                    \"id\": 657,\n                    \"reference_id\": \"#POI-657\",\n                    \"stock_order_id\": 391,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": 3,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-13 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6070872271\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2024-02-15T14:02:04.000000Z\",\n                    \"updated_at\": \"2024-02-15T14:14:56.000000Z\"\n                },\n                {\n                    \"id\": 658,\n                    \"reference_id\": \"#POI-658\",\n                    \"stock_order_id\": 391,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 7,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6070976680\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2024-02-15T14:14:55.000000Z\",\n                    \"updated_at\": \"2024-02-15T14:14:56.000000Z\"\n                },\n                {\n                    \"id\": 673,\n                    \"reference_id\": \"#POI-673\",\n                    \"stock_order_id\": 402,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-03-01 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6173763765\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-03-01T15:13:12.000000Z\",\n                    \"updated_at\": \"2024-04-26T09:07:08.000000Z\"\n                },\n                {\n                    \"id\": 710,\n                    \"reference_id\": \"#POI-710\",\n                    \"stock_order_id\": 436,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 20,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"20\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-04-05 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6398147259\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-04-05T10:18:25.000000Z\",\n                    \"updated_at\": \"2024-04-26T09:07:08.000000Z\"\n                },\n                {\n                    \"id\": 716,\n                    \"reference_id\": \"#POI-716\",\n                    \"stock_order_id\": 442,\n                    \"item_id\": 13,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-05-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6583495587\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-05-06T09:20:43.000000Z\",\n                    \"updated_at\": \"2024-05-07T16:37:38.000000Z\"\n                }\n            ],\n            \"terms\": [\n                {\n                    \"id\": 244,\n                    \"item_id\": 13,\n                    \"term_id\": 25,\n                    \"created_at\": \"2024-04-05T10:25:58.000000Z\",\n                    \"updated_at\": \"2024-04-05T10:25:58.000000Z\",\n                    \"term\": {\n                        \"id\": 25,\n                        \"item_description\": \"Clomid (Clomifene Citrate BP) is indicated for the treatment of ovulatory failure in women desiring pregnancy. I am aware that any usage outside of this indication remains strictly off-label.\",\n                        \"created_at\": \"2022-10-19T09:23:12.000000Z\",\n                        \"updated_at\": \"2022-10-19T09:23:12.000000Z\"\n                    }\n                }\n            ],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 15,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Amitriptyline 10mg Tabs (28)\",\n            \"cost_price\": 0.62,\n            \"price\": 5.99,\n            \"stock\": 0,\n            \"reorder_limit\": 10,\n            \"item_category_id\": 3,\n            \"clinic_limit\": null,\n            \"sku\": \"AMIT10\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 1,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 1,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"item_stocks_sum_received_quantity\": 120,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/a7e9955d-a922-438a-9f8f-6cb76683409e.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=2d20278656205d9423348a633d2bf74acb7701127cb820a07840bb8e3c65a485\",\n            \"item_stocks\": [\n                {\n                    \"id\": 218,\n                    \"reference_id\": \"#POI-218\",\n                    \"stock_order_id\": 114,\n                    \"item_id\": 15,\n                    \"price\": 0.62,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-02-07 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-02-07T13:42:01.000000Z\",\n                    \"updated_at\": \"2024-07-01T16:54:13.000000Z\"\n                },\n                {\n                    \"id\": 301,\n                    \"reference_id\": \"#POI-301\",\n                    \"stock_order_id\": 172,\n                    \"item_id\": 15,\n                    \"price\": 0.62,\n                    \"quantity\": 10,\n                    \"received_quantity\": 5,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-17 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4565169990\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-05-31T16:40:12.000000Z\",\n                    \"updated_at\": \"2023-05-31T16:40:41.000000Z\"\n                },\n                {\n                    \"id\": 302,\n                    \"reference_id\": \"#POI-302\",\n                    \"stock_order_id\": 172,\n                    \"item_id\": 15,\n                    \"price\": 0.62,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4565171310\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-05-31T16:40:40.000000Z\",\n                    \"updated_at\": \"2023-05-31T16:40:41.000000Z\"\n                },\n                {\n                    \"id\": 345,\n                    \"reference_id\": \"#POI-345\",\n                    \"stock_order_id\": 198,\n                    \"item_id\": 15,\n                    \"price\": 0.62,\n                    \"quantity\": 100,\n                    \"received_quantity\": 100,\n                    \"initial_quantity\": \"100\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-16 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4655648127\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-06-15T09:39:27.000000Z\",\n                    \"updated_at\": \"2023-06-16T08:54:51.000000Z\"\n                },\n                {\n                    \"id\": 346,\n                    \"reference_id\": \"#POI-345\",\n                    \"stock_order_id\": 199,\n                    \"item_id\": 15,\n                    \"price\": 0.62,\n                    \"quantity\": 100,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-16 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4655624555\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-06-15T09:39:27.000000Z\",\n                    \"updated_at\": \"2023-06-16T08:46:21.000000Z\"\n                },\n                {\n                    \"id\": 352,\n                    \"reference_id\": \"#POI-352\",\n                    \"stock_order_id\": 199,\n                    \"item_id\": 15,\n                    \"price\": 0.62,\n                    \"quantity\": 90,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4655625700\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-06-16T08:46:20.000000Z\",\n                    \"updated_at\": \"2023-06-16T08:46:21.000000Z\"\n                },\n                {\n                    \"id\": 433,\n                    \"reference_id\": \"#POI-429\",\n                    \"stock_order_id\": 242,\n                    \"item_id\": 15,\n                    \"price\": 0.62,\n                    \"quantity\": 10,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-07 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4769984131\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-07-07T11:21:55.000000Z\",\n                    \"updated_at\": \"2023-07-07T11:25:06.000000Z\"\n                },\n                {\n                    \"id\": 434,\n                    \"reference_id\": \"#POI-434\",\n                    \"stock_order_id\": 242,\n                    \"item_id\": 15,\n                    \"price\": 0.62,\n                    \"quantity\": 90,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4769986270\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-07-07T11:24:00.000000Z\",\n                    \"updated_at\": \"2023-07-07T11:24:01.000000Z\"\n                },\n                {\n                    \"id\": 474,\n                    \"reference_id\": \"#POI-474\",\n                    \"stock_order_id\": 272,\n                    \"item_id\": 15,\n                    \"price\": 0.62,\n                    \"quantity\": 105,\n                    \"received_quantity\": 105,\n                    \"initial_quantity\": \"105\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-18 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5022759337\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-08-21T15:39:02.000000Z\",\n                    \"updated_at\": \"2023-12-18T11:29:15.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 501,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Amitriptyline Tablets 10mg (28)\",\n            \"cost_price\": null,\n            \"price\": 4.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"AMI1028\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-03-13T12:32:21.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/9d0ae615-c53c-4578-ac48-52a79efe8e9a.webp?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=af216616bfdafcecf07f0cdae10371d5cfd3143bead620f0ddee6069dfee7ea8\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 502,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"2\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": null,\n            \"name\": \"Amoxicillin 250mg Capsules (16)\",\n            \"cost_price\": 1,\n            \"price\": 4.85,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"AMOX216\",\n            \"unit\": \"16\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"item_stocks_sum_received_quantity\": 6,\n            \"item_stocks\": [\n                {\n                    \"id\": 220,\n                    \"reference_id\": \"#POI-220\",\n                    \"stock_order_id\": 115,\n                    \"item_id\": 502,\n                    \"price\": 1,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-02-08 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-02-08T15:37:12.000000Z\",\n                    \"updated_at\": \"2023-02-21T15:10:29.000000Z\"\n                },\n                {\n                    \"id\": 267,\n                    \"reference_id\": \"#POI-267\",\n                    \"stock_order_id\": 147,\n                    \"item_id\": 502,\n                    \"price\": 1,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4416530950\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-05-04T10:38:27.000000Z\",\n                    \"updated_at\": \"2023-05-04T10:40:01.000000Z\"\n                },\n                {\n                    \"id\": 350,\n                    \"reference_id\": \"#POI-350\",\n                    \"stock_order_id\": 203,\n                    \"item_id\": 502,\n                    \"price\": 1,\n                    \"quantity\": 100,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4649011051\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-15T10:10:10.000000Z\",\n                    \"updated_at\": \"2023-06-15T10:11:21.000000Z\"\n                },\n                {\n                    \"id\": 461,\n                    \"reference_id\": \"#POI-461\",\n                    \"stock_order_id\": 259,\n                    \"item_id\": 502,\n                    \"price\": 1,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-21 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4851794590\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-07-21T16:13:51.000000Z\",\n                    \"updated_at\": \"2023-07-21T16:50:55.000000Z\"\n                },\n                {\n                    \"id\": 462,\n                    \"reference_id\": \"#POI-462\",\n                    \"stock_order_id\": 260,\n                    \"item_id\": 502,\n                    \"price\": 1,\n                    \"quantity\": 3,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-21 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4852750051\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-07-21T18:29:24.000000Z\",\n                    \"updated_at\": \"2023-07-21T18:32:50.000000Z\"\n                },\n                {\n                    \"id\": 530,\n                    \"reference_id\": \"#POI-530\",\n                    \"stock_order_id\": 310,\n                    \"item_id\": 502,\n                    \"price\": 1,\n                    \"quantity\": 5,\n                    \"received_quantity\": 5,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-11 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5660691538\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-12-11T09:14:30.000000Z\",\n                    \"updated_at\": \"2023-12-11T09:15:31.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 16,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Amoxicillin 500mg Capsules (21)\",\n            \"cost_price\": 1,\n            \"price\": 4.85,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"AMOX500\",\n            \"unit\": \"21\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"item_stocks\": [\n                {\n                    \"id\": 157,\n                    \"reference_id\": \"#POI-157\",\n                    \"stock_order_id\": 81,\n                    \"item_id\": 16,\n                    \"price\": 1,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-25 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-25T10:42:57.000000Z\",\n                    \"updated_at\": \"2022-09-23T15:31:42.000000Z\"\n                },\n                {\n                    \"id\": 679,\n                    \"reference_id\": \"#POI-679\",\n                    \"stock_order_id\": 408,\n                    \"item_id\": 16,\n                    \"price\": 1,\n                    \"quantity\": 100,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"50\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-03-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6204068848\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-03-06T12:19:06.000000Z\",\n                    \"updated_at\": \"2024-04-26T11:45:44.000000Z\"\n                },\n                {\n                    \"id\": 680,\n                    \"reference_id\": \"#POI-680\",\n                    \"stock_order_id\": 408,\n                    \"item_id\": 16,\n                    \"price\": 1,\n                    \"quantity\": 50,\n                    \"received_quantity\": 5,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-03-06 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6204086292\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2024-03-06T12:23:03.000000Z\",\n                    \"updated_at\": \"2024-03-06T12:23:30.000000Z\"\n                },\n                {\n                    \"id\": 681,\n                    \"reference_id\": \"#POI-681\",\n                    \"stock_order_id\": 408,\n                    \"item_id\": 16,\n                    \"price\": 1,\n                    \"quantity\": 45,\n                    \"received_quantity\": 5,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-03-06 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6204087344\",\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2024-03-06T12:23:23.000000Z\",\n                    \"updated_at\": \"2024-03-06T12:23:57.000000Z\"\n                },\n                {\n                    \"id\": 682,\n                    \"reference_id\": \"#POI-682\",\n                    \"stock_order_id\": 408,\n                    \"item_id\": 16,\n                    \"price\": 1,\n                    \"quantity\": 40,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6204089850\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2024-03-06T12:23:46.000000Z\",\n                    \"updated_at\": \"2024-03-06T12:23:47.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 503,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"2\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": null,\n            \"name\": \"Amoxicillin Sachets 3g (2)\",\n            \"cost_price\": 9.85,\n            \"price\": 14.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"AMOX3G\",\n            \"unit\": \"1x2\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"item_stocks_sum_received_quantity\": 2,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/28a424c7-a66a-4319-8966-eba7af6e06bc.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=7f05ecff8fc19b271164a4fe9aedaac2473c4ec7b0d0b60f113090a6c8d4c8ef\",\n            \"item_stocks\": [\n                {\n                    \"id\": 60,\n                    \"reference_id\": \"#POI-60\",\n                    \"stock_order_id\": 29,\n                    \"item_id\": 503,\n                    \"price\": 9.85,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-28 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-28T17:07:35.000000Z\",\n                    \"updated_at\": \"2022-09-01T09:50:45.000000Z\"\n                },\n                {\n                    \"id\": 61,\n                    \"reference_id\": \"#POI-61\",\n                    \"stock_order_id\": 29,\n                    \"item_id\": 503,\n                    \"price\": 9.85,\n                    \"quantity\": 3,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"owning\",\n                    \"created_at\": \"2022-07-28T17:08:15.000000Z\",\n                    \"updated_at\": \"2022-07-28T17:08:15.000000Z\"\n                },\n                {\n                    \"id\": 237,\n                    \"reference_id\": \"#POI-237\",\n                    \"stock_order_id\": 127,\n                    \"item_id\": 503,\n                    \"price\": 9.85,\n                    \"quantity\": 1,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-04-03T13:51:39.000000Z\",\n                    \"updated_at\": \"2023-04-03T13:51:39.000000Z\"\n                },\n                {\n                    \"id\": 442,\n                    \"reference_id\": \"#POI-442\",\n                    \"stock_order_id\": 247,\n                    \"item_id\": 503,\n                    \"price\": 9.85,\n                    \"quantity\": 5,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-07 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4770078936\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-07-07T11:42:04.000000Z\",\n                    \"updated_at\": \"2023-07-07T12:17:02.000000Z\"\n                },\n                {\n                    \"id\": 443,\n                    \"reference_id\": \"#POI-443\",\n                    \"stock_order_id\": 247,\n                    \"item_id\": 503,\n                    \"price\": 9.85,\n                    \"quantity\": 3,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-07 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4770174278\",\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2023-07-07T12:17:02.000000Z\",\n                    \"updated_at\": \"2023-07-07T12:17:23.000000Z\"\n                },\n                {\n                    \"id\": 444,\n                    \"reference_id\": \"#POI-444\",\n                    \"stock_order_id\": 247,\n                    \"item_id\": 503,\n                    \"price\": 9.85,\n                    \"quantity\": 2,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-07 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4770175038\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-07-07T12:17:14.000000Z\",\n                    \"updated_at\": \"2023-07-07T12:17:42.000000Z\"\n                },\n                {\n                    \"id\": 445,\n                    \"reference_id\": \"#POI-445\",\n                    \"stock_order_id\": 247,\n                    \"item_id\": 503,\n                    \"price\": 9.85,\n                    \"quantity\": 1,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-07 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4770176801\",\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2023-07-07T12:17:34.000000Z\",\n                    \"updated_at\": \"2023-07-07T12:20:19.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 17,\n            \"monday_com_id\": \"4527776178\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": \"10\",\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Anastrazole Tablets 1mg (28)\",\n            \"cost_price\": 1.5,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": 5,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ANA1\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"item_stocks_sum_received_quantity\": 27,\n            \"item_stocks\": [\n                {\n                    \"id\": 284,\n                    \"reference_id\": \"#POI-284\",\n                    \"stock_order_id\": 157,\n                    \"item_id\": 17,\n                    \"price\": 1.5,\n                    \"quantity\": 10,\n                    \"received_quantity\": 7,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-17 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4527717566\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-05-24T13:10:49.000000Z\",\n                    \"updated_at\": \"2024-06-28T17:06:31.000000Z\"\n                },\n                {\n                    \"id\": 343,\n                    \"reference_id\": \"#POI-343\",\n                    \"stock_order_id\": 196,\n                    \"item_id\": 17,\n                    \"price\": 1.5,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4648856925\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-15T09:37:50.000000Z\",\n                    \"updated_at\": \"2023-06-15T09:37:50.000000Z\"\n                },\n                {\n                    \"id\": 344,\n                    \"reference_id\": \"#POI-344\",\n                    \"stock_order_id\": 197,\n                    \"item_id\": 17,\n                    \"price\": 1.5,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4648857082\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-15T09:37:51.000000Z\",\n                    \"updated_at\": \"2023-06-15T09:37:51.000000Z\"\n                },\n                {\n                    \"id\": 368,\n                    \"reference_id\": \"#POI-368\",\n                    \"stock_order_id\": 210,\n                    \"item_id\": 17,\n                    \"price\": 1.5,\n                    \"quantity\": 10,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-20 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4673711220\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-06-20T14:01:05.000000Z\",\n                    \"updated_at\": \"2023-06-20T14:15:08.000000Z\"\n                },\n                {\n                    \"id\": 395,\n                    \"reference_id\": \"#POI-395\",\n                    \"stock_order_id\": 223,\n                    \"item_id\": 17,\n                    \"price\": 1.5,\n                    \"quantity\": 10,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-27 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4710342013\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-06-27T08:24:27.000000Z\",\n                    \"updated_at\": \"2023-06-27T08:25:01.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 18,\n            \"monday_com_id\": \"5772063446\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Apron Disposable Flatpack White - 16Microns. 686x1170mm\",\n            \"cost_price\": 7.4,\n            \"price\": 15.75,\n            \"stock\": -1,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"APRDIS100\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"item_stocks\": [\n                {\n                    \"id\": 101,\n                    \"reference_id\": \"#POI-101\",\n                    \"stock_order_id\": 44,\n                    \"item_id\": 18,\n                    \"price\": 7.4,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-03 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-03T14:29:00.000000Z\",\n                    \"updated_at\": \"2022-08-10T10:59:22.000000Z\"\n                },\n                {\n                    \"id\": 173,\n                    \"reference_id\": \"#POI-173\",\n                    \"stock_order_id\": 88,\n                    \"item_id\": 18,\n                    \"price\": 7.4,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-09-15 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-09-15T10:00:59.000000Z\",\n                    \"updated_at\": \"2022-09-22T07:48:04.000000Z\"\n                },\n                {\n                    \"id\": 175,\n                    \"reference_id\": \"#POI-175\",\n                    \"stock_order_id\": 88,\n                    \"item_id\": 18,\n                    \"price\": 7.4,\n                    \"quantity\": 7,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"owning\",\n                    \"created_at\": \"2022-09-15T10:09:24.000000Z\",\n                    \"updated_at\": \"2022-09-15T10:09:24.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 19,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Apron Disposable on a Roll White - 27\\\" x 46\\\"\",\n            \"cost_price\": 7.4,\n            \"price\": 24.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": 3,\n            \"clinic_limit\": null,\n            \"sku\": \"APRDISWHI\",\n            \"unit\": \"1 x 200\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/a093889d-1243-4ab0-b66b-5d97f6184309.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=7950ea57da06713f35b5426a38c773dd228df923ddcb7b5c4a87cf697b80a0bb\",\n            \"item_stocks\": [\n                {\n                    \"id\": 174,\n                    \"reference_id\": \"#POI-174\",\n                    \"stock_order_id\": 88,\n                    \"item_id\": 19,\n                    \"price\": 7.4,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-09-15 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-09-15T10:00:59.000000Z\",\n                    \"updated_at\": \"2022-09-22T07:48:04.000000Z\"\n                },\n                {\n                    \"id\": 176,\n                    \"reference_id\": \"#POI-176\",\n                    \"stock_order_id\": 88,\n                    \"item_id\": 19,\n                    \"price\": 7.4,\n                    \"quantity\": 8,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"owning\",\n                    \"created_at\": \"2022-09-15T10:09:53.000000Z\",\n                    \"updated_at\": \"2022-09-15T10:09:53.000000Z\"\n                },\n                {\n                    \"id\": 295,\n                    \"reference_id\": \"#POI-295\",\n                    \"stock_order_id\": 164,\n                    \"item_id\": 19,\n                    \"price\": 7.4,\n                    \"quantity\": 1,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4562195164\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-05-31T09:05:20.000000Z\",\n                    \"updated_at\": \"2023-05-31T09:19:57.000000Z\"\n                },\n                {\n                    \"id\": 471,\n                    \"reference_id\": \"#POI-470\",\n                    \"stock_order_id\": 269,\n                    \"item_id\": 19,\n                    \"price\": 7.4,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-08-07 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4940998857\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-08-07T10:14:34.000000Z\",\n                    \"updated_at\": \"2023-11-10T13:18:20.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 20,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Aqualyx (10 x 8ml)\",\n            \"cost_price\": 158.4,\n            \"price\": 174.99,\n            \"stock\": -5,\n            \"reorder_limit\": 20,\n            \"item_category_id\": 2,\n            \"clinic_limit\": null,\n            \"sku\": \"AQU\",\n            \"unit\": \"10 x 8ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"item_stocks\": [\n                {\n                    \"id\": 20,\n                    \"reference_id\": \"#POI-20\",\n                    \"stock_order_id\": 13,\n                    \"item_id\": 20,\n                    \"price\": 158.4,\n                    \"quantity\": 50,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-05 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-21T09:45:33.000000Z\",\n                    \"updated_at\": \"2022-09-22T07:48:04.000000Z\"\n                },\n                {\n                    \"id\": 22,\n                    \"reference_id\": \"#POI-22\",\n                    \"stock_order_id\": 13,\n                    \"item_id\": 20,\n                    \"price\": 158.4,\n                    \"quantity\": 40,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"owning\",\n                    \"created_at\": \"2022-07-21T11:33:25.000000Z\",\n                    \"updated_at\": \"2022-07-21T11:33:25.000000Z\"\n                },\n                {\n                    \"id\": 297,\n                    \"reference_id\": \"#POI-297\",\n                    \"stock_order_id\": 167,\n                    \"item_id\": 20,\n                    \"price\": 158.4,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-25 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4565119548\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-05-31T16:35:26.000000Z\",\n                    \"updated_at\": \"2023-06-22T08:37:35.000000Z\"\n                },\n                {\n                    \"id\": 298,\n                    \"reference_id\": \"#POI-298\",\n                    \"stock_order_id\": 167,\n                    \"item_id\": 20,\n                    \"price\": 158.4,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4565122151\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-05-31T16:36:14.000000Z\",\n                    \"updated_at\": \"2023-05-31T16:36:15.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 504,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Aqualyx (5 x 8ml)\",\n            \"cost_price\": 79.2,\n            \"price\": 112.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"AQU5\",\n            \"unit\": \"5 x 8ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 0,\n            \"face_to_face_consultations\": 1,\n            \"is_bmi_required\": 1,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"item_stocks\": [\n                {\n                    \"id\": 357,\n                    \"reference_id\": \"#POI-357\",\n                    \"stock_order_id\": 207,\n                    \"item_id\": 504,\n                    \"price\": 79.2,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-13 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4655750788\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-06-16T09:24:55.000000Z\",\n                    \"updated_at\": \"2023-11-15T12:59:27.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 21,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Arnica Cream (30g)\",\n            \"cost_price\": 2.7,\n            \"price\": 3.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ARNCR30\",\n            \"unit\": \"1 x 30G\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 110,\n                    \"reference_id\": \"#POI-110\",\n                    \"stock_order_id\": 52,\n                    \"item_id\": 21,\n                    \"price\": 2.7,\n                    \"quantity\": 8,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-08-05T18:12:11.000000Z\",\n                    \"updated_at\": \"2022-08-05T18:12:11.000000Z\"\n                },\n                {\n                    \"id\": 396,\n                    \"reference_id\": \"#POI-396\",\n                    \"stock_order_id\": 223,\n                    \"item_id\": 21,\n                    \"price\": 2.7,\n                    \"quantity\": 10,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-27 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4710342039\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-06-27T08:24:28.000000Z\",\n                    \"updated_at\": \"2023-06-27T09:32:18.000000Z\"\n                },\n                {\n                    \"id\": 624,\n                    \"reference_id\": \"#POI-624\",\n                    \"stock_order_id\": 373,\n                    \"item_id\": 21,\n                    \"price\": 2.7,\n                    \"quantity\": 1,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6052315103\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-13T08:28:13.000000Z\",\n                    \"updated_at\": \"2024-02-13T08:28:13.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 22,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Arnica Cream (50g)\",\n            \"cost_price\": 3.66,\n            \"price\": 5.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ARNCR50\",\n            \"unit\": \"1 x 50g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 0,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 475,\n                    \"reference_id\": \"#POI-475\",\n                    \"stock_order_id\": 272,\n                    \"item_id\": 22,\n                    \"price\": 3.66,\n                    \"quantity\": 100,\n                    \"received_quantity\": 100,\n                    \"initial_quantity\": \"100\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-18 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5022759385\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-08-21T15:39:02.000000Z\",\n                    \"updated_at\": \"2023-12-18T11:29:22.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 23,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": null,\n            \"name\": \"Arnica Gel (30g)\",\n            \"cost_price\": 2.38,\n            \"price\": 3.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": 4,\n            \"clinic_limit\": null,\n            \"sku\": \"ARNGEL30\",\n            \"unit\": \"1 x 30G\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-03-12T12:19:54.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"item_stocks\": [\n                {\n                    \"id\": 113,\n                    \"reference_id\": \"#POI-113\",\n                    \"stock_order_id\": 54,\n                    \"item_id\": 23,\n                    \"price\": 2.38,\n                    \"quantity\": 20,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"20\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-07 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-07T19:40:06.000000Z\",\n                    \"updated_at\": \"2022-10-06T10:37:38.000000Z\"\n                },\n                {\n                    \"id\": 182,\n                    \"reference_id\": \"#POI-182\",\n                    \"stock_order_id\": 94,\n                    \"item_id\": 23,\n                    \"price\": 2.38,\n                    \"quantity\": 6,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-10-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-10-06T09:54:42.000000Z\",\n                    \"updated_at\": \"2022-12-19T13:44:00.000000Z\"\n                },\n                {\n                    \"id\": 183,\n                    \"reference_id\": \"#POI-183\",\n                    \"stock_order_id\": 94,\n                    \"item_id\": 23,\n                    \"price\": 2.38,\n                    \"quantity\": 4,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"4\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-12-27 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-10-06T09:55:55.000000Z\",\n                    \"updated_at\": \"2023-11-07T11:19:00.000000Z\"\n                },\n                {\n                    \"id\": 640,\n                    \"reference_id\": \"#POI-638\",\n                    \"stock_order_id\": 382,\n                    \"item_id\": 23,\n                    \"price\": 2.38,\n                    \"quantity\": 1,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-13 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6055323183\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-02-13T16:10:34.000000Z\",\n                    \"updated_at\": \"2024-03-12T12:10:34.000000Z\"\n                },\n                {\n                    \"id\": 641,\n                    \"reference_id\": \"#POI-641\",\n                    \"stock_order_id\": 382,\n                    \"item_id\": 23,\n                    \"price\": 2.38,\n                    \"quantity\": 1,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-13 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"6055353295\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-02-13T16:13:30.000000Z\",\n                    \"updated_at\": \"2024-03-12T12:10:34.000000Z\"\n                }\n            ],\n            \"terms\": [\n                {\n                    \"id\": 224,\n                    \"item_id\": 23,\n                    \"term_id\": 24,\n                    \"created_at\": \"2022-12-02T12:37:11.000000Z\",\n                    \"updated_at\": \"2022-12-02T12:37:11.000000Z\",\n                    \"term\": {\n                        \"id\": 24,\n                        \"item_description\": \"I confirm a physical face to face consultation has been carried with the patient before this treatment has been prescribed.\",\n                        \"created_at\": \"2022-10-19T09:21:49.000000Z\",\n                        \"updated_at\": \"2022-10-19T09:21:49.000000Z\"\n                    }\n                }\n            ],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 505,\n            \"monday_com_id\": \"4281832719\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"2\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Aspirin Tablets 300mg 1 x 32)\",\n            \"cost_price\": 0,\n            \"price\": 4.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ASP300\",\n            \"unit\": \"1 x 32\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 0,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"item_stocks_sum_received_quantity\": 173,\n            \"item_stocks\": [\n                {\n                    \"id\": 221,\n                    \"reference_id\": \"#POI-221\",\n                    \"stock_order_id\": 116,\n                    \"item_id\": 505,\n                    \"price\": 0.5,\n                    \"quantity\": 100,\n                    \"received_quantity\": 93,\n                    \"initial_quantity\": \"100\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-02-13 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-02-13T14:09:54.000000Z\",\n                    \"updated_at\": \"2024-06-28T17:06:31.000000Z\"\n                },\n                {\n                    \"id\": 331,\n                    \"reference_id\": \"#POI-331\",\n                    \"stock_order_id\": 189,\n                    \"item_id\": 505,\n                    \"price\": 0.5,\n                    \"quantity\": 100,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-15 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4648790133\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-06-15T09:22:18.000000Z\",\n                    \"updated_at\": \"2023-06-15T09:22:50.000000Z\"\n                },\n                {\n                    \"id\": 332,\n                    \"reference_id\": \"#POI-332\",\n                    \"stock_order_id\": 189,\n                    \"item_id\": 505,\n                    \"price\": 0.5,\n                    \"quantity\": 10,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-15 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4648790837\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-06-15T09:22:50.000000Z\",\n                    \"updated_at\": \"2023-06-15T09:24:03.000000Z\"\n                },\n                {\n                    \"id\": 333,\n                    \"reference_id\": \"#POI-333\",\n                    \"stock_order_id\": 189,\n                    \"item_id\": 505,\n                    \"price\": 0.5,\n                    \"quantity\": 80,\n                    \"received_quantity\": 50,\n                    \"initial_quantity\": \"50\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-15 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4648791917\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-06-15T09:23:09.000000Z\",\n                    \"updated_at\": \"2023-06-15T09:24:45.000000Z\"\n                },\n                {\n                    \"id\": 334,\n                    \"reference_id\": \"#POI-334\",\n                    \"stock_order_id\": 189,\n                    \"item_id\": 505,\n                    \"price\": 0.5,\n                    \"quantity\": 20,\n                    \"received_quantity\": 20,\n                    \"initial_quantity\": \"20\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-15 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4648800788\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-06-15T09:24:45.000000Z\",\n                    \"updated_at\": \"2023-06-15T09:25:21.000000Z\"\n                },\n                {\n                    \"id\": 455,\n                    \"reference_id\": \"#POI-455\",\n                    \"stock_order_id\": 255,\n                    \"item_id\": 505,\n                    \"price\": 0.5,\n                    \"quantity\": 1,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4789690943\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-07-11T16:54:15.000000Z\",\n                    \"updated_at\": \"2023-07-11T16:54:15.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 24,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"0\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Atropine Injection 600 mcg / 1ml (1 x 10)\",\n            \"cost_price\": 11.71,\n            \"price\": 15.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"A7001498\",\n            \"unit\": \"1 x 10\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 1,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-04-04T14:48:27.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"item_stocks\": [\n                {\n                    \"id\": 171,\n                    \"reference_id\": \"#POI-171\",\n                    \"stock_order_id\": 86,\n                    \"item_id\": 24,\n                    \"price\": 11.71,\n                    \"quantity\": 1,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-09-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-09-12T16:43:33.000000Z\",\n                    \"updated_at\": \"2023-01-03T11:34:15.000000Z\"\n                },\n                {\n                    \"id\": 172,\n                    \"reference_id\": \"#POI-172\",\n                    \"stock_order_id\": 87,\n                    \"item_id\": 24,\n                    \"price\": 11.71,\n                    \"quantity\": 12,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-09-12T17:05:02.000000Z\",\n                    \"updated_at\": \"2022-09-12T17:05:02.000000Z\"\n                },\n                {\n                    \"id\": 328,\n                    \"reference_id\": \"#POI-328\",\n                    \"stock_order_id\": 188,\n                    \"item_id\": 24,\n                    \"price\": 11.71,\n                    \"quantity\": 50,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4641697829\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-14T12:06:13.000000Z\",\n                    \"updated_at\": \"2023-06-14T12:15:36.000000Z\"\n                },\n                {\n                    \"id\": 424,\n                    \"reference_id\": \"#POI-424\",\n                    \"stock_order_id\": 237,\n                    \"item_id\": 24,\n                    \"price\": 11.71,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4766088695\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-07-06T18:29:08.000000Z\",\n                    \"updated_at\": \"2023-08-04T14:07:53.000000Z\"\n                },\n                {\n                    \"id\": 425,\n                    \"reference_id\": \"#POI-425\",\n                    \"stock_order_id\": 237,\n                    \"item_id\": 24,\n                    \"price\": 11.71,\n                    \"quantity\": 4,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-06 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4766090180\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-07-06T18:32:06.000000Z\",\n                    \"updated_at\": \"2023-07-06T18:32:22.000000Z\"\n                },\n                {\n                    \"id\": 426,\n                    \"reference_id\": \"#POI-426\",\n                    \"stock_order_id\": 237,\n                    \"item_id\": 24,\n                    \"price\": 11.71,\n                    \"quantity\": 3,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-06 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4766093480\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-07-06T18:32:22.000000Z\",\n                    \"updated_at\": \"2023-07-06T18:35:06.000000Z\"\n                },\n                {\n                    \"id\": 427,\n                    \"reference_id\": \"#POI-427\",\n                    \"stock_order_id\": 237,\n                    \"item_id\": 24,\n                    \"price\": 11.71,\n                    \"quantity\": 2,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-06 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4766113870\",\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2023-07-06T18:34:59.000000Z\",\n                    \"updated_at\": \"2023-07-06T18:36:02.000000Z\"\n                },\n                {\n                    \"id\": 428,\n                    \"reference_id\": \"#POI-428\",\n                    \"stock_order_id\": 237,\n                    \"item_id\": 24,\n                    \"price\": 11.71,\n                    \"quantity\": 1,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-06 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4766119287\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-07-06T18:35:55.000000Z\",\n                    \"updated_at\": \"2023-07-06T18:58:19.000000Z\"\n                },\n                {\n                    \"id\": 646,\n                    \"reference_id\": \"#POI-645\",\n                    \"stock_order_id\": 385,\n                    \"item_id\": 24,\n                    \"price\": 11.71,\n                    \"quantity\": 1,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6061781254\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-14T12:40:52.000000Z\",\n                    \"updated_at\": \"2024-02-14T12:40:52.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 678,\n            \"monday_com_id\": \"4355694897\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": null,\n            \"name\": \"Auro test\",\n            \"cost_price\": 12,\n            \"price\": 25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": 2,\n            \"clinic_limit\": null,\n            \"sku\": \"AURO400\",\n            \"unit\": \"kg\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": \"\",\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 1,\n            \"created_at\": \"2022-08-09T10:13:18.000000Z\",\n            \"updated_at\": \"2024-04-26T15:26:42.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"item_stocks\": [\n                {\n                    \"id\": 120,\n                    \"reference_id\": \"#POI-120\",\n                    \"stock_order_id\": 60,\n                    \"item_id\": 678,\n                    \"price\": 12,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-08 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-09T10:31:49.000000Z\",\n                    \"updated_at\": \"2022-08-09T15:53:28.000000Z\"\n                },\n                {\n                    \"id\": 121,\n                    \"reference_id\": \"#POI-121\",\n                    \"stock_order_id\": 60,\n                    \"item_id\": 678,\n                    \"price\": 12,\n                    \"quantity\": 8,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"8\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-09 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-09T12:00:21.000000Z\",\n                    \"updated_at\": \"2023-04-24T09:29:25.000000Z\"\n                },\n                {\n                    \"id\": 132,\n                    \"reference_id\": \"#POI-132\",\n                    \"stock_order_id\": 66,\n                    \"item_id\": 678,\n                    \"price\": 12,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-04 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-09T16:12:56.000000Z\",\n                    \"updated_at\": \"2023-06-22T08:39:15.000000Z\"\n                },\n                {\n                    \"id\": 498,\n                    \"reference_id\": \"#POI-498\",\n                    \"stock_order_id\": 287,\n                    \"item_id\": 678,\n                    \"price\": 12,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5148418660\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-09-12T16:09:35.000000Z\",\n                    \"updated_at\": \"2023-09-12T16:09:35.000000Z\"\n                },\n                {\n                    \"id\": 537,\n                    \"reference_id\": \"#POI-535\",\n                    \"stock_order_id\": 317,\n                    \"item_id\": 678,\n                    \"price\": 12,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-11 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5660756189\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-12-11T09:31:07.000000Z\",\n                    \"updated_at\": \"2024-01-02T16:12:40.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 663,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"axynco1-BT\",\n            \"cost_price\": null,\n            \"price\": 10,\n            \"stock\": 25,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"124\",\n            \"unit\": \"cm\",\n            \"vat\": 0,\n            \"brand\": \"Teosyal\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2022-03-21T04:31:59.000000Z\",\n            \"updated_at\": \"2024-04-04T14:17:30.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"item_stocks\": [\n                {\n                    \"id\": 520,\n                    \"reference_id\": \"#POI-520\",\n                    \"stock_order_id\": 301,\n                    \"item_id\": 663,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-11-29 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5593492526\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-11-29T16:17:22.000000Z\",\n                    \"updated_at\": \"2024-03-13T08:31:29.000000Z\"\n                },\n                {\n                    \"id\": 521,\n                    \"reference_id\": \"#POI-521\",\n                    \"stock_order_id\": 301,\n                    \"item_id\": 663,\n                    \"price\": 0,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-11-20 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"5593526059\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-11-29T16:19:48.000000Z\",\n                    \"updated_at\": \"2024-03-13T08:31:29.000000Z\"\n                },\n                {\n                    \"id\": 691,\n                    \"reference_id\": \"#POI-691\",\n                    \"stock_order_id\": 417,\n                    \"item_id\": 663,\n                    \"price\": 0,\n                    \"quantity\": 3,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-03-19 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6285413195\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-03-19T10:17:45.000000Z\",\n                    \"updated_at\": \"2024-04-04T14:19:34.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 25,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"3\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": null,\n            \"name\": \"Azelaic acid (Finacea) Gel 15% (30g)\",\n            \"cost_price\": 7.48,\n            \"price\": 11.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": 4,\n            \"clinic_limit\": null,\n            \"sku\": \"3243706\",\n            \"unit\": \"1 X 30g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"item_stocks_sum_received_quantity\": 3,\n            \"item_stocks\": [\n                {\n                    \"id\": 156,\n                    \"reference_id\": \"#POI-156\",\n                    \"stock_order_id\": 80,\n                    \"item_id\": 25,\n                    \"price\": 7.48,\n                    \"quantity\": 1,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-31 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-18T10:04:38.000000Z\",\n                    \"updated_at\": \"2022-09-19T16:39:53.000000Z\"\n                },\n                {\n                    \"id\": 367,\n                    \"reference_id\": \"#POI-367\",\n                    \"stock_order_id\": 210,\n                    \"item_id\": 25,\n                    \"price\": 7.48,\n                    \"quantity\": 10,\n                    \"received_quantity\": 3,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-20 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4673711140\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-06-20T14:01:04.000000Z\",\n                    \"updated_at\": \"2023-09-26T14:48:43.000000Z\"\n                },\n                {\n                    \"id\": 369,\n                    \"reference_id\": \"#POI-369\",\n                    \"stock_order_id\": 210,\n                    \"item_id\": 25,\n                    \"price\": 7.48,\n                    \"quantity\": 5,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-20 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4673733723\",\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2023-06-20T14:07:24.000000Z\",\n                    \"updated_at\": \"2023-06-20T14:15:27.000000Z\"\n                },\n                {\n                    \"id\": 370,\n                    \"reference_id\": \"#POI-370\",\n                    \"stock_order_id\": 210,\n                    \"item_id\": 25,\n                    \"price\": 7.48,\n                    \"quantity\": 3,\n                    \"received_quantity\": 3,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-20 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4673795151\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-06-20T14:15:15.000000Z\",\n                    \"updated_at\": \"2023-06-20T14:15:46.000000Z\"\n                },\n                {\n                    \"id\": 583,\n                    \"reference_id\": \"#POI-583\",\n                    \"stock_order_id\": 350,\n                    \"item_id\": 25,\n                    \"price\": 7.48,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5997524353\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-05T09:49:35.000000Z\",\n                    \"updated_at\": \"2024-02-05T09:49:36.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 26,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"3\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Azithromycin Tab 500mg (3)\",\n            \"cost_price\": 1.26,\n            \"price\": 10.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"1 x 3\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"item_stocks\": [\n                {\n                    \"id\": 500,\n                    \"reference_id\": \"#POI-500\",\n                    \"stock_order_id\": 289,\n                    \"item_id\": 26,\n                    \"price\": 1.26,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-09-12 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5148487307\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-09-12T16:16:51.000000Z\",\n                    \"updated_at\": \"2024-01-17T17:51:24.000000Z\"\n                },\n                {\n                    \"id\": 501,\n                    \"reference_id\": \"#POI-501\",\n                    \"stock_order_id\": 289,\n                    \"item_id\": 26,\n                    \"price\": 1.26,\n                    \"quantity\": 8,\n                    \"received_quantity\": 3,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-09-10 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"5148536521\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-09-12T16:22:29.000000Z\",\n                    \"updated_at\": \"2023-09-12T16:24:38.000000Z\"\n                },\n                {\n                    \"id\": 502,\n                    \"reference_id\": \"#POI-502\",\n                    \"stock_order_id\": 289,\n                    \"item_id\": 26,\n                    \"price\": 1.26,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"5148553586\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-09-12T16:24:37.000000Z\",\n                    \"updated_at\": \"2023-09-12T16:24:38.000000Z\"\n                },\n                {\n                    \"id\": 548,\n                    \"reference_id\": \"#POI-548\",\n                    \"stock_order_id\": 327,\n                    \"item_id\": 26,\n                    \"price\": 1.26,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5702921944\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-12-18T12:59:14.000000Z\",\n                    \"updated_at\": \"2023-12-18T12:59:14.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 506,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Azithromycin Tablets 500mg (3)\",\n            \"cost_price\": 0,\n            \"price\": 4.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"AZI500\",\n            \"unit\": \"1 x 3\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/622d8cbd-f147-400e-a789-4db7c1935197.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=3d355367f1bf4945c35b36a78fd6265f3772deb4f004e94cc1600cc6c3c39fdd\",\n            \"item_stocks\": [\n                {\n                    \"id\": 35,\n                    \"reference_id\": \"#POI-35\",\n                    \"stock_order_id\": 21,\n                    \"item_id\": 506,\n                    \"price\": 0.8,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-20 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-27T10:48:46.000000Z\",\n                    \"updated_at\": \"2022-08-16T16:16:06.000000Z\"\n                },\n                {\n                    \"id\": 36,\n                    \"reference_id\": \"#POI-36\",\n                    \"stock_order_id\": 21,\n                    \"item_id\": 506,\n                    \"price\": 0.8,\n                    \"quantity\": 8,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-26 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2022-07-27T11:33:09.000000Z\",\n                    \"updated_at\": \"2022-07-27T11:33:37.000000Z\"\n                },\n                {\n                    \"id\": 37,\n                    \"reference_id\": \"#POI-37\",\n                    \"stock_order_id\": 21,\n                    \"item_id\": 506,\n                    \"price\": 0.8,\n                    \"quantity\": 7,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-01 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-27T11:33:37.000000Z\",\n                    \"updated_at\": \"2022-09-22T08:47:59.000000Z\"\n                },\n                {\n                    \"id\": 74,\n                    \"reference_id\": \"#POI-74\",\n                    \"stock_order_id\": 21,\n                    \"item_id\": 506,\n                    \"price\": 0.8,\n                    \"quantity\": 6,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-01 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-01T17:37:11.000000Z\",\n                    \"updated_at\": \"2022-12-05T08:56:45.000000Z\"\n                },\n                {\n                    \"id\": 75,\n                    \"reference_id\": \"#POI-75\",\n                    \"stock_order_id\": 21,\n                    \"item_id\": 506,\n                    \"price\": 0.8,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"owning\",\n                    \"created_at\": \"2022-08-01T17:37:45.000000Z\",\n                    \"updated_at\": \"2022-08-01T17:37:45.000000Z\"\n                },\n                {\n                    \"id\": 446,\n                    \"reference_id\": \"#POI-446\",\n                    \"stock_order_id\": 248,\n                    \"item_id\": 506,\n                    \"price\": 0.8,\n                    \"quantity\": 2,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-05 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4770193067\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-07-07T12:21:24.000000Z\",\n                    \"updated_at\": \"2023-07-07T12:23:28.000000Z\"\n                },\n                {\n                    \"id\": 447,\n                    \"reference_id\": \"#POI-447\",\n                    \"stock_order_id\": 248,\n                    \"item_id\": 506,\n                    \"price\": 0.8,\n                    \"quantity\": 1,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-07 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4770194935\",\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2023-07-07T12:22:24.000000Z\",\n                    \"updated_at\": \"2023-07-07T12:23:09.000000Z\"\n                },\n                {\n                    \"id\": 448,\n                    \"reference_id\": \"#POI-448\",\n                    \"stock_order_id\": 249,\n                    \"item_id\": 506,\n                    \"price\": 0.8,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4770221842\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-07-07T12:29:30.000000Z\",\n                    \"updated_at\": \"2023-07-07T12:29:30.000000Z\"\n                },\n                {\n                    \"id\": 556,\n                    \"reference_id\": \"#POI-556\",\n                    \"stock_order_id\": 333,\n                    \"item_id\": 506,\n                    \"price\": 0,\n                    \"quantity\": 4,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5772129409\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-01-02T17:02:52.000000Z\",\n                    \"updated_at\": \"2024-01-02T17:02:53.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 27,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Azo Wipes (200)\",\n            \"cost_price\": 4.64,\n            \"price\": 8.7,\n            \"stock\": 2,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"AZOWIP200\",\n            \"unit\": \"1 x 200\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/a53da1ad-3a94-492e-a091-1cf7f31cdfda.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=2e320e2006974515b2cf54eac12447d64949d6bcf23503ca6428d236e13d301c\",\n            \"item_stocks\": [\n                {\n                    \"id\": 112,\n                    \"reference_id\": \"#POI-112\",\n                    \"stock_order_id\": 53,\n                    \"item_id\": 27,\n                    \"price\": 4.64,\n                    \"quantity\": 2,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-03 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2022-08-05T18:27:18.000000Z\",\n                    \"updated_at\": \"2022-08-05T18:29:00.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 29,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"45\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Azzalure Vial 1 x125u\",\n            \"cost_price\": 49.25,\n            \"price\": 66.25,\n            \"stock\": 21,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"AZZ1X1\",\n            \"unit\": \"1 x 125u\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 0,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 1,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-03-05T09:39:00.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/49514f1e-1b5d-4fca-93f5-af0d12d80783.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=c919bdacee2ddb45b42e1eb032c94bea05287132dc0281ae7288508f2783a310\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 30,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Bacteriostatic Saline 0.9% Vial\",\n            \"cost_price\": 4,\n            \"price\": 5.49,\n            \"stock\": 1000,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BACSAL30\",\n            \"unit\": \"30ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 170,\n                    \"reference_id\": \"#POI-170\",\n                    \"stock_order_id\": 85,\n                    \"item_id\": 30,\n                    \"price\": 4,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-09-12T16:42:17.000000Z\",\n                    \"updated_at\": \"2022-09-12T16:42:17.000000Z\"\n                },\n                {\n                    \"id\": 730,\n                    \"reference_id\": \"#POI-730\",\n                    \"stock_order_id\": 451,\n                    \"item_id\": 30,\n                    \"price\": 4,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6603875137\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-05-08T16:42:20.000000Z\",\n                    \"updated_at\": \"2024-05-08T16:42:21.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 507,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Bactroban (Mupirocin 2% Cream) 15g\",\n            \"cost_price\": 5.26,\n            \"price\": 8.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"2702751\",\n            \"unit\": \"1 x 15g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/d2ca4f2e-9c03-4eee-aff0-898582acec63.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=289fb6dd118fc2fd63ff1e92573d3638577b78ea5c47ae237d952a9f758a161a\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 508,\n            \"monday_com_id\": \"4541582905\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": \"5\",\n            \"clinic_per_quota\": \"2\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Bactroban Nasal Ointment (3\",\n            \"cost_price\": 4.24,\n            \"price\": 6.36,\n            \"stock\": 0,\n            \"reorder_limit\": 4,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BACNO\",\n            \"unit\": \"1 x 3g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"item_stocks\": [\n                {\n                    \"id\": 255,\n                    \"reference_id\": \"#POI-255\",\n                    \"stock_order_id\": 141,\n                    \"item_id\": 508,\n                    \"price\": 4.24,\n                    \"quantity\": 12,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-12 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4332237858\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-04-19T04:10:00.000000Z\",\n                    \"updated_at\": \"2024-01-17T16:10:38.000000Z\"\n                },\n                {\n                    \"id\": 256,\n                    \"reference_id\": \"#POI-256\",\n                    \"stock_order_id\": 141,\n                    \"item_id\": 508,\n                    \"price\": 4.24,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4332238320\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-04-19T04:10:28.000000Z\",\n                    \"updated_at\": \"2023-04-19T04:10:28.000000Z\"\n                },\n                {\n                    \"id\": 290,\n                    \"reference_id\": \"#POI-290\",\n                    \"stock_order_id\": 161,\n                    \"item_id\": 508,\n                    \"price\": 4.24,\n                    \"quantity\": 3,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-22 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4541638394\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-05-26T13:10:27.000000Z\",\n                    \"updated_at\": \"2024-01-17T16:10:38.000000Z\"\n                },\n                {\n                    \"id\": 291,\n                    \"reference_id\": \"#POI-291\",\n                    \"stock_order_id\": 161,\n                    \"item_id\": 508,\n                    \"price\": 4.24,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4541647874\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-05-26T13:12:49.000000Z\",\n                    \"updated_at\": \"2023-05-26T13:12:50.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 658,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"batch test 2\",\n            \"cost_price\": 65,\n            \"price\": 85,\n            \"stock\": 97,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"box\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-12-20T13:11:18.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 657,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"batch test.\",\n            \"cost_price\": 10,\n            \"price\": 89,\n            \"stock\": 77,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"12-oiy\",\n            \"unit\": \"cm\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-12-20T12:31:49.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 296,\n                    \"reference_id\": \"#POI-296\",\n                    \"stock_order_id\": 164,\n                    \"item_id\": 657,\n                    \"price\": 10,\n                    \"quantity\": 1,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4562195199\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-05-31T09:05:20.000000Z\",\n                    \"updated_at\": \"2023-05-31T09:19:57.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 31,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"3\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Emerald Syringe (307727) - Luer Slip Concentric 2ml (SINGLE SYRINGE)\",\n            \"cost_price\": 0.04,\n            \"price\": 0.2,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BDEMELS2SIN\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"item_stocks\": [\n                {\n                    \"id\": 329,\n                    \"reference_id\": \"#POI-329\",\n                    \"stock_order_id\": 188,\n                    \"item_id\": 31,\n                    \"price\": 0.04,\n                    \"quantity\": 100,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4641697899\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-14T12:06:14.000000Z\",\n                    \"updated_at\": \"2023-06-14T12:21:34.000000Z\"\n                },\n                {\n                    \"id\": 397,\n                    \"reference_id\": \"#POI-397\",\n                    \"stock_order_id\": 224,\n                    \"item_id\": 31,\n                    \"price\": 0.04,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-04 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4751914712\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-07-04T16:01:19.000000Z\",\n                    \"updated_at\": \"2023-08-07T09:26:45.000000Z\"\n                },\n                {\n                    \"id\": 398,\n                    \"reference_id\": \"#POI-398\",\n                    \"stock_order_id\": 224,\n                    \"item_id\": 31,\n                    \"price\": 0.04,\n                    \"quantity\": 8,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4751917536\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-07-04T16:50:09.000000Z\",\n                    \"updated_at\": \"2023-07-04T16:50:10.000000Z\"\n                },\n                {\n                    \"id\": 469,\n                    \"reference_id\": \"#POI-469\",\n                    \"stock_order_id\": 267,\n                    \"item_id\": 31,\n                    \"price\": 0.04,\n                    \"quantity\": 8,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"8\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-08-07 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4940804128\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-08-07T09:31:58.000000Z\",\n                    \"updated_at\": \"2023-10-24T13:57:41.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 32,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Emerald Syringe (307727) - Luer Slip Concentric 2ml 100\",\n            \"cost_price\": 3.55,\n            \"price\": 8.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BDEMELS2\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 33,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Emerald Syringe (307731) - Luer Slip Concentric 5ml (Single)\",\n            \"cost_price\": 0.15,\n            \"price\": 0.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BDEMELS5SIN\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:49.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 509,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Emerald Syringe (307731) - Luer Slip Concentric 5ml (Single).\",\n            \"cost_price\": 0.15,\n            \"price\": 0.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"OBDEMELS5SIN\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 34,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Emerald Syringe (307731) - Luer Slip Concentric 5ml 100\",\n            \"cost_price\": 6.05,\n            \"price\": 11.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BDEMELS5\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/aceb17e7-26ee-4551-82a7-9ece10febec9.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=b7290d77192c2239def73b95671541ad61fdf763ed62a2f0f00ba3a297705c94\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 35,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Emerald Syringe (307736) - Luer Slip Concentric 10ml (SINGLE SYRINGE)\",\n            \"cost_price\": 0.08,\n            \"price\": 0.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BDEMELS10USIN\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 1,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 358,\n                    \"reference_id\": \"#POI-358\",\n                    \"stock_order_id\": 207,\n                    \"item_id\": 35,\n                    \"price\": 0.08,\n                    \"quantity\": 12,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-16 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4655750815\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-06-16T09:24:56.000000Z\",\n                    \"updated_at\": \"2023-06-16T13:47:18.000000Z\"\n                },\n                {\n                    \"id\": 361,\n                    \"reference_id\": \"#POI-361\",\n                    \"stock_order_id\": 207,\n                    \"item_id\": 35,\n                    \"price\": 0.08,\n                    \"quantity\": 11,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-16 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4656843337\",\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2023-06-16T13:47:11.000000Z\",\n                    \"updated_at\": \"2023-06-16T13:47:35.000000Z\"\n                },\n                {\n                    \"id\": 362,\n                    \"reference_id\": \"#POI-362\",\n                    \"stock_order_id\": 207,\n                    \"item_id\": 35,\n                    \"price\": 0.08,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4656844959\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-06-16T13:47:29.000000Z\",\n                    \"updated_at\": \"2023-06-16T13:47:30.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 510,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Emerald Syringe (307736) - Luer Slip Concentric 10ml (SINGLE SYRINGE).\",\n            \"cost_price\": 0.08,\n            \"price\": 0.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"OBDEMELS10USIN\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 36,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"3\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": null,\n            \"name\": \"BD Emerald Syringe (307736) - Luer Slip Concentric 10ml 100\",\n            \"cost_price\": 7.87,\n            \"price\": 14.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BDEMELS10\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 1,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks_sum_received_quantity\": 1,\n            \"item_stocks\": [\n                {\n                    \"id\": 111,\n                    \"reference_id\": \"#POI-111\",\n                    \"stock_order_id\": 52,\n                    \"item_id\": 36,\n                    \"price\": 7.87,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-08-05T18:12:11.000000Z\",\n                    \"updated_at\": \"2022-08-05T18:12:11.000000Z\"\n                },\n                {\n                    \"id\": 478,\n                    \"reference_id\": \"#POI-478\",\n                    \"stock_order_id\": 275,\n                    \"item_id\": 36,\n                    \"price\": 7.87,\n                    \"quantity\": 10,\n                    \"received_quantity\": 3,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-08-31 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5084859767\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-08-31T13:58:47.000000Z\",\n                    \"updated_at\": \"2023-08-31T14:32:46.000000Z\"\n                },\n                {\n                    \"id\": 479,\n                    \"reference_id\": \"#POI-479\",\n                    \"stock_order_id\": 275,\n                    \"item_id\": 36,\n                    \"price\": 7.87,\n                    \"quantity\": 7,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-08-16 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"5084913472\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-08-31T14:02:38.000000Z\",\n                    \"updated_at\": \"2023-08-31T14:33:07.000000Z\"\n                },\n                {\n                    \"id\": 480,\n                    \"reference_id\": \"#POI-480\",\n                    \"stock_order_id\": 275,\n                    \"item_id\": 36,\n                    \"price\": 7.87,\n                    \"quantity\": 6,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-08-23 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"5085229402\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-08-31T14:33:06.000000Z\",\n                    \"updated_at\": \"2023-08-31T14:43:22.000000Z\"\n                },\n                {\n                    \"id\": 481,\n                    \"reference_id\": \"#POI-481\",\n                    \"stock_order_id\": 275,\n                    \"item_id\": 36,\n                    \"price\": 7.87,\n                    \"quantity\": 1,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-08-31 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"5085330098\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-08-31T14:43:21.000000Z\",\n                    \"updated_at\": \"2023-08-31T14:46:49.000000Z\"\n                },\n                {\n                    \"id\": 482,\n                    \"reference_id\": \"#POI-482\",\n                    \"stock_order_id\": 275,\n                    \"item_id\": 36,\n                    \"price\": 7.87,\n                    \"quantity\": 8,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-08-31 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"5085333541\",\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2023-08-31T14:43:49.000000Z\",\n                    \"updated_at\": \"2023-08-31T14:46:26.000000Z\"\n                },\n                {\n                    \"id\": 483,\n                    \"reference_id\": \"#POI-483\",\n                    \"stock_order_id\": 275,\n                    \"item_id\": 36,\n                    \"price\": 7.87,\n                    \"quantity\": 7,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"5085358545\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-08-31T14:46:20.000000Z\",\n                    \"updated_at\": \"2023-08-31T14:46:20.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 511,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"1\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Microfine Insulin Syringes 0.3ml 8mm/30G (10)\",\n            \"cost_price\": 1.95,\n            \"price\": 1.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BDSYR30G\",\n            \"unit\": \"1 x 10\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 37,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Microfine Insulin Syringes 0.5ml 8mm/30G (10)\",\n            \"cost_price\": 1.2,\n            \"price\": 1.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BDSYR05ML30G8\",\n            \"unit\": \"10\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/d7de856e-6903-4461-95ef-f8590d280559.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=2033ffcf20b29c95013bb06fc07047a9dd3d21daf7b4aa1e03cd48687e78b111\",\n            \"item_stocks\": [\n                {\n                    \"id\": 306,\n                    \"reference_id\": \"#POI-306\",\n                    \"stock_order_id\": 176,\n                    \"item_id\": 37,\n                    \"price\": 1.2,\n                    \"quantity\": 10,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-04 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4578586423\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-06-02T11:45:53.000000Z\",\n                    \"updated_at\": \"2023-06-05T09:59:20.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 38,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Microfine Insulin Syringes 1ml 8mm/30G (10)\",\n            \"cost_price\": 1,\n            \"price\": 1.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BDSYR1ML30G8\",\n            \"unit\": \"10\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"item_stocks\": [\n                {\n                    \"id\": 30,\n                    \"reference_id\": \"#POI-30\",\n                    \"stock_order_id\": 19,\n                    \"item_id\": 38,\n                    \"price\": 1,\n                    \"quantity\": 7,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-07-26T08:22:36.000000Z\",\n                    \"updated_at\": \"2022-07-26T08:22:36.000000Z\"\n                },\n                {\n                    \"id\": 717,\n                    \"reference_id\": \"#POI-717\",\n                    \"stock_order_id\": 443,\n                    \"item_id\": 38,\n                    \"price\": 1,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-05-07 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6594910586\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-05-07T15:24:27.000000Z\",\n                    \"updated_at\": \"2024-05-07T15:26:20.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 39,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Microfine+ DEMI Insulin Syringes 0.3ml 30g 8mm (10)\",\n            \"cost_price\": 1.2,\n            \"price\": 1.99,\n            \"stock\": 1,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BDSYRDEM\",\n            \"unit\": \"1 x 10\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 305,\n                    \"reference_id\": \"#POI-305\",\n                    \"stock_order_id\": 176,\n                    \"item_id\": 39,\n                    \"price\": 1.2,\n                    \"quantity\": 15,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4578586365\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-06-02T11:45:52.000000Z\",\n                    \"updated_at\": \"2023-06-02T11:59:38.000000Z\"\n                },\n                {\n                    \"id\": 307,\n                    \"reference_id\": \"#POI-307\",\n                    \"stock_order_id\": 176,\n                    \"item_id\": 39,\n                    \"price\": 1.2,\n                    \"quantity\": 13,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-02 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4578660406\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-06-02T11:59:38.000000Z\",\n                    \"updated_at\": \"2023-06-02T13:17:22.000000Z\"\n                },\n                {\n                    \"id\": 308,\n                    \"reference_id\": \"#POI-308\",\n                    \"stock_order_id\": 176,\n                    \"item_id\": 39,\n                    \"price\": 1.2,\n                    \"quantity\": 11,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4579124233\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-06-02T13:17:20.000000Z\",\n                    \"updated_at\": \"2023-06-02T13:17:22.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 40,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Microlance Needles Blue 23G 25mm-1\\\" (100)\",\n            \"cost_price\": 3.25,\n            \"price\": 4.49,\n            \"stock\": 2,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BDMIC23BL\",\n            \"unit\": \"Box\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 1,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 41,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Microlance Needles Brown-26G-13mm/ 1/2\\\" (100)\",\n            \"cost_price\": 2.44,\n            \"price\": 4.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MICBRO2613\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 42,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Microlance Needles Green 21G 16mm/ 5/8\\\" (100).\",\n            \"cost_price\": 3.25,\n            \"price\": 4.49,\n            \"stock\": 1,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BDMICG2116\",\n            \"unit\": \"Box\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/1c11015f-b511-4313-832f-ba9f1b05e358.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=1a3038164a7753bd6ad1ec8d5c5900e97d3244d81fc9873d6b3ec7cf1dc748eb\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 43,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Microlance Needles Green 21G 38mm/ 1.5\\\" (100)\",\n            \"cost_price\": 3.25,\n            \"price\": 4.49,\n            \"stock\": 1,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BDMIC21G\",\n            \"unit\": \"Box\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 453,\n                    \"reference_id\": \"#POI-453\",\n                    \"stock_order_id\": 253,\n                    \"item_id\": 43,\n                    \"price\": 3.25,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4781068624\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-07-10T14:40:38.000000Z\",\n                    \"updated_at\": \"2023-07-10T14:40:38.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 44,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Microlance Needles Green 21G 40mm/ 1.5\\\" (100).\",\n            \"cost_price\": 2.68,\n            \"price\": 4.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BDMICG2140\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 1,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 45,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Microlance Needles Green 21G 50mm/ 2\\\" (100)\",\n            \"cost_price\": 3.45,\n            \"price\": 5.2,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": 34,\n            \"clinic_limit\": null,\n            \"sku\": \"BDMCNE21G\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 46,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Microlance Needles Grey 27G 13mm-1/2\\\" (100)\",\n            \"cost_price\": 2.5,\n            \"price\": 4.49,\n            \"stock\": 1,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BDMIC27GY\",\n            \"unit\": \"Box\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"item_stocks\": [\n                {\n                    \"id\": 458,\n                    \"reference_id\": \"#POI-458\",\n                    \"stock_order_id\": 257,\n                    \"item_id\": 46,\n                    \"price\": 2.5,\n                    \"quantity\": 3,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-18 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4797973423\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-07-12T17:46:49.000000Z\",\n                    \"updated_at\": \"2024-01-17T17:52:44.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 47,\n            \"monday_com_id\": \"4341469094\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Microlance Needles Orange 25G-16mm/ 5/8\\\" (100)\",\n            \"cost_price\": 0.03,\n            \"price\": 4.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": 2,\n            \"clinic_limit\": null,\n            \"sku\": \"MICORA2516100\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/da21c6de-7e86-46be-90f3-a7f78e32bc30.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=0438c301949256afbe0f7a33fb629a3df47093ed1026575d322a6e96a4acb777\",\n            \"item_stocks\": [\n                {\n                    \"id\": 547,\n                    \"reference_id\": \"#POI-547\",\n                    \"stock_order_id\": 326,\n                    \"item_id\": 47,\n                    \"price\": 0.03,\n                    \"quantity\": 6,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5702567984\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-12-18T11:56:59.000000Z\",\n                    \"updated_at\": \"2023-12-18T11:57:00.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 512,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Microlance Needles Orange 25G-16mm/ 5/8\\\" (SINGLE)\",\n            \"cost_price\": 0.03,\n            \"price\": 0.15,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MICORA2516SIN\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/37ae6a8f-caae-4f01-a9b4-2db90dbacf55.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=efcef86eecddf6337967aa83b3da8458e05f8b4610896139b67a010a1af4bc7b\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 48,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Microlance Needles Orange 25G-25mm/ 1\\\" (100)\",\n            \"cost_price\": 2.85,\n            \"price\": 4.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": 34,\n            \"clinic_limit\": null,\n            \"sku\": \"MICORA2525\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 49,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": \"10\",\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": \"2024-04-18 16:22:44\",\n            \"name\": \"BD Microlance Needles Pink-18G-40mm/ 1.5\\\" (100)\",\n            \"cost_price\": 3.25,\n            \"price\": 4.49,\n            \"stock\": 0,\n            \"reorder_limit\": 6,\n            \"item_category_id\": 36,\n            \"clinic_limit\": null,\n            \"sku\": \"MICPIN1838\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": \"test\",\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 0,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-04-18T16:23:43.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"item_stocks\": [\n                {\n                    \"id\": 108,\n                    \"reference_id\": \"#POI-108\",\n                    \"stock_order_id\": 50,\n                    \"item_id\": 49,\n                    \"price\": 3.25,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-03 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-04T17:01:09.000000Z\",\n                    \"updated_at\": \"2024-04-18T16:22:44.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 50,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": null,\n            \"name\": \"BD Microlance Needles Pink-18G-50mm/ 2\\\" (100)\",\n            \"cost_price\": 4.25,\n            \"price\": 6.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MICPIN1850\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 0,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-04-04T14:36:59.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"item_stocks\": [\n                {\n                    \"id\": 422,\n                    \"reference_id\": \"#POI-420\",\n                    \"stock_order_id\": 235,\n                    \"item_id\": 50,\n                    \"price\": 4.25,\n                    \"quantity\": 2,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4765843576\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-07-06T18:00:01.000000Z\",\n                    \"updated_at\": \"2023-07-06T18:01:57.000000Z\"\n                },\n                {\n                    \"id\": 531,\n                    \"reference_id\": \"#POI-531\",\n                    \"stock_order_id\": 311,\n                    \"item_id\": 50,\n                    \"price\": 4.25,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-11 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5660714740\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-12-11T09:19:37.000000Z\",\n                    \"updated_at\": \"2024-04-04T14:36:32.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 51,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Microlance Needles Yellow 30G 13mm/ 1/2\\\" (100)\",\n            \"cost_price\": 2.69,\n            \"price\": 5.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BDMIC30G\",\n            \"unit\": \"Box\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 52,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD PLASTIPAK (305959) 10ML SYRINGE - LUER LOK (100)\",\n            \"cost_price\": 15.95,\n            \"price\": 23.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"305959\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 53,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": null,\n            \"name\": \"BD PLASTIPAK (305959) 10ML SYRINGE - LUER LOK (SINGLE)\",\n            \"cost_price\": 0.16,\n            \"price\": 0.3,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"305959S\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 0,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-04-01T15:01:48.000000Z\",\n            \"item_stocks_sum_received_quantity\": 1,\n            \"item_stocks\": [\n                {\n                    \"id\": 263,\n                    \"reference_id\": \"#POI-263\",\n                    \"stock_order_id\": 144,\n                    \"item_id\": 53,\n                    \"price\": 0.16,\n                    \"quantity\": 2,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-19 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4348890301\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-04-21T15:43:23.000000Z\",\n                    \"updated_at\": \"2023-04-21T16:39:21.000000Z\"\n                },\n                {\n                    \"id\": 266,\n                    \"reference_id\": \"#POI-266\",\n                    \"stock_order_id\": 144,\n                    \"item_id\": 53,\n                    \"price\": 0.16,\n                    \"quantity\": 1,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4349177599\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-04-21T16:39:20.000000Z\",\n                    \"updated_at\": \"2023-04-21T16:39:21.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 513,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"0\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD PLASTIPAK (305959) 10ML SYRINGE - LUER LOK (SINGLE).\",\n            \"cost_price\": 0.16,\n            \"price\": 0.3,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"O305959S\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 54,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": null,\n            \"name\": \"BD PLASTIPAK (309628) 1ML SYRINGE - LUER LOK (100)\",\n            \"cost_price\": 27.79,\n            \"price\": 42.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LUELOK309628\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"TEST TTTTTT\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 0,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-04-01T14:59:28.000000Z\",\n            \"item_stocks_sum_received_quantity\": 9,\n            \"item_stocks\": [\n                {\n                    \"id\": 166,\n                    \"reference_id\": \"#POI-166\",\n                    \"stock_order_id\": 84,\n                    \"item_id\": 54,\n                    \"price\": 27.79,\n                    \"quantity\": 12,\n                    \"received_quantity\": 7,\n                    \"initial_quantity\": \"12\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-09-08 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pass\",\n                    \"created_at\": \"2022-09-09T11:41:39.000000Z\",\n                    \"updated_at\": \"2023-11-15T14:00:14.000000Z\"\n                },\n                {\n                    \"id\": 416,\n                    \"reference_id\": \"#POI-416\",\n                    \"stock_order_id\": 232,\n                    \"item_id\": 54,\n                    \"price\": 27.79,\n                    \"quantity\": 2,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4764083504\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-07-06T14:21:22.000000Z\",\n                    \"updated_at\": \"2023-07-06T14:33:35.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 55,\n            \"monday_com_id\": \"6055454849\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD PLASTIPAK (309628) 1ML SYRINGE - LUER LOK (SINGLE SYRINGE)\",\n            \"cost_price\": 0.03,\n            \"price\": 0.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": 65,\n            \"clinic_limit\": null,\n            \"sku\": \"LUELOK309628U\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-13T16:24:01.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 384,\n                    \"reference_id\": \"#POI-384\",\n                    \"stock_order_id\": 217,\n                    \"item_id\": 55,\n                    \"price\": 0.03,\n                    \"quantity\": 1,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4687250422\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-22T10:31:50.000000Z\",\n                    \"updated_at\": \"2023-06-22T10:35:12.000000Z\"\n                },\n                {\n                    \"id\": 417,\n                    \"reference_id\": \"#POI-417\",\n                    \"stock_order_id\": 232,\n                    \"item_id\": 55,\n                    \"price\": 0.03,\n                    \"quantity\": 4,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4764083556\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-07-06T14:21:23.000000Z\",\n                    \"updated_at\": \"2023-07-06T14:24:22.000000Z\"\n                },\n                {\n                    \"id\": 418,\n                    \"reference_id\": \"#POI-418\",\n                    \"stock_order_id\": 232,\n                    \"item_id\": 55,\n                    \"price\": 0.03,\n                    \"quantity\": 1,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-06 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4764095098\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-07-06T14:24:21.000000Z\",\n                    \"updated_at\": \"2023-07-06T14:34:12.000000Z\"\n                },\n                {\n                    \"id\": 419,\n                    \"reference_id\": \"#POI-419\",\n                    \"stock_order_id\": 232,\n                    \"item_id\": 55,\n                    \"price\": 0.03,\n                    \"quantity\": 1,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4764101525\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-07-06T14:25:16.000000Z\",\n                    \"updated_at\": \"2023-07-06T14:25:16.000000Z\"\n                },\n                {\n                    \"id\": 514,\n                    \"reference_id\": \"#POI-514\",\n                    \"stock_order_id\": 295,\n                    \"item_id\": 55,\n                    \"price\": 0.03,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5312284447\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-10-11T11:03:14.000000Z\",\n                    \"updated_at\": \"2023-10-11T11:03:15.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 514,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD PLASTIPAK (309628) 1ML SYRINGE - LUER LOK (SINGLE SYRINGE).\",\n            \"cost_price\": 0.03,\n            \"price\": 0.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"OLUELOK309628U\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 610,\n                    \"reference_id\": \"#POI-610\",\n                    \"stock_order_id\": 365,\n                    \"item_id\": 514,\n                    \"price\": 0.03,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6034334390\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-09T11:24:03.000000Z\",\n                    \"updated_at\": \"2024-02-09T11:24:04.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 56,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD PLASTIPAK (309649) 5ML SYRINGE - LUER LOK (125)\",\n            \"cost_price\": 18,\n            \"price\": 23.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"309649\",\n            \"unit\": \"1 x 125\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 57,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD PLASTIPAK (309649) 5ML SYRINGE - LUER LOK (SINGLE)\",\n            \"cost_price\": 0.15,\n            \"price\": 0.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"309649S\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/88295d37-2bcd-46b2-a481-be295c147b2a.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=c17f302f67f9d42a7e16980716b6361ccd5bf7dcca6a9117d38e42ebdd0d6080\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 515,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD PLASTIPAK (309649) 5ML SYRINGE - LUER LOK (SINGLE).\",\n            \"cost_price\": null,\n            \"price\": 0.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"O309649S\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2021-12-19T06:25:18.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 58,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Plastipak (Luer Slip) Syringes 1ml 303172 (120)\",\n            \"cost_price\": 12.8,\n            \"price\": 14.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BDPLASYR1ML\",\n            \"unit\": \"120\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 558,\n                    \"reference_id\": \"#POI-558\",\n                    \"stock_order_id\": 335,\n                    \"item_id\": 58,\n                    \"price\": 12.8,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5777733747\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-01-03T08:33:26.000000Z\",\n                    \"updated_at\": \"2024-01-03T08:33:27.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 516,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Plastipak (Luer Slip) Syringes 1ml 303172 (Single.)\",\n            \"cost_price\": 0.15,\n            \"price\": 0.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NBDPLASYR1MLS\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 59,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Plastipak (Luer Slip) Syringes 1ml 303172 (Single)\",\n            \"cost_price\": 0.15,\n            \"price\": 0.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BDPLASYR1MLS\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 60,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Viva 4mm Pen Needles (30)\",\n            \"cost_price\": 1.21,\n            \"price\": 2,\n            \"stock\": 1000,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BD4PEN30\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/b3f92123-f993-4c16-bb44-c25533862661.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=67ea259ecd72fc93895ce7b9260941e8313a4894293155e8fd9964a158ae48ea\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 517,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Viva 4mm Pen Needles (60)\",\n            \"cost_price\": 2.43,\n            \"price\": 4,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BD4PEN60\",\n            \"unit\": \"1 x 60\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks_sum_received_quantity\": 14,\n            \"item_stocks\": [\n                {\n                    \"id\": 315,\n                    \"reference_id\": \"#POI-312\",\n                    \"stock_order_id\": 181,\n                    \"item_id\": 517,\n                    \"price\": 2.43,\n                    \"quantity\": 5,\n                    \"received_quantity\": 4,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-04 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4588970365\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-06-05T13:16:28.000000Z\",\n                    \"updated_at\": \"2023-07-18T09:19:25.000000Z\"\n                },\n                {\n                    \"id\": 661,\n                    \"reference_id\": \"#POI-661\",\n                    \"stock_order_id\": 393,\n                    \"item_id\": 517,\n                    \"price\": 2.43,\n                    \"quantity\": 10,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-03-01 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6072869491\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-02-15T17:29:00.000000Z\",\n                    \"updated_at\": \"2024-03-01T13:51:48.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 518,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Viva 4mm Pen Needles (75)\",\n            \"cost_price\": 3.03,\n            \"price\": 5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BD4PEN75\",\n            \"unit\": \"1 x 75\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 61,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Viva 4mm Pen Needles (90)\",\n            \"cost_price\": 3.64,\n            \"price\": 5.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BD4MMPEN\",\n            \"unit\": \"1 x 90\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:01.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 62,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Viva 5mm Needles (100)\",\n            \"cost_price\": 3.62,\n            \"price\": 5.92,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BD0023\",\n            \"unit\": \"100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 63,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Viva 5mm Needles (25)\",\n            \"cost_price\": 1,\n            \"price\": 2,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BD0021\",\n            \"unit\": \"25\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/eaaa139d-bb35-43b5-99da-6ee6bf7cf821.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=2aea3fe02dc67a63b4cbe4579bcab1ef45a3a854c51299f37ae385241fd91cbd\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 64,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": \"10\",\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"BD Viva 5mm Needles (50)\",\n            \"cost_price\": 1,\n            \"price\": 3,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BD0022\",\n            \"unit\": \"50\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 1,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-05-01T13:58:36.000000Z\",\n            \"item_stocks_sum_received_quantity\": 1,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/8c27f151-acac-4b5a-b2a3-412ebef4044b.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=2b6e82b23ac795180c1b274aa9d18113c1bc057f48a993c39873428935e65db7\",\n            \"item_stocks\": [\n                {\n                    \"id\": 413,\n                    \"reference_id\": \"#POI-413\",\n                    \"stock_order_id\": 230,\n                    \"item_id\": 64,\n                    \"price\": 1,\n                    \"quantity\": 3,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-11-27 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4762972275\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-07-06T11:23:25.000000Z\",\n                    \"updated_at\": \"2024-04-18T11:03:00.000000Z\"\n                },\n                {\n                    \"id\": 712,\n                    \"reference_id\": \"#POI-712\",\n                    \"stock_order_id\": 438,\n                    \"item_id\": 64,\n                    \"price\": 1,\n                    \"quantity\": 100,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6479735295\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-04-18T11:05:29.000000Z\",\n                    \"updated_at\": \"2024-04-24T13:22:34.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 65,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Belotero® Balance Lidocaine (1 x 1.0ml)\",\n            \"cost_price\": 60,\n            \"price\": 72.7,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BELBAL1X1\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 66,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Belotero® Intense Lidocaine (1 x 1.0ml)\",\n            \"cost_price\": 60,\n            \"price\": 77.1,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BELINT1X1\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 67,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": null,\n            \"name\": \"Belotero® Lips Contour  (1 x 0.6ml)\",\n            \"cost_price\": 60,\n            \"price\": 65,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BELCON\",\n            \"unit\": \"1 x 0.6ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks_sum_received_quantity\": 13,\n            \"item_stocks\": [\n                {\n                    \"id\": 404,\n                    \"reference_id\": \"#POI-404\",\n                    \"stock_order_id\": 227,\n                    \"item_id\": 67,\n                    \"price\": 60,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-05 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4755477196\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-07-05T10:57:46.000000Z\",\n                    \"updated_at\": \"2023-07-18T09:31:59.000000Z\"\n                },\n                {\n                    \"id\": 405,\n                    \"reference_id\": \"#POI-405\",\n                    \"stock_order_id\": 227,\n                    \"item_id\": 67,\n                    \"price\": 60,\n                    \"quantity\": 10,\n                    \"received_quantity\": 8,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-05 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4755482630\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-07-05T11:00:05.000000Z\",\n                    \"updated_at\": \"2023-08-25T13:19:47.000000Z\"\n                },\n                {\n                    \"id\": 406,\n                    \"reference_id\": \"#POI-406\",\n                    \"stock_order_id\": 228,\n                    \"item_id\": 67,\n                    \"price\": 60,\n                    \"quantity\": 5,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-05 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4755843147\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-07-05T11:56:21.000000Z\",\n                    \"updated_at\": \"2023-07-05T12:20:15.000000Z\"\n                },\n                {\n                    \"id\": 407,\n                    \"reference_id\": \"#POI-407\",\n                    \"stock_order_id\": 228,\n                    \"item_id\": 67,\n                    \"price\": 60,\n                    \"quantity\": 5,\n                    \"received_quantity\": 3,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-03 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4755847791\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-07-05T12:20:15.000000Z\",\n                    \"updated_at\": \"2023-07-05T12:26:25.000000Z\"\n                },\n                {\n                    \"id\": 408,\n                    \"reference_id\": \"#POI-408\",\n                    \"stock_order_id\": 228,\n                    \"item_id\": 67,\n                    \"price\": 60,\n                    \"quantity\": 5,\n                    \"received_quantity\": 4,\n                    \"initial_quantity\": \"4\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-05 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4755852823\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-07-05T12:20:35.000000Z\",\n                    \"updated_at\": \"2023-07-05T13:03:15.000000Z\"\n                },\n                {\n                    \"id\": 409,\n                    \"reference_id\": \"#POI-409\",\n                    \"stock_order_id\": 228,\n                    \"item_id\": 67,\n                    \"price\": 60,\n                    \"quantity\": 2,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-05 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4755890107\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-07-05T12:26:24.000000Z\",\n                    \"updated_at\": \"2023-07-05T12:26:25.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 68,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": null,\n            \"name\": \"Belotero® Lips Shape (1 x 0.6ml)\",\n            \"cost_price\": 60,\n            \"price\": 65,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BELLIPSSH\",\n            \"unit\": \"1 x 0.6ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks_sum_received_quantity\": 2,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/b24c8fb8-3ed5-48ac-9c18-c84cfb4f6c36.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=e7eab9bd2d204eba57e2a80902c54bd427d01096e8b805d1eb506374b7d24414\",\n            \"item_stocks\": [\n                {\n                    \"id\": 402,\n                    \"reference_id\": \"#POI-402\",\n                    \"stock_order_id\": 226,\n                    \"item_id\": 68,\n                    \"price\": 60,\n                    \"quantity\": 5,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-05 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4755467528\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-07-05T10:54:27.000000Z\",\n                    \"updated_at\": \"2023-07-05T10:55:31.000000Z\"\n                },\n                {\n                    \"id\": 403,\n                    \"reference_id\": \"#POI-403\",\n                    \"stock_order_id\": 226,\n                    \"item_id\": 68,\n                    \"price\": 60,\n                    \"quantity\": 3,\n                    \"received_quantity\": 3,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-05 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4755468890\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-07-05T10:55:30.000000Z\",\n                    \"updated_at\": \"2023-07-05T10:56:03.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 519,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Belotero® Lips Shape & Contour (2 x 0.6ml)\",\n            \"cost_price\": 116,\n            \"price\": 116,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BELLIPSHCON01\",\n            \"unit\": \"2 X 06ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 69,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"5\",\n            \"clinic_per_quota_term\": \"1\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": \"2024-05-28 15:11:59\",\n            \"name\": \"Belotero® Soft Lidocaine (1 x 1.0ml)\",\n            \"cost_price\": 60,\n            \"price\": 67.2,\n            \"stock\": 0,\n            \"reorder_limit\": 4,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BELSOF\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-05-28T15:11:59.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"item_stocks\": [\n                {\n                    \"id\": 542,\n                    \"reference_id\": \"#POI-542\",\n                    \"stock_order_id\": 322,\n                    \"item_id\": 69,\n                    \"price\": 60,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-14 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5688544823\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-12-14T17:58:52.000000Z\",\n                    \"updated_at\": \"2024-05-28T15:11:59.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 70,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Belotero® Volume Lidocaine (2 x 1.0ml)\",\n            \"cost_price\": 150,\n            \"price\": 169.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BELVOL\",\n            \"unit\": \"2 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 520,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Belotero® Volume Lidocaine (SINGLE SYRINGE)\",\n            \"cost_price\": 75,\n            \"price\": 97.47,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BELVOLS\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 71,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Benzylpenicillin Powder 600mg (25)\",\n            \"cost_price\": 75.12,\n            \"price\": 97.7,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"A0219857\",\n            \"unit\": \"1 x 25\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks_sum_received_quantity\": 1,\n            \"item_stocks\": [\n                {\n                    \"id\": 628,\n                    \"reference_id\": \"#POI-628\",\n                    \"stock_order_id\": 375,\n                    \"item_id\": 71,\n                    \"price\": 75.12,\n                    \"quantity\": 1,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-02-13 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6052506325\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-02-13T09:17:35.000000Z\",\n                    \"updated_at\": \"2024-02-13T09:20:15.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 72,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Betacap Scalp Application (100ml)\",\n            \"cost_price\": 3.38,\n            \"price\": 5.75,\n            \"stock\": -4,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BETACAP\",\n            \"unit\": \"1 x 100ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 521,\n            \"monday_com_id\": \"4541883091\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": \"10\",\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Bexsero PFS (1 x 0.5ml)\",\n            \"cost_price\": 75,\n            \"price\": 112.5,\n            \"stock\": 0,\n            \"reorder_limit\": 7,\n            \"item_category_id\": 5,\n            \"clinic_limit\": null,\n            \"sku\": \"BEXPFS\",\n            \"unit\": \"1 x 0.5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 1,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks_sum_received_quantity\": 7,\n            \"item_stocks\": [\n                {\n                    \"id\": 292,\n                    \"reference_id\": \"#POI-292\",\n                    \"stock_order_id\": 162,\n                    \"item_id\": 521,\n                    \"price\": 75,\n                    \"quantity\": 4,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-25 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4542328411\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-05-26T13:45:57.000000Z\",\n                    \"updated_at\": \"2023-05-26T17:12:25.000000Z\"\n                },\n                {\n                    \"id\": 293,\n                    \"reference_id\": \"#POI-293\",\n                    \"stock_order_id\": 163,\n                    \"item_id\": 521,\n                    \"price\": 75,\n                    \"quantity\": 4,\n                    \"received_quantity\": 4,\n                    \"initial_quantity\": \"4\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-25 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4542068619\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-05-26T13:58:10.000000Z\",\n                    \"updated_at\": \"2023-05-26T14:12:26.000000Z\"\n                },\n                {\n                    \"id\": 294,\n                    \"reference_id\": \"#POI-294\",\n                    \"stock_order_id\": 162,\n                    \"item_id\": 521,\n                    \"price\": 75,\n                    \"quantity\": 3,\n                    \"received_quantity\": 3,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-26 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4542352241\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-05-26T14:48:32.000000Z\",\n                    \"updated_at\": \"2023-05-26T16:58:18.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 73,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Bimatoprost 0.1% Eye Drops 3ml\",\n            \"cost_price\": 11.71,\n            \"price\": 18.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BIM1\",\n            \"unit\": \"3ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 74,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Bimatoprost 0.3mg/ml Eye Drops (3m)l\",\n            \"cost_price\": 10.3,\n            \"price\": 18.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BIM\",\n            \"unit\": \"3ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks_sum_received_quantity\": 1,\n            \"item_stocks\": [\n                {\n                    \"id\": 519,\n                    \"reference_id\": \"#POI-519\",\n                    \"stock_order_id\": 300,\n                    \"item_id\": 74,\n                    \"price\": 10.3,\n                    \"quantity\": 10,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-11-21 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5547766215\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-11-21T12:53:24.000000Z\",\n                    \"updated_at\": \"2023-11-27T08:53:38.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 75,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Biotin 5mg/ml (Biotine Bayer) Solution for Injection (6x1ml)\",\n            \"cost_price\": 39.7,\n            \"price\": 75,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BIOTJ\",\n            \"unit\": \"6 x 1ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"Biotin item note here\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/88cef064-ee65-4537-aaef-a1b2eec3604e.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=b485500834c7c1bf1edb58c00b9264372b6f0cc4979ba24e2fb566575ce16d3f\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 76,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"4\",\n            \"clinic_per_quota_term\": \"1\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Bisoprolol 2.5mg Tabs\",\n            \"cost_price\": 0.9,\n            \"price\": 5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks_sum_received_quantity\": 11,\n            \"item_stocks\": [\n                {\n                    \"id\": 522,\n                    \"reference_id\": \"#POI-522\",\n                    \"stock_order_id\": 302,\n                    \"item_id\": 76,\n                    \"price\": 0.9,\n                    \"quantity\": 10,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5635769973\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-12-06T09:23:31.000000Z\",\n                    \"updated_at\": \"2023-12-06T09:39:34.000000Z\"\n                },\n                {\n                    \"id\": 528,\n                    \"reference_id\": \"#POI-528\",\n                    \"stock_order_id\": 308,\n                    \"item_id\": 76,\n                    \"price\": 0.9,\n                    \"quantity\": 10,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-07 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5643682987\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-12-07T10:03:24.000000Z\",\n                    \"updated_at\": \"2023-12-07T10:04:29.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 77,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Bisoprolol 5mg Tabs\",\n            \"cost_price\": 0.82,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-03-05T09:51:24.000000Z\",\n            \"item_stocks_sum_received_quantity\": 1,\n            \"item_stocks\": [\n                {\n                    \"id\": 412,\n                    \"reference_id\": \"#POI-412\",\n                    \"stock_order_id\": 230,\n                    \"item_id\": 77,\n                    \"price\": 0.82,\n                    \"quantity\": 4,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-05 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4762972213\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-07-06T11:23:24.000000Z\",\n                    \"updated_at\": \"2023-07-06T11:30:25.000000Z\"\n                },\n                {\n                    \"id\": 414,\n                    \"reference_id\": \"#POI-414\",\n                    \"stock_order_id\": 230,\n                    \"item_id\": 77,\n                    \"price\": 0.82,\n                    \"quantity\": 3,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4763002025\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-07-06T11:30:25.000000Z\",\n                    \"updated_at\": \"2023-07-06T11:30:25.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 78,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": \"3\",\n            \"clinic_per_quota\": \"3\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Bocouture 100units Vial\",\n            \"cost_price\": 118,\n            \"price\": 113.99,\n            \"stock\": 0,\n            \"reorder_limit\": 1,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BOC100X1\",\n            \"unit\": \"1 x 100u\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks_sum_received_quantity\": 5,\n            \"item_stocks\": [\n                {\n                    \"id\": 287,\n                    \"reference_id\": \"#POI-287\",\n                    \"stock_order_id\": 159,\n                    \"item_id\": 78,\n                    \"price\": 118,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-26 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4541225227\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-05-26T11:01:51.000000Z\",\n                    \"updated_at\": \"2023-08-07T10:40:12.000000Z\"\n                },\n                {\n                    \"id\": 472,\n                    \"reference_id\": \"#POI-472\",\n                    \"stock_order_id\": 270,\n                    \"item_id\": 78,\n                    \"price\": 118,\n                    \"quantity\": 10,\n                    \"received_quantity\": 5,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-08-07 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4941093993\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-08-07T10:41:04.000000Z\",\n                    \"updated_at\": \"2023-08-07T10:46:35.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 79,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Bocouture 50units Vial\",\n            \"cost_price\": 59,\n            \"price\": 57.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BOC50U\",\n            \"unit\": \"1 x 50u\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 80,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Bocouture Dual Pack 50units (2x50u)\",\n            \"cost_price\": 105.5,\n            \"price\": 110,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BOC2X50DP\",\n            \"unit\": \"2 X 50u\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 81,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Boostrix PFS (1 x 0.5ml)\",\n            \"cost_price\": 22.74,\n            \"price\": 32.79,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BOOSPFS\",\n            \"unit\": \"1 x 0.5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 82,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Boston Professional Dermal Roller SR 0.5 mm\",\n            \"cost_price\": 21.66,\n            \"price\": 28.5,\n            \"stock\": 1000000,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BOSDR05\",\n            \"unit\": \"1OP\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 83,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Boston Professional Dermal Roller SR 1.0 mm\",\n            \"cost_price\": 21.66,\n            \"price\": 28.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BOSDR10\",\n            \"unit\": \"1OP\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 383,\n                    \"reference_id\": \"#POI-383\",\n                    \"stock_order_id\": 216,\n                    \"item_id\": 83,\n                    \"price\": 21.66,\n                    \"quantity\": 1,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4710298536\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-22T10:26:14.000000Z\",\n                    \"updated_at\": \"2023-06-27T08:16:26.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 84,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Boston Professional Dermal Roller SR 1.5 mm\",\n            \"cost_price\": 21.66,\n            \"price\": 28.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BOSDR15\",\n            \"unit\": \"1OP\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 85,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Botox 100u Vial\",\n            \"cost_price\": 144,\n            \"price\": 141.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BOTOX100\",\n            \"unit\": \"1 x 100u\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 0,\n            \"face_to_face_consultations\": 1,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 86,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Botox 50u Vial\",\n            \"cost_price\": 82.69,\n            \"price\": 82.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BOTOX50\",\n            \"unit\": \"1 x 50u\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 87,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Braun AS Plus Luer Solo Syringe 1ml (Single Syringe)\",\n            \"cost_price\": 0.15,\n            \"price\": 0.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"BRAUNAZZ\",\n            \"unit\": \"1 x 1ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 522,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Buccolam 10mg Syringe (Midazolam) (4 x 2ml)\",\n            \"cost_price\": 91.5,\n            \"price\": 119.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"3671294\",\n            \"unit\": \"4 x 2ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 523,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Celluvisc 0.5 % (0.4ml single dose units)\",\n            \"cost_price\": 4.8,\n            \"price\": 6.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CELL05\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 88,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Cetirizine Tablets 10mg (30)\",\n            \"cost_price\": 0,\n            \"price\": 4,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CET1030\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 1,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks_sum_received_quantity\": 6,\n            \"item_stocks\": [\n                {\n                    \"id\": 268,\n                    \"reference_id\": \"#POI-268\",\n                    \"stock_order_id\": 148,\n                    \"item_id\": 88,\n                    \"price\": 0.6,\n                    \"quantity\": 10,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-18 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4495160024\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-05-18T13:29:23.000000Z\",\n                    \"updated_at\": \"2023-05-18T17:31:40.000000Z\"\n                },\n                {\n                    \"id\": 269,\n                    \"reference_id\": \"#POI-269\",\n                    \"stock_order_id\": 148,\n                    \"item_id\": 88,\n                    \"price\": 0.6,\n                    \"quantity\": 8,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4497151281\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-05-18T17:31:40.000000Z\",\n                    \"updated_at\": \"2023-05-18T17:31:40.000000Z\"\n                },\n                {\n                    \"id\": 274,\n                    \"reference_id\": \"#POI-274\",\n                    \"stock_order_id\": 153,\n                    \"item_id\": 88,\n                    \"price\": 0.6,\n                    \"quantity\": 2,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-12 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4626750734\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-05-19T12:35:26.000000Z\",\n                    \"updated_at\": \"2023-06-12T12:48:26.000000Z\"\n                },\n                {\n                    \"id\": 275,\n                    \"reference_id\": \"#POI-275\",\n                    \"stock_order_id\": 154,\n                    \"item_id\": 88,\n                    \"price\": 0,\n                    \"quantity\": 2,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-19 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4501982548\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-05-19T12:36:07.000000Z\",\n                    \"updated_at\": \"2023-05-19T12:39:50.000000Z\"\n                },\n                {\n                    \"id\": 276,\n                    \"reference_id\": \"#POI-276\",\n                    \"stock_order_id\": 155,\n                    \"item_id\": 88,\n                    \"price\": 0,\n                    \"quantity\": 3,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-17 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4502004653\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-05-19T12:40:40.000000Z\",\n                    \"updated_at\": \"2023-05-19T12:43:59.000000Z\"\n                },\n                {\n                    \"id\": 278,\n                    \"reference_id\": \"#POI-278\",\n                    \"stock_order_id\": 155,\n                    \"item_id\": 88,\n                    \"price\": 0,\n                    \"quantity\": 2,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-18 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4502017311\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-05-19T12:43:58.000000Z\",\n                    \"updated_at\": \"2023-05-19T12:44:39.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 524,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Chloramphenicol Eye Ointment (1%) 4g\",\n            \"cost_price\": 3,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"chloin\",\n            \"unit\": \"1 x 4g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks_sum_received_quantity\": 1,\n            \"item_stocks\": [\n                {\n                    \"id\": 451,\n                    \"reference_id\": \"#POI-451\",\n                    \"stock_order_id\": 252,\n                    \"item_id\": 524,\n                    \"price\": 3,\n                    \"quantity\": 2,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-07 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4771228886\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-07-07T14:57:46.000000Z\",\n                    \"updated_at\": \"2023-07-07T14:59:44.000000Z\"\n                },\n                {\n                    \"id\": 452,\n                    \"reference_id\": \"#POI-452\",\n                    \"stock_order_id\": 252,\n                    \"item_id\": 524,\n                    \"price\": 3,\n                    \"quantity\": 2,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-10 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4771237919\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-07-07T14:59:44.000000Z\",\n                    \"updated_at\": \"2023-07-17T12:05:20.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 525,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Cialis 10mg Tablets (28)\",\n            \"cost_price\": 28.88,\n            \"price\": 39.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CIA10\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/ef5cc11b-0e3d-4bd1-ac59-47b791c5fc09.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=49410e4cff85007f542cddadfa663354c6bc82c16621e68ca036666a0ba4ee0f\",\n            \"item_stocks\": [\n                {\n                    \"id\": 411,\n                    \"reference_id\": \"#POI-411\",\n                    \"stock_order_id\": 230,\n                    \"item_id\": 525,\n                    \"price\": 28.88,\n                    \"quantity\": 3,\n                    \"received_quantity\": 3,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4762972167\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-07-06T11:23:24.000000Z\",\n                    \"updated_at\": \"2023-07-06T11:28:48.000000Z\"\n                },\n                {\n                    \"id\": 615,\n                    \"reference_id\": \"#POI-615\",\n                    \"stock_order_id\": 368,\n                    \"item_id\": 525,\n                    \"price\": 28.88,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6036268866\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-09T16:06:29.000000Z\",\n                    \"updated_at\": \"2024-02-09T16:06:29.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 526,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Cialis 5mg Tablets (28)\",\n            \"cost_price\": 54.99,\n            \"price\": 71.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CIA5\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/90809fa5-f8fc-4285-b191-1edaca035572.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=f4da8ca4eaeef8f3e8b8aa60165e96b05b2edf2587c11f795aa72ce3dc804139\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 527,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Ciprofloxacin 500mg Tablets (56)\",\n            \"cost_price\": 6.5,\n            \"price\": 10.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CIP500\",\n            \"unit\": \"1 x 56\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 374,\n                    \"reference_id\": \"#POI-374\",\n                    \"stock_order_id\": 211,\n                    \"item_id\": 527,\n                    \"price\": 6.5,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4674427087\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-20T15:23:18.000000Z\",\n                    \"updated_at\": \"2023-06-20T15:23:18.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 528,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Circadin 2mg Tabs (MELATONIN) (20)\",\n            \"cost_price\": 10.26,\n            \"price\": 19.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CIRC20\",\n            \"unit\": \"1 x 20\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 89,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Citalopram 40mg Tablets (28)\",\n            \"cost_price\": 0.95,\n            \"price\": 5.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CIT40\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 90,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Clarithromycin 500mg Tablets (14)\",\n            \"cost_price\": 1,\n            \"price\": 4.85,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CLARITH500\",\n            \"unit\": \"14\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks_sum_received_quantity\": 3,\n            \"item_stocks\": [\n                {\n                    \"id\": 25,\n                    \"reference_id\": \"#POI-25\",\n                    \"stock_order_id\": 15,\n                    \"item_id\": 90,\n                    \"price\": 1,\n                    \"quantity\": 5,\n                    \"received_quantity\": 3,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-09-15 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pass\",\n                    \"created_at\": \"2022-07-21T13:52:50.000000Z\",\n                    \"updated_at\": \"2023-08-02T15:44:21.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 529,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Clindamycin 300mg Capsules (28)\",\n            \"cost_price\": 27,\n            \"price\": 39,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CLINCAP3\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 627,\n                    \"reference_id\": \"#POI-627\",\n                    \"stock_order_id\": 374,\n                    \"item_id\": 529,\n                    \"price\": 27,\n                    \"quantity\": 3,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6052430313\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-13T09:01:17.000000Z\",\n                    \"updated_at\": \"2024-02-13T09:01:17.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 91,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Clinell Antimicrobial Wipes (100)\",\n            \"cost_price\": 3.95,\n            \"price\": 5.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CLINB100\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks_sum_received_quantity\": 5,\n            \"item_stocks\": [\n                {\n                    \"id\": 527,\n                    \"reference_id\": \"#POI-527\",\n                    \"stock_order_id\": 307,\n                    \"item_id\": 91,\n                    \"price\": 3.95,\n                    \"quantity\": 10,\n                    \"received_quantity\": 5,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5636782745\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-12-06T13:14:27.000000Z\",\n                    \"updated_at\": \"2023-12-07T15:01:34.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 92,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Clinell Antimicrobial Wipes (20)\",\n            \"cost_price\": 1.25,\n            \"price\": 1.75,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CLINB20\",\n            \"unit\": \"1 x 20\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 93,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Clinell Hand Sanitising Gel (250ML PUMP)\",\n            \"cost_price\": 2.19,\n            \"price\": 3.29,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CLINELLG\",\n            \"unit\": \"1 x 250ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:50.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 423,\n                    \"reference_id\": \"#POI-423\",\n                    \"stock_order_id\": 236,\n                    \"item_id\": 93,\n                    \"price\": 2.19,\n                    \"quantity\": 2,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4765895250\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-07-06T18:06:37.000000Z\",\n                    \"updated_at\": \"2023-07-06T18:07:41.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 94,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Clinell Hand Sanitising Liquid Spray (60ml)\",\n            \"cost_price\": 2.05,\n            \"price\": 2.7,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CLIHSS\",\n            \"unit\": \"1 x 60ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 95,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Clinell Spray 500ml\",\n            \"cost_price\": 3.99,\n            \"price\": 6.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CLINS\",\n            \"unit\": \"1 x 500ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks_sum_received_quantity\": 50,\n            \"item_stocks\": [\n                {\n                    \"id\": 5,\n                    \"reference_id\": \"#POI-5\",\n                    \"stock_order_id\": 3,\n                    \"item_id\": 95,\n                    \"price\": 3.99,\n                    \"quantity\": 100,\n                    \"received_quantity\": 50,\n                    \"initial_quantity\": \"50\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-12 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pass\",\n                    \"created_at\": \"2022-07-18T13:42:58.000000Z\",\n                    \"updated_at\": \"2022-07-18T13:44:40.000000Z\"\n                },\n                {\n                    \"id\": 6,\n                    \"reference_id\": \"#POI-5\",\n                    \"stock_order_id\": 3,\n                    \"item_id\": 95,\n                    \"price\": 3.99,\n                    \"quantity\": 50,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-07-12 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2022-07-18T13:44:40.000000Z\",\n                    \"updated_at\": \"2022-07-18T13:45:14.000000Z\"\n                },\n                {\n                    \"id\": 7,\n                    \"reference_id\": \"#POI-5\",\n                    \"stock_order_id\": 3,\n                    \"item_id\": 95,\n                    \"price\": 3.99,\n                    \"quantity\": 40,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"40\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-19 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-07-18T13:44:58.000000Z\",\n                    \"updated_at\": \"2023-12-18T13:00:44.000000Z\"\n                },\n                {\n                    \"id\": 549,\n                    \"reference_id\": \"#POI-549\",\n                    \"stock_order_id\": 327,\n                    \"item_id\": 95,\n                    \"price\": 3.99,\n                    \"quantity\": 2,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-12 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5702921977\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-12-18T12:59:15.000000Z\",\n                    \"updated_at\": \"2023-12-18T13:01:07.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 96,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Clinell Universal  Sanitising Wipes (200)\",\n            \"cost_price\": 4.99,\n            \"price\": 9.45,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CLIN200\",\n            \"unit\": \"1 x 200\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 97,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Clinell Universal Wipes (100)\",\n            \"cost_price\": 3.95,\n            \"price\": 5.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CLINUG100\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 98,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Clinell Universal Wipes (200)\",\n            \"cost_price\": 6.3,\n            \"price\": 8.2,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CLINUG200\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 99,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Clinical Waste Bags Yellow 90L Medium Duty 381x711x990mm (50)\",\n            \"cost_price\": 2.99,\n            \"price\": 6.75,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CLIWBAGS\",\n            \"unit\": \"50\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 100,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Clinisept Pump\",\n            \"cost_price\": 0,\n            \"price\": 0,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CLINISP\",\n            \"unit\": \"1OP\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 101,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Clinisept+ Aftercare (100ml)\",\n            \"cost_price\": 6.5,\n            \"price\": 8.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CLIN02\",\n            \"unit\": \"1 x 100ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 102,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Clinisept+ Prep & Procedure (500ml)\",\n            \"cost_price\": 6.65,\n            \"price\": 9.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CLINIS500\",\n            \"unit\": \"1 x 500ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 530,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Co-Amoxiclav 500/125mg Tabs (21)\",\n            \"cost_price\": 2.09,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"COAT6\",\n            \"unit\": \"1 x 21\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 103,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Co-codamol 30/500 Tabs\",\n            \"cost_price\": 3.5,\n            \"price\": 7.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 104,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Condyline 0.5% Alcoholic Solution (3.5ml)\",\n            \"cost_price\": 14.49,\n            \"price\": 22.75,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"COND35\",\n            \"unit\": \"1 x 3.5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 105,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Cosmetic Cotton Pads Large (50)\",\n            \"cost_price\": 0.55,\n            \"price\": 1.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"COTPADL\",\n            \"unit\": \"1 x 50\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 106,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Cosmetic Cotton Pads Round (100)\",\n            \"cost_price\": 0.63,\n            \"price\": 1.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"COTPAD\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 107,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"0\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Cotton Buds - (100)\",\n            \"cost_price\": 0.34,\n            \"price\": 1,\n            \"stock\": 5,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"COTBUD\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 114,\n                    \"reference_id\": \"#POI-114\",\n                    \"stock_order_id\": 55,\n                    \"item_id\": 107,\n                    \"price\": 0.34,\n                    \"quantity\": 20,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-08-08T12:50:45.000000Z\",\n                    \"updated_at\": \"2022-08-08T12:50:45.000000Z\"\n                },\n                {\n                    \"id\": 373,\n                    \"reference_id\": \"#POI-373\",\n                    \"stock_order_id\": 211,\n                    \"item_id\": 107,\n                    \"price\": 0.34,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4674426958\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-20T15:23:17.000000Z\",\n                    \"updated_at\": \"2023-06-20T15:23:18.000000Z\"\n                },\n                {\n                    \"id\": 457,\n                    \"reference_id\": \"#POI-457\",\n                    \"stock_order_id\": 256,\n                    \"item_id\": 107,\n                    \"price\": 0.34,\n                    \"quantity\": 2,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-11 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4789781845\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-07-11T17:05:06.000000Z\",\n                    \"updated_at\": \"2023-07-11T17:06:06.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 108,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Cotton Buds - Long Wooden Single (100)\",\n            \"cost_price\": 1.19,\n            \"price\": 1.69,\n            \"stock\": 5,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"COTLON\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 109,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Cotton Wool Balls (100)\",\n            \"cost_price\": 0.49,\n            \"price\": 1.15,\n            \"stock\": 5,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"COTBALL\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 110,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Cotton Wool Balls STERILE (5)\",\n            \"cost_price\": 0.15,\n            \"price\": 0.3,\n            \"stock\": 5,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"COTBALLST\",\n            \"unit\": \"1 x 5\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-03-05T09:51:04.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 111,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Couch Roll 20\\\" 2ply 40m x 500mm (9)\",\n            \"cost_price\": 12,\n            \"price\": 19.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"COUCHROLLS9\",\n            \"unit\": \"1 x 9\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 112,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Couch Roll 20\\\" 2ply 40m x 500mm (Single)\",\n            \"cost_price\": 2.33,\n            \"price\": 2.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"COUCHROLLS\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 531,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Crestor 5mg Tablets (28)\",\n            \"cost_price\": 18.03,\n            \"price\": 25.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CRE10\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 625,\n                    \"reference_id\": \"#POI-625\",\n                    \"stock_order_id\": 374,\n                    \"item_id\": 531,\n                    \"price\": 18.03,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6052430268\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-02-13T09:01:16.000000Z\",\n                    \"updated_at\": \"2024-02-13T09:01:16.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 532,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Cyclizine 50mg Tablets (30)\",\n            \"cost_price\": 3,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CYC50T\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks_sum_received_quantity\": 5,\n            \"item_stocks\": [\n                {\n                    \"id\": 280,\n                    \"reference_id\": \"#POI-280\",\n                    \"stock_order_id\": 156,\n                    \"item_id\": 532,\n                    \"price\": 3,\n                    \"quantity\": 10,\n                    \"received_quantity\": 5,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-19 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4502113259\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-05-19T13:00:52.000000Z\",\n                    \"updated_at\": \"2023-05-19T13:02:40.000000Z\"\n                },\n                {\n                    \"id\": 281,\n                    \"reference_id\": \"#POI-281\",\n                    \"stock_order_id\": 156,\n                    \"item_id\": 532,\n                    \"price\": 3,\n                    \"quantity\": 5,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-19 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4502119569\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-05-19T13:02:39.000000Z\",\n                    \"updated_at\": \"2023-05-19T13:02:57.000000Z\"\n                },\n                {\n                    \"id\": 282,\n                    \"reference_id\": \"#POI-282\",\n                    \"stock_order_id\": 156,\n                    \"item_id\": 532,\n                    \"price\": 3,\n                    \"quantity\": 4,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-17 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4502121489\",\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2023-05-19T13:02:50.000000Z\",\n                    \"updated_at\": \"2023-05-19T13:03:17.000000Z\"\n                },\n                {\n                    \"id\": 283,\n                    \"reference_id\": \"#POI-283\",\n                    \"stock_order_id\": 156,\n                    \"item_id\": 532,\n                    \"price\": 3,\n                    \"quantity\": 3,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4502122766\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-05-19T13:03:09.000000Z\",\n                    \"updated_at\": \"2023-05-19T13:03:10.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 533,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Cyclizine 50mg Tablets (84)\",\n            \"cost_price\": 6,\n            \"price\": 12.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CYCT84\",\n            \"unit\": \"1 x 84\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks_sum_received_quantity\": 10,\n            \"item_stocks\": [\n                {\n                    \"id\": 363,\n                    \"reference_id\": \"#POI-363\",\n                    \"stock_order_id\": 209,\n                    \"item_id\": 533,\n                    \"price\": 6,\n                    \"quantity\": 12,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-16 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4656856307\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-06-16T13:48:37.000000Z\",\n                    \"updated_at\": \"2023-06-16T13:50:27.000000Z\"\n                },\n                {\n                    \"id\": 364,\n                    \"reference_id\": \"#POI-364\",\n                    \"stock_order_id\": 209,\n                    \"item_id\": 533,\n                    \"price\": 6,\n                    \"quantity\": 11,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-16 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4656861745\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-06-16T13:50:26.000000Z\",\n                    \"updated_at\": \"2023-06-16T13:50:44.000000Z\"\n                },\n                {\n                    \"id\": 365,\n                    \"reference_id\": \"#POI-365\",\n                    \"stock_order_id\": 209,\n                    \"item_id\": 533,\n                    \"price\": 6,\n                    \"quantity\": 10,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-16 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4656864018\",\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2023-06-16T13:50:38.000000Z\",\n                    \"updated_at\": \"2023-06-16T13:51:02.000000Z\"\n                },\n                {\n                    \"id\": 366,\n                    \"reference_id\": \"#POI-366\",\n                    \"stock_order_id\": 209,\n                    \"item_id\": 533,\n                    \"price\": 6,\n                    \"quantity\": 9,\n                    \"received_quantity\": 9,\n                    \"initial_quantity\": \"9\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-19 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4656865501\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-06-16T13:50:54.000000Z\",\n                    \"updated_at\": \"2023-06-19T06:02:05.000000Z\"\n                },\n                {\n                    \"id\": 371,\n                    \"reference_id\": \"#POI-371\",\n                    \"stock_order_id\": 211,\n                    \"item_id\": 533,\n                    \"price\": 6,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4674426652\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-20T15:23:16.000000Z\",\n                    \"updated_at\": \"2023-06-21T11:37:30.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 113,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Cyclizine Lactate Injection 50mg/ml (5x1ml)\",\n            \"cost_price\": 16.25,\n            \"price\": 21.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"CYC50\",\n            \"unit\": \"5 x 1ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 114,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Daktacort (Miconazole/ HC) Ointment (30g)\",\n            \"cost_price\": 2.5,\n            \"price\": 5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"0132613\",\n            \"unit\": \"1 X 30g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 115,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Deponit (Glyceryl Trinitrate Patch) 10 mg / 24hrs Pack of 28\",\n            \"cost_price\": 14.06,\n            \"price\": 21.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GTNPD\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 116,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Deponit (Glyceryl Trinitrate Patch) 5mg / 24hrs (SINGLE PATCH)\",\n            \"cost_price\": 2,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GTNPD51\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 117,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Deponit (Glyceryl Trinitrate Patch) 5mg / 24hrs Pack of 28\",\n            \"cost_price\": 14.06,\n            \"price\": 19.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GTNPD5\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 118,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Dermaceutic K Ceutic (30ml)\",\n            \"cost_price\": 20.87,\n            \"price\": 23.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"KCEUT030\",\n            \"unit\": \"1 x 30ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 119,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Dermasculpt Cannula 22g x 70mm (20)\",\n            \"cost_price\": 66,\n            \"price\": 75.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"DERCAN2270\",\n            \"unit\": \"1 x 20\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 120,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Dermasculpt Cannula 27g x 40mm (20)\",\n            \"cost_price\": 105.45,\n            \"price\": 75.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"DERCAN2740\",\n            \"unit\": \"1 x 20\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 121,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Dermasculpt Cannula 27g x 50mm (20)\",\n            \"cost_price\": 66,\n            \"price\": 75.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"DERCAN2750\",\n            \"unit\": \"1 x 20\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 122,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Dermasculpt Cannulas 25G 40mm (20)\",\n            \"cost_price\": 66,\n            \"price\": 75.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"DERCAN2540\",\n            \"unit\": \"1 x 20\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 123,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Dermasculpt Cannulas 25G 50mm (20)\",\n            \"cost_price\": 66,\n            \"price\": 75.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"DERCAN2550\",\n            \"unit\": \"1 x 20\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 534,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"0\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Dermol Wash 200ml\",\n            \"cost_price\": 3.55,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"DERM\",\n            \"unit\": \"1 x 200ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-03-12T14:51:06.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 124,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"DesoFace (5 x 10ml)\",\n            \"cost_price\": 93,\n            \"price\": 113,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"DESOF\",\n            \"unit\": \"5 x 10ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 125,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Dianette Tab 21\",\n            \"cost_price\": 7.71,\n            \"price\": 10.02,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"DB01\",\n            \"unit\": \"3\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 126,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Diazepam 10mg (1 x 28)\",\n            \"cost_price\": 0.72,\n            \"price\": 5.22,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"DZDIS\",\n            \"unit\": \"Box\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 535,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Diazepam 10mg (4)\",\n            \"cost_price\": 0.72,\n            \"price\": 4.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"DIAZ103\",\n            \"unit\": \"1 x 4\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 127,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Diazepam 5mg (1 x 28)\",\n            \"cost_price\": 0.72,\n            \"price\": 5.18,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"DZDIS5\",\n            \"unit\": \"Box\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 128,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Diazepam Rectal Solution 10mg (5x2.5ml)\",\n            \"cost_price\": 7.35,\n            \"price\": 9.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"A1183029\",\n            \"unit\": \"5 x 2.5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 129,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Diazepam Rectal Solution 5mg (5x2.5ml)\",\n            \"cost_price\": 5.85,\n            \"price\": 7.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"A1183011\",\n            \"unit\": \"5 x 2.5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 536,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Diclofenac Tablets 50mg (28)\",\n            \"cost_price\": 2.05,\n            \"price\": 5.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"DICT50\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 537,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Doxycycline 100mg Capsules (28)\",\n            \"cost_price\": 1.12,\n            \"price\": 9.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"DOX10028\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 538,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Doxycycline 100mg Capsules (50)\",\n            \"cost_price\": 8.94,\n            \"price\": 15.3,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"DOX10050\",\n            \"unit\": \"1 x 50\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 130,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Doxycycline 100mg Capsules (8)\",\n            \"cost_price\": 1.12,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"DOX1008\",\n            \"unit\": \"1 x 8\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 131,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Driclor Solution (Aluminium Chloride Hexahydrate 20% w/w) 60ml\",\n            \"cost_price\": 4.74,\n            \"price\": 7.11,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"DRIC60\",\n            \"unit\": \"1 x 60ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 132,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Ellanse Medium (2 x 1ml)\",\n            \"cost_price\": 145.8,\n            \"price\": 195,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ELLAME\",\n            \"unit\": \"2 x 1ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 539,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Emergency Delivery Same Day\",\n            \"cost_price\": 9.9,\n            \"price\": 9.9,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"DELSUPP\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 133,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Emergency Kit\",\n            \"cost_price\": 50,\n            \"price\": 69.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"999KIT\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 134,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Emla Cream 30g\",\n            \"cost_price\": 12.3,\n            \"price\": 14.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"EMLA30G\",\n            \"unit\": \"1 x 30G\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 135,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"EMLA CREAM 5% 5 X 5G (with 12 Dressings)\",\n            \"cost_price\": 3,\n            \"price\": 15.25,\n            \"stock\": 2,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"EMLA5X5\",\n            \"unit\": \"5 x 5g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 372,\n                    \"reference_id\": \"#POI-372\",\n                    \"stock_order_id\": 211,\n                    \"item_id\": 135,\n                    \"price\": 3,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4674426832\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-06-20T15:23:16.000000Z\",\n                    \"updated_at\": \"2023-06-20T15:23:17.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 136,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Emla Cream 5g\",\n            \"cost_price\": 2.25,\n            \"price\": 3.49,\n            \"stock\": 2,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"EMLA5G\",\n            \"unit\": \"1 x 5g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 137,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Endocare Eye and Lip Contour 15ml\",\n            \"cost_price\": 12.55,\n            \"price\": 13.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ENDCONTEL\",\n            \"unit\": \"1 x 15ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 138,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Epiduo 0.1% / 2.5% gel (45g)\",\n            \"cost_price\": 19.53,\n            \"price\": 29.3,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"3861564\",\n            \"unit\": \"1 x 45g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 139,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Epiduo 0.3% / 2.5% gel (45g)\",\n            \"cost_price\": 19.53,\n            \"price\": 29.3,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"4143681\",\n            \"unit\": \"1 x 45g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 140,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Epipen 0.15 mg auto-injector (1)\",\n            \"cost_price\": 34.3,\n            \"price\": 46.3,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"EPIPEN15\",\n            \"unit\": \"0.15mg\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-03-12T16:38:00.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/39046d34-21c6-4b69-abe1-dbf148e75999.webp?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=ca24ac2063680cc6a1e204eafa66650c3ea22bf57313ca2fc02cdf1261dc2262\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 141,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Epipen 0.3 mg auto-injector (1)\",\n            \"cost_price\": 34.3,\n            \"price\": 46.3,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"EPIPEN1\",\n            \"unit\": \"0.3mg\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 142,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Epipen 0.3 mg auto-injector (2 Pack)\",\n            \"cost_price\": 68.6,\n            \"price\": 92.61,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"EPIPEN2\",\n            \"unit\": \"0.3mg\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 143,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Ergocalciferol Injection 300000 UNITS (10x1ml)\",\n            \"cost_price\": 93.51,\n            \"price\": 129.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ERGOINJ300\",\n            \"unit\": \"10 x 1ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 540,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Erythromycin 250mg Tablets (28)\",\n            \"cost_price\": 7.58,\n            \"price\": 12.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ERYT250\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 541,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Erythromycin 250mg Tablets (32)\",\n            \"cost_price\": 7.58,\n            \"price\": 14.85,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ERYT25032\",\n            \"unit\": \"1 x 32\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 144,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Esomeprazole GR Tab 20mg\",\n            \"cost_price\": 3.79,\n            \"price\": 6.15,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ES01\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 145,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Eucerin Dry Skin\",\n            \"cost_price\": 5.6,\n            \"price\": 9.8,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"EDU89\",\n            \"unit\": \"250ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 542,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Eumovate Cream (30g)\",\n            \"cost_price\": 1.8599999999999999,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"EUMC30\",\n            \"unit\": \"1 x 30g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 543,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Eumovate Ointment (30g)\",\n            \"cost_price\": 1.8599999999999999,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"EUM30\",\n            \"unit\": \"1 x 30g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:19.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 146,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Exel Comfort Point U-100 0.3ml 30g 8mm Insulin Syringes (100)\",\n            \"cost_price\": 22.54,\n            \"price\": 27.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"EXE0330G\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 147,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Exel Comfort Point U-100 0.5ml 30g 8mm Insulin Syringes (100)\",\n            \"cost_price\": 22.54,\n            \"price\": 27.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"EXEL0530G\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 148,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Exuviance Clarifying Facial Cleanser (212ml)\",\n            \"cost_price\": 21.7,\n            \"price\": 21.7,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"F20130C\",\n            \"unit\": \"1 x 212ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 149,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Eye Lash Brushes (100)\",\n            \"cost_price\": 1,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ELB100\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 115,\n                    \"reference_id\": \"#POI-115\",\n                    \"stock_order_id\": 55,\n                    \"item_id\": 149,\n                    \"price\": 1,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-08-08T12:50:45.000000Z\",\n                    \"updated_at\": \"2022-08-08T12:50:45.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 150,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Face Mask FFP3 (Single)\",\n            \"cost_price\": 17,\n            \"price\": 24.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FACEMASKFFP3\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 151,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Face Masks IIR (10)\",\n            \"cost_price\": 1.8599999999999999,\n            \"price\": 10.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FMIIR10\",\n            \"unit\": \"1 x 10\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 152,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Face Masks IIR (50)\",\n            \"cost_price\": 1.8599999999999999,\n            \"price\": 42.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FMIIR50\",\n            \"unit\": \"1 x 50\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:02.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:51.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 153,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Face Masks KN95/ FFP2 (Single)\",\n            \"cost_price\": 2.5,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FACEMASKFFP2\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 154,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Face Masks Standard 3ply (10)\",\n            \"cost_price\": 1.8599999999999999,\n            \"price\": 7.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FACEMASKS10\",\n            \"unit\": \"1 x 10\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 155,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Face Masks Standard 3ply (50)\",\n            \"cost_price\": 1.8599999999999999,\n            \"price\": 29.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FACEMASKS50\",\n            \"unit\": \"1 x 50\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 156,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Face Shield Visor (Single)\",\n            \"cost_price\": 3.7,\n            \"price\": 5.55,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FSV\",\n            \"unit\": \"1OP\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 157,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Fast Aid Pre-injection Swabs (1 x 100)\",\n            \"cost_price\": 1.35,\n            \"price\": 2.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FAINSW1X100\",\n            \"unit\": \"1X100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 158,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Feelsoft Ultra Thin micro meso needles 30G 4mm (100)\",\n            \"cost_price\": 29.5,\n            \"price\": 32.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FS304\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 159,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Fibrovein 0.2% Injection 10 x 5ml\",\n            \"cost_price\": 73.61,\n            \"price\": 95.69,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FIB02510\",\n            \"unit\": \"10 x 5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 160,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Fibrovein 0.2% Injection 5ml (Single Vial)\",\n            \"cost_price\": 7.36,\n            \"price\": 11.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FIB025\",\n            \"unit\": \"1 x 5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 161,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Fibrovein 0.5% Injection 5 x 2ml\",\n            \"cost_price\": 18.93,\n            \"price\": 28.4,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FIB0525\",\n            \"unit\": \"5 x 2ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 162,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Fibrovein 1% Injection (5x2ml)\",\n            \"cost_price\": 22.61,\n            \"price\": 33.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FIB02X5\",\n            \"unit\": \"5 x 2ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 163,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Fillmed Art Filler Fine Lines (2 x 1ml)\",\n            \"cost_price\": 90,\n            \"price\": 93.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FILLFIN\",\n            \"unit\": \"2 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 164,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Fillmed Art Filler Lips (2 x 1ml)\",\n            \"cost_price\": 110,\n            \"price\": 113.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FILLLIP\",\n            \"unit\": \"2 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/ec67c991-b47d-47b5-9bb6-7915240c550e.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=c479ba4e90a01e410f0d980e1771dc031699a31e09d613f08f9376a678f62200\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 165,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Fillmed Art Filler Universal (2 x 1.2ml)\",\n            \"cost_price\": 110,\n            \"price\": 114.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FILLUNI\",\n            \"unit\": \"2 x 1.2ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 166,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Fillmed Art Filler Volume (2 x 1.2ml)\",\n            \"cost_price\": 88.2,\n            \"price\": 128.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FILLVOL\",\n            \"unit\": \"2 x 1.2ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 167,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Fillmed Bio Nutri Lift Cannula  25G/55mm (20)\",\n            \"cost_price\": 138.51,\n            \"price\": 143.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FILBC\",\n            \"unit\": \"1 x 20\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 168,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Fillmed M-HA 10 (3 x 3ml)\",\n            \"cost_price\": 71,\n            \"price\": 81.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FILLMHA10\",\n            \"unit\": \"3 x 3ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 169,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Fillmed M-HA 18 (1 x 1ml)\",\n            \"cost_price\": 37,\n            \"price\": 51.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FILLMHA18\",\n            \"unit\": \"1 x 1ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 170,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Fillmed nanosoft micro needles 0.6mm (30)\",\n            \"cost_price\": 136.8,\n            \"price\": 159.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FILLNS\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 171,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Fillmed NCTF 135HA (10x3ml)\",\n            \"cost_price\": 144,\n            \"price\": 175,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FILNC135HA10\",\n            \"unit\": \"10 x 3ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 172,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Fillmed NCTF 135HA (5x3ml)\",\n            \"cost_price\": 93.58,\n            \"price\": 97.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FILNC135HA5\",\n            \"unit\": \"5 x 3ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 544,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Finasteride 1mg Tabs (28)\",\n            \"cost_price\": 0,\n            \"price\": 12.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FIN5\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 173,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Finasteride 5mg Tablets (28)\",\n            \"cost_price\": 12.49,\n            \"price\": 12.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 545,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Flamazine Cream 1% (50g)\",\n            \"cost_price\": 3.85,\n            \"price\": 6.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FLA50\",\n            \"unit\": \"1 x 50g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 546,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Flucloxacillin 250 Capsules (20)\",\n            \"cost_price\": 1.67,\n            \"price\": 5.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FLUCLOX25020\",\n            \"unit\": \"1 x 20\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 547,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Flucloxacillin 250 Capsules (28)\",\n            \"cost_price\": 1.67,\n            \"price\": 5.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FLUCLOX25028\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 548,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Flucloxacillin 500 Capsules (21)\",\n            \"cost_price\": 1.67,\n            \"price\": 4.67,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FLUCLOX500\",\n            \"unit\": \"1 x 21\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 549,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Flucloxacillin 500 Capsules (28)\",\n            \"cost_price\": 1.67,\n            \"price\": 5.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FLUCLOX50028\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 550,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Flucloxacillin 500 Capsules (36)\",\n            \"cost_price\": 1.67,\n            \"price\": 6.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FLUCLOX50036\",\n            \"unit\": \"1 x 36\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 410,\n                    \"reference_id\": \"#POI-410\",\n                    \"stock_order_id\": 229,\n                    \"item_id\": 550,\n                    \"price\": 1.67,\n                    \"quantity\": 2,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4762680614\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2023-07-06T10:03:13.000000Z\",\n                    \"updated_at\": \"2023-07-06T10:03:14.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 174,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"FMC Micro Cannula 25g 40mm (24)\",\n            \"cost_price\": 70,\n            \"price\": 79.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FMCCAN2540\",\n            \"unit\": \"1 x 24\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 175,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"FMC Micro Cannula 25g 50mm (24)\",\n            \"cost_price\": 70,\n            \"price\": 79.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FMCCAN2550\",\n            \"unit\": \"1 x 24\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 176,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"FMS 0.3ml 32G 8mm Fine Micro Syringes with Pre-attached Needles (100)\",\n            \"cost_price\": 18.5,\n            \"price\": 23.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FMS0332G\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 177,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"FMS 0.5ml 32G 10mm Fine Micro Syringes with Pre-attached Needles (100)\",\n            \"cost_price\": 18.5,\n            \"price\": 23.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FMS0532G\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 178,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"FMS 1.0ml 32G 12mm Fine Micro Syringes with Pre-attached Needles (100)\",\n            \"cost_price\": 18.5,\n            \"price\": 23.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FMS1031G\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 179,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Fostair 200/6\",\n            \"cost_price\": 29.32,\n            \"price\": 43.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"120 Dose\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 551,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Fucidin (2%) Cream (30g)\",\n            \"cost_price\": 3.59,\n            \"price\": 5.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FUCCR30\",\n            \"unit\": \"1 X 30g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 552,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Fucidin 2% Ointment (15g)\",\n            \"cost_price\": 2.68,\n            \"price\": 5.36,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FUCO15\",\n            \"unit\": \"1 X 15g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 553,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Fucidin 2% Ointment (30g)\",\n            \"cost_price\": 4.55,\n            \"price\": 6.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"FUCO30\",\n            \"unit\": \"1 X 30g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 180,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Gallipots Sterile 120ml (20)\",\n            \"cost_price\": 3.48,\n            \"price\": 6.96,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GAL120\",\n            \"unit\": \"1 x 20\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 181,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Gallipots Sterile 60ml (20)\",\n            \"cost_price\": 2.05,\n            \"price\": 4.1,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GAL60\",\n            \"unit\": \"1 x 20\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 674,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Gamma\",\n            \"cost_price\": 30,\n            \"price\": 65,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"cm\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2022-05-26T15:18:59.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 182,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Gardasil PFS (1 x 0.5ml)\",\n            \"cost_price\": 86.5,\n            \"price\": 106.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GARDPFS\",\n            \"unit\": \"1 x 0.5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 183,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Gauze Swabs MESOFT STRL 4P (7.5cmx7.5cm) 1 x 150\",\n            \"cost_price\": 5.2,\n            \"price\": 9.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GAUSTM75\",\n            \"unit\": \"1X150\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 184,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Gauze Swabs NS (10cmx10cm) ALVITA 8ply 1 x 100\",\n            \"cost_price\": 1.44,\n            \"price\": 2.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GAUZESWABS10\",\n            \"unit\": \"1X100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 185,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Gauze Swabs NS (5cmx5cm) 1 x 100\",\n            \"cost_price\": 1.44,\n            \"price\": 3.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GAUZESWABS5\",\n            \"unit\": \"1X100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 186,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Gauze Swabs NS (7.5cmx7.5cm) 1 x 100\",\n            \"cost_price\": 3,\n            \"price\": 3.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GAUZESWABS75\",\n            \"unit\": \"1X100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 187,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Gauze Swabs NS (Mesoft) 10x10cm (100)\",\n            \"cost_price\": 2.41,\n            \"price\": 3.99,\n            \"stock\": 2,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MESSWAB\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 188,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Gauze Swabs Propax STRL 8Ply (7.5cmx7.5cm) 1 x 5\",\n            \"cost_price\": 0.42,\n            \"price\": 0.65,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"PROSTP875\",\n            \"unit\": \"1X5\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 189,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Gauze Swabs Propax STRL 8Ply (7.5cmx7.5cm) 48 x 5\",\n            \"cost_price\": 20.16,\n            \"price\": 24.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"PROSTP87548\",\n            \"unit\": \"48 X 5\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:53.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 190,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Gauze Swabs Topper 8 STRL 4P (7.5cmx7.5cm) 1 x 100\",\n            \"cost_price\": 5.2,\n            \"price\": 6.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GAUSTP875\",\n            \"unit\": \"1X100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 554,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Genotropin (Somatropin) 5.3mg refill cart (1)\",\n            \"cost_price\": 92.15,\n            \"price\": 124.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GEN53\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 555,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Genotropin Goquick (Somatropin) 5.3mg (1)\",\n            \"cost_price\": 92.15,\n            \"price\": 124.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GENGQ53\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 556,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Genotropin GoQuick 12mg (Pack of 1)\",\n            \"cost_price\": 208.65,\n            \"price\": 271.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GENGOQ12\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 557,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Gentamicin 80mg/2ml Injection (5)\",\n            \"cost_price\": 6.88,\n            \"price\": 10.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GENT80\",\n            \"unit\": \"1 x 5\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 558,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Glucagen Hypokit (Glucagon Injection)\",\n            \"cost_price\": 11.52,\n            \"price\": 17.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"2227510\",\n            \"unit\": \"1OP\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 191,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Glucogel 3x25g tubes (40%)\",\n            \"cost_price\": 7.28,\n            \"price\": 10.92,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GLUC325\",\n            \"unit\": \"3 x 25g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 192,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"GlucoRx Carepoint Pen Needles 5mm 31G (100)\",\n            \"cost_price\": 2.75,\n            \"price\": 4.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GXC123\",\n            \"unit\": \"25\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 193,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"GlucoRx Carepoint Pen Needles 5mm 31G (25)\",\n            \"cost_price\": 1.25,\n            \"price\": 1.35,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GXC121\",\n            \"unit\": \"25\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 194,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"GlucoRx Carepoint Pen Needles 5mm 31G (30)\",\n            \"cost_price\": 1.25,\n            \"price\": 1.55,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GXC30\",\n            \"unit\": \"30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 195,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"GlucoRx Carepoint Pen Needles 5mm 31G (4)\",\n            \"cost_price\": 0.01,\n            \"price\": 0,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GXC4\",\n            \"unit\": \"4\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 196,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"GlucoRx Carepoint Pen Needles 5mm 31G (50)\",\n            \"cost_price\": 1.38,\n            \"price\": 2.45,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GXC122\",\n            \"unit\": \"25\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 197,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"GlucoRx Carepoint Pen Needles 5mm 31G (60)\",\n            \"cost_price\": 1.25,\n            \"price\": 2.9,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GXC60\",\n            \"unit\": \"60\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 198,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"GlucoRx Carepoint Pen Needles 5mm 31G (90) -\",\n            \"cost_price\": 1.25,\n            \"price\": 4.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GXC90\",\n            \"unit\": \"90\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 199,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"GlucroRx 5mm Needles\",\n            \"cost_price\": 4.5,\n            \"price\": 6.75,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:03.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 200,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Glyceryl Trinitrate Pump Spray 200DSE (1)\",\n            \"cost_price\": 2.9699999999999998,\n            \"price\": 5.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"P1073568\",\n            \"unit\": \"1OP\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:04.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 201,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Gown (Sterile) Large\",\n            \"cost_price\": 9,\n            \"price\": 13.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GOWSL\",\n            \"unit\": \"1OP\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:04.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 202,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Gown (Sterile) Medium\",\n            \"cost_price\": 9,\n            \"price\": 13.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GOWSM\",\n            \"unit\": \"1OP\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:04.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 559,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"GTN (Minitran) Patch 5mg (30)\",\n            \"cost_price\": 11.62,\n            \"price\": 19.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"GTNPAT5\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 204,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Hand Sanitiser (70/75% Alcohol) 500ml\",\n            \"cost_price\": 2.5,\n            \"price\": 10.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"HANDSANIT500\",\n            \"unit\": \"1 x 500ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:04.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 203,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Hand Sanitiser (70% Alcohol) 60ml\",\n            \"cost_price\": 2.5,\n            \"price\": 3.75,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"HANDSANIT60\",\n            \"unit\": \"1 x 60ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"rt\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:04.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 205,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Heliocare 360 Color Gel Oil Free (Beige) SPF50+ (50ml)\",\n            \"cost_price\": 13.75,\n            \"price\": 14.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"670597\",\n            \"unit\": \"50ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:04.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 206,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Heliocare 360 Color Gel Oil Free (Bronze) SPF50+ (50ml)\",\n            \"cost_price\": 13.75,\n            \"price\": 14.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"670598\",\n            \"unit\": \"50ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:04.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 207,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Heliocare 360 Fluid Cream SPF50+ (50ml)\",\n            \"cost_price\": 13.48,\n            \"price\": 13.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"670623\",\n            \"unit\": \"50ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:04.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 208,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Heliocare 360 Oil Free Gel SPF 50 Dry Touch 50ml\",\n            \"cost_price\": 13.48,\n            \"price\": 17.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"670625\",\n            \"unit\": \"1 x 50ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:04.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 209,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Heliocare Advanced Gel SPF50 (50ml)\",\n            \"cost_price\": 9.85,\n            \"price\": 12.85,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"670601\",\n            \"unit\": \"1 x 50ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:04.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 210,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Heliocare Color Gelcream BROWN SPF 50 (50ml)\",\n            \"cost_price\": 12.18,\n            \"price\": 12.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"670615\",\n            \"unit\": \"1 x 50ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:04.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 211,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Heliocare Color Gelcream LIGHT SPF 50 (50ml)\",\n            \"cost_price\": 12.18,\n            \"price\": 12.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"670619\",\n            \"unit\": \"1 x 50ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:04.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 212,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Hibiscrub Solution (Chlorhexidine 4%) 500ml\",\n            \"cost_price\": 4.4,\n            \"price\": 7.87,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"HIB500\",\n            \"unit\": \"1 x 500ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 560,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Hirudoid Gel (50g)\",\n            \"cost_price\": 3.99,\n            \"price\": 6.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"HIR50\",\n            \"unit\": \"1 x 50g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 213,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Hot & Cold Pack 13x14cm (Reusable) with cover\",\n            \"cost_price\": 0.54,\n            \"price\": 6.53,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"HOTCOLD\",\n            \"unit\": \"1 Unit\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 214,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"HUXD3 CAP 20000IU COLECALCIFEROL (COLECALCIFEROL)\",\n            \"cost_price\": 2.2,\n            \"price\": 6.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"1 x 20\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 561,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"HuxD3 Capsules 20000IU (20)\",\n            \"cost_price\": 2.62,\n            \"price\": 5.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"HUX20\",\n            \"unit\": \"1 x 20\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 215,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Hyaluronidase 1500units 10x1ml Amps\",\n            \"cost_price\": 155,\n            \"price\": 179.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"HYALUR150010X1\",\n            \"unit\": \"10X1ML\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 216,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Hyaluronidase 1500units 1x1ml Amps\",\n            \"cost_price\": 15.5,\n            \"price\": 20.15,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"HYALUR15001X1\",\n            \"unit\": \"1X1ML\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 217,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Hydrex Alcoholic Solution 600ml (Pink)\",\n            \"cost_price\": 4.91,\n            \"price\": 9.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"HYDALSO600\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 218,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Hydrex Pink Spray 500ml (Pink)\",\n            \"cost_price\": 7.08,\n            \"price\": 11.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"HYDRPS5\",\n            \"unit\": \"1 x 500ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 562,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Hydrocortisone Cream 1% (15g)\",\n            \"cost_price\": 1.15,\n            \"price\": 4.8,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"HYDCR151\",\n            \"unit\": \"1 x 15g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 219,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Hydroxocobalamin Injection 1 mg / 1ml (1)\",\n            \"cost_price\": 2,\n            \"price\": 3.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"VITB12\",\n            \"unit\": \"1X1ML\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 220,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Hydroxocobalmin 1000mcg Amps (5 x 1ml)\",\n            \"cost_price\": 10,\n            \"price\": 14.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NHYDR5X10\",\n            \"unit\": \"5 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 563,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Hydroxocobalmin 1000mcg Amps (5x1ml)\",\n            \"cost_price\": 10,\n            \"price\": 14.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"HYDR5X10\",\n            \"unit\": \"5 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 221,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Hydroxychloroquine Tablets 200mg (60)\",\n            \"cost_price\": 7,\n            \"price\": 12.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"HYDX200\",\n            \"unit\": \"1 x 60\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 222,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Ibuprofen 400mg Tabs\",\n            \"cost_price\": 1,\n            \"price\": 10.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks_sum_received_quantity\": 100,\n            \"item_stocks\": [\n                {\n                    \"id\": 517,\n                    \"reference_id\": \"#POI-517\",\n                    \"stock_order_id\": 298,\n                    \"item_id\": 222,\n                    \"price\": 1,\n                    \"quantity\": 100,\n                    \"received_quantity\": 100,\n                    \"initial_quantity\": \"100\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-11-14 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5507260685\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-11-14T11:23:25.000000Z\",\n                    \"updated_at\": \"2023-12-13T17:18:17.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 564,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Ibuprofen Gel 10% (50g)\",\n            \"cost_price\": 3.05,\n            \"price\": 5.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"IBUGM50\",\n            \"unit\": \"1 x 50g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks_sum_received_quantity\": 100,\n            \"item_stocks\": [\n                {\n                    \"id\": 109,\n                    \"reference_id\": \"#POI-109\",\n                    \"stock_order_id\": 51,\n                    \"item_id\": 564,\n                    \"price\": 3.05,\n                    \"quantity\": 100,\n                    \"received_quantity\": 100,\n                    \"initial_quantity\": \"100\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-05 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pass\",\n                    \"created_at\": \"2022-08-05T17:26:53.000000Z\",\n                    \"updated_at\": \"2022-08-05T17:27:20.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 223,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Injection Anatomy of the Upper Face 9th July 2019\",\n            \"cost_price\": 0,\n            \"price\": 40,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"9072109\",\n            \"unit\": \"Delegate\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 676,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"insulin test\",\n            \"cost_price\": 10,\n            \"price\": 12,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"Isulin45\",\n            \"unit\": \"1 x 3ml\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2022-07-21T16:28:34.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 26,\n                    \"reference_id\": \"#POI-26\",\n                    \"stock_order_id\": 16,\n                    \"item_id\": 676,\n                    \"price\": 10,\n                    \"quantity\": 52,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-07-21T17:50:50.000000Z\",\n                    \"updated_at\": \"2022-07-21T17:50:50.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 224,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Iopidine (0.5%) Eye Drops 1 x 5ml\",\n            \"cost_price\": 10.88,\n            \"price\": 16.32,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"IOP5\",\n            \"unit\": \"1 x 5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 225,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Irripod Saline 0.9% 20ml (20)\",\n            \"cost_price\": 5.9,\n            \"price\": 7.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"IRR20\",\n            \"unit\": \"20 x 20ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 226,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Irripod Saline 0.9% 20ml (25)\",\n            \"cost_price\": 5.9,\n            \"price\": 9.2,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"IRR25\",\n            \"unit\": \"25 x 20ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 565,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Isotretinoin Capsules 10mg (30)\",\n            \"cost_price\": 14.54,\n            \"price\": 23.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ISOTC10\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 566,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Isotretinoin Capsules 20mg (30)\",\n            \"cost_price\": 20.02,\n            \"price\": 29.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ISOTC20\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 227,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"JanMarini Bioglycolic Face Cleanser (237ml)\",\n            \"cost_price\": 18.5,\n            \"price\": 19.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"660100\",\n            \"unit\": \"1 x 237ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 228,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Jext Adrenaline Auto-Injector 300mcg (1 Pack)\",\n            \"cost_price\": 23.99,\n            \"price\": 35.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"JEXT3\",\n            \"unit\": \"1 x 1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 567,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Juvaderm Ultra 2 (2 x 0.55ml)\",\n            \"cost_price\": 0,\n            \"price\": 89,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"Box\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"Juvaderm Ultra 2 (2 x 0.55ml)\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 229,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Juvederm Ultra 2 (2 x 0.55ml)\",\n            \"cost_price\": 80,\n            \"price\": 89,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"JUVULT2\",\n            \"unit\": \"2 x 0.55ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/36f234c4-32f6-4323-841a-922c8d221442.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=da55ff6b3778204f80d581243391282eb338302fc13628c88d17ba4f7084a8eb\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 568,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Juvederm Ultra 2 (SINGLE SYRINGE)\",\n            \"cost_price\": 40,\n            \"price\": 54.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"JUVULT2SIN\",\n            \"unit\": \"1 x 0.55ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/b9ba7979-e1ff-4f37-bbfe-752a3c654285.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=d175e4a92aa0eae2257555d06c1bcbad767d8c540a92f36092029b8168f55f8b\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 230,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Juvederm Ultra 3 (2 x 1.0ml)\",\n            \"cost_price\": 160,\n            \"price\": 164,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"JUVULT3\",\n            \"unit\": \"2 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 231,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Juvederm Ultra 3 (SINGLE SYRINGE)\",\n            \"cost_price\": 80,\n            \"price\": 97,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"JUVULT3SING\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 232,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Juvederm Ultra 4 (2 x 1.0ml)\",\n            \"cost_price\": 150,\n            \"price\": 167,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"JUVULT4\",\n            \"unit\": \"2 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 569,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Juvederm Ultra 4 (SINGLE SYRINGE) (1 x 1.0ml)\",\n            \"cost_price\": 75,\n            \"price\": 93.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"JUVULT4SIN\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 233,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Juvederm Ultra smile (2 x 0.55ml)\",\n            \"cost_price\": 95,\n            \"price\": 98.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"JUVULTSMI\",\n            \"unit\": \"2 x 0.55ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 570,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Juvederm Ultra smile (SINGLE SYRINGE)\",\n            \"cost_price\": 95,\n            \"price\": 59.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"JUVUSSIN\",\n            \"unit\": \"1 x 0.55ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 234,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Juvederm Volbella with Lidocaine (2 x 1.0ml)\",\n            \"cost_price\": 200,\n            \"price\": 207.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"JUVVOLB\",\n            \"unit\": \"2 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 571,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Juvederm Volbella with Lidocaine (SINGLE SYRINGE)\",\n            \"cost_price\": 100,\n            \"price\": 123.75,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"JUVVBSIN\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 235,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Juvederm Volift Retouch (2 x 0.55ml)\",\n            \"cost_price\": 100,\n            \"price\": 121.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"JUVVOLRET\",\n            \"unit\": \"2 x 0.55ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 572,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Juvederm Volift Retouch (SINGLE SYRINGE)\",\n            \"cost_price\": 50,\n            \"price\": 70.75,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"JUVVOLRETSING\",\n            \"unit\": \"1 x 0.55ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 236,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Juvederm Volift with Lidocaine (2 x 1.0ml)\",\n            \"cost_price\": 200,\n            \"price\": 207.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"JUVVOLIFT\",\n            \"unit\": \"2 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 573,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Juvederm Volift with Lidocaine (SINGLE SYRINGE)\",\n            \"cost_price\": 100,\n            \"price\": 123.75,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"JUVVLITSIN\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 237,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Juvederm Voluma with Lidocaine (2 x 1.0ml)\",\n            \"cost_price\": 200,\n            \"price\": 207.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"JUVVOLU\",\n            \"unit\": \"2 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 574,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Juvederm Voluma with Lidocaine (SINGLE SYRINGE)\",\n            \"cost_price\": 100,\n            \"price\": 123.75,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"JUVVOLUSIN\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 238,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Juvederm Volux with Lidocaine (2 x 1.0ml)\",\n            \"cost_price\": 184,\n            \"price\": 217.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"JUVVOLUX\",\n            \"unit\": \"2 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 239,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Kelo-cote Advanced Formula Scar Gel 15g\",\n            \"cost_price\": 19.55,\n            \"price\": 21.55,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"700100\",\n            \"unit\": \"1 x 15g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 575,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Kenalog 40mg/1ml Vials (5)\",\n            \"cost_price\": 7.45,\n            \"price\": 14.9,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"KEN40\",\n            \"unit\": \"1 x 5\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 240,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Kenalog 40mg/1ml Vials (5x1ml)\",\n            \"cost_price\": 7.45,\n            \"price\": 14.9,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NKEN40\",\n            \"unit\": \"1 x 5\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 241,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Kenalog 40mg/1ml Vials (SINGLE VIAL.)\",\n            \"cost_price\": 1.49,\n            \"price\": 3.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"KEN40S\",\n            \"unit\": \"1 x 1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 576,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Lansoprazole 15mg capsules (28)\",\n            \"cost_price\": 0.61,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LANS15CAP\",\n            \"unit\": \"28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 242,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Lansoprazole 30mg capsules (28)\",\n            \"cost_price\": 0.88,\n            \"price\": 5.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LANS30CAP\",\n            \"unit\": \"28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 243,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Latex Gloves PF Large (100)\",\n            \"cost_price\": 9.5,\n            \"price\": 12.35,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LATGLOVELRG\",\n            \"unit\": \"1X100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 244,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Latex Gloves PF Medium (100)\",\n            \"cost_price\": 9.5,\n            \"price\": 12.35,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LATGLOVEMED\",\n            \"unit\": \"1X100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 245,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Latex Gloves PF Small (100)\",\n            \"cost_price\": 9.5,\n            \"price\": 12.35,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LATGLOVESML\",\n            \"unit\": \"1X100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 246,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Lenzetto 1.53mg Transdermal Spray (1)\",\n            \"cost_price\": 6.9,\n            \"price\": 10.35,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"4149092\",\n            \"unit\": \"1 op\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 577,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Levothyroxine 100mcg Tablets (28)\",\n            \"cost_price\": 1,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LEV100\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 247,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Lidocaine Injection 0.5% (10x10ml)\",\n            \"cost_price\": 10,\n            \"price\": 14.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LID05P1010\",\n            \"unit\": \"10 x 10ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 248,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Lidocaine Injection 1% (10x2ml)\",\n            \"cost_price\": 2.2,\n            \"price\": 3.75,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LID1P102\",\n            \"unit\": \"10 x 2ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 249,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Lidocaine Injection 1% (10x5ml)\",\n            \"cost_price\": 3.05,\n            \"price\": 4.75,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LID1P105\",\n            \"unit\": \"10 x 5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 250,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Lidocaine Injection 1% (SINGLE AMP 2ml)\",\n            \"cost_price\": 0.22,\n            \"price\": 1.15,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LID1P12\",\n            \"unit\": \"1 x 2ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 251,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Lidocaine Injection 1% (SINGLE AMP 5ml)\",\n            \"cost_price\": 0.31,\n            \"price\": 1.45,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LID1P15\",\n            \"unit\": \"1 x 5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 252,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Lidocaine Injection 2% (10x2ml)\",\n            \"cost_price\": 2.37,\n            \"price\": 4.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LID2P102\",\n            \"unit\": \"10 x 2ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 253,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Lidocaine Injection 2% (10x5ml)\",\n            \"cost_price\": 3.29,\n            \"price\": 5.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LID2P105\",\n            \"unit\": \"10 x 5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 254,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Lidocaine Injection 2% (SINGLE AMP 2ml)\",\n            \"cost_price\": 0.24,\n            \"price\": 1.35,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LID2P12\",\n            \"unit\": \"1 x 2ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 255,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Lidocaine Injection 2% (SINGLE AMP 5ml)\",\n            \"cost_price\": 0.33,\n            \"price\": 1.65,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LID2P15\",\n            \"unit\": \"1 x 5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:54.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 256,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Lignospan Special Cartridges (2%) (50x2.2ml)\",\n            \"cost_price\": 21.95,\n            \"price\": 28.55,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LIGSPE50\",\n            \"unit\": \"50 x 2.2ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 257,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Lignospan Special Cartridges (2%) (SINGLE CARTRIDGE)\",\n            \"cost_price\": 0.44,\n            \"price\": 1,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LIGSPE50SIN\",\n            \"unit\": \"1 x 2.2ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 258,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"LMX Cream 5g\",\n            \"cost_price\": 3,\n            \"price\": 3.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LMX5\",\n            \"unit\": \"5g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"test this product ffffffff\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/eed7b235-fccb-48b2-9c7f-4d5d2e9a9fbd.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=2beaf091e5468e47fc58ab716151c0afbc22b9e674a6355c701c186342fe7794\",\n            \"item_stocks\": [],\n            \"terms\": [\n                {\n                    \"id\": 228,\n                    \"item_id\": 258,\n                    \"term_id\": 24,\n                    \"created_at\": \"2023-09-26T16:32:27.000000Z\",\n                    \"updated_at\": \"2023-09-26T16:32:27.000000Z\",\n                    \"term\": {\n                        \"id\": 24,\n                        \"item_description\": \"I confirm a physical face to face consultation has been carried with the patient before this treatment has been prescribed.\",\n                        \"created_at\": \"2022-10-19T09:21:49.000000Z\",\n                        \"updated_at\": \"2022-10-19T09:21:49.000000Z\"\n                    }\n                }\n            ],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 259,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"LMX4 Cream 30g\",\n            \"cost_price\": 13.12,\n            \"price\": 15.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LMX30\",\n            \"unit\": \"1 x 30G\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 260,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Loratadine Tablets 10mg (30)\",\n            \"cost_price\": 0.6,\n            \"price\": 4.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LOR1030\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 578,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Losartan HCTZ 50/12.5MG Tablets (28)\",\n            \"cost_price\": 1.55,\n            \"price\": 4.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LOHCTZ50125\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 261,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"LSC P1000\",\n            \"cost_price\": 100,\n            \"price\": 100,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/30a368cb-b3e2-4b4a-b3e9-b318b5dca44b.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=b1ac84d4012f62491832c597a32d8847aad08f57f3c40703dd394c50d6b6dbec\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 262,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"LSC Sharps Bins 1L\",\n            \"cost_price\": 1,\n            \"price\": 100,\n            \"stock\": 1000,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SHA2L\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 263,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Luer-lok Syringe 10ml (1)\",\n            \"cost_price\": 0.2,\n            \"price\": 0.3,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LUELOX10\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 18,\n                    \"reference_id\": \"#POI-18\",\n                    \"stock_order_id\": 12,\n                    \"item_id\": 263,\n                    \"price\": 0.2,\n                    \"quantity\": 110,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-07-20T12:29:55.000000Z\",\n                    \"updated_at\": \"2022-07-20T12:29:55.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 264,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Luer-lok Syringe 2.5ml (1)\",\n            \"cost_price\": 0.1,\n            \"price\": 0.2,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LUELOK25\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 265,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Lumigan 0.1% Eye Drops 3ml\",\n            \"cost_price\": 11.71,\n            \"price\": 23.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LGU12\",\n            \"unit\": \"3ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 266,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Lumigan UD Eye Drops 0.03% (30x0.4ml)\",\n            \"cost_price\": 13.75,\n            \"price\": 25.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"LUMUD\",\n            \"unit\": \"Box\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 267,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Lymecycline 408mg Capsules\",\n            \"cost_price\": 6.6,\n            \"price\": 13.2,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 268,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Medicare Plus Cleansing Wipes AF/FF (30)\",\n            \"cost_price\": 1.99,\n            \"price\": 2.99,\n            \"stock\": 5,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MEDWIP30\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 269,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Medik8 Intelleigent Retinol 10TR 1% (15ML)\",\n            \"cost_price\": 20,\n            \"price\": 27.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MEDIK10\",\n            \"unit\": \"1 x 15ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 270,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Mesoft 10x10 Swabs (100)\",\n            \"cost_price\": 1,\n            \"price\": 1,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MESO10\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"Molnlycke Health Care\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 17,\n                    \"reference_id\": \"#POI-17\",\n                    \"stock_order_id\": 11,\n                    \"item_id\": 270,\n                    \"price\": 1,\n                    \"quantity\": 1,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-07-20T12:29:07.000000Z\",\n                    \"updated_at\": \"2022-07-20T12:29:07.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 579,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Metformin 500mg tabs (28)\",\n            \"cost_price\": 2.5,\n            \"price\": 4.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MET50028\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 651,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"meth test delete\",\n            \"cost_price\": 50,\n            \"price\": 60,\n            \"stock\": 5,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"box\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-10-18T11:30:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks_sum_received_quantity\": 22,\n            \"item_stocks\": [\n                {\n                    \"id\": 543,\n                    \"reference_id\": \"#POI-543\",\n                    \"stock_order_id\": 323,\n                    \"item_id\": 651,\n                    \"price\": 50,\n                    \"quantity\": 10,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-18 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5702238799\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-12-18T10:59:01.000000Z\",\n                    \"updated_at\": \"2023-12-18T10:59:45.000000Z\"\n                },\n                {\n                    \"id\": 544,\n                    \"reference_id\": \"#POI-544\",\n                    \"stock_order_id\": 324,\n                    \"item_id\": 651,\n                    \"price\": 50,\n                    \"quantity\": 5,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-18 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5702244917\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-12-18T11:00:19.000000Z\",\n                    \"updated_at\": \"2023-12-18T11:00:56.000000Z\"\n                },\n                {\n                    \"id\": 545,\n                    \"reference_id\": \"#POI-545\",\n                    \"stock_order_id\": 324,\n                    \"item_id\": 651,\n                    \"price\": 50,\n                    \"quantity\": 3,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"5702249424\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-12-18T11:00:56.000000Z\",\n                    \"updated_at\": \"2023-12-18T11:00:56.000000Z\"\n                },\n                {\n                    \"id\": 546,\n                    \"reference_id\": \"#POI-546\",\n                    \"stock_order_id\": 325,\n                    \"item_id\": 651,\n                    \"price\": 50,\n                    \"quantity\": 10,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-18 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5702253662\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-12-18T11:01:30.000000Z\",\n                    \"updated_at\": \"2023-12-18T11:03:08.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 271,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Metronidazole 0.75% gel\",\n            \"cost_price\": 9,\n            \"price\": 17.61,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"1 x 40g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 272,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Metronidazole 400mg Tabs (21)\",\n            \"cost_price\": 3.96,\n            \"price\": 9.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MET400\",\n            \"unit\": \"21\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 273,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Micropore Tape 2.5cm (5m)\",\n            \"cost_price\": 0.75,\n            \"price\": 1.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MIC255\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 274,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Minoxidil 12.5% (with Azelaic Acid 6%) Topical lotion (60ml)\",\n            \"cost_price\": 11.25,\n            \"price\": 19.33,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MINOX60\",\n            \"unit\": \"1 x 60ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-03-27T11:07:41.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 275,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Minoxidil 12.5% (with Azelaic Acid 6%) Topical lotion (90ml)\",\n            \"cost_price\": 14.5,\n            \"price\": 29,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MINAZELOT\",\n            \"unit\": \"1 x 90ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 580,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Minoxidil 12.5% with Azelaic Acid 6% Topical Lotion\",\n            \"cost_price\": 0,\n            \"price\": 100,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"1 x 90ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 276,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Minoxidil 5% Topical lotion (90ml)\",\n            \"cost_price\": 10.5,\n            \"price\": 21,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MINLOT\",\n            \"unit\": \"1 x 90ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 277,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Mob Caps (Blue) Elastic (100)\",\n            \"cost_price\": 1.85,\n            \"price\": 6.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MOBBL\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 581,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Mometasone 50mcg Nasal Spray\",\n            \"cost_price\": 6.99,\n            \"price\": 6.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MONASAL\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 582,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Mometasone Ointment 0.1% (30g)\",\n            \"cost_price\": 2.9699999999999998,\n            \"price\": 5.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MOMO30\",\n            \"unit\": \"1 X 30g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 278,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Montelukast 10mg Tabs\",\n            \"cost_price\": 4.13,\n            \"price\": 14.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 583,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Motilium tablets 10mg (30)\",\n            \"cost_price\": 2.71,\n            \"price\": 5.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MOT1030\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 279,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Movicol (Macrogol Laxative)\",\n            \"cost_price\": 8.11,\n            \"price\": 10.54,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"13.8g / Sachet (Lemon and Lime) x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 584,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Movicol Sachets (30)\",\n            \"cost_price\": 8.11,\n            \"price\": 11.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MOV30\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 585,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Multistix (Urinalysis Strips) 10 SG pack (100)\",\n            \"cost_price\": 34.02,\n            \"price\": 34.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MUL10SG\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 280,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Mysimba 8mg/90mg  PR TAB (112)\",\n            \"cost_price\": 73,\n            \"price\": 98.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MYSIPR\",\n            \"unit\": \"11 x 112\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 281,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Mysimba 8mg/90mg  PR TAB (70)\",\n            \"cost_price\": 45.63,\n            \"price\": 61.56,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MYSIPR70\",\n            \"unit\": \"1 x 70\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 586,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Naproxen EC Tablets 250mg (56)\",\n            \"cost_price\": 9.62,\n            \"price\": 14.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NPEC256\",\n            \"unit\": \"1 x 56\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 587,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Naproxen EC Tablets 500mg (56)\",\n            \"cost_price\": 19.1,\n            \"price\": 29.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NPEC556\",\n            \"unit\": \"1 x 56\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 588,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Naproxen Tablets 500mg (28)\",\n            \"cost_price\": 4.12,\n            \"price\": 8.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NP50028\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 589,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Nebido 1000mg/4ml injection Vial\",\n            \"cost_price\": 113.5,\n            \"price\": 113.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NEBVIA4\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 282,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Neostrata  (Refine) Clarifying Facial Cleanser (200ml)\",\n            \"cost_price\": 14.09,\n            \"price\": 16.6,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"F30130\",\n            \"unit\": \"1 x 200ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 283,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Neostrata (Restore) Bionic Lotion (200ml)\",\n            \"cost_price\": 25,\n            \"price\": 27.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"F30089C\",\n            \"unit\": \"1 x 200ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 284,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Neostrata (Resurface) Lotion Plus (200ml)\",\n            \"cost_price\": 22.15,\n            \"price\": 24.65,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"670321\",\n            \"unit\": \"1 x 200ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 285,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"NeoStrata Enlighten Illuminating Serum (30ml)\",\n            \"cost_price\": 27.15,\n            \"price\": 29.65,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"670366\",\n            \"unit\": \"1 x 30ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 286,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"NeoStrata Enlighten Pigment Controller (30ml)\",\n            \"cost_price\": 31.46,\n            \"price\": 33.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"670368\",\n            \"unit\": \"1 x 30ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 287,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"NeoStrata Enlighten Pigment Lightening Gel (20g)\",\n            \"cost_price\": 18.33,\n            \"price\": 20.85,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NEOEPLG\",\n            \"unit\": \"1 x 20g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 288,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"NeoStrata Enlighten Skin Brightener SPF 25 (40g)\",\n            \"cost_price\": 22.37,\n            \"price\": 24.9,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"670420\",\n            \"unit\": \"1 x 40g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/6bde3187-3f45-45d9-87c3-739f6ac2cbfd.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=95af4db771ab9425ecde13010a3d040e95e1a2c2c79fe93cca6f3e8fb909fc8e\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 289,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"NeoStrata Enlighten Ultra Brightening Cleanser (100ml)\",\n            \"cost_price\": 16.92,\n            \"price\": 19.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"670367\",\n            \"unit\": \"1 x 100ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 290,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"NeoStrata ProSystem Balancing Pre-Peel Cleanser\",\n            \"cost_price\": 13.18,\n            \"price\": 15.7,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NEOBPPC\",\n            \"unit\": \"1 x 200ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 291,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"NeoStrata ProSystem Clarifying Peel (30%)\",\n            \"cost_price\": 33.85,\n            \"price\": 36.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NEOS30CLA\",\n            \"unit\": \"1 x 30ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 292,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Neostrata ProSystem Foaming Peel Neutralizer\",\n            \"cost_price\": 13.89,\n            \"price\": 17.6,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NEOFNEU\",\n            \"unit\": \"1 x 200ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 590,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"NeoStrata ProSystem Rejuvenating Peel Glycolic Acid (20%)\",\n            \"cost_price\": 34.19,\n            \"price\": 36.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NEOS20\",\n            \"unit\": \"1 x 30ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:21.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 293,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"NeoStrata ProSystem Rejuvenating Peel Glycolic Acid (35%)\",\n            \"cost_price\": 34.19,\n            \"price\": 36.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NEOS35\",\n            \"unit\": \"1 x 30ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 294,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"NeoStrata Refine Sheer Hydration SPF 35 (50ml)\",\n            \"cost_price\": 21.16,\n            \"price\": 23.7,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"670328\",\n            \"unit\": \"1 x 50ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 295,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"NeoStrata Restore Bio-Hydrating Cream (40g)\",\n            \"cost_price\": 22.37,\n            \"price\": 24.9,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"8405\",\n            \"unit\": \"1 x 40g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 296,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"NeoStrata Resurface Foaming Glycolic Wash 100ml\",\n            \"cost_price\": 17.22,\n            \"price\": 19.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"670301\",\n            \"unit\": \"1 x 100ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 297,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"NeoStrata Skin Active Matrix Support SPF30 (50g)\",\n            \"cost_price\": 33.89,\n            \"price\": 36.4,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"F30042C\",\n            \"unit\": \"1 x 50g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 298,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"NeoStrata Targeted Spot Treatment Gel 15g\",\n            \"cost_price\": 12.88,\n            \"price\": 15.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NEOSTG\",\n            \"unit\": \"1 x 15g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:55.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 299,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Nitrile Gloves Large (100)\",\n            \"cost_price\": 5,\n            \"price\": 14.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NITGLOVELRG\",\n            \"unit\": \"1X100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 300,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Nitrile Gloves Large (200)\",\n            \"cost_price\": 5,\n            \"price\": 20.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NITGLOVELRG2\",\n            \"unit\": \"1X200\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 301,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Nitrile Gloves Medium (100)\",\n            \"cost_price\": 5,\n            \"price\": 14.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NITGLOVEMED\",\n            \"unit\": \"1X100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 302,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Nitrile Gloves Medium (200)\",\n            \"cost_price\": 5,\n            \"price\": 20.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NITGLOVEMED2\",\n            \"unit\": \"1X200\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:05.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 303,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Nitrile Gloves Small (100)\",\n            \"cost_price\": 5,\n            \"price\": 14.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NITGLOVESML\",\n            \"unit\": \"1X100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 304,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Nitrile Gloves Small (200)\",\n            \"cost_price\": 5,\n            \"price\": 20.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NITGLOVESML2\",\n            \"unit\": \"1X200\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 305,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Nitrile Gloves Small PF PINK (100)\",\n            \"cost_price\": 3.39,\n            \"price\": 13.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NITGLOVESMLP\",\n            \"unit\": \"1X100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 306,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Nitrile Gloves STERILE Medium (100)\",\n            \"cost_price\": 14.8,\n            \"price\": 26.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NITGLOVEMEDST\",\n            \"unit\": \"1 X 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 591,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Nitrofurantoin SR 100 mg SR Caps 12\",\n            \"cost_price\": 9.5,\n            \"price\": 14.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NIT100C\",\n            \"unit\": \"1 x 12\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:22.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 307,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"NMWLP Referral Voucher\",\n            \"cost_price\": 0,\n            \"price\": 83.33,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"A voucher purchased by NMWLP for a customer for a successful referral\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 308,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Non Prescription / Cold Chain\",\n            \"cost_price\": 10,\n            \"price\": 16,\n            \"stock\": 10000,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 309,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Non Prescription / Non Cold Chain\",\n            \"cost_price\": 3,\n            \"price\": 6,\n            \"stock\": 10000,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"ft\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 310,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Norethisterone Tablets 5mg (30)\",\n            \"cost_price\": 3,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NOR5\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 685,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Note test\",\n            \"cost_price\": 10,\n            \"price\": 12,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"cm\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2023-04-18T16:04:11.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 311,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Novofine 8mm Needles (100)\",\n            \"cost_price\": 9.24,\n            \"price\": 12.05,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NOVO8\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 312,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Nurse It Dressing Pack M/L (1x10)\",\n            \"cost_price\": 4.95,\n            \"price\": 7.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NURSEML10\",\n            \"unit\": \"1 x 10\",\n            \"vat\": 20,\n            \"brand\": \"ALVITA\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 313,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Nurse It Dressing Pack M/L (SINGLE PACK)\",\n            \"cost_price\": 0.5,\n            \"price\": 1,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NURSEML\",\n            \"unit\": \"1 Pack\",\n            \"vat\": 20,\n            \"brand\": \"ALVITA\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 314,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Nurse It Dressing Pack S/M (1x10)\",\n            \"cost_price\": 4.95,\n            \"price\": 7.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NurseITSM10\",\n            \"unit\": \"1 x 10\",\n            \"vat\": 20,\n            \"brand\": \"ALVITA\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 315,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Nurse It Dressing Pack S/M (SINGLE PACK)\",\n            \"cost_price\": 0.5,\n            \"price\": 1,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"NURSITSM\",\n            \"unit\": \"1 Pack\",\n            \"vat\": 20,\n            \"brand\": \"ALVITA\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 316,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Nutrakos Drinkable Sachets (30)\",\n            \"cost_price\": 28.63,\n            \"price\": 33.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"620934\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 317,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Oestrogel (estradiol gel)\",\n            \"cost_price\": 4.8,\n            \"price\": 9.6,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"80g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 592,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Omeprazole 20mg Capsules (28)\",\n            \"cost_price\": 0.83,\n            \"price\": 4.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"OMEPCAP20\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:22.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 318,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Ondansetron Tablets\",\n            \"cost_price\": 29.82,\n            \"price\": 44.73,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"OKSQ77\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 319,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Orlistat  120mg Capsules (84)\",\n            \"cost_price\": 27.53,\n            \"price\": 41.3,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ORL120\",\n            \"unit\": \"1 x 84\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 593,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Oxytetracycline 250mg Tablets (28)\",\n            \"cost_price\": 7.41,\n            \"price\": 14.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"OXYT25028\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:22.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 320,\n            \"monday_com_id\": \"4281643440\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Ozempic 0.25mg PFS\",\n            \"cost_price\": 73.25,\n            \"price\": 93.8,\n            \"stock\": 998,\n            \"reorder_limit\": 10,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"OZE25\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"ozempic note\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 1,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-04-10T13:46:08.000000Z\",\n            \"item_stocks_sum_received_quantity\": 99,\n            \"item_stocks\": [\n                {\n                    \"id\": 102,\n                    \"reference_id\": \"#POI-102\",\n                    \"stock_order_id\": 45,\n                    \"item_id\": 320,\n                    \"price\": 73.25,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-03 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-03T15:31:12.000000Z\",\n                    \"updated_at\": \"2022-08-19T09:00:50.000000Z\"\n                },\n                {\n                    \"id\": 207,\n                    \"reference_id\": \"#POI-207\",\n                    \"stock_order_id\": 109,\n                    \"item_id\": 320,\n                    \"price\": 73.25,\n                    \"quantity\": 100,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-01-04 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-01-04T14:14:08.000000Z\",\n                    \"updated_at\": \"2023-03-03T15:48:13.000000Z\"\n                },\n                {\n                    \"id\": 209,\n                    \"reference_id\": \"#POI-209\",\n                    \"stock_order_id\": 109,\n                    \"item_id\": 320,\n                    \"price\": 73.25,\n                    \"quantity\": 90,\n                    \"received_quantity\": 4,\n                    \"initial_quantity\": \"90\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-01-04 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-01-04T14:15:13.000000Z\",\n                    \"updated_at\": \"2024-01-31T14:04:14.000000Z\"\n                },\n                {\n                    \"id\": 359,\n                    \"reference_id\": \"#POI-359\",\n                    \"stock_order_id\": 208,\n                    \"item_id\": 320,\n                    \"price\": 73.25,\n                    \"quantity\": 120,\n                    \"received_quantity\": 90,\n                    \"initial_quantity\": \"90\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-16 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4656274913\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-06-16T11:53:01.000000Z\",\n                    \"updated_at\": \"2023-06-16T11:57:26.000000Z\"\n                },\n                {\n                    \"id\": 360,\n                    \"reference_id\": \"#POI-360\",\n                    \"stock_order_id\": 208,\n                    \"item_id\": 320,\n                    \"price\": 73.25,\n                    \"quantity\": 30,\n                    \"received_quantity\": 30,\n                    \"initial_quantity\": \"30\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-16 00:00:00\",\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4656277440\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-06-16T11:57:25.000000Z\",\n                    \"updated_at\": \"2023-06-16T12:01:25.000000Z\"\n                },\n                {\n                    \"id\": 705,\n                    \"reference_id\": \"#POI-705\",\n                    \"stock_order_id\": 431,\n                    \"item_id\": 320,\n                    \"price\": 73.25,\n                    \"quantity\": 5,\n                    \"received_quantity\": 5,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-03-28 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6347100119\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-03-28T12:11:29.000000Z\",\n                    \"updated_at\": \"2024-03-28T12:11:51.000000Z\"\n                }\n            ],\n            \"terms\": [\n                {\n                    \"id\": 201,\n                    \"item_id\": 320,\n                    \"term_id\": 22,\n                    \"created_at\": \"2022-10-19T09:31:04.000000Z\",\n                    \"updated_at\": \"2022-10-19T09:31:04.000000Z\",\n                    \"term\": {\n                        \"id\": 22,\n                        \"item_description\": \"I can confirm that I am aware Ozempic is licensed for type 2 diabetes. Its usage for the treatment of obesity is off-label. I can confirm that the patient has been made aware of this products off-label status. I have made the patient aware of the difference between an off-label and licensed medicine.\\n\\nI can confirm that as part of this treatment the patient will be monitored.\",\n                        \"created_at\": \"2022-10-19T09:17:11.000000Z\",\n                        \"updated_at\": \"2022-10-19T09:24:01.000000Z\"\n                    }\n                }\n            ],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 321,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"1\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Ozempic 0.5mg PFS\",\n            \"cost_price\": 73.25,\n            \"price\": 93.8,\n            \"stock\": 999,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"OZE50\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 0,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 1,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks_sum_received_quantity\": 47,\n            \"item_stocks\": [\n                {\n                    \"id\": 40,\n                    \"reference_id\": \"#POI-40\",\n                    \"stock_order_id\": 23,\n                    \"item_id\": 321,\n                    \"price\": 73.25,\n                    \"quantity\": 2,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-09-12 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2022-07-27T13:22:16.000000Z\",\n                    \"updated_at\": \"2022-09-12T11:33:04.000000Z\"\n                },\n                {\n                    \"id\": 103,\n                    \"reference_id\": \"#POI-103\",\n                    \"stock_order_id\": 45,\n                    \"item_id\": 321,\n                    \"price\": 73.25,\n                    \"quantity\": 15,\n                    \"received_quantity\": 15,\n                    \"initial_quantity\": \"15\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-03 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2022-08-03T15:31:12.000000Z\",\n                    \"updated_at\": \"2022-08-03T15:39:04.000000Z\"\n                },\n                {\n                    \"id\": 169,\n                    \"reference_id\": \"#POI-169\",\n                    \"stock_order_id\": 23,\n                    \"item_id\": 321,\n                    \"price\": 73.25,\n                    \"quantity\": 1,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-09-11 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2022-09-12T11:32:34.000000Z\",\n                    \"updated_at\": \"2022-09-12T11:33:34.000000Z\"\n                },\n                {\n                    \"id\": 251,\n                    \"reference_id\": \"#POI-251\",\n                    \"stock_order_id\": 140,\n                    \"item_id\": 321,\n                    \"price\": 73.25,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"3\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-05 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4326193712\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-04-18T11:31:34.000000Z\",\n                    \"updated_at\": \"2024-03-07T12:59:21.000000Z\"\n                },\n                {\n                    \"id\": 252,\n                    \"reference_id\": \"#POI-252\",\n                    \"stock_order_id\": 140,\n                    \"item_id\": 321,\n                    \"price\": 73.25,\n                    \"quantity\": 7,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-13 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4326202456\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-04-18T11:34:52.000000Z\",\n                    \"updated_at\": \"2023-04-18T11:35:47.000000Z\"\n                },\n                {\n                    \"id\": 253,\n                    \"reference_id\": \"#POI-253\",\n                    \"stock_order_id\": 140,\n                    \"item_id\": 321,\n                    \"price\": 73.25,\n                    \"quantity\": 5,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-11 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4326205396\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-04-18T11:35:46.000000Z\",\n                    \"updated_at\": \"2023-04-18T11:36:35.000000Z\"\n                },\n                {\n                    \"id\": 254,\n                    \"reference_id\": \"#POI-254\",\n                    \"stock_order_id\": 140,\n                    \"item_id\": 321,\n                    \"price\": 73.25,\n                    \"quantity\": 3,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4326207246\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-04-18T11:36:27.000000Z\",\n                    \"updated_at\": \"2023-04-18T11:36:28.000000Z\"\n                },\n                {\n                    \"id\": 277,\n                    \"reference_id\": \"#POI-277\",\n                    \"stock_order_id\": 155,\n                    \"item_id\": 321,\n                    \"price\": 73.25,\n                    \"quantity\": 2,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-19 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4502004687\",\n                    \"state\": \"cancelled\",\n                    \"created_at\": \"2023-05-19T12:40:40.000000Z\",\n                    \"updated_at\": \"2023-05-19T12:44:14.000000Z\"\n                },\n                {\n                    \"id\": 279,\n                    \"reference_id\": \"#POI-279\",\n                    \"stock_order_id\": 155,\n                    \"item_id\": 321,\n                    \"price\": 73.25,\n                    \"quantity\": 1,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-18 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4502017930\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-05-19T12:44:08.000000Z\",\n                    \"updated_at\": \"2023-05-19T12:44:35.000000Z\"\n                },\n                {\n                    \"id\": 326,\n                    \"reference_id\": \"#POI-326\",\n                    \"stock_order_id\": 188,\n                    \"item_id\": 321,\n                    \"price\": 73.25,\n                    \"quantity\": 100,\n                    \"received_quantity\": 47,\n                    \"initial_quantity\": \"50\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-06-13 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4641697690\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-06-14T12:06:11.000000Z\",\n                    \"updated_at\": \"2023-10-24T15:26:49.000000Z\"\n                },\n                {\n                    \"id\": 330,\n                    \"reference_id\": \"#POI-330\",\n                    \"stock_order_id\": 188,\n                    \"item_id\": 321,\n                    \"price\": 73.25,\n                    \"quantity\": 50,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 1,\n                    \"monday_com_id\": \"4641700383\",\n                    \"state\": \"owning\",\n                    \"created_at\": \"2023-06-14T12:07:45.000000Z\",\n                    \"updated_at\": \"2023-06-14T12:07:46.000000Z\"\n                }\n            ],\n            \"terms\": [\n                {\n                    \"id\": 225,\n                    \"item_id\": 321,\n                    \"term_id\": 23,\n                    \"created_at\": \"2022-12-07T09:05:09.000000Z\",\n                    \"updated_at\": \"2022-12-07T09:05:09.000000Z\",\n                    \"term\": {\n                        \"id\": 23,\n                        \"item_description\": \"I confirm that the patient will be monitored during their treatment for weight loss. \\n\\nI confirm that a consultation has been carried out with the patient to assess their suitability for this treatment.\\n\\nI am aware that if a patient does not lose a minimum of 5% of their initial bodyweight within 12 weeks of treatment, treatment should be discontinued.\",\n                        \"created_at\": \"2022-10-19T09:20:38.000000Z\",\n                        \"updated_at\": \"2022-10-19T09:20:38.000000Z\"\n                    }\n                },\n                {\n                    \"id\": 226,\n                    \"item_id\": 321,\n                    \"term_id\": 28,\n                    \"created_at\": \"2022-12-07T09:05:09.000000Z\",\n                    \"updated_at\": \"2022-12-07T09:05:09.000000Z\",\n                    \"term\": {\n                        \"id\": 28,\n                        \"item_description\": \"The packaging may differ for this product\",\n                        \"created_at\": \"2022-12-07T09:04:48.000000Z\",\n                        \"updated_at\": \"2022-12-07T09:04:48.000000Z\"\n                    }\n                }\n            ],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 322,\n            \"monday_com_id\": \"4501453630\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Ozempic 1.0mg PFS\",\n            \"cost_price\": 73.25,\n            \"price\": 93.8,\n            \"stock\": 1000,\n            \"reorder_limit\": 5,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"OZE10\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"PFS\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 0,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks_sum_received_quantity\": 152,\n            \"item_stocks\": [\n                {\n                    \"id\": 142,\n                    \"reference_id\": \"#POI-142\",\n                    \"stock_order_id\": 74,\n                    \"item_id\": 322,\n                    \"price\": 73.25,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-16 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-08-16T17:26:32.000000Z\",\n                    \"updated_at\": \"2022-09-15T17:10:08.000000Z\"\n                },\n                {\n                    \"id\": 180,\n                    \"reference_id\": \"#POI-180\",\n                    \"stock_order_id\": 92,\n                    \"item_id\": 322,\n                    \"price\": 73.25,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-10-03 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-10-03T07:07:17.000000Z\",\n                    \"updated_at\": \"2022-10-06T08:33:02.000000Z\"\n                },\n                {\n                    \"id\": 181,\n                    \"reference_id\": \"#POI-181\",\n                    \"stock_order_id\": 93,\n                    \"item_id\": 322,\n                    \"price\": 73.25,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-10-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"expired\",\n                    \"created_at\": \"2022-10-06T08:29:53.000000Z\",\n                    \"updated_at\": \"2022-10-06T08:33:02.000000Z\"\n                },\n                {\n                    \"id\": 208,\n                    \"reference_id\": \"#POI-208\",\n                    \"stock_order_id\": 109,\n                    \"item_id\": 322,\n                    \"price\": 73.25,\n                    \"quantity\": 200,\n                    \"received_quantity\": 69,\n                    \"initial_quantity\": \"100\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-01-04 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-01-04T14:14:08.000000Z\",\n                    \"updated_at\": \"2024-04-09T11:33:24.000000Z\"\n                },\n                {\n                    \"id\": 210,\n                    \"reference_id\": \"#POI-210\",\n                    \"stock_order_id\": 109,\n                    \"item_id\": 322,\n                    \"price\": 73.25,\n                    \"quantity\": 100,\n                    \"received_quantity\": 83,\n                    \"initial_quantity\": \"90\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-01-04 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-01-04T14:15:32.000000Z\",\n                    \"updated_at\": \"2023-04-04T08:58:10.000000Z\"\n                },\n                {\n                    \"id\": 211,\n                    \"reference_id\": \"#POI-211\",\n                    \"stock_order_id\": 109,\n                    \"item_id\": 322,\n                    \"price\": 73.25,\n                    \"quantity\": 10,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-01-04 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-01-04T14:16:17.000000Z\",\n                    \"updated_at\": \"2023-01-04T14:16:32.000000Z\"\n                }\n            ],\n            \"terms\": [\n                {\n                    \"id\": 203,\n                    \"item_id\": 322,\n                    \"term_id\": 22,\n                    \"created_at\": \"2022-10-19T09:31:45.000000Z\",\n                    \"updated_at\": \"2022-10-19T09:31:45.000000Z\",\n                    \"term\": {\n                        \"id\": 22,\n                        \"item_description\": \"I can confirm that I am aware Ozempic is licensed for type 2 diabetes. Its usage for the treatment of obesity is off-label. I can confirm that the patient has been made aware of this products off-label status. I have made the patient aware of the difference between an off-label and licensed medicine.\\n\\nI can confirm that as part of this treatment the patient will be monitored.\",\n                        \"created_at\": \"2022-10-19T09:17:11.000000Z\",\n                        \"updated_at\": \"2022-10-19T09:24:01.000000Z\"\n                    }\n                }\n            ],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 594,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Pabrinex Injection I/M High Potency 5ML (10Pairs)\",\n            \"cost_price\": 22.53,\n            \"price\": 33.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"PAB\",\n            \"unit\": \"10 Pairs\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:22.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 323,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Paracetamol 500mg (100) Tablets\",\n            \"cost_price\": 1,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 324,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Paracetamol 500mg Tablets\",\n            \"cost_price\": 0.32,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"1 x 32\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 595,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Paracetamol SF Suspension 250mg/5ml (100ml)\",\n            \"cost_price\": 1.32,\n            \"price\": 3.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"PAR2501\",\n            \"unit\": \"1 x 100ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:22.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 596,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Paracetamol SF Suspension 250mg/5ml (200ml)\",\n            \"cost_price\": 2.66,\n            \"price\": 4.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"PAR2502\",\n            \"unit\": \"1 x 200ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:22.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 665,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Payment test\",\n            \"cost_price\": 0.01,\n            \"price\": 0.01,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"cm\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2022-04-06T10:28:36.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 325,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"PDO Sterile Dressing Pack\",\n            \"cost_price\": 3.95,\n            \"price\": 4.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SDP\",\n            \"unit\": \"1OP\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 326,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Perfectha Deep\",\n            \"cost_price\": 70,\n            \"price\": 64.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"PERFDEEP\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 327,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Perfectha Derm\",\n            \"cost_price\": 65,\n            \"price\": 64.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"PERFDERM\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 328,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Perfectha Sub (Subskin) 3 x 1ml\",\n            \"cost_price\": 105,\n            \"price\": 159.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"PERSUB3X1\",\n            \"unit\": \"3 x 1ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 597,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Prednisolone 20mg Tablets (7)\",\n            \"cost_price\": 4.87,\n            \"price\": 19.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"PRED20\",\n            \"unit\": \"1 x 7\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:22.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 598,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Prednisolone 5mg EC Tablets (28)\",\n            \"cost_price\": 3.79,\n            \"price\": 8.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"PREDEC5\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:22.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 599,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Prednisolone 5mg Tablets (18)\",\n            \"cost_price\": 4.99,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"PRED518\",\n            \"unit\": \"1 x 18\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:22.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 600,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Prednisolone 5mg Tablets (24)\",\n            \"cost_price\": 4.99,\n            \"price\": 5.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"PRED524\",\n            \"unit\": \"1 x 24\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:22.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 329,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Pregabalin 75mg Caps\",\n            \"cost_price\": 0,\n            \"price\": 18.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 330,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Prescription / Cold Chain 23\",\n            \"cost_price\": 3,\n            \"price\": 15,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 331,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Priadel 200mg M/R tabs\",\n            \"cost_price\": 2.76,\n            \"price\": 8.89,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 332,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Princess Filler with Lidocaine (2.3%) 1ml\",\n            \"cost_price\": 58,\n            \"price\": 58,\n            \"stock\": 2,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"PRINLID\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 333,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Princess Volume Plus Lidocaine (2.5%)\",\n            \"cost_price\": 75,\n            \"price\": 75,\n            \"stock\": 2,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"PRIVOLLID\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 334,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Princess Volume with Lidocaine (2.3%) 1ml\",\n            \"cost_price\": 67,\n            \"price\": 67,\n            \"stock\": 2,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"PRINVOLLID\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 335,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Profhilo 64mg PFS\",\n            \"cost_price\": 80,\n            \"price\": 93.75,\n            \"stock\": 1000,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"PROFH64MG\",\n            \"unit\": \"1 x 2ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 336,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Profhilo Haenkenium Cream (50ml)\",\n            \"cost_price\": 30,\n            \"price\": 28,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"PROHAE\",\n            \"unit\": \"1 x 50ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 601,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Propranolol 10mg Tablets (28)\",\n            \"cost_price\": 2.07,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"PROP10\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:22.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 602,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Propranolol 40mg Tablets (28)\",\n            \"cost_price\": 2.07,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"PROP40\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:22.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 337,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Radiesse Plus (with lidocaine) PFS 1 x 0.8ml\",\n            \"cost_price\": 65,\n            \"price\": 69.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"RADPLUS8\",\n            \"unit\": \"1 x 0.8ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 338,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Radiesse Plus (with lidocaine) PFS 1 x 1.5ml\",\n            \"cost_price\": 95,\n            \"price\": 98.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"RADPLUS\",\n            \"unit\": \"1 x 1.5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 603,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Ramipril 1.25mg capsules (28)\",\n            \"cost_price\": 0.94,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"RAM125\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:22.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 339,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Restylane Defyne with Lidocaine (1 x 1ml)\",\n            \"cost_price\": 62.16,\n            \"price\": 78,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"RESDEF\",\n            \"unit\": \"1 x 1ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 604,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Restylane Defyne with Lidocaine (1 x 1ml).\",\n            \"cost_price\": 62.16,\n            \"price\": 78,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ORESDEF\",\n            \"unit\": \"1 x 1ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:22.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:57.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 605,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Restylane Fynesse (1 x 1ml)\",\n            \"cost_price\": 0,\n            \"price\": 63.75,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"Box\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"Restylane Fynesse (1 x 1ml)\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:22.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 340,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Restylane Fynesse (1x1.0ml)\",\n            \"cost_price\": 51,\n            \"price\": 70,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"RESFYN\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 606,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Restylane Fynesse (1x1.0ml).\",\n            \"cost_price\": 51,\n            \"price\": 70,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ORESFYN\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:22.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 341,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Restylane Kysse with Lidocaine (1 x 1ml)\",\n            \"cost_price\": 59.5,\n            \"price\": 80,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"RESTYKYSSE\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"Galderma\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 342,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Restylane Lyft Lidocaine (1 x 1.0ml)\",\n            \"cost_price\": 52,\n            \"price\": 70,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"RESTLYF10\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"(Formerly Perlane Lidocaine)\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 607,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Restylane Lyft Lidocaine (1 x 1.0ml).\",\n            \"cost_price\": 52,\n            \"price\": 70,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ORESTLYF10\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"(Formerly Perlane Lidocaine)\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 343,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Restylane Refyne with Lidocaine (1 x 1ml)\",\n            \"cost_price\": 64.5,\n            \"price\": 74,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"RESREF\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 608,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Restylane Refyne with Lidocaine (1 x 1ml).\",\n            \"cost_price\": 64.5,\n            \"price\": 74,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ORESREF\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 344,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Restylane Skinbooster Vital Lidocaine (1 x 1.0ml)\",\n            \"cost_price\": 67.5,\n            \"price\": 58,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"RESTSBV10\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 345,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Restylane Skinbooster Vital Light Lidocaine (1 x 1.0ml)\",\n            \"cost_price\": 79.95,\n            \"price\": 53.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"RESTSBVL10\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 346,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Restylane with Lidocaine (1 x 0.5ml)\",\n            \"cost_price\": 40,\n            \"price\": 57,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"RESTYLCLAS\",\n            \"unit\": \"1 x 0.5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 347,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Restylane with Lidocaine 1 x 1ml\",\n            \"cost_price\": 64.8,\n            \"price\": 68,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"RESLIO1\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 348,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Restylane® Volyme with lidocaine (1ml)\",\n            \"cost_price\": 66.8,\n            \"price\": 74.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"RESTVOLY\",\n            \"unit\": \"1ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 349,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Resuscitation Face Mask (1) (One way valve/ Latex Free)\",\n            \"cost_price\": 3,\n            \"price\": 5.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"RESUSMASK001\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 609,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Retinoic acid 0.3% Topical Solution (60ml)\",\n            \"cost_price\": 50,\n            \"price\": 79.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"RET60\",\n            \"unit\": \"1 x 60ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 350,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Retriderm Protein Rich Serum Retinol 1% (30ml)\",\n            \"cost_price\": 21.41,\n            \"price\": 22.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"RETSER1\",\n            \"unit\": \"1 x 30ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 351,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"RevitaLash Advanced Eyelash Conditioner (2ml)\",\n            \"cost_price\": 45.4,\n            \"price\": 49.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"630802\",\n            \"unit\": \"1 x2ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 352,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Revolax Deep with Lidocaine (1 x 1.1ml)\",\n            \"cost_price\": 35,\n            \"price\": 40,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"REVDEEP\",\n            \"unit\": \"1X1.1ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 353,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Revolax Fine with Lidocaine (1 x 1.1ml)\",\n            \"cost_price\": 35,\n            \"price\": 40,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"REVFINE\",\n            \"unit\": \"1 x 1.1ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 354,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Revolax Sub-Q with Lidocaine (1 x 1.1ml)\",\n            \"cost_price\": 35,\n            \"price\": 40,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"REVSUBQ\",\n            \"unit\": \"1 x 1.1ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 355,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Rybelsus 14mg Tabs (30)\",\n            \"cost_price\": 73.25,\n            \"price\": 93.8,\n            \"stock\": 1000,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"RYBL3\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 356,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Rybelsus 3mg Tabs (30)\",\n            \"cost_price\": 73.25,\n            \"price\": 93.8,\n            \"stock\": 1000,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"RYU01\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 357,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Rybelsus 3MG Tabs (Oral Semaglutide) Pack of 30\",\n            \"cost_price\": 78.48,\n            \"price\": 98.1,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"RYBL\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 358,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Rybelsus 7mg Tabs (30)\",\n            \"cost_price\": 73.25,\n            \"price\": 93.8,\n            \"stock\": 1000,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"RYBL2\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 610,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Salactol Wart Paint (10ml)\",\n            \"cost_price\": 1.73,\n            \"price\": 5.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SAL10\",\n            \"unit\": \"1 x 10ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 359,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Salbutamol Inhaler\",\n            \"cost_price\": 3.5,\n            \"price\": 5.29,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 360,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Saxenda PFS (1x3ml)\",\n            \"cost_price\": 45,\n            \"price\": 47,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SX01\",\n            \"unit\": \"1 x 3ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 1,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks_sum_received_quantity\": 12,\n            \"item_stocks\": [\n                {\n                    \"id\": 107,\n                    \"reference_id\": \"#POI-107\",\n                    \"stock_order_id\": 49,\n                    \"item_id\": 360,\n                    \"price\": 45,\n                    \"quantity\": 12,\n                    \"received_quantity\": 12,\n                    \"initial_quantity\": \"12\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-05 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pass\",\n                    \"created_at\": \"2022-08-04T13:03:11.000000Z\",\n                    \"updated_at\": \"2022-08-05T12:29:02.000000Z\"\n                }\n            ],\n            \"terms\": [\n                {\n                    \"id\": 195,\n                    \"item_id\": 360,\n                    \"term_id\": 23,\n                    \"created_at\": \"2022-10-19T09:25:03.000000Z\",\n                    \"updated_at\": \"2022-10-19T09:25:03.000000Z\",\n                    \"term\": {\n                        \"id\": 23,\n                        \"item_description\": \"I confirm that the patient will be monitored during their treatment for weight loss. \\n\\nI confirm that a consultation has been carried out with the patient to assess their suitability for this treatment.\\n\\nI am aware that if a patient does not lose a minimum of 5% of their initial bodyweight within 12 weeks of treatment, treatment should be discontinued.\",\n                        \"created_at\": \"2022-10-19T09:20:38.000000Z\",\n                        \"updated_at\": \"2022-10-19T09:20:38.000000Z\"\n                    }\n                }\n            ],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 361,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Saxenda PFS (1x3ml).\",\n            \"cost_price\": 45,\n            \"price\": 47,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"OSAX1X3\",\n            \"unit\": \"1 x 3.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [\n                {\n                    \"id\": 196,\n                    \"item_id\": 361,\n                    \"term_id\": 23,\n                    \"created_at\": \"2022-10-19T09:25:30.000000Z\",\n                    \"updated_at\": \"2022-10-19T09:25:30.000000Z\",\n                    \"term\": {\n                        \"id\": 23,\n                        \"item_description\": \"I confirm that the patient will be monitored during their treatment for weight loss. \\n\\nI confirm that a consultation has been carried out with the patient to assess their suitability for this treatment.\\n\\nI am aware that if a patient does not lose a minimum of 5% of their initial bodyweight within 12 weeks of treatment, treatment should be discontinued.\",\n                        \"created_at\": \"2022-10-19T09:20:38.000000Z\",\n                        \"updated_at\": \"2022-10-19T09:20:38.000000Z\"\n                    }\n                }\n            ],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 362,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Saxenda PFS (2x3ml).\",\n            \"cost_price\": 90,\n            \"price\": 94,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"OSAX2\",\n            \"unit\": \"2 x 3.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [\n                {\n                    \"id\": 197,\n                    \"item_id\": 362,\n                    \"term_id\": 23,\n                    \"created_at\": \"2022-10-19T09:25:47.000000Z\",\n                    \"updated_at\": \"2022-10-19T09:25:47.000000Z\",\n                    \"term\": {\n                        \"id\": 23,\n                        \"item_description\": \"I confirm that the patient will be monitored during their treatment for weight loss. \\n\\nI confirm that a consultation has been carried out with the patient to assess their suitability for this treatment.\\n\\nI am aware that if a patient does not lose a minimum of 5% of their initial bodyweight within 12 weeks of treatment, treatment should be discontinued.\",\n                        \"created_at\": \"2022-10-19T09:20:38.000000Z\",\n                        \"updated_at\": \"2022-10-19T09:20:38.000000Z\"\n                    }\n                }\n            ],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 611,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Saxenda PFS (3x3ml)\",\n            \"cost_price\": 129,\n            \"price\": 141,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SAX3\",\n            \"unit\": \"3x3.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [\n                {\n                    \"id\": 198,\n                    \"item_id\": 611,\n                    \"term_id\": 23,\n                    \"created_at\": \"2022-10-19T09:26:08.000000Z\",\n                    \"updated_at\": \"2022-10-19T09:26:08.000000Z\",\n                    \"term\": {\n                        \"id\": 23,\n                        \"item_description\": \"I confirm that the patient will be monitored during their treatment for weight loss. \\n\\nI confirm that a consultation has been carried out with the patient to assess their suitability for this treatment.\\n\\nI am aware that if a patient does not lose a minimum of 5% of their initial bodyweight within 12 weeks of treatment, treatment should be discontinued.\",\n                        \"created_at\": \"2022-10-19T09:20:38.000000Z\",\n                        \"updated_at\": \"2022-10-19T09:20:38.000000Z\"\n                    }\n                }\n            ],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 363,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Saxenda PFS (4x3ml).\",\n            \"cost_price\": 150,\n            \"price\": 188,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"OSAX4\",\n            \"unit\": \"4 x 3.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [\n                {\n                    \"id\": 199,\n                    \"item_id\": 363,\n                    \"term_id\": 23,\n                    \"created_at\": \"2022-10-19T09:26:22.000000Z\",\n                    \"updated_at\": \"2022-10-19T09:26:22.000000Z\",\n                    \"term\": {\n                        \"id\": 23,\n                        \"item_description\": \"I confirm that the patient will be monitored during their treatment for weight loss. \\n\\nI confirm that a consultation has been carried out with the patient to assess their suitability for this treatment.\\n\\nI am aware that if a patient does not lose a minimum of 5% of their initial bodyweight within 12 weeks of treatment, treatment should be discontinued.\",\n                        \"created_at\": \"2022-10-19T09:20:38.000000Z\",\n                        \"updated_at\": \"2022-10-19T09:20:38.000000Z\"\n                    }\n                }\n            ],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 364,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Saxenda PFS (5x3ml)\",\n            \"cost_price\": 45,\n            \"price\": 230,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SX05\",\n            \"unit\": \"5 x 3ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [\n                {\n                    \"id\": 200,\n                    \"item_id\": 364,\n                    \"term_id\": 23,\n                    \"created_at\": \"2022-10-19T09:26:38.000000Z\",\n                    \"updated_at\": \"2022-10-19T09:26:38.000000Z\",\n                    \"term\": {\n                        \"id\": 23,\n                        \"item_description\": \"I confirm that the patient will be monitored during their treatment for weight loss. \\n\\nI confirm that a consultation has been carried out with the patient to assess their suitability for this treatment.\\n\\nI am aware that if a patient does not lose a minimum of 5% of their initial bodyweight within 12 weeks of treatment, treatment should be discontinued.\",\n                        \"created_at\": \"2022-10-19T09:20:38.000000Z\",\n                        \"updated_at\": \"2022-10-19T09:20:38.000000Z\"\n                    }\n                }\n            ],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 365,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sculptra Vials (2 pack)\",\n            \"cost_price\": 200,\n            \"price\": 205,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SCULPT\",\n            \"unit\": \"2 x 5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 612,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"SERETIDE ACCUHALER 100MCG (60D)\",\n            \"cost_price\": 18,\n            \"price\": 26.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SERACC250\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 366,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sertraline 100mg Tabs (28)\",\n            \"cost_price\": 2,\n            \"price\": 7.1,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks_sum_received_quantity\": 1,\n            \"item_stocks\": [\n                {\n                    \"id\": 524,\n                    \"reference_id\": \"#POI-524\",\n                    \"stock_order_id\": 304,\n                    \"item_id\": 366,\n                    \"price\": 2,\n                    \"quantity\": 10,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5636050677\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-12-06T10:33:24.000000Z\",\n                    \"updated_at\": \"2023-12-06T10:39:51.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 367,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sertraline 50mg Tabs (28)\",\n            \"cost_price\": 2.5,\n            \"price\": 6.9,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 368,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sharps Bins 1L\",\n            \"cost_price\": 1,\n            \"price\": 1.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SHA1L\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 369,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sharpsbin (0.2L)\",\n            \"cost_price\": 1,\n            \"price\": 1.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SHA02\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 370,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sharpsbin (5L)\",\n            \"cost_price\": 1.21,\n            \"price\": 3,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SHA5L\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 371,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sharpsbin (7L)\",\n            \"cost_price\": 3,\n            \"price\": 3.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SHA7L\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 649,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"shopify\",\n            \"cost_price\": 113,\n            \"price\": 100,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"dz\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-10-15T13:27:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 613,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sildenafil 100mg Tablets (4)\",\n            \"cost_price\": 0.8,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SILD100\",\n            \"unit\": \"1 x 4\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 372,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sildenafil 50mg (4)\",\n            \"cost_price\": 1,\n            \"price\": 4.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"Box\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 373,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sildenafil 50mg Tab\",\n            \"cost_price\": 1.2,\n            \"price\": 5.16,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"4\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 374,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Silkann UTW Cannulas 25g 50mm (25)\",\n            \"cost_price\": 55.13,\n            \"price\": 74.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SILK2550\",\n            \"unit\": \"1 x 25\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 375,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Silkann UTW Cannulas 27g 40mm (40)\",\n            \"cost_price\": 81.59,\n            \"price\": 109.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SILK2740\",\n            \"unit\": \"1 x 40\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 376,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Skin Marking (Black) Pencil\",\n            \"cost_price\": 1.19,\n            \"price\": 1.99,\n            \"stock\": 2,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"PENB\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 377,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Skin Marking (Red) Pencil\",\n            \"cost_price\": 1.19,\n            \"price\": 1.99,\n            \"stock\": 2,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"PENR\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 378,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Skin Marking Soft White Pencil\",\n            \"cost_price\": 1.19,\n            \"price\": 1.99,\n            \"stock\": 2,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"PENW\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 379,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"3\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sodium Bicarbonate Inj 8.4% (10x100ml)\",\n            \"cost_price\": 100,\n            \"price\": 134.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"6049852\",\n            \"unit\": \"10 x 100ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 380,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sodium Chloride 0.9% vials (10x10ml)\",\n            \"cost_price\": 2.9,\n            \"price\": 5.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SODCHL10X10\",\n            \"unit\": \"10 x 10ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 381,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sodium Chloride 0.9% vials (10x2ml)\",\n            \"cost_price\": 2,\n            \"price\": 3.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SODCHL10X2\",\n            \"unit\": \"10 x 2ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 382,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sodium Chloride 0.9% vials (10x5ml)\",\n            \"cost_price\": 2.24,\n            \"price\": 4.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SODCHL10X5\",\n            \"unit\": \"10 x 5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 383,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sodium Chloride 0.9% vials (1x10ml)\",\n            \"cost_price\": 0.29,\n            \"price\": 1.2,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SODCHL1X10\",\n            \"unit\": \"1 x 10ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 384,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sodium Chloride 0.9% vials (1x2ml)\",\n            \"cost_price\": 0.2,\n            \"price\": 0.8,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SODCHL1X2\",\n            \"unit\": \"1 x 2ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 385,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sodium Chloride 0.9% vials (1x5ml)\",\n            \"cost_price\": 0.5,\n            \"price\": 0.9,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SODCHL1X5\",\n            \"unit\": \"1 x 5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 386,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sodium Chloride IV Infusion  (0.9%) (250ml)\",\n            \"cost_price\": 2.21,\n            \"price\": 3.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SODCHBP\",\n            \"unit\": \"250ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"Sodium Chloride (I.V.) BP (0.9%)\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 387,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sodium Chloride IV Infusion  (0.9%) (500ml)\",\n            \"cost_price\": 1.71,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SODCHIF\",\n            \"unit\": \"1 x 500ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"Sodium Chloride (I.V.) BP (0.9%)\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 614,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Solu-Cortef (Hydrocortisone Sodium Succinate) 100mg (1 vial)\",\n            \"cost_price\": 1.16,\n            \"price\": 2.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"266619\",\n            \"unit\": \"1 Vial\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 388,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sterets Pre-injection Swabs (1 x 100)\",\n            \"cost_price\": 1.73,\n            \"price\": 2.86,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"STRINSW1X100\",\n            \"unit\": \"1X100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 389,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sterile Disposable Scalpel No.10 Blade with Polystyrene Handle x (1)\",\n            \"cost_price\": 0.33,\n            \"price\": 1,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SCAD10\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 390,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sterile Disposable Scalpel No.14 Blade with Polystyrene Handle x (1)\",\n            \"cost_price\": 0.33,\n            \"price\": 1,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SCAD14\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 391,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sterimedix TW Needles 4mm (100)\",\n            \"cost_price\": 27.56,\n            \"price\": 29.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SILKN4\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 392,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sterowash Sodium Chloride 0.9% 20ml\",\n            \"cost_price\": 5.4,\n            \"price\": 7.49,\n            \"stock\": 1,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"STEWAS\",\n            \"unit\": \"1 x 25\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 393,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Stylage Special Lips Lidocaine (1x1ml)\",\n            \"cost_price\": 60,\n            \"price\": 78,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"STYSPELIP\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 394,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sunekos 1200 (1vial)\",\n            \"cost_price\": 73.88,\n            \"price\": 82.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SUN1200\",\n            \"unit\": \"1 Vial\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 395,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sunekos 200 (2vials)\",\n            \"cost_price\": 73.88,\n            \"price\": 79.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SUN200\",\n            \"unit\": \"2 Vial\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 396,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sunekos Post Laser Cream (30)\",\n            \"cost_price\": 25,\n            \"price\": 29.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SUNPLC\",\n            \"unit\": \"1x30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:07.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 397,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sunekos Post Peeling Cream (50g)\",\n            \"cost_price\": 25,\n            \"price\": 28.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SUNPPC\",\n            \"unit\": \"1x50g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:07.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 398,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Sustanon 250 Injection\",\n            \"cost_price\": 2.45,\n            \"price\": 4.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:07.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 399,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Swann Morton No 10 Sterile Carbon Steel Blades\",\n            \"cost_price\": 10.99,\n            \"price\": 14.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SWA10\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:07.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 400,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Swann Morton No 10R Sterile Stainless Steel Surgical Blades\",\n            \"cost_price\": 14.19,\n            \"price\": 18.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SWA10R\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 401,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Swann Morton No 14 Sterile Carbon Steel Blades\",\n            \"cost_price\": 10.99,\n            \"price\": 14.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SWA14\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 402,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Swann Morton Stainless Steel Surgical Scalpel Handle (1)\",\n            \"cost_price\": 2.09,\n            \"price\": 3.49,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"SWAHAN3G\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 615,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"T-Safe 380 A (IUCD)\",\n            \"cost_price\": 10.47,\n            \"price\": 13.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TSAFE380\",\n            \"unit\": \"1 Device\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 679,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"t3456\",\n            \"cost_price\": 8,\n            \"price\": 10,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"T3452\",\n            \"unit\": \"g\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2022-08-17T13:44:34.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks_sum_received_quantity\": 4,\n            \"item_stocks\": [\n                {\n                    \"id\": 152,\n                    \"reference_id\": \"#POI-152\",\n                    \"stock_order_id\": 78,\n                    \"item_id\": 679,\n                    \"price\": 8,\n                    \"quantity\": 5,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-10 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pass\",\n                    \"created_at\": \"2022-08-17T13:51:05.000000Z\",\n                    \"updated_at\": \"2022-08-17T13:53:29.000000Z\"\n                },\n                {\n                    \"id\": 154,\n                    \"reference_id\": \"#POI-154\",\n                    \"stock_order_id\": 78,\n                    \"item_id\": 679,\n                    \"price\": 8,\n                    \"quantity\": 3,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-31 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2022-08-17T13:53:29.000000Z\",\n                    \"updated_at\": \"2022-08-31T11:38:23.000000Z\"\n                },\n                {\n                    \"id\": 158,\n                    \"reference_id\": \"#POI-158\",\n                    \"stock_order_id\": 78,\n                    \"item_id\": 679,\n                    \"price\": 8,\n                    \"quantity\": 2,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-08-30 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pass\",\n                    \"created_at\": \"2022-08-31T11:38:23.000000Z\",\n                    \"updated_at\": \"2022-08-31T11:38:56.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 616,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Tamiflu Capsules 75mg (25)\",\n            \"cost_price\": 46.23,\n            \"price\": 60.1,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TAM75\",\n            \"unit\": \"1 x 25\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 617,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Tamiflu Oral Suspension 6mg/ml (65ml)\",\n            \"cost_price\": 10.27,\n            \"price\": 14.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TAM65\",\n            \"unit\": \"1 x 65ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 618,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal Kiss\",\n            \"cost_price\": 0,\n            \"price\": 1,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"2 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks_sum_received_quantity\": 97,\n            \"item_stocks\": [\n                {\n                    \"id\": 513,\n                    \"reference_id\": \"#POI-513\",\n                    \"stock_order_id\": 294,\n                    \"item_id\": 618,\n                    \"price\": 0,\n                    \"quantity\": 100,\n                    \"received_quantity\": 97,\n                    \"initial_quantity\": \"100\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-10-05 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5280921016\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-10-05T11:23:57.000000Z\",\n                    \"updated_at\": \"2023-10-05T11:37:11.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 403,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal Meso (2 x 1ml)\",\n            \"cost_price\": 95.1,\n            \"price\": 95.1,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOSMESO\",\n            \"unit\": \"2 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 404,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal Puresense Redensity II\",\n            \"cost_price\": 150,\n            \"price\": 153.95,\n            \"stock\": 100,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEORED2\",\n            \"unit\": \"2 x 1ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 405,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal Puresense Redensity II (SINGLE SYRINGE)\",\n            \"cost_price\": 0,\n            \"price\": 85,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOPRESSI2\",\n            \"unit\": \"1X1ML\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 619,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal Touch Up 1 x 0.5ml (Single)\",\n            \"cost_price\": 52.05,\n            \"price\": 56.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOTSIN\",\n            \"unit\": \"1 x 0.5ml\",\n            \"vat\": 20,\n            \"brand\": \"Teosyal\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 406,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal Touch Up 2 x 0.5ml\",\n            \"cost_price\": 104.1,\n            \"price\": 104.1,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOTOUCH\",\n            \"unit\": \"2 x 0.5ml\",\n            \"vat\": 20,\n            \"brand\": \"Teosyal\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/a3459b3e-e518-4e11-b8cd-12d3ff081e2c.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=8ba7d3763812202f7f7189ae7de419607c78872464d5e45b18d5c30e84f94916\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 407,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal® Puresense 27G Deep Lines (2 x 1.0ml)\",\n            \"cost_price\": 109.21,\n            \"price\": 129.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOPUR27G\",\n            \"unit\": \"2 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 408,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal® Puresense 27G Kiss (2 x 1.0ml)\",\n            \"cost_price\": 121.94,\n            \"price\": 144.95,\n            \"stock\": 1,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOKIS27G\",\n            \"unit\": \"2 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/4ff1c421-88dc-4c1a-8d65-f708a6ca1bff.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=8d38fd4315385d51abb1c2944e26717fe0caff60703862089001dc180bd3e593\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 620,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal® Puresense 27G Kiss (SINGLE SYRINGE)\",\n            \"cost_price\": 60.97,\n            \"price\": 82.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOKISSG\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 409,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal® Puresense 30G Global Action (2 x 1.0ml)\",\n            \"cost_price\": 109.21,\n            \"price\": 129.95,\n            \"stock\": 36,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOGLO30G\",\n            \"unit\": \"2 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 410,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal® Puresense Redensity I (1 x 3.0ml)\",\n            \"cost_price\": 112.56,\n            \"price\": 147,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEORED11\",\n            \"unit\": \"1 x 3.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 411,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal® Puresense Redensity I (2 x 1.0ml)\",\n            \"cost_price\": 84.42,\n            \"price\": 99.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEORED12\",\n            \"unit\": \"2 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 412,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal® Puresense Ultimate (1 x 3.0ml)\",\n            \"cost_price\": 200,\n            \"price\": 220,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOULT1\",\n            \"unit\": \"1 x 3.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 413,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal® Puresense Ultimate (2 x 1.0ml)\",\n            \"cost_price\": 140,\n            \"price\": 159.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOULT2\",\n            \"unit\": \"2 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 414,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal® Puresense Ultra Deep (2 x 1.2ml)\",\n            \"cost_price\": 133.33,\n            \"price\": 159.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOULTD\",\n            \"unit\": \"2 x 1.2ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 621,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal® Puresense Ultra Deep (SINGLE SYRINGE)\",\n            \"cost_price\": 70,\n            \"price\": 95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOUDSIN\",\n            \"unit\": \"1 x 1.2ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 415,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal® RHA 1 (2 x 1.0ml)\",\n            \"cost_price\": 101.84,\n            \"price\": 123,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEORHA1\",\n            \"unit\": \"2 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 416,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal® RHA 1 (SINGLE SYRINGE)\",\n            \"cost_price\": 50,\n            \"price\": 71.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEORHA1S\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 417,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal® RHA 2 (2 x 1.0ml)\",\n            \"cost_price\": 127.97,\n            \"price\": 149.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEORHA2\",\n            \"unit\": \"2 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 418,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal® RHA 2 (SINGLE SYRINGE)\",\n            \"cost_price\": 60,\n            \"price\": 85,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEORHA2/1\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 419,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal® RHA 3 (2 x 1.0ml)\",\n            \"cost_price\": 127.97,\n            \"price\": 151.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEORHA3\",\n            \"unit\": \"2 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 622,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal® RHA 3 (SINGLE SYRINGE)\",\n            \"cost_price\": 60,\n            \"price\": 86,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEORHA3SIN\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 420,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal® RHA 4 (2 x 1.2ml)\",\n            \"cost_price\": 144.05,\n            \"price\": 169.5,\n            \"stock\": 14,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEORHA4\",\n            \"unit\": \"2 x 1.2ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 623,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal® RHA 4 (SINGLE SYRINGE)\",\n            \"cost_price\": 80,\n            \"price\": 96,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEORHA4SIN\",\n            \"unit\": \"1 x 1.2ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 421,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal® RHA Kiss (2 x 0.7ml)\",\n            \"cost_price\": 95.98,\n            \"price\": 119.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEORHAK\",\n            \"unit\": \"2 x 0.7ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 624,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teosyal® RHA Kiss (SINGLE SYRINGE)\",\n            \"cost_price\": 47.99,\n            \"price\": 69.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEORHAK1\",\n            \"unit\": \"1 x 0.7ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 422,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teoxane 3D Lip (10ml)\",\n            \"cost_price\": 14.63,\n            \"price\": 19.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOX3D\",\n            \"unit\": \"1 x 10ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/0d394936-5a9c-46ac-8204-f86ece41ce69.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=cf09e7bcc99a396d059a75131114935333398762b443a2edf9b253784b003c85\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 423,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teoxane Advanced Filler - dry (50ml)\",\n            \"cost_price\": 33.98,\n            \"price\": 39.99,\n            \"stock\": 1000000,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOXADFD\",\n            \"unit\": \"1 x 50ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 424,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teoxane Advanced Filler - normal to combination (50ml)\",\n            \"cost_price\": 33.98,\n            \"price\": 39.99,\n            \"stock\": 1000000,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOXADFN\",\n            \"unit\": \"1 x 50ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 425,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teoxane Advanced Perfecting Shield (1x50ml)\",\n            \"cost_price\": 22.13,\n            \"price\": 26.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOAPS\",\n            \"unit\": \"1 x 50ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/d8416b20-8b7a-497e-b33a-4bbe1cdbd5ef.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=c17b5b8f6a7008db4fae8c35c9b3fe42da5b9896a1cbcff5009a3a816d740e15\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 426,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teoxane AHA Cleansing Gel (150ml)\",\n            \"cost_price\": 13.13,\n            \"price\": 15.75,\n            \"stock\": 195,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOCG\",\n            \"unit\": \"1 x 150ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 427,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teoxane Clean Pyramid Facial Cleansing Tool (1)\",\n            \"cost_price\": 0,\n            \"price\": 0,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOFCT\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 428,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teoxane Deep Repair Balm (30ml)\",\n            \"cost_price\": 11.25,\n            \"price\": 14.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOXDRB\",\n            \"unit\": \"1X30ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/eaa423c7-2737-444c-8ee2-1b4f5cbf89c1.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=43091510840e25e213681175d17a70dcde246a98c8e4f1844ee2abc01ddfcad1\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 429,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teoxane Micellar Solution (200ml)\",\n            \"cost_price\": 9.01,\n            \"price\": 12.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MIC200\",\n            \"unit\": \"1 x 200ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 430,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teoxane Micellar Solution (400ml)\",\n            \"cost_price\": 16.5,\n            \"price\": 21.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"MIC400\",\n            \"unit\": \"1 x 400ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 431,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teoxane Perfect Skin Refiner (50ml)\",\n            \"cost_price\": 30.38,\n            \"price\": 36.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOPSR\",\n            \"unit\": \"1 x 50ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 432,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teoxane Post Procedure Professional (200ml)\",\n            \"cost_price\": 33,\n            \"price\": 40.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOPPP\",\n            \"unit\": \"1 x 200ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 433,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teoxane R II Eye Contour (1x15ml)\",\n            \"cost_price\": 22.65,\n            \"price\": 27.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOR2EYE\",\n            \"unit\": \"1 x 15ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 434,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teoxane Radiant Night peel (40ml)\",\n            \"cost_price\": 18,\n            \"price\": 21.6,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOXRNP\",\n            \"unit\": \"1 x 40ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 435,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teoxane Recover Complexion (7.5g) SPF50\",\n            \"cost_price\": 20,\n            \"price\": 22.9,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOXRECCOMP\",\n            \"unit\": \"1 x 7.5g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 436,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teoxane RHA hydrogel Mask (Face and Neck)\",\n            \"cost_price\": 23.1,\n            \"price\": 30.8,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOXMASKFN\",\n            \"unit\": \"1OP\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 437,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teoxane RHA Hydrogel Mask (Face) 1 x8\",\n            \"cost_price\": 39,\n            \"price\": 52,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEORHAMF\",\n            \"unit\": \"1 x 8\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 438,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teoxane RHA Serum (30ml)\",\n            \"cost_price\": 32.59,\n            \"price\": 39.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOXRHAS\",\n            \"unit\": \"1 x 30ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/9f77426a-a18f-4f13-8caf-15d2b64e3d8d.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=0e332fd726da95b688b689734ea1fe11c9547ca1f10d81697dc628fa1c4b0893\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 439,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teoxane RHA X VCIP Serum (30ml)\",\n            \"cost_price\": 32.59,\n            \"price\": 44.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOXRHAX\",\n            \"unit\": \"1 x 30ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 440,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Teoxane Topical Skin Booster (4x4ml)\",\n            \"cost_price\": 75,\n            \"price\": 91,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TEOTSB\",\n            \"unit\": \"4 x 4ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 441,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Terbinafine 250mg Tabs\",\n            \"cost_price\": 4.02,\n            \"price\": 8.04,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"1 x 28\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 1,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 625,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Terbinafine Cream 1% (30g)\",\n            \"cost_price\": 3.07,\n            \"price\": 6.14,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TERB30\",\n            \"unit\": \"1 x 30g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 442,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Terumo Luer Lok Syringe 2.5ml (SINGLE)\",\n            \"cost_price\": 0.15,\n            \"price\": 0.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TER25S\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 626,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Terumo Luer Lok Syringe 2.5ml (SINGLE).\",\n            \"cost_price\": 0.15,\n            \"price\": 0.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"OTER25S\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 443,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Terumo Luer Lok Syringe 2.5ml 100\",\n            \"cost_price\": 13.19,\n            \"price\": 17.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TER25100\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 444,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Terumo Syringe - Luer Slip (SS02SE1) 2-2.5ml (Single)\",\n            \"cost_price\": 0.1,\n            \"price\": 0.2,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TERLS225S\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 627,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Terumo Syringe - Luer Slip (SS02SE1) 2-2.5ml (Single).\",\n            \"cost_price\": 0.1,\n            \"price\": 0.2,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"OTERLS225S\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 445,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Terumo Syringe - Luer Slip (SS02SE1) 2-2.5ml 100\",\n            \"cost_price\": 5.07,\n            \"price\": 8.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TERLS225\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/c40e1216-029c-43cd-912a-e2cb4fd91c10.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=ce4d620019f12ea86fb2252ef7664a67c6fef109ad971272f311c0167eabbeb4\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 641,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Test\",\n            \"cost_price\": 7,\n            \"price\": 10,\n            \"stock\": 110,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"150\",\n            \"unit\": \"g\",\n            \"vat\": 0,\n            \"brand\": \"Viscoderm\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-09-28T13:00:30.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 680,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Test 1PX 1\",\n            \"cost_price\": 10,\n            \"price\": 12,\n            \"stock\": 0,\n            \"reorder_limit\": 10,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"1Px 1\",\n            \"unit\": \"g\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2022-10-20T10:03:47.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks_sum_received_quantity\": 5,\n            \"item_stocks\": [\n                {\n                    \"id\": 194,\n                    \"reference_id\": \"#POI-194\",\n                    \"stock_order_id\": 99,\n                    \"item_id\": 680,\n                    \"price\": 10,\n                    \"quantity\": 10,\n                    \"received_quantity\": 5,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-10-13 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pass\",\n                    \"created_at\": \"2022-10-20T17:14:48.000000Z\",\n                    \"updated_at\": \"2022-10-20T17:15:36.000000Z\"\n                },\n                {\n                    \"id\": 195,\n                    \"reference_id\": \"#POI-195\",\n                    \"stock_order_id\": 99,\n                    \"item_id\": 680,\n                    \"price\": 10,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"owning\",\n                    \"created_at\": \"2022-10-20T17:15:36.000000Z\",\n                    \"updated_at\": \"2022-10-20T17:15:36.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 681,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Test 1Px 2\",\n            \"cost_price\": 11,\n            \"price\": 12,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"1px 2\",\n            \"unit\": \"g\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2022-10-20T10:05:00.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 682,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"test 1px3\",\n            \"cost_price\": 2,\n            \"price\": 5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"1px3\",\n            \"unit\": \"5 x 3ml\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2022-10-20T10:17:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 692,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": null,\n            \"name\": \"Test 56\",\n            \"cost_price\": null,\n            \"price\": 5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"tst56\",\n            \"unit\": \"g\",\n            \"vat\": 0,\n            \"brand\": \"ALVITA\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2024-02-15T14:31:44.000000Z\",\n            \"updated_at\": \"2024-02-15T14:31:44.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 677,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Test Alpha\",\n            \"cost_price\": 10,\n            \"price\": 20,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"mg\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2022-07-27T13:49:56.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [\n                {\n                    \"id\": 41,\n                    \"reference_id\": \"#POI-41\",\n                    \"stock_order_id\": 24,\n                    \"item_id\": 677,\n                    \"price\": 10,\n                    \"quantity\": 10,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pending\",\n                    \"created_at\": \"2022-07-27T13:52:46.000000Z\",\n                    \"updated_at\": \"2022-07-27T13:52:46.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 648,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"test b3\",\n            \"cost_price\": 30,\n            \"price\": 50,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"T-105\",\n            \"unit\": \"kg\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-10-12T09:33:27.000000Z\",\n            \"updated_at\": \"2024-02-09T15:15:59.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 643,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Test batch\",\n            \"cost_price\": 45,\n            \"price\": 50,\n            \"stock\": 1,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"T102\",\n            \"unit\": \"30ml\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-10-11T11:54:51.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:00.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 644,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"test batch2\",\n            \"cost_price\": 40,\n            \"price\": 45,\n            \"stock\": 150,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"T103\",\n            \"unit\": \"1 x 20ml\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-10-11T12:48:16.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:00.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 652,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"test delete\",\n            \"cost_price\": null,\n            \"price\": 5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"ft\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-10-22T13:59:19.000000Z\",\n            \"updated_at\": \"2021-12-19T06:25:18.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 656,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"test prod\",\n            \"cost_price\": 100,\n            \"price\": 150,\n            \"stock\": 1000,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"kuio 1\",\n            \"unit\": \"cm\",\n            \"vat\": 5,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-12-14T14:01:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:00.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 446,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"test product\",\n            \"cost_price\": 5,\n            \"price\": 58,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:00.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 653,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Test product -dev\",\n            \"cost_price\": null,\n            \"price\": 12,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": 2,\n            \"clinic_limit\": null,\n            \"sku\": \"TPD12397530\",\n            \"unit\": \"g\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"URGRNT\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-11-26T15:52:19.000000Z\",\n            \"updated_at\": \"2022-09-24T11:17:23.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/41b92fd6-27c3-49fb-a873-a1abb78017f7.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=327b1a693107ee835e3c94731a1e14b445cef68d054a32967a234cedfc4eb9d4\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 684,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Test px 7777\",\n            \"cost_price\": 2,\n            \"price\": 5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ATPX234\",\n            \"unit\": \"ft\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"testing\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 0,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2022-10-20T11:01:45.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:00.000000Z\",\n            \"item_stocks_sum_received_quantity\": 4,\n            \"item_stocks\": [\n                {\n                    \"id\": 192,\n                    \"reference_id\": \"#POI-192\",\n                    \"stock_order_id\": 97,\n                    \"item_id\": 684,\n                    \"price\": 2,\n                    \"quantity\": 2,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-10-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2022-10-20T13:36:29.000000Z\",\n                    \"updated_at\": \"2022-10-26T14:26:37.000000Z\"\n                },\n                {\n                    \"id\": 193,\n                    \"reference_id\": \"#POI-193\",\n                    \"stock_order_id\": 98,\n                    \"item_id\": 684,\n                    \"price\": 2,\n                    \"quantity\": 5,\n                    \"received_quantity\": 4,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-10-20 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pass\",\n                    \"created_at\": \"2022-10-20T13:37:07.000000Z\",\n                    \"updated_at\": \"2022-10-20T14:59:36.000000Z\"\n                }\n            ],\n            \"terms\": [\n                {\n                    \"id\": 214,\n                    \"item_id\": 684,\n                    \"term_id\": 25,\n                    \"created_at\": \"2022-10-20T13:41:28.000000Z\",\n                    \"updated_at\": \"2022-10-20T13:41:28.000000Z\",\n                    \"term\": {\n                        \"id\": 25,\n                        \"item_description\": \"Clomid (Clomifene Citrate BP) is indicated for the treatment of ovulatory failure in women desiring pregnancy. I am aware that any usage outside of this indication remains strictly off-label.\",\n                        \"created_at\": \"2022-10-19T09:23:12.000000Z\",\n                        \"updated_at\": \"2022-10-19T09:23:12.000000Z\"\n                    }\n                }\n            ],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 683,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"test px78\",\n            \"cost_price\": 8,\n            \"price\": 10,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ATPX1X1\",\n            \"unit\": \"cm\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2022-10-20T10:23:51.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:00.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 647,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Test Tracking\",\n            \"cost_price\": 123,\n            \"price\": 156,\n            \"stock\": 400,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"123\",\n            \"unit\": \"dz\",\n            \"vat\": 20,\n            \"brand\": \"Teosyal\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-10-12T09:33:26.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:00.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 691,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": null,\n            \"name\": \"Test Z\",\n            \"cost_price\": 2,\n            \"price\": 2,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"cm\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2024-02-09T15:14:51.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:00.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 640,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"test_dev\",\n            \"cost_price\": null,\n            \"price\": 300,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"g\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-09-16T15:09:12.000000Z\",\n            \"updated_at\": \"2021-12-19T06:25:18.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 655,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"test-11\",\n            \"cost_price\": 20,\n            \"price\": 25,\n            \"stock\": 120,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"t-001\",\n            \"unit\": \"ft\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-12-05T09:31:27.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:00.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 662,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Test-stock\",\n            \"cost_price\": 96,\n            \"price\": 100,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"Tstock123\",\n            \"unit\": \"cm\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2022-02-21T11:10:46.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:00.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 654,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Test-testers\",\n            \"cost_price\": null,\n            \"price\": 19,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TESTER12\",\n            \"unit\": \"pcs\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-11-29T02:53:37.000000Z\",\n            \"updated_at\": \"2023-03-14T14:56:13.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/58cf0702-3f5f-4ea2-aba0-d6dc268f829a.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=245014cce93b2bbfb5e8467b3835402ef2f4e0fd48012e38bef8df02edf08abd\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 637,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Test1\",\n            \"cost_price\": 20,\n            \"price\": 25,\n            \"stock\": 20,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"UsmmL9\",\n            \"unit\": \"dz\",\n            \"vat\": 20,\n            \"brand\": \"Viscoderm\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-16T10:58:06.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:00.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 666,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"test23\",\n            \"cost_price\": null,\n            \"price\": 10,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"testz11\",\n            \"unit\": \"cm\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2022-04-12T13:22:23.000000Z\",\n            \"updated_at\": \"2022-04-12T13:22:23.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 628,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Testogel 16.2mg/g Gel (TESTOSTERONE) (88g)\",\n            \"cost_price\": 31.11,\n            \"price\": 43.55,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"4067922\",\n            \"unit\": \"1 x 88g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:00.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/785ca8a9-858a-4e67-bbb3-03b6fbba3313.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=a780840e813137ee80175baeae8ae384735a709dda46a54a82b89516877227b0\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 447,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Timolol Eye Drops 0.25% (5ml)\",\n            \"cost_price\": 1.2,\n            \"price\": 4.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TIM25\",\n            \"unit\": \"1 x 5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:00.000000Z\",\n            \"item_stocks_sum_received_quantity\": 1,\n            \"item_stocks\": [\n                {\n                    \"id\": 164,\n                    \"reference_id\": \"#POI-164\",\n                    \"stock_order_id\": 83,\n                    \"item_id\": 447,\n                    \"price\": 1.2,\n                    \"quantity\": 10,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2022-09-08 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pass\",\n                    \"created_at\": \"2022-09-08T17:15:49.000000Z\",\n                    \"updated_at\": \"2024-06-01T12:22:28.000000Z\"\n                },\n                {\n                    \"id\": 165,\n                    \"reference_id\": \"#POI-165\",\n                    \"stock_order_id\": 83,\n                    \"item_id\": 447,\n                    \"price\": 1.2,\n                    \"quantity\": 5,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"owning\",\n                    \"created_at\": \"2022-09-08T17:16:30.000000Z\",\n                    \"updated_at\": \"2022-09-08T17:16:30.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 448,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Timolol Eye Drops 0.5% (5mll)\",\n            \"cost_price\": 1.2,\n            \"price\": 5.01,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TIM5\",\n            \"unit\": \"1 x 5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:00.000000Z\",\n            \"item_stocks_sum_received_quantity\": 1,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/244629b5-4908-4e40-9241-e4bf7d739d75.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=24992b463ea4fdbc400734e75dc7958af509f9ce68adee2162e446643adce827\",\n            \"item_stocks\": [\n                {\n                    \"id\": 523,\n                    \"reference_id\": \"#POI-523\",\n                    \"stock_order_id\": 303,\n                    \"item_id\": 448,\n                    \"price\": 1.2,\n                    \"quantity\": 10,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5635829430\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-12-06T09:41:29.000000Z\",\n                    \"updated_at\": \"2023-12-06T09:54:43.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 449,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Tongue Depressor Non-Sterile (100)\",\n            \"cost_price\": 1,\n            \"price\": 1.75,\n            \"stock\": 5,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TONDEP100\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:00.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/c1dfd4ed-39ea-4645-b452-94fcbbaabfb1.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=e650e5531d19cf68d44ed29c562bc6e416fc622ae7ca04bc90981744de4d49c4\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 450,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Torbac bacteriostatic saline 10x5ml Amps\",\n            \"cost_price\": 9.4,\n            \"price\": 12.7,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TOBS10X5\",\n            \"unit\": \"10 x 5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:00.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 451,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Torbac bacteriostatic saline 1x5ml Amps\",\n            \"cost_price\": 0.94,\n            \"price\": 1.55,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"bacsal1.5\",\n            \"unit\": \"1x5\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:00.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/6cee5b91-8834-436e-99eb-b7c16e04fee6.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=091141e2f51523f2d0f7b46445dab90a63c24ee27075291768675f29213a099f\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 629,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"7\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Tostran Gel 2% (60g)\",\n            \"cost_price\": null,\n            \"price\": 42.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": 4,\n            \"clinic_limit\": null,\n            \"sku\": \"TOSG60\",\n            \"unit\": \"1 x 60g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 0,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-01-02T16:48:26.000000Z\",\n            \"item_stocks_sum_received_quantity\": 10,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/5c2ba8bc-0953-41a0-88a9-43dd01cdc01e.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=bfcc12d431e2fa9e3fcc3bba2df693358b3f616e99358a6b35d0d75e0b0cab92\",\n            \"item_stocks\": [\n                {\n                    \"id\": 518,\n                    \"reference_id\": \"#POI-518\",\n                    \"stock_order_id\": 299,\n                    \"item_id\": 629,\n                    \"price\": 0,\n                    \"quantity\": 10,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-11-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5540294593\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-11-20T13:16:55.000000Z\",\n                    \"updated_at\": \"2023-11-20T13:17:27.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 630,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Tramadol SR Tabs 50mg (60)\",\n            \"cost_price\": 4.6,\n            \"price\": 9.2,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ZYD5060\",\n            \"unit\": \"1 x 60\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks_sum_received_quantity\": 3,\n            \"item_stocks\": [\n                {\n                    \"id\": 540,\n                    \"reference_id\": \"#POI-538\",\n                    \"stock_order_id\": 320,\n                    \"item_id\": 630,\n                    \"price\": 4.6,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-13 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5677292336\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-12-13T09:01:44.000000Z\",\n                    \"updated_at\": \"2023-12-13T13:29:15.000000Z\"\n                },\n                {\n                    \"id\": 541,\n                    \"reference_id\": \"#POI-541\",\n                    \"stock_order_id\": 321,\n                    \"item_id\": 630,\n                    \"price\": 4.6,\n                    \"quantity\": 5,\n                    \"received_quantity\": 3,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-13 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5678405329\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-12-13T13:07:47.000000Z\",\n                    \"updated_at\": \"2024-06-30T19:00:52.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 452,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Tretinoin (0.05%) Cream (30g)\",\n            \"cost_price\": 36.19,\n            \"price\": 47.05,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TRE00530\",\n            \"unit\": \"1 X 30g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 631,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Trimethoprim 200mg Tabs 1 x 10\",\n            \"cost_price\": 1,\n            \"price\": 5.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TRI20010\",\n            \"unit\": \"1 x 10\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:23.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 453,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Trimethoprim 200mg Tabs 1 x 14\",\n            \"cost_price\": 0.65,\n            \"price\": 6.65,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TRI200\",\n            \"unit\": \"1 x 14\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"testing  this item 12345\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/c7169b54-e612-4e5e-a9ac-c257689876a6.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=9032c29422e6ff2ec003ccdd9e9ab42612b6333f391ec22c4cb54c3355e4fc00\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 454,\n            \"monday_com_id\": \"6652073594\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"3\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"TSK \\\"Control Hub\\\" Needles 30G 13mm (1/2\\\") (100) UTW\",\n            \"cost_price\": 41,\n            \"price\": 41.99,\n            \"stock\": 0,\n            \"reorder_limit\": 5,\n            \"item_category_id\": 6,\n            \"clinic_limit\": null,\n            \"sku\": \"TSK30G13\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": \"\",\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 0,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 1,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-05-16T09:04:26.000000Z\",\n            \"item_stocks_sum_received_quantity\": 31,\n            \"item_stocks\": [\n                {\n                    \"id\": 272,\n                    \"reference_id\": \"#POI-272\",\n                    \"stock_order_id\": 151,\n                    \"item_id\": 454,\n                    \"price\": 41,\n                    \"quantity\": 49,\n                    \"received_quantity\": 31,\n                    \"initial_quantity\": \"49\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-19 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4501770129\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-05-19T11:46:04.000000Z\",\n                    \"updated_at\": \"2024-01-04T08:33:33.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 455,\n            \"monday_com_id\": \"4501741089\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": \"2023-07-18 09:26:09\",\n            \"name\": \"TSK \\\"Control Hub\\\" UTW Needles 27G x 13mm (1/2\\\") (100)\",\n            \"cost_price\": 41,\n            \"price\": 45,\n            \"stock\": 0,\n            \"reorder_limit\": 1,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TSK27H\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/2725dbf2-6467-4d9f-bb84-52d38183b6d1.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=295203f77a37877c7c3a154ef316ac9b6f5e85f0c1a1f99bda3fc6741b29cb1b\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 456,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"TSK 4mm Needles 30G 4mm (100) UTW Regular Hub\",\n            \"cost_price\": 32.51,\n            \"price\": 34.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": 6,\n            \"clinic_limit\": null,\n            \"sku\": \"TSK4MM30\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 457,\n            \"monday_com_id\": \"4332235719\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"2\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"TSK 6mm Needles 30G 6mm (100) UTW Regular Hub\",\n            \"cost_price\": 32.51,\n            \"price\": 34.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": 42,\n            \"clinic_limit\": null,\n            \"sku\": \"TSK6MM30\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 458,\n            \"monday_com_id\": \"4501641327\",\n            \"vendor_id\": 1,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"10\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": null,\n            \"name\": \"TSK Invisible Needle 0.2 x9mm (100)\",\n            \"cost_price\": 44.5,\n            \"price\": 49.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": 3,\n            \"clinic_limit\": null,\n            \"sku\": \"TSKINV9MM\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 1,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks_sum_received_quantity\": 2,\n            \"item_stocks\": [\n                {\n                    \"id\": 271,\n                    \"reference_id\": \"#POI-271\",\n                    \"stock_order_id\": 150,\n                    \"item_id\": 458,\n                    \"price\": 44.5,\n                    \"quantity\": 2,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-05-19 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4501665710\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-05-19T11:24:19.000000Z\",\n                    \"updated_at\": \"2023-05-19T11:24:58.000000Z\"\n                },\n                {\n                    \"id\": 560,\n                    \"reference_id\": \"#POI-560\",\n                    \"stock_order_id\": 337,\n                    \"item_id\": 458,\n                    \"price\": 44.5,\n                    \"quantity\": 4,\n                    \"received_quantity\": null,\n                    \"initial_quantity\": null,\n                    \"expire_date\": null,\n                    \"received_date\": null,\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5863946905\",\n                    \"state\": \"pending\",\n                    \"created_at\": \"2024-01-16T09:35:09.000000Z\",\n                    \"updated_at\": \"2024-01-16T09:35:10.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 459,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"TSK Low Dead Space Needles 33G (100) (13mm)\",\n            \"cost_price\": 40.39,\n            \"price\": 55,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TSKLDS13\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/ce9563bf-9a77-474a-80a9-8705b09ed74d.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=58edb09d81c99f8021fbbd9e1b2cd96b92d57ea8f4440d436e2b4515f7aa5ecb\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 460,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"TSK Low Dead Space Needles 33G (100) (9mm)\",\n            \"cost_price\": 40.39,\n            \"price\": 55,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"TSKLDS9\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/f77add56-a1fc-4fec-abac-706264627c41.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=990a0e4b309d06dd0f62a4fbd4c03e92684c3135d3a7f68ad866afc11a20deef\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 462,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"TSK Steriglide Cannulas 22G 70mm\",\n            \"cost_price\": 86.68,\n            \"price\": 91,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"STECAN2270\",\n            \"unit\": \"20\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/9befa2d3-86da-4fec-930e-24164347d54b.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=b35f25a471736f9d42f1e729a57bf132e3ba9f311c35b519ea8956d67cf2796e\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 463,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"TSK Steriglide Cannulas 25G 38mm\",\n            \"cost_price\": 86.68,\n            \"price\": 91,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"STECAN2538\",\n            \"unit\": \"20\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/0d81cea1-50c8-416d-b180-afec246f43b0.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=497f96c05bf3434268674be59fa00101104ffb9712c9659865bb7f8a0df11d59\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 464,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"TSK Steriglide Cannulas 25G 38mm (Single)\",\n            \"cost_price\": 86.68,\n            \"price\": 5.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"STECAN25381\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 465,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"TSK Steriglide Cannulas 25G 50mm\",\n            \"cost_price\": 86.68,\n            \"price\": 91,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"STECAN2550\",\n            \"unit\": \"20\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 466,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"TSK Steriglide Cannulas 27G 38mm\",\n            \"cost_price\": 86.68,\n            \"price\": 91,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"STECAN2738\",\n            \"unit\": \"20\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/e250ea5b-7acf-46a8-89c9-52db1b63e36a.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=9dc7af1fb0d72114546e819bb7f97c1fe7b4b4553e2f698c7758be41b6cded33\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 468,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Ultra Thin Micro Meso Needles 30G 4mm (100)\",\n            \"cost_price\": 29.5,\n            \"price\": 37,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"ULTNEE\",\n            \"unit\": \"1 x 100\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/da5c62a4-620b-448c-b5f7-c1f2d203c17a.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=32fbe5023165e634b9acb29530e9ad1a588e4f3cda005fe3740e158827220f2b\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 632,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"UnoDent Syr 0.3ml 30g x 8mm\",\n            \"cost_price\": 17.8,\n            \"price\": 21.4,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"UNO3ML\",\n            \"unit\": \"Box\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:24.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 633,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Utrogestan 100mg Capsules (30)\",\n            \"cost_price\": 5.13,\n            \"price\": 10.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"UTR100\",\n            \"unit\": \"1 x 30\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:24.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 469,\n            \"monday_com_id\": \"4333276270\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Vaniqa 11.5% Cream\",\n            \"cost_price\": 56.87,\n            \"price\": 75.93,\n            \"stock\": 0,\n            \"reorder_limit\": 10,\n            \"item_category_id\": 10,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"60g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks_sum_received_quantity\": 24,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/6da134a5-92c8-4ec4-9785-058d204391e5.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=4ee30c95002208674930a0d0d63bef7b05385c19e237e9f497712f8790d27c23\",\n            \"item_stocks\": [\n                {\n                    \"id\": 245,\n                    \"reference_id\": \"#POI-245\",\n                    \"stock_order_id\": 135,\n                    \"item_id\": 469,\n                    \"price\": 56.87,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-09 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4281394708\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-04-10T11:06:34.000000Z\",\n                    \"updated_at\": \"2023-04-11T11:04:55.000000Z\"\n                },\n                {\n                    \"id\": 246,\n                    \"reference_id\": \"#POI-246\",\n                    \"stock_order_id\": 136,\n                    \"item_id\": 469,\n                    \"price\": 56.87,\n                    \"quantity\": 10,\n                    \"received_quantity\": 4,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-09 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4281431227\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-04-10T11:19:59.000000Z\",\n                    \"updated_at\": \"2023-05-19T11:35:03.000000Z\"\n                },\n                {\n                    \"id\": 247,\n                    \"reference_id\": \"#POI-247\",\n                    \"stock_order_id\": 137,\n                    \"item_id\": 469,\n                    \"price\": 56.87,\n                    \"quantity\": 10,\n                    \"received_quantity\": 5,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-04 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4282034286\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-04-10T13:29:23.000000Z\",\n                    \"updated_at\": \"2023-04-10T13:29:55.000000Z\"\n                },\n                {\n                    \"id\": 248,\n                    \"reference_id\": \"#POI-248\",\n                    \"stock_order_id\": 137,\n                    \"item_id\": 469,\n                    \"price\": 56.87,\n                    \"quantity\": 5,\n                    \"received_quantity\": 5,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-09 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4282035450\",\n                    \"state\": \"refund received\",\n                    \"created_at\": \"2023-04-10T13:29:55.000000Z\",\n                    \"updated_at\": \"2023-04-10T13:30:25.000000Z\"\n                },\n                {\n                    \"id\": 249,\n                    \"reference_id\": \"#POI-249\",\n                    \"stock_order_id\": 138,\n                    \"item_id\": 469,\n                    \"price\": 56.87,\n                    \"quantity\": 10,\n                    \"received_quantity\": 10,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-04 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4288062131\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-04-11T11:15:01.000000Z\",\n                    \"updated_at\": \"2023-04-11T11:15:49.000000Z\"\n                },\n                {\n                    \"id\": 250,\n                    \"reference_id\": \"#POI-250\",\n                    \"stock_order_id\": 139,\n                    \"item_id\": 469,\n                    \"price\": 56.87,\n                    \"quantity\": 5,\n                    \"received_quantity\": 5,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-04-03 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4289275326\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-04-11T14:19:40.000000Z\",\n                    \"updated_at\": \"2023-04-11T14:20:05.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 634,\n            \"monday_com_id\": \"4289234621\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Vaniqa Cream 11.5% (1 x 60g)\",\n            \"cost_price\": 54.45,\n            \"price\": 76.87,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": 3,\n            \"clinic_limit\": null,\n            \"sku\": \"VANIQ60\",\n            \"unit\": \"1 x 60g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:24.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/a5783de0-fd63-42e2-8656-35d1c0e79f7a.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=c984a5cdbbe1a32cf4f61b2d4ef1366d04e92c37e6d6aa75febc0cee6674df63\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 471,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"0\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Vaseline Petroleum Jelly (100ml.)\",\n            \"cost_price\": 1.48,\n            \"price\": 2.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"OVAS100\",\n            \"unit\": \"1 x 100ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-03-13T10:54:00.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/f02e3684-3f92-471f-b586-ac782416dc23.webp?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=cc7b93bc0bf6e3e5ec41f60147c03b04550d65c3c376aac6653f312c4041d028\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 470,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Vaseline Petroleum Jelly (100ml)\",\n            \"cost_price\": 1.48,\n            \"price\": 2.5,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"VAS100\",\n            \"unit\": \"1 x 100ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 473,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Vaseline Petroleum Jelly (50ml.)\",\n            \"cost_price\": 1.05,\n            \"price\": 1.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"OVAS50\",\n            \"unit\": \"1 x 50ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 472,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Vaseline Petroleum Jelly (50ml)\",\n            \"cost_price\": 1.05,\n            \"price\": 1.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"VAS50\",\n            \"unit\": \"1 x 50ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 635,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": \"0\",\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Ventolin Evohaler (100mcg)\",\n            \"cost_price\": 1.5,\n            \"price\": 4.49,\n            \"stock\": 0,\n            \"reorder_limit\": 0,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"VENEVO\",\n            \"unit\": \"1 Inhaler\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:06:24.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks_sum_received_quantity\": 1,\n            \"item_stocks\": [\n                {\n                    \"id\": 449,\n                    \"reference_id\": \"#POI-449\",\n                    \"stock_order_id\": 250,\n                    \"item_id\": 635,\n                    \"price\": 1.5,\n                    \"quantity\": 2,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-07 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4770300436\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-07-07T12:44:23.000000Z\",\n                    \"updated_at\": \"2023-11-06T13:54:18.000000Z\"\n                },\n                {\n                    \"id\": 450,\n                    \"reference_id\": \"#POI-450\",\n                    \"stock_order_id\": 251,\n                    \"item_id\": 635,\n                    \"price\": 1.5,\n                    \"quantity\": 2,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"2\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-07-07 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"4770328755\",\n                    \"state\": \"refund pending\",\n                    \"created_at\": \"2023-07-07T12:48:56.000000Z\",\n                    \"updated_at\": \"2023-07-07T12:59:16.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 474,\n            \"monday_com_id\": null,\n            \"vendor_id\": 38,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Victoza Prefilled Pen 6mg/ml (2 x 3ml)\",\n            \"cost_price\": 78.48,\n            \"price\": 98.1,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"VIC3470184\",\n            \"unit\": \"2 x 3ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 475,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Viscoderm Cover Up (Dark) 20ml\",\n            \"cost_price\": 14.99,\n            \"price\": 19.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"VISCOCUD\",\n            \"unit\": \"1 x 20ml\",\n            \"vat\": 20,\n            \"brand\": \"Viscoderm\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 476,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Viscoderm Cover Up (Light) 20ml\",\n            \"cost_price\": 14.99,\n            \"price\": 19.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"VISCOCUL\",\n            \"unit\": \"1 x 20ml\",\n            \"vat\": 20,\n            \"brand\": \"Viscoderm\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 477,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Viscoderm Cream 30ml\",\n            \"cost_price\": 14.99,\n            \"price\": 14.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"VISCOCR\",\n            \"unit\": \"1 x 30ml\",\n            \"vat\": 20,\n            \"brand\": \"Viscoderm\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 478,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Viscoderm Hydrobooster (1x1ml)\",\n            \"cost_price\": 67.5,\n            \"price\": 69.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"VISCOHYDRO\",\n            \"unit\": \"1 x 1.0ml\",\n            \"vat\": 20,\n            \"brand\": \"Viscoderm\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 646,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Vitamin c\",\n            \"cost_price\": 40,\n            \"price\": 50,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"\",\n            \"unit\": \"g\",\n            \"vat\": 0,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 1,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-10-12T09:29:26.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 479,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Voltarol (Diclofenac Injection) 75 mg / 3ml Amp (10)\",\n            \"cost_price\": 9.91,\n            \"price\": 12.99,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"A0296541\",\n            \"unit\": \"10 x 3ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 480,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Water for Injection 10ml (10x10ml)\",\n            \"cost_price\": 0.23,\n            \"price\": 5.6,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"W4I10X10\",\n            \"unit\": \"10 x 10ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 481,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Water for Injection 10ml (1x10ml)\",\n            \"cost_price\": 0.23,\n            \"price\": 0.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"W4I10S\",\n            \"unit\": \"1 x 10ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 482,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Water for Injection 5ml (10x5ml)\",\n            \"cost_price\": 2.29,\n            \"price\": 4.6,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"W4I5\",\n            \"unit\": \"10 x 5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 483,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Water for Injection 5ml (1x5ml)\",\n            \"cost_price\": 0.23,\n            \"price\": 0.85,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"W4I5S\",\n            \"unit\": \"1 x 5ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 690,\n            \"monday_com_id\": \"6204455205\",\n            \"vendor_id\": 41,\n            \"agreed_stock_level\": \"10\",\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"3\",\n            \"delivery_delay\": \"one  month\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": \"2024-07-22 15:52:39\",\n            \"name\": \"Wegovy 0.25 mg (1 pre-filled pen)\",\n            \"cost_price\": 73.25,\n            \"price\": 104.95,\n            \"stock\": 1000,\n            \"reorder_limit\": 6,\n            \"item_category_id\": 4,\n            \"clinic_limit\": null,\n            \"sku\": \"WEGOV25\",\n            \"unit\": \"10P\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 1,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2024-01-30T15:32:48.000000Z\",\n            \"updated_at\": \"2024-07-22T15:52:39.000000Z\",\n            \"item_stocks_sum_received_quantity\": 4,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/912ae700-6803-4064-8aba-b3e61f5eb714.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=469a5db9190f071d91fa5ca8ac01b40cfd7c040987ad8e090d4b9f17feca797f\",\n            \"item_stocks\": [\n                {\n                    \"id\": 683,\n                    \"reference_id\": \"#POI-683\",\n                    \"stock_order_id\": 409,\n                    \"item_id\": 690,\n                    \"price\": 73.25,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-03-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6204872080\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-03-06T14:10:58.000000Z\",\n                    \"updated_at\": \"2024-03-19T14:57:24.000000Z\"\n                },\n                {\n                    \"id\": 692,\n                    \"reference_id\": \"#POI-692\",\n                    \"stock_order_id\": 418,\n                    \"item_id\": 690,\n                    \"price\": 73.25,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-03-20 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6295031742\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-03-20T13:23:58.000000Z\",\n                    \"updated_at\": \"2024-03-22T05:29:17.000000Z\"\n                },\n                {\n                    \"id\": 697,\n                    \"reference_id\": \"#POI-697\",\n                    \"stock_order_id\": 423,\n                    \"item_id\": 690,\n                    \"price\": 73.25,\n                    \"quantity\": 20,\n                    \"received_quantity\": 4,\n                    \"initial_quantity\": \"20\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-03-26 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6332931088\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-03-26T15:53:49.000000Z\",\n                    \"updated_at\": \"2024-07-22T15:52:38.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 686,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Wegovy 0.5 mg (1 pre-filled pen)\",\n            \"cost_price\": 73.25,\n            \"price\": 104.95,\n            \"stock\": 1000,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"WEGOV5\",\n            \"unit\": \"10P\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2024-01-30T15:14:18.000000Z\",\n            \"updated_at\": \"2024-03-22T18:19:03.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 687,\n            \"monday_com_id\": \"6309419913\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Wegovy 1.0 mg (1 pre-filled pen)\",\n            \"cost_price\": 73.25,\n            \"price\": 104.95,\n            \"stock\": 1000,\n            \"reorder_limit\": null,\n            \"item_category_id\": 3,\n            \"clinic_limit\": null,\n            \"sku\": \"WEGOV10\",\n            \"unit\": \"10P\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2024-01-30T15:23:37.000000Z\",\n            \"updated_at\": \"2024-03-22T05:16:58.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 688,\n            \"monday_com_id\": null,\n            \"vendor_id\": 43,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"test delay\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": null,\n            \"name\": \"Wegovy 1.7 mg (1 pre-filled pen)\",\n            \"cost_price\": 73.25,\n            \"price\": 169.95,\n            \"stock\": 1000,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"WEGOV17\",\n            \"unit\": \"10P\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"test note\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 1,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 1,\n            \"created_at\": \"2024-01-30T15:26:20.000000Z\",\n            \"updated_at\": \"2024-03-21T18:47:27.000000Z\",\n            \"item_stocks_sum_received_quantity\": 2,\n            \"item_stocks\": [\n                {\n                    \"id\": 690,\n                    \"reference_id\": \"#POI-690\",\n                    \"stock_order_id\": 416,\n                    \"item_id\": 688,\n                    \"price\": 73.25,\n                    \"quantity\": 5,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-03-15 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6268744899\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2024-03-15T17:22:53.000000Z\",\n                    \"updated_at\": \"2024-03-21T15:20:33.000000Z\"\n                },\n                {\n                    \"id\": 693,\n                    \"reference_id\": \"#POI-693\",\n                    \"stock_order_id\": 419,\n                    \"item_id\": 688,\n                    \"price\": 73.25,\n                    \"quantity\": 5,\n                    \"received_quantity\": 2,\n                    \"initial_quantity\": \"5\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-03-21 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6303350668\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-03-21T13:24:32.000000Z\",\n                    \"updated_at\": \"2024-03-21T18:26:19.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 689,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Wegovy 2.4 mg (1 pre-filled pen)\",\n            \"cost_price\": 73.25,\n            \"price\": 239.95,\n            \"stock\": 1000,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"WEGOV24\",\n            \"unit\": \"10P\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": \"\",\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 1,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2024-01-30T15:31:04.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 484,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 0,\n            \"low_stock_date\": null,\n            \"name\": \"Witch Hazel\",\n            \"cost_price\": 1.52,\n            \"price\": 2.95,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"WITHAZ2\",\n            \"unit\": \"1 x 200ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-03-12T12:35:49.000000Z\",\n            \"item_stocks_sum_received_quantity\": 1,\n            \"item_stocks\": [\n                {\n                    \"id\": 687,\n                    \"reference_id\": \"#POI-687\",\n                    \"stock_order_id\": 413,\n                    \"item_id\": 484,\n                    \"price\": 1.52,\n                    \"quantity\": 1,\n                    \"received_quantity\": 1,\n                    \"initial_quantity\": \"1\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2024-03-12 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"6241683814\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2024-03-12T12:34:35.000000Z\",\n                    \"updated_at\": \"2024-03-12T12:35:05.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 486,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Wound Care Pack Option II Plus - Sterile (Single)\",\n            \"cost_price\": 0.74,\n            \"price\": 1.3,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"WCPOII\",\n            \"unit\": \"1 x 1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 485,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Wound Care Pack Option II Plus (Single)\",\n            \"cost_price\": 0.74,\n            \"price\": 1.25,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"WCPS\",\n            \"unit\": \"1\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 489,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Xela Rederm 1.8% (2ml)\",\n            \"cost_price\": 65,\n            \"price\": 65,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"XELRED18\",\n            \"unit\": \"1 x 2ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:09.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 487,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Xela Rederm 1% PFS (1x1ml)\",\n            \"cost_price\": 37.8,\n            \"price\": 40,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"XR11\",\n            \"unit\": \"1 x 1ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:08.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 488,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Xela Rederm 1% PFS (1x2ml)\",\n            \"cost_price\": 51.3,\n            \"price\": 55,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"XR12\",\n            \"unit\": \"1 x 2ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:09.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 490,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Xela Rederm 2.2% PFS (1x1ml)\",\n            \"cost_price\": 59.4,\n            \"price\": 65,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"XR21\",\n            \"unit\": \"1 x 1ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:09.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 491,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Xela Rederm 2.2% PFS (1x2ml)\",\n            \"cost_price\": 63.9,\n            \"price\": 70,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"XR22\",\n            \"unit\": \"1 x 2ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:09.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 492,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Xylocaine + Adrenaline Inj 1% (1x20ml)\",\n            \"cost_price\": 1.77,\n            \"price\": 3.36,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"XYLADRINJ1\",\n            \"unit\": \"1 x 20ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:09.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks_sum_received_quantity\": 0,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/ee877613-8241-4a4b-8684-eddb90e8ce7f.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=749d065ed24a9780f1b495d5d0744c563fdec937a10ae0130fca1872b0dd1907\",\n            \"item_stocks\": [\n                {\n                    \"id\": 526,\n                    \"reference_id\": \"#POI-526\",\n                    \"stock_order_id\": 306,\n                    \"item_id\": 492,\n                    \"price\": 1.77,\n                    \"quantity\": 10,\n                    \"received_quantity\": 0,\n                    \"initial_quantity\": \"10\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-12-06 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5636151618\",\n                    \"state\": \"expired\",\n                    \"created_at\": \"2023-12-06T10:58:40.000000Z\",\n                    \"updated_at\": \"2023-12-06T15:36:00.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 493,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Xylocaine + Adrenaline Inj 1% (5x20ml)\",\n            \"cost_price\": 9.66,\n            \"price\": 14.8,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"XYLADRINJ15\",\n            \"unit\": \"5 x 20ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:09.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/2131bb7f-789f-4838-a538-8df2fcdf0c02.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=844222ac9e4d38fa089078a72590dcbb7af421098f21aa45965de136b3811773\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 494,\n            \"monday_com_id\": \"5945637217\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": \"10\",\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Xylocaine + Adrenaline Inj 2%\",\n            \"cost_price\": 10,\n            \"price\": 14.8,\n            \"stock\": 1000,\n            \"reorder_limit\": null,\n            \"item_category_id\": 3,\n            \"clinic_limit\": null,\n            \"sku\": \"XYLADRINJ25\",\n            \"unit\": \"5 x 20ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:09.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/9c5d4666-087c-4e3e-a12d-d4a42c006b24.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=2640019bc447149318df447f62f4dea2a09b3650cbc06941032e25b12ff861d5\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 495,\n            \"monday_com_id\": null,\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"Xylocaine + Adrenaline Inj 2% (1)\",\n            \"cost_price\": 3,\n            \"price\": 3.36,\n            \"stock\": 1000,\n            \"reorder_limit\": null,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"XYLADRINJ2\",\n            \"unit\": \"1 x 20ml\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:09.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/cfd89f76-0091-4a1b-9770-00c6f1659bca.jpeg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=1d9a883854c210aeedd5afb7f0619e8bb6970f4a285b3bc31fca8664ffc411e6\",\n            \"item_stocks\": [],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 496,\n            \"monday_com_id\": null,\n            \"vendor_id\": 35,\n            \"agreed_stock_level\": \"3\",\n            \"clinic_per_quota\": \"\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": \"2024-01-19 12:10:40\",\n            \"name\": \"Xylonor Gel (15g)\",\n            \"cost_price\": 8.17,\n            \"price\": 9.99,\n            \"stock\": -7,\n            \"reorder_limit\": 4,\n            \"item_category_id\": null,\n            \"clinic_limit\": null,\n            \"sku\": \"XYLG15\",\n            \"unit\": \"1 x 15g\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 1,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": false,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 0,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:09.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks_sum_received_quantity\": 3,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/76ea4048-602e-4fe5-a5ca-84fb72890499.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=b7dbb475b931d467154fda32b34b0fcd1a355c989dcc1508862e913c7462370c\",\n            \"item_stocks\": [\n                {\n                    \"id\": 216,\n                    \"reference_id\": \"#POI-216\",\n                    \"stock_order_id\": 112,\n                    \"item_id\": 496,\n                    \"price\": 8.17,\n                    \"quantity\": 15,\n                    \"received_quantity\": 3,\n                    \"initial_quantity\": \"15\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-02-01 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": null,\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-02-06T11:51:32.000000Z\",\n                    \"updated_at\": \"2024-01-19T12:10:40.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        },\n        {\n            \"id\": 497,\n            \"monday_com_id\": \"5945622221\",\n            \"vendor_id\": null,\n            \"agreed_stock_level\": null,\n            \"clinic_per_quota\": \"50\",\n            \"clinic_per_quota_term\": \"\",\n            \"delivery_delay\": \"\",\n            \"is_stock_tracking\": 1,\n            \"low_stock_date\": null,\n            \"name\": \"XZZ Novo Twist Needles (7)\",\n            \"cost_price\": 0,\n            \"price\": 100,\n            \"stock\": 0,\n            \"reorder_limit\": null,\n            \"item_category_id\": 3,\n            \"clinic_limit\": null,\n            \"sku\": \"NV1WT\",\n            \"unit\": \"7\",\n            \"vat\": 20,\n            \"brand\": \"\",\n            \"description\": \"\",\n            \"note\": null,\n            \"out_of_stock_note\": null,\n            \"is_prescription\": 0,\n            \"is_cold_chain\": 0,\n            \"is_returnable\": true,\n            \"is_stock_available\": 1,\n            \"status\": \"active\",\n            \"is_note_required\": 1,\n            \"face_to_face_consultations\": 0,\n            \"is_bmi_required\": 0,\n            \"is_special_offer_item\": 0,\n            \"is_dangerous_item\": 0,\n            \"is_controlled_drug\": 0,\n            \"created_at\": \"2021-07-05T18:02:09.000000Z\",\n            \"updated_at\": \"2024-02-09T15:16:01.000000Z\",\n            \"item_stocks_sum_received_quantity\": 81,\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/5af7bba8-5e5a-4ed9-bf8e-b05f93df6b0a.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=4d6d81eb6dbf10d59cfe25a51ce5a5e29e423b3ec8e42b2725dabdbac3b6fe11\",\n            \"item_stocks\": [\n                {\n                    \"id\": 503,\n                    \"reference_id\": \"#POI-503\",\n                    \"stock_order_id\": 290,\n                    \"item_id\": 497,\n                    \"price\": 0,\n                    \"quantity\": 100,\n                    \"received_quantity\": 81,\n                    \"initial_quantity\": \"100\",\n                    \"expire_date\": null,\n                    \"received_date\": \"2023-09-12 00:00:00\",\n                    \"is_stock_owning\": 0,\n                    \"monday_com_id\": \"5155661690\",\n                    \"state\": \"pass\",\n                    \"created_at\": \"2023-09-13T15:25:36.000000Z\",\n                    \"updated_at\": \"2023-09-18T12:48:34.000000Z\"\n                }\n            ],\n            \"terms\": [],\n            \"price_book_items\": []\n        }\n    ]\n}"}],"_postman_id":"bf836ae6-7a3a-4d78-9f8f-cdf0ba03e993"},{"name":"show item","id":"37510288-0534-4a42-b69f-64951c21a6cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"1|7KRgaxfaOvHSNCfIjKtHViwK4xYEY5zsA95Olwy9fd98fa09"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"ehr-api.10qbit.com/api/v1/items/{{item_id}}?organization_id=1","urlObject":{"path":["api","v1","items","{{item_id}}"],"host":["ehr-api.10qbit.com"],"query":[{"key":"organization_id","value":"1"}],"variable":[]}},"response":[{"id":"9f9f2ea5-3bde-45f0-b7b1-2d5a1b9b4996","name":"show item","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"ehr-api.10qbit.com/api/ehr-api/items{{item_id}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"data\": [\r\n        {\r\n            \"id\": 659,\r\n            \"monday_com_id\": \"6380823865\",\r\n            \"vendor_id\": null,\r\n            \"agreed_stock_level\": \"0\",\r\n            \"clinic_per_quota\": \"0\",\r\n            \"clinic_per_quota_term\": \"\",\r\n            \"delivery_delay\": \"\",\r\n            \"is_stock_tracking\": 1,\r\n            \"low_stock_date\": null,\r\n            \"name\": \"Aaertiy tablet\",\r\n            \"cost_price\": null,\r\n            \"price\": 100,\r\n            \"stock\": 310,\r\n            \"reorder_limit\": null,\r\n            \"item_category_id\": 4,\r\n            \"clinic_limit\": 2,\r\n            \"sku\": \"\",\r\n            \"unit\": \"cm\",\r\n            \"vat\": 0,\r\n            \"brand\": \"\",\r\n            \"description\": \"\",\r\n            \"note\": \"gte\",\r\n            \"out_of_stock_note\": null,\r\n            \"is_prescription\": 1,\r\n            \"is_cold_chain\": 1,\r\n            \"is_returnable\": true,\r\n            \"is_stock_available\": 1,\r\n            \"status\": \"active\",\r\n            \"is_note_required\": 1,\r\n            \"face_to_face_consultations\": 1,\r\n            \"is_bmi_required\": 1,\r\n            \"is_special_offer_item\": 0,\r\n            \"is_dangerous_item\": 0,\r\n            \"is_controlled_drug\": 0,\r\n            \"created_at\": \"2021-12-22T14:32:13.000000Z\",\r\n            \"updated_at\": \"2024-05-08T06:40:25.000000Z\",\r\n            \"url\": \"https://dev-primed-v2-prod.s3.eu-west-2.amazonaws.com/item-images/2c421a7b-b264-4a1f-9ed6-2c93a4d22842.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Security-Token=IQoJb3JpZ2luX2VjELH%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCWV1LXdlc3QtMiJHMEUCIQDg%2Bd9RQv554A2ZVyOEw6BPReF3obtZmUQaFMJAld%2BpswIgHUJFfs8c1k%2BL2K7MOEVGTtrAkcOoXg5szGCLkuNeVswqjQMIiv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwyNTIzNzUyNjY4NTMiDBrnqPyrwCoiuV5GRirhAqhwjOq1UQF8Nyi8VZiwLKz%2BRI2mcQU3i5Iz0ZPUQoIFpKQ4fzi5fj597dMIFrs1E8HyOtlza2LHIxq54jQHRuUNvW9Zcpf5CJH6lVWJbvKlzs1QAdjP20Pktypczp9B5aTb8fJMxqUJcM95TC1qL4lbms9goUr2%2BIQEC9%2FXJaLtdENoUCMUOK9Uv4M6tJj2IHVk5Tz%2F0hwDUisRsOkNWA6hFuwMNzpgkZZE%2BjQRd5Iyq%2Fh%2F4VLVm%2B8OStslppK%2F1BTeNfYkr9OPvPrbbL26UvoPOTuzyjFUvkEBmKYUPC0UKhdJ43Zk1h3Le%2BBU81SkQAin7wntChtub1aHFryeJT8i0RL5l0fsDpWqYNaVewwXEwfDhMhPW4pHVAccLNGzF99Ods6nkHGCIwtzOsU5MKBoI4fh1CTBf%2Fbsw14Phny%2BfrMxmSG3w%2FxOK7eteZcTDmdArTh4mL9K8IktSAyYpipLMJXe%2FbQGOp4B01vtGrTNUo1EZJiXlLXbG4EP%2Boy9n5A7oqqRRWnuKULUc7wmRVyr6OjgMk5Zee%2F86DokxL%2FyTjNnVPYELUBpRKj%2FGFPIc0oGQeD970aqncu27FYm%2BZ82drFQAVP4dGEN28EAN0ccfWCKxtjtLDxqIytkKK6uytRyJPs3Rfm9yROigg3UwOeUfGMbNizAD0wOEQMb5XvZ970erLD3%2FFI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=ASIATVQV46YSXUQVPFJZ%2F20240723%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240723T103104Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Signature=8e191810311926f6bcab023767703512374d548bd9949e78269b87f62c5b6316\",\r\n            \"item_stocks\": [\r\n                {\r\n                    \"id\": 550,\r\n                    \"reference_id\": \"#POI-550\",\r\n                    \"stock_order_id\": 328,\r\n                    \"item_id\": 659,\r\n                    \"price\": 0,\r\n                    \"quantity\": 10,\r\n                    \"received_quantity\": null,\r\n                    \"initial_quantity\": null,\r\n                    \"expire_date\": null,\r\n                    \"received_date\": null,\r\n                    \"is_stock_owning\": 0,\r\n                    \"monday_com_id\": \"5733957376\",\r\n                    \"state\": \"pending\",\r\n                    \"created_at\": \"2023-12-22T10:22:06.000000Z\",\r\n                    \"updated_at\": \"2023-12-22T10:22:07.000000Z\"\r\n                }\r\n            ],\r\n            \"terms\": [],\r\n            \"price_book_items\": []\r\n        }\r\n        ]\r\n}"}],"_postman_id":"37510288-0534-4a42-b69f-64951c21a6cc"}],"id":"9453fadb-08ec-4e05-b178-aeab3e3dd477","_postman_id":"9453fadb-08ec-4e05-b178-aeab3e3dd477","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"1168f0e0-6407-4674-9e46-2d9a4e087b31","id":"1168f0e0-6407-4674-9e46-2d9a4e087b31","name":"EHR","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]}},"event":[{"listen":"prerequest","script":{"id":"20ac910e-d090-48b9-aca4-3630dd2a36d6","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"27e665c3-be9a-40c5-9097-405d6d0de561","type":"text/javascript","packages":{},"exec":[""]}}],"variable":[{"value":"","disabled":true},{"key":"url","value":"ehr-api.10qbit.com","type":"string"},{"key":"token","value":"1|7KRgaxfaOvHSNCfIjKtHViwK4xYEY5zsA95Olwy9fd98fa09","type":"string"},{"key":"order_id","value":"1","type":"string"}]}