web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Automate / The result must be a v...
Power Automate
Answered

The result must be a valid array

(0) ShareShare
ReportReport
Posted on by 170

Hi community,

 

I have a flow with an HTTP request,following by a ParseJson.I get all dynamic content as usual but when i try a for each approach and use the value of the json output as my input i get below error

 

12.PNG

 

I suspect there is something wrong with Json Schema but not sure

 

Schema

Spoiler (Highlight to read)
{
    "properties": {
        "body": {
            "properties": {
                "@@odata.context": {
                    "type": "string"
                },
                "@@odata.nextLink": {
                    "type": "string"
                },
                "value": {
                    "items": {
                        "properties": {
                            "@@odata.etag": {
                                "type": "string"
                            },
                            "bccRecipients": {
                                "type": "array"
                            },
                            "body": {
                                "properties": {
                                    "content": {
                                        "type": "string"
                                    },
                                    "contentType": {
                                        "type": "string"
                                    }
                                },
                                "type": "object"
                            },
                            "bodyPreview": {
                                "type": "string"
                            },
                            "categories": {
                                "type": "array"
                            },
                            "ccRecipients": {
                                "type": "array"
                            },
                            "changeKey": {
                                "type": "string"
                            },
                            "conversationId": {
                                "type": "string"
                            },
                            "conversationIndex": {
                                "type": "string"
                            },
                            "createdDateTime": {
                                "type": "string"
                            },
                            "flag": {
                                "properties": {
                                    "flagStatus": {
                                        "type": "string"
                                    }
                                },
                                "type": "object"
                            },
                            "from": {
                                "properties": {
                                    "emailAddress": {
                                        "properties": {
                                            "address": {
                                                "type": "string"
                                            },
                                            "name": {
                                                "type": "string"
                                            }
                                        },
                                        "type": "object"
                                    }
                                },
                                "type": "object"
                            },
                            "hasAttachments": {
                                "type": "boolean"
                            },
                            "id": {
                                "type": "string"
                            },
                            "importance": {
                                "type": "string"
                            },
                            "inferenceClassification": {
                                "type": "string"
                            },
                            "internetMessageId": {
                                "type": "string"
                            },
                            "isDeliveryReceiptRequested": {
                                "type": "boolean"
                            },
                            "isDraft": {
                                "type": "boolean"
                            },
                            "isRead": {
                                "type": "boolean"
                            },
                            "isReadReceiptRequested": {
                                "type": "boolean"
                            },
                            "lastModifiedDateTime": {
                                "type": "string"
                            },
                            "parentFolderId": {
                                "type": "string"
                            },
                            "receivedDateTime": {
                                "type": "string"
                            },
                            "replyTo": {
                                "type": "array"
                            },
                            "sender": {
                                "properties": {
                                    "emailAddress": {
                                        "properties": {
                                            "address": {
                                                "type": "string"
                                            },
                                            "name": {
                                                "type": "string"
                                            }
                                        },
                                        "type": "object"
                                    }
                                },
                                "type": "object"
                            },
                            "sentDateTime": {
                                "type": "string"
                            },
                            "subject": {
                                "type": "string"
                            },
                            "toRecipients": {
                                "items": {
                                    "properties": {
                                        "emailAddress": {
                                            "properties": {
                                                "address": {
                                                    "type": "string"
                                                },
                                                "name": {
                                                    "type": "string"
                                                }
                                            },
                                            "type": "object"
                                        }
                                    },
                                    "required": [
                                        "emailAddress"
                                    ],
                                    "type": "object"
                                },
                                "type": "array"
                            },
                            "webLink": {
                                "type": "string"
                            }
                        },
                        "required": [
                            "@@odata.etag",
                            "id",
                            "createdDateTime",
                            "lastModifiedDateTime",
                            "changeKey",
                            "categories",
                            "receivedDateTime",
                            "sentDateTime",
                            "hasAttachments",
                            "internetMessageId",
                            "subject",
                            "bodyPreview",
                            "importance",
                            "parentFolderId",
                            "conversationId",
                            "conversationIndex",
                            "isDeliveryReceiptRequested",
                            "isReadReceiptRequested",
                            "isRead",
                            "isDraft",
                            "webLink",
                            "inferenceClassification",
                            "body",
                            "sender",
                            "from",
                            "toRecipients",
                            "ccRecipients",
                            "bccRecipients",
                            "replyTo",
                            "flag"
                        ],
                        "type": "object"
                    },
                    "type": "array"
                }
            },
            "type": "object"
        }
    },
    "type": "object"
}
{    "properties": {        "body": {            "properties": {                "@@odata.context": {                    "type": "string"                },                "@@odata.nextLink": {                    "type": "string"                },                "value": {                    "items": {                        "properties": {                            "@@odata.etag": {                                "type": "string"                            },                            "bccRecipients": {                                "type": "array"                            },                            "body": {                                "properties": {                                    "content": {                                        "type": "string"                                    },                                    "contentType": {                                        "type": "string"                                    }                                },                                "type": "object"                            },                            "bodyPreview": {                                "type": "string"                            },                            "categories": {                                "type": "array"                            },                            "ccRecipients": {                                "type": "array"                            },                            "changeKey": {                                "type": "string"                            },                            "conversationId": {                                "type": "string"                            },                            "conversationIndex": {                                "type": "string"                            },                            "createdDateTime": {                                "type": "string"                            },                            "flag": {                                "properties": {                                    "flagStatus": {                                        "type": "string"                                    }                                },                                "type": "object"                            },                            "from": {                                "properties": {                                    "emailAddress": {                                        "properties": {                                            "address": {                                                "type": "string"                                            },                                            "name": {                                                "type": "string"                                            }                                        },                                        "type": "object"                                    }                                },                                "type": "object"                            },                            "hasAttachments": {                                "type": "boolean"                            },                            "id": {                                "type": "string"                            },                            "importance": {                                "type": "string"                            },                            "inferenceClassification": {                                "type": "string"                            },                            "internetMessageId": {                                "type": "string"                            },                            "isDeliveryReceiptRequested": {                                "type": "boolean"                            },                            "isDraft": {                                "type": "boolean"                            },                            "isRead": {                                "type": "boolean"                            },                            "isReadReceiptRequested": {                                "type": "boolean"                            },                            "lastModifiedDateTime": {                                "type": "string"                            },                            "parentFolderId": {                                "type": "string"                            },                            "receivedDateTime": {                                "type": "string"                            },                            "replyTo": {                                "type": "array"                            },                            "sender": {                                "properties": {                                    "emailAddress": {                                        "properties": {                                            "address": {                                                "type": "string"                                            },                                            "name": {                                                "type": "string"                                            }                                        },                                        "type": "object"                                    }                                },                                "type": "object"                            },                            "sentDateTime": {                                "type": "string"                            },                            "subject": {                                "type": "string"                            },                            "toRecipients": {                                "items": {                                    "properties": {                                        "emailAddress": {                                            "properties": {                                                "address": {                                                    "type": "string"                                                },                                                "name": {                                                    "type": "string"                                                }                                            },                                            "type": "object"                                        }                                    },                                    "required": [                                        "emailAddress"                                    ],                                    "type": "object"                                },                                "type": "array"                            },                            "webLink": {                                "type": "string"                            }                        },                        "required": [                            "@@odata.etag",                            "id",                            "createdDateTime",                            "lastModifiedDateTime",                            "changeKey",                            "categories",                            "receivedDateTime",                            "sentDateTime",                            "hasAttachments",                            "internetMessageId",                            "subject",                            "bodyPreview",                            "importance",                            "parentFolderId",                            "conversationId",                            "conversationIndex",                            "isDeliveryReceiptRequested",                            "isReadReceiptRequested",                            "isRead",                            "isDraft",                            "webLink",                            "inferenceClassification",                            "body",                            "sender",                            "from",                            "toRecipients",                            "ccRecipients",                            "bccRecipients",                            "replyTo",                            "flag"                        ],                        "type": "object"                    },                    "type": "array"                }            },            "type": "object"        }    },    "type": "object"}

OUTPUT from ParseJson

Spoiler (Highlight to read)
{
    "body": {
        "value": [
            {
                "@odata.etag": "W/\"CQAAABYAAABKCOCkOff6RpK4xUJyWUqtAAGvkLsS\"",
                "id": "AAMkADgxNzNiYjgwLWRmY2EtNGYxZS1iOTdkLTZiOGRiYmE0NDg4MABGAAAAAAAXh5L-tlEuTbuF9DAo_iyHBwBKCOCkOff6RpK4xUJyWUqtAAAAAAE_AABKCOCkOff6RpK4xUJyWUqtAAGvvMeAAAA=",
                "createdDateTime": "2024-02-16T11:54:43Z",
                "lastModifiedDateTime": "2024-02-16T12:03:40Z",
                "changeKey": "CQAAABYAAABKCOCkOff6RpK4xUJyWUqtAAGvkLsS",
                "categories": [],
                "receivedDateTime": "2024-02-16T11:54:43Z",
                "sentDateTime": "2024-02-16T11:53:28Z",
                "hasAttachments": true,
                "internetMessageId": "<PR3PR03MB644401BD7BB5132F4FEA0715A94C2@PR3PR03MB6444.eurprd03.prod.outlook.com>",
                "subject": "FW: SOA SUPERHOME CENTER (D.I.Y.) LTD",
                "bodyPreview": "Kind Regards,\r\nAnna Theophanous\r\nAssistant Accountant\r\nAccounting Department\r\n\r\n\r\nSUPERHOME CENTER (DIY) LIMITED\r\n10 Philippou Street, Industrial Zone, 2540 Dali\r\nP.O. Box  12658, 2251 Latsia\r\nNicosia Cyprus\r\nT.      +357 22205444\r\nD.     +357 2220541",
                "importance": "normal",
                "parentFolderId": "AAMkADgxNzNiYjgwLWRmY2EtNGYxZS1iOTdkLTZiOGRiYmE0NDg4MAAuAAAAAAAXh5L-tlEuTbuF9DAo_iyHAQBKCOCkOff6RpK4xUJyWUqtAAAAAAE_AAA=",
                "conversationId": "AAQkADgxNzNiYjgwLWRmY2EtNGYxZS1iOTdkLTZiOGRiYmE0NDg4MAAQALP32BZdjUbLs7XPRsOC9S0=",
                "conversationIndex": "AdpgoF2Bs/fYFl2NRsuztc9Gw4L1LQALl8tA",
                "isDeliveryReceiptRequested": false,
                "isReadReceiptRequested": false,
                "isRead": true,
                "isDraft": false,
                "inferenceClassification": "focused",
                "body": {
                    "contentType": "html",
                    "content": "<html><head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"><meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\"><style>\r\n<!--\r\n@font-face\r\n\t{font-family:\"Cambria Math\"}\r\n@font-face\r\n\t{font-family:Calibri}\r\n@font-face\r\n\t{font-family:Verdana}\r\n@font-face\r\n\t{font-family:Aptos}\r\n@font-face\r\n\t{font-family:Lato}\r\n@font-face\r\n\t{font-family:wf_segoe-ui_normal}\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n\t{margin:0cm;\r\n\tfont-size:11.0pt;\r\n\tfont-family:\"Calibri\",sans-serif}\r\na:link, span.MsoHyperlink\r\n\t{color:#0563C1;\r\n\ttext-decoration:underline}\r\nspan.EmailStyle21\r\n\t{font-family:\"Aptos\",sans-serif;\r\n\tcolor:windowtext}\r\n.MsoChpDefault\r\n\t{font-size:10.0pt}\r\n@page WordSection1\r\n\t{margin:72.0pt 72.0pt 72.0pt 72.0pt}\r\ndiv.WordSection1\r\n\t{}\r\n-->\r\n</style></head><body lang=\"en-CY\" link=\"#0563C1\" vlink=\"#954F72\" style=\"word-wrap:break-word\"><div class=\"WordSection1\"><p class=\"MsoNormal\"><span lang=\"en-CY\" style=\"font-family:&quot;Aptos&quot;,sans-serif\">&nbsp;</span></p><p class=\"MsoNormal\"><span lang=\"en-CY\" style=\"font-family:&quot;Aptos&quot;,sans-serif\">&nbsp;</span></p><div><p class=\"MsoNormal\" style=\"background:white\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:black; border:none windowtext 1.0pt; padding:0cm\">Kind Regards,</span></p><p class=\"MsoNormal\" style=\"background:white\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\">Anna Theo<span style=\"border:none windowtext 1.0pt; padding:0cm\">phanous</span></span></p><p class=\"MsoNormal\" style=\"background:white\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\">Assistant Accountant</span></p><p class=\"MsoNormal\" style=\"background:white\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\">Accounting Department</span></p><p class=\"MsoNormal\" style=\"background:white\"><span lang=\"en-CY\" style=\"font-size:10.0pt; color:#500050\"><img width=\"111\" height=\"111\" id=\"Picture_x0020_13\" src=\"cid:image001.png@01DA60DF.82456390\" style=\"width:1.1562in; height:1.1562in\"></span><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222; border:none windowtext 1.0pt; padding:0cm\"><br><br></span><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\"></span></p><p class=\"MsoNormal\" style=\"background:white\"><b><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222; border:none windowtext 1.0pt; padding:0cm\">SUPERHOME CENTER (DIY) LIMITED</span></b><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\"></span></p><p class=\"MsoNormal\" style=\"background:white\"><b><span lang=\"EN-US\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222; border:none windowtext 1.0pt; padding:0cm\">10 Philippou Street, Industrial Zone, 2540 Dali</span></b><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\"></span></p><p class=\"MsoNormal\" style=\"background:white\"><b><span lang=\"EN-US\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222; border:none windowtext 1.0pt; padding:0cm\">P.O. Box&nbsp; 12658, 2251 Latsia</span></b><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\"></span></p><p class=\"MsoNormal\" style=\"background:white\"><b><span lang=\"EN-US\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222; border:none windowtext 1.0pt; padding:0cm\">Nicosia Cyprus</span></b><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\"></span></p><p class=\"MsoNormal\" style=\"background:white\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222; border:none windowtext 1.0pt; padding:0cm\">T.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+357 22205444</span><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\"></span></p><p class=\"MsoNormal\" style=\"background:white\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222; border:none windowtext 1.0pt; padding:0cm\">D.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+357 22205410</span><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\"></span></p><p class=\"MsoNormal\" style=\"background:white\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222; border:none windowtext 1.0pt; padding:0cm\">F.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+357 22205434</span><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\"></span></p><p class=\"MsoNormal\" style=\"background:white; vertical-align:baseline\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:black; border:none windowtext 1.0pt; padding:0cm\">Ε-Mail:&nbsp;<i>&nbsp;</i></span><i><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#0B5394; border:none windowtext 1.0pt; padding:0cm\">&nbsp;</span></i><u><span lang=\"EN-US\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:black; border:none windowtext 1.0pt; padding:0cm; background:white\"><a href=\"mailto:es@superhome.com.cy\" target=\"_blank\"><span lang=\"en-CY\" style=\"color:#174E86\">a</span></a></span></u><u><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#174E86; border:none windowtext 1.0pt; padding:0cm; background:white\">nna.theophanous@superhome.com.cy</span></u><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:black; border:none windowtext 1.0pt; padding:0cm\"><br><br></span><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:black\"></span></p><p class=\"MsoNormal\" style=\"background:white\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222; border:none windowtext 1.0pt; padding:0cm\">Website:&nbsp;<a href=\"https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.superhome.com.cy%2F&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833588518%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=0UIVixnlkabegTs%2BnsFtUOpBHaodmdBoL8xLLIN%2Fe2k%3D&amp;reserved=0\" originalsrc=\"https://www.superhome.com.cy/\" shash=\"nmrYpWGDHkBgL97imetkp9Q+XkGMUQEcyaXQ8hgh2z9zEJtHDilqhWbIYyzSLDUghzKmaeum7dhT2j80qPRvjpFuNDA0n+EiPdWnblwBWRrBaTl3H9FoM54d60zYx6Eg7hSo4iKcJwghAYxGBQ1eqNF4IbUNouZtYWM4fYbczn8=\" target=\"_blank\"><span style=\"color:#0B5394\">https://www.superhome.com.cy/</span></a></span><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\"></span></p><p class=\"MsoNormal\" style=\"background:white\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222; border:none windowtext 1.0pt; padding:0cm\">&nbsp;</span><b><span lang=\"en-CY\" style=\"font-size:9.0pt; font-family:&quot;Verdana&quot;,sans-serif; color:#222222\">Connect with us on social media</span></b><span lang=\"en-CY\" style=\"font-size:9.0pt; font-family:&quot;Verdana&quot;,sans-serif; color:#500050\"></span></p><p class=\"MsoNormal\"><a href=\"https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.facebook.com%2FSuperhomeCenterCy&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833598381%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=I1kzBRBo14e1bfC%2FPLBNR3VAh2v2%2FOBuBxyHEtLHlEw%3D&amp;reserved=0\" originalsrc=\"https://www.facebook.com/SuperhomeCenterCy\" shash=\"vi87XacM90xetgz69jJ7iCF8lsIqKQyxfGIwwc8PRdLcVKzmOdrfxFEDPPkLX95pS9xYbDQzk8/C3CRcrXqvEVjIvbFdmuSDu0q1lIs+V1GkvuwAd2+4mbrEc8lhcR/as3St2Xn8sP+dT5ZsFF2kiXpcFpV+j6DJjJkUWaANFiI=\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:windowtext; text-decoration:none\"><img border=\"0\" width=\"41\" height=\"39\" id=\"Picture_x0020_14\" src=\"cid:image002.png@01DA60DF.82456390\" style=\"width:.427in; height:.4062in\"></span></a><a href=\"https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.instagram.com%2Fsuperhomecenter%2F%3Fhl%3Den&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833605096%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=jQkb9MOHd%2BN2hLAgAyGisIw0%2FMHrB9usHavy4Fytk%2B8%3D&amp;reserved=0\" originalsrc=\"https://www.instagram.com/superhomecenter/?hl=en\" shash=\"gGmZ+wZvl/03nUTtLxUqv19dlH8tfjbELtdnNxeFzmifq+qIQbcyXo54n//dxQwahr5DfvSfdwer2mJb//IwTQVAOG5yG8f31Q34DA5BRPdD0Cp0W2V1d9/429zfNBdWpZU9p0dGXSeKoF5Bf3i/sNhfB1bYN/y7z3+Syz/vToE=\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:windowtext; text-decoration:none\"><img border=\"0\" width=\"40\" height=\"38\" id=\"_x0000_i1036\" src=\"cid:image003.png@01DA60DF.82456390\" style=\"width:.4166in; height:.3958in\"></span></a><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif\">&nbsp;</span><a href=\"https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.youtube.com%2F%40superhomecentercyprus&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833611647%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=H8YzsA21dKxDkEORNK8McC%2FmpZczPRVIe89Z3HRNM5A%3D&amp;reserved=0\" originalsrc=\"https://www.youtube.com/@superhomecentercyprus\" shash=\"lEuXd4jigUq3xRMgY7morXOBFtaTt0iXqPTRPUIdNDuzwVz/IsCHBIz8VVaov8OgWFAIwMCZvReQnNyfqNVzC67lY3tP+81alb1le/td7dH8rcpKhDI2uauFK8di3sMJO/vzgdJU8s1/6NzmoL23dRjE6n318OnjqfijBZNau1M=\"><span lang=\"EN-US\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:windowtext; text-decoration:none\"><img border=\"0\" width=\"41\" height=\"39\" id=\"_x0000_i1035\" src=\"cid:image004.png@01DA60DF.82456390\" style=\"width:.427in; height:.4062in\"></span></a><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif\">&nbsp;</span><a href=\"https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcy.linkedin.com%2Fcompany%2Fsuperhome-center&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833618261%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=ZrOgcMNehdrsvbt%2FlYDedTzZiDNUFYmBijJs14T2u64%3D&amp;reserved=0\" originalsrc=\"https://cy.linkedin.com/company/superhome-center\" shash=\"xoboSIDF4Kl+vRMg4PNc2uLZS07wddZzTdHzKslIX5aQgS9muGb7Cz5TWawuyXURGeOVihF1I/q2M0xr9QDNDvPC+OKc4E3aPbRHUures8G/lSlrYBrIiEkwhv6T7CJ9B0lqY8KzU1H2D4FopCqS7M1SDonA6Y3s1X2sXVjGC7A=\"><span lang=\"EN-US\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:windowtext; text-decoration:none\"><img border=\"0\" width=\"41\" height=\"40\" id=\"_x0000_i1034\" src=\"cid:image005.png@01DA60DF.82456390\" style=\"width:.427in; height:.4166in\"></span></a><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif\">&nbsp;</span><a href=\"https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.pinterest.com%2Fsuperhomecenter%2F&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833625102%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=BmdHJMY5lErq5Q0zPpOn96zuNriFrhttql6WTIfWqbc%3D&amp;reserved=0\" originalsrc=\"https://www.pinterest.com/superhomecenter/\" shash=\"D8+upSkrNs5Ras4BZ+N/eJFjqnkf/d+/fEioYil8SzuXqaCRK2nm8o/FIjRPlS8bewYeo/kA0rnV7iz+YRSIE10+qFCM/7zQvDLzkngTSMsq+q1duFarkMfuKv/YZrjDENKSitqNmroPJVz+tVw9bIVBkkkUxLHAO6MHe5JlXnA=\"><span lang=\"EN-US\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:windowtext; text-decoration:none\"><img border=\"0\" width=\"41\" height=\"40\" id=\"_x0000_i1033\" src=\"cid:image006.png@01DA60DF.82456390\" style=\"width:.427in; height:.4166in\"></span></a><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif\">&nbsp;</span><a href=\"https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.tiktok.com%2F%40superhomecentercy&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833631690%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=Cy7d61kRFVm0QWNwy4H4wMll1P%2FSpXjlskH8uowYneM%3D&amp;reserved=0\" originalsrc=\"https://www.tiktok.com/@superhomecentercy\" shash=\"QxHwG5VhKlgbazvpQdPHvPZelEIpiS+SAe16IUEkLAsi4aXf18UvbjW63gpHvt3j19H9UuKJDsvhVzn22hq120NGOeeyfB1XHhuLkNLjYL7bRG54IwIgy/qfNtb9/gJfgHJRQryKsEJCF7/9CoVIzB6kNqvGefwE19z1AqZqnIw=\"><span lang=\"EN-US\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:windowtext; text-decoration:none\"><img border=\"0\" width=\"43\" height=\"42\" id=\"_x0000_i1032\" src=\"cid:image007.png@01DA60DF.82456390\" style=\"width:.4479in; height:.4375in\"></span></a><span lang=\"EN-US\" style=\"font-family:&quot;Aptos&quot;,sans-serif\"></span></p></div><p class=\"MsoNormal\"><span lang=\"en-CY\" style=\"font-family:&quot;Aptos&quot;,sans-serif\">&nbsp;</span></p><div><div style=\"border:none; border-top:solid #E1E1E1 1.0pt; padding:3.0pt 0cm 0cm 0cm\"><p class=\"MsoNormal\"><b><span lang=\"EN-US\" style=\"\">From:</span></b><span lang=\"EN-US\" style=\"\"> Niki Epiphaniou &lt;nikie@krypto.com.cy&gt; <br><b>Sent:</b> Friday, 16 February 2024 8:22 am<br><b>To:</b> Local Suppliers (SHC) &lt;ls@superhome.com.cy&gt;; Expenses Suppliers (SHC) &lt;es@superhome.com.cy&gt;<br><b>Cc:</b> Chrystalla Demitriou &lt;chrystallad@krypto.com.cy&gt;<br><b>Subject:</b> SOA SUPERHOME CENTER (D.I.Y.) LTD</span></p></div></div><p class=\"MsoNormal\">&nbsp;</p><table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\" width=\"100%\" style=\"width:100.0%\"><tbody><tr><td style=\"background:#A6A6A6; padding:5.25pt 1.5pt 5.25pt 1.5pt\"></td><td width=\"100%\" style=\"width:100.0%; background:#EAEAEA; padding:5.25pt 3.75pt 5.25pt 11.25pt\"><div><p class=\"MsoNormal\" style=\"\"><span style=\"font-size:9.0pt; font-family:wf_segoe-ui_normal; color:#212121\">Some people who received this message don't often get email from <a href=\"mailto:nikie@krypto.com.cy\">nikie@krypto.com.cy</a>. <a href=\"https://aka.ms/LearnAboutSenderIdentification\">Learn why this is important</a></span></p></div></td><td width=\"75\" style=\"width:56.25pt; background:#EAEAEA; padding:5.25pt 3.75pt 5.25pt 3.75pt\"></td></tr></tbody></table><div><p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; display:none\">&nbsp;</span></p><table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\" width=\"100%\" style=\"width:100.0%\"><tbody><tr><td style=\"background:#FF2626; padding:5.0pt 2.0pt 5.0pt 2.0pt\"><p class=\"MsoNormal\" style=\"\"><span style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:black\">&nbsp;</span><span style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif\"></span></p></td><td width=\"100%\" style=\"width:100.0%; background:#FF2626; padding:5.0pt 4.0pt 5.0pt 12.0pt\"><div><p class=\"MsoNormal\" style=\"\"><b><span style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:white\">Caution:</span></b><span style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\"> </span><b><span style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:white\">This is an external email. Do not open attachments, click links or follow any directives unless this email comes from a known sender and you know the content is safe.</span></b><span style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\"></span></p></div></td></tr></tbody></table><p><span lang=\"EN-US\">&nbsp;</span></p><div><p class=\"MsoNormal\"><a name=\"_Hlk515112911\"><span lang=\"EN-US\">Dear Client good morning,</span></a></p><p class=\"MsoNormal\"><span style=\"\"><span lang=\"EN-US\">&nbsp;</span></span></p><p class=\"MsoNormal\"><span style=\"\"><span lang=\"EN-US\">Please find attached statement of account from 01/01/2024 until today.</span></span></p><p class=\"MsoNormal\"><span style=\"\"><span lang=\"EN-US\">&nbsp;</span></span></p><p class=\"MsoNormal\"><span style=\"\"><span lang=\"EN-US\">Kind regards</span></span></p><p class=\"MsoNormal\"><span style=\"\"><span lang=\"EN-US\">&nbsp;</span></span></p><table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\"><tbody><tr style=\"height:112.0pt\"><td width=\"168\" valign=\"top\" style=\"width:126.0pt; padding:0cm 5.4pt 0cm 5.4pt; height:112.0pt\"><p class=\"MsoNormal\" align=\"right\" style=\"text-align:right\"><span style=\"\"><b><span style=\"font-family:&quot;Lato&quot;,sans-serif; color:red\">Niki Epiphaniou</span></b></span></p><p class=\"MsoNormal\" align=\"right\" style=\"text-align:right\"><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\">Billing and Debt Retrieval Officer</span></span></p><p class=\"MsoNormal\" align=\"right\" style=\"text-align:right\"><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\">&nbsp;</span></span></p><p class=\"MsoNormal\" align=\"right\" style=\"text-align:right\"><span style=\"\"><b><span style=\"font-family:&quot;Lato&quot;,sans-serif\">T:</span></b></span><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\"> +357 25 736846</span></span></p><p class=\"MsoNormal\" align=\"right\" style=\"margin-bottom:12.0pt; text-align:right\"><span style=\"\"><b><span style=\"font-family:&quot;Lato&quot;,sans-serif\">F:</span></b></span><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\"> +357 25 736845</span></span></p><p class=\"MsoNormal\" align=\"right\" style=\"text-align:right\"><span style=\"\"></span><a href=\"https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.facebook.com%2Fkryptocy%2F&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833638260%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=IUjnWlbl4bLKKJr9vo4zBbo1qJ4gI639rSjAugFmb2A%3D&amp;reserved=0\" originalsrc=\"https://www.facebook.com/kryptocy/\" shash=\"HFDY+sikheQRzBYKEHXcqHfku5JIhrsH+gImNxvmk7KkMb8iihQDxKeKHZVtZsENGEGNnI7+dkfkAZHZw4xGvpjdhmHulvzMXYALTPpIyUrsSo2X5168VKSncTdCpkXOIi2pZNINqjiAjN43/PImZ+JKCs4HZZOd9p1vR/MLwOw=\"><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif; color:windowtext; text-decoration:none\"><img border=\"0\" width=\"30\" height=\"30\" id=\"Picture_x0020_4\" src=\"cid:image015.png@01DA60B1.40BFF210\" style=\"width:.3125in; height:.3125in\"></span></span><span style=\"\"></span></a><span style=\"\"></span><a href=\"https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.youtube.com%2Fuser%2Fmarios858001%2Ffeatured&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833644762%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=Yj1K%2BLChBgPGwTq7Jpl5Ybb7%2F0D8LSipMMLPDxX13Rk%3D&amp;reserved=0\" originalsrc=\"https://www.youtube.com/user/marios858001/featured\" shash=\"xs+Q2BmF0bLzESOKERhbkG2f7GaF1nSBAlBJlZdohMqRsmCa0brgVIng/rGIjdnXzl/ZWzH4ZIYzAfqQkvBorHDTBk3UZ10K8mPRwtQ3XuN1qG61Ntyj4LXA778RH25oZx0rwxvO3hJ6P5dL3raX1u71M874kpQEjq5KgghH+pI=\"><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif; color:windowtext; text-decoration:none\"><img border=\"0\" width=\"30\" height=\"30\" id=\"Picture_x0020_2\" src=\"cid:image016.png@01DA60B1.40BFF210\" style=\"width:.3125in; height:.3125in\"></span></span><span style=\"\"></span></a><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\">&nbsp;</span></span><a href=\"https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.linkedin.com%2Fcompany%2Fkrypto-security-cyprus-ltd%2F&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833651352%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=gMFPrql3dd%2BH6sjzPbw%2B6ZtT0wsSwjHTBHP9%2BgZGuv8%3D&amp;reserved=0\" originalsrc=\"https://www.linkedin.com/company/krypto-security-cyprus-ltd/\" shash=\"JFoTvM6WI47ztk/8Gj6yCuaR12Sb6dg6bmOK3KJh3rYlZ6GZkhymYnzqMHtfVuA148CVVB6zv+oALRbeAACfaZFIDXHny+v2rSzGqVb1dWb0+Xdg+NHCjHBZtG8OpejGVRGlB2t204WcLsfG9dBv/B+GNTYY6ahdLjInAswVrC0=\"><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif; color:windowtext; text-decoration:none\"><img border=\"0\" width=\"30\" height=\"30\" id=\"Picture_x0020_3\" src=\"cid:image017.png@01DA60B1.40BFF210\" style=\"width:.3125in; height:.3125in\"></span></span><span style=\"\"></span></a><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\">&nbsp;</span></span><a href=\"https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.instagram.com%2Fkrypto_security%2F&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833658028%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=EU984YYicT%2Bz%2FfeBsUowl24W4OaqJ%2BwhL2hDWUK3nJQ%3D&amp;reserved=0\" originalsrc=\"https://www.instagram.com/krypto_security/\" shash=\"JIBiXZsRmVJ4xWKmEX5gyM8Oa+deB9aTCf4oMoSgd8JtIv2UWLJKSBPQ117tY743gt+7iR5smIvnW+BI4iZUYQqf7++8xwHalKIsu00bhQy2JRFPOFC8le8iaGG2mx2j+W8yIalwiNfxq8FYVKKTaZeAXFeHmHUU50mutKGBUFQ=\"><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif; color:windowtext; text-decoration:none\"><img border=\"0\" width=\"30\" height=\"30\" id=\"Picture_x0020_5\" src=\"cid:image018.png@01DA60B1.40BFF210\" style=\"width:.3125in; height:.3125in\"></span></span><span style=\"\"></span></a><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\">&nbsp;</span></span></p></td><span style=\"\"></span><td width=\"31\" valign=\"top\" style=\"width:23.3pt; padding:0cm 5.4pt 0cm 5.4pt; height:112.0pt\"><p class=\"MsoNormal\"><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\"><img border=\"0\" width=\"15\" height=\"168\" id=\"Picture_x0020_1\" src=\"cid:image019.png@01DA60B1.40BFF210\" style=\"width:.1562in; height:1.75in\"></span></span><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\"></span></span></p></td><span style=\"\"></span><td width=\"371\" valign=\"top\" style=\"width:278.25pt; padding:0cm 5.4pt 0cm 5.4pt; height:112.0pt\"><p class=\"MsoNormal\"><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\"><img border=\"0\" width=\"75\" height=\"75\" id=\"Picture_x0020_6\" src=\"cid:image020.png@01DA60B1.40BFF210\" style=\"width:.7812in; height:.7812in\"></span></span><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\"><br></span></span><span style=\"\"><b><span style=\"font-size:14.0pt; font-family:&quot;Lato&quot;,sans-serif\">Krypto Security (Cyprus) Ltd</span></b></span><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\"></span></span></p><p class=\"MsoNormal\"><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\">71 Michali Zavou str. Ay. Athanasios 4107 Limassol</span></span></p><p class=\"MsoNormal\"><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\">&nbsp;</span></span></p><p class=\"MsoNormal\"><span style=\"\"></span><a href=\"mailto:nikie@krypto.com.cy\"><span style=\"\"><span style=\"\">nikie</span></span><span style=\"\"><span style=\"font-size:10.0pt; font-family:&quot;Lato&quot;,sans-serif\">@krypto.com.cy</span></span><span style=\"\"></span></a><span style=\"\"><span style=\"font-size:10.0pt; font-family:&quot;Lato&quot;,sans-serif\"> | </span></span><a href=\"https://eur05.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.krypto.com.cy%2F&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833664556%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=d3nxV%2FiAGSiD8fypchV2rub9N7KQfFAQ1Wj4rd2hwGA%3D&amp;reserved=0\" originalsrc=\"http://www.krypto.com.cy/\" shash=\"qGqdHjQlesBItG2ZjSUGnFfJwSOo2um2B0+sKmO076xXbytijIK/4eIudO29OaoS3618NJRCsFHiGGZ9fIe9HG/GpLNu/YbS3FssInIga7EbMwBHq5HdbjkvyY4krBsdVHjoq0CXnyU3L/cfTRSnwLQRu335SrA8ouNjmD9BE28=\"><span style=\"\"><span style=\"font-size:10.0pt; font-family:&quot;Lato&quot;,sans-serif; color:#002060\">www.krypto.com.cy</span></span><span style=\"\"></span></a><span style=\"\"><span style=\"font-size:10.0pt; font-family:&quot;Lato&quot;,sans-serif\"> </span></span></p></td><span style=\"\"></span></tr></tbody></table><span style=\"\"></span><p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-family:&quot;Lato&quot;,sans-serif\">&nbsp;</span></p><p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-family:&quot;Lato&quot;,sans-serif\"><img border=\"0\" width=\"517\" height=\"271\" id=\"Picture_x0020_7\" src=\"cid:image021.png@01DA60B1.40BFF210\" style=\"width:5.3854in; height:2.8229in\"></span><span lang=\"EN-US\" style=\"font-size:10.0pt; font-family:&quot;Lato&quot;,sans-serif\"></span></p><p class=\"MsoNormal\"><span lang=\"EN-US\">&nbsp;</span></p><p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif\">CONFIDENTIALITY NOTICE: The contents of this email message and any attachments are intended solely for the addressee(s) and may contain confidential and/or privileged information and may be legally protected from disclosure. If you are not the intended recipient of this message or their agent, or if this message has been addressed to you in error, please immediately alert the sender by reply email and then delete this message and any attachments. If you are not the intended recipient, you are hereby notified that any use, dissemination, copying, or storage of this message or its attachments is strictly prohibited. </span></p></div></div></div>CONFIDENTIALITY NOTICE: The contents of this email message and any attachments are intended solely for the addressee(s) and may contain confidential and/or privileged information and may be legally protected from disclosure. If you are not the intended recipient of this message or their agent, or if this message has been addressed to you in error, please immediately alert the sender by reply email and then delete this message and any attachments. If you are not the intended recipient, you are hereby notified that any use, dissemination, copying, or storage of this message or its attachments is strictly prohibited. </body></html>"
                },
                "sender": {
                    "emailAddress": {
                        "name": "Expenses Suppliers (SHC)",
                        "address": "es@superhome.com.cy"
                    }
                },
                "from": {
                    "emailAddress": {
                        "name": "Expenses Suppliers (SHC)",
                        "address": "es@superhome.com.cy"
                    }
                },
                "toRecipients": [
                    {
                        "emailAddress": {
                            "name": "Local Suppliers (SHC)",
                            "address": "ls@superhome.com.cy"
                        }
                    }
                ],
                "ccRecipients": [],
                "bccRecipients": [],
                "replyTo": [],
                "flag": {
                    "flagStatus": "notFlagged"
                }
            }
        ],
    }
}
{    "body": {        "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users('ls%40superhome.com.cy')/mailFolders('Archive')/messages",        "value": [            {                "@odata.etag": "W/\"CQAAABYAAABKCOCkOff6RpK4xUJyWUqtAAGvkLsS\"",                "id": "AAMkADgxNzNiYjgwLWRmY2EtNGYxZS1iOTdkLTZiOGRiYmE0NDg4MABGAAAAAAAXh5L-tlEuTbuF9DAo_iyHBwBKCOCkOff6RpK4xUJyWUqtAAAAAAE_AABKCOCkOff6RpK4xUJyWUqtAAGvvMeAAAA=",                "createdDateTime": "2024-02-16T11:54:43Z",                "lastModifiedDateTime": "2024-02-16T12:03:40Z",                "changeKey": "CQAAABYAAABKCOCkOff6RpK4xUJyWUqtAAGvkLsS",                "categories": [],                "receivedDateTime": "2024-02-16T11:54:43Z",                "sentDateTime": "2024-02-16T11:53:28Z",                "hasAttachments": true,                "internetMessageId": "<PR3PR03MB644401BD7BB5132F4FEA0715A94C2@PR3PR03MB6444.eurprd03.prod.outlook.com>",                "subject": "FW: SOA SUPERHOME CENTER (D.I.Y.) LTD",                "bodyPreview": "Kind Regards,\r\nAnna Theophanous\r\nAssistant Accountant\r\nAccounting Department\r\n\r\n\r\nSUPERHOME CENTER (DIY) LIMITED\r\n10 Philippou Street, Industrial Zone, 2540 Dali\r\nP.O. Box  12658, 2251 Latsia\r\nNicosia Cyprus\r\nT.      +357 22205444\r\nD.     +357 2220541",                "importance": "normal",                "parentFolderId": "AAMkADgxNzNiYjgwLWRmY2EtNGYxZS1iOTdkLTZiOGRiYmE0NDg4MAAuAAAAAAAXh5L-tlEuTbuF9DAo_iyHAQBKCOCkOff6RpK4xUJyWUqtAAAAAAE_AAA=",                "conversationId": "AAQkADgxNzNiYjgwLWRmY2EtNGYxZS1iOTdkLTZiOGRiYmE0NDg4MAAQALP32BZdjUbLs7XPRsOC9S0=",                "conversationIndex": "AdpgoF2Bs/fYFl2NRsuztc9Gw4L1LQALl8tA",                "isDeliveryReceiptRequested": false,                "isReadReceiptRequested": false,                "isRead": true,                "isDraft": false,                "webLink": "https://outlook.office365.com/owa/?ItemID=AAMkADgxNzNiYjgwLWRmY2EtNGYxZS1iOTdkLTZiOGRiYmE0NDg4MABGAAAAAAAXh5L%2FtlEuTbuF9DAo%2BiyHBwBKCOCkOff6RpK4xUJyWUqtAAAAAAE%2BAABKCOCkOff6RpK4xUJyWUqtAAGvvMeAAAA%3D&exvsurl=1&viewmodel=ReadMessageItem",                "inferenceClassification": "focused",                "body": {                    "contentType": "html",                    "content": "<html><head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"><meta name=\"Generator\" content=\"Microsoft Word 15 (filtered medium)\"><style>\r\n<!--\r\n@font-face\r\n\t{font-family:\"Cambria Math\"}\r\n@font-face\r\n\t{font-family:Calibri}\r\n@font-face\r\n\t{font-family:Verdana}\r\n@font-face\r\n\t{font-family:Aptos}\r\n@font-face\r\n\t{font-family:Lato}\r\n@font-face\r\n\t{font-family:wf_segoe-ui_normal}\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n\t{margin:0cm;\r\n\tfont-size:11.0pt;\r\n\tfont-family:\"Calibri\",sans-serif}\r\na:link, span.MsoHyperlink\r\n\t{color:#0563C1;\r\n\ttext-decoration:underline}\r\nspan.EmailStyle21\r\n\t{font-family:\"Aptos\",sans-serif;\r\n\tcolor:windowtext}\r\n.MsoChpDefault\r\n\t{font-size:10.0pt}\r\n@page WordSection1\r\n\t{margin:72.0pt 72.0pt 72.0pt 72.0pt}\r\ndiv.WordSection1\r\n\t{}\r\n-->\r\n</style></head><body lang=\"en-CY\" link=\"#0563C1\" vlink=\"#954F72\" style=\"word-wrap:break-word\"><div class=\"WordSection1\"><p class=\"MsoNormal\"><span lang=\"en-CY\" style=\"font-family:&quot;Aptos&quot;,sans-serif\">&nbsp;</span></p><p class=\"MsoNormal\"><span lang=\"en-CY\" style=\"font-family:&quot;Aptos&quot;,sans-serif\">&nbsp;</span></p><div><p class=\"MsoNormal\" style=\"background:white\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:black; border:none windowtext 1.0pt; padding:0cm\">Kind Regards,</span></p><p class=\"MsoNormal\" style=\"background:white\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\">Anna Theo<span style=\"border:none windowtext 1.0pt; padding:0cm\">phanous</span></span></p><p class=\"MsoNormal\" style=\"background:white\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\">Assistant Accountant</span></p><p class=\"MsoNormal\" style=\"background:white\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\">Accounting Department</span></p><p class=\"MsoNormal\" style=\"background:white\"><span lang=\"en-CY\" style=\"font-size:10.0pt; color:#500050\"><img width=\"111\" height=\"111\" id=\"Picture_x0020_13\" src=\"cid:image001.png@01DA60DF.82456390\" style=\"width:1.1562in; height:1.1562in\"></span><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222; border:none windowtext 1.0pt; padding:0cm\"><br><br></span><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\"></span></p><p class=\"MsoNormal\" style=\"background:white\"><b><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222; border:none windowtext 1.0pt; padding:0cm\">SUPERHOME CENTER (DIY) LIMITED</span></b><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\"></span></p><p class=\"MsoNormal\" style=\"background:white\"><b><span lang=\"EN-US\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222; border:none windowtext 1.0pt; padding:0cm\">10 Philippou Street, Industrial Zone, 2540 Dali</span></b><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\"></span></p><p class=\"MsoNormal\" style=\"background:white\"><b><span lang=\"EN-US\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222; border:none windowtext 1.0pt; padding:0cm\">P.O. Box&nbsp; 12658, 2251 Latsia</span></b><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\"></span></p><p class=\"MsoNormal\" style=\"background:white\"><b><span lang=\"EN-US\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222; border:none windowtext 1.0pt; padding:0cm\">Nicosia Cyprus</span></b><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\"></span></p><p class=\"MsoNormal\" style=\"background:white\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222; border:none windowtext 1.0pt; padding:0cm\">T.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+357 22205444</span><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\"></span></p><p class=\"MsoNormal\" style=\"background:white\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222; border:none windowtext 1.0pt; padding:0cm\">D.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+357 22205410</span><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\"></span></p><p class=\"MsoNormal\" style=\"background:white\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222; border:none windowtext 1.0pt; padding:0cm\">F.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+357 22205434</span><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\"></span></p><p class=\"MsoNormal\" style=\"background:white; vertical-align:baseline\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:black; border:none windowtext 1.0pt; padding:0cm\">Ε-Mail:&nbsp;<i>&nbsp;</i></span><i><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#0B5394; border:none windowtext 1.0pt; padding:0cm\">&nbsp;</span></i><u><span lang=\"EN-US\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:black; border:none windowtext 1.0pt; padding:0cm; background:white\"><a href=\"mailto:es@superhome.com.cy\" target=\"_blank\"><span lang=\"en-CY\" style=\"color:#174E86\">a</span></a></span></u><u><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#174E86; border:none windowtext 1.0pt; padding:0cm; background:white\">nna.theophanous@superhome.com.cy</span></u><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:black; border:none windowtext 1.0pt; padding:0cm\"><br><br></span><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:black\"></span></p><p class=\"MsoNormal\" style=\"background:white\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222; border:none windowtext 1.0pt; padding:0cm\">Website:&nbsp;<a href=\"https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.superhome.com.cy%2F&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833588518%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=0UIVixnlkabegTs%2BnsFtUOpBHaodmdBoL8xLLIN%2Fe2k%3D&amp;reserved=0\" originalsrc=\"https://www.superhome.com.cy/\" shash=\"nmrYpWGDHkBgL97imetkp9Q+XkGMUQEcyaXQ8hgh2z9zEJtHDilqhWbIYyzSLDUghzKmaeum7dhT2j80qPRvjpFuNDA0n+EiPdWnblwBWRrBaTl3H9FoM54d60zYx6Eg7hSo4iKcJwghAYxGBQ1eqNF4IbUNouZtYWM4fYbczn8=\" target=\"_blank\"><span style=\"color:#0B5394\">https://www.superhome.com.cy/</span></a></span><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\"></span></p><p class=\"MsoNormal\" style=\"background:white\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222; border:none windowtext 1.0pt; padding:0cm\">&nbsp;</span><b><span lang=\"en-CY\" style=\"font-size:9.0pt; font-family:&quot;Verdana&quot;,sans-serif; color:#222222\">Connect with us on social media</span></b><span lang=\"en-CY\" style=\"font-size:9.0pt; font-family:&quot;Verdana&quot;,sans-serif; color:#500050\"></span></p><p class=\"MsoNormal\"><a href=\"https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.facebook.com%2FSuperhomeCenterCy&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833598381%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=I1kzBRBo14e1bfC%2FPLBNR3VAh2v2%2FOBuBxyHEtLHlEw%3D&amp;reserved=0\" originalsrc=\"https://www.facebook.com/SuperhomeCenterCy\" shash=\"vi87XacM90xetgz69jJ7iCF8lsIqKQyxfGIwwc8PRdLcVKzmOdrfxFEDPPkLX95pS9xYbDQzk8/C3CRcrXqvEVjIvbFdmuSDu0q1lIs+V1GkvuwAd2+4mbrEc8lhcR/as3St2Xn8sP+dT5ZsFF2kiXpcFpV+j6DJjJkUWaANFiI=\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:windowtext; text-decoration:none\"><img border=\"0\" width=\"41\" height=\"39\" id=\"Picture_x0020_14\" src=\"cid:image002.png@01DA60DF.82456390\" style=\"width:.427in; height:.4062in\"></span></a><a href=\"https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.instagram.com%2Fsuperhomecenter%2F%3Fhl%3Den&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833605096%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=jQkb9MOHd%2BN2hLAgAyGisIw0%2FMHrB9usHavy4Fytk%2B8%3D&amp;reserved=0\" originalsrc=\"https://www.instagram.com/superhomecenter/?hl=en\" shash=\"gGmZ+wZvl/03nUTtLxUqv19dlH8tfjbELtdnNxeFzmifq+qIQbcyXo54n//dxQwahr5DfvSfdwer2mJb//IwTQVAOG5yG8f31Q34DA5BRPdD0Cp0W2V1d9/429zfNBdWpZU9p0dGXSeKoF5Bf3i/sNhfB1bYN/y7z3+Syz/vToE=\"><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:windowtext; text-decoration:none\"><img border=\"0\" width=\"40\" height=\"38\" id=\"_x0000_i1036\" src=\"cid:image003.png@01DA60DF.82456390\" style=\"width:.4166in; height:.3958in\"></span></a><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif\">&nbsp;</span><a href=\"https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.youtube.com%2F%40superhomecentercyprus&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833611647%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=H8YzsA21dKxDkEORNK8McC%2FmpZczPRVIe89Z3HRNM5A%3D&amp;reserved=0\" originalsrc=\"https://www.youtube.com/@superhomecentercyprus\" shash=\"lEuXd4jigUq3xRMgY7morXOBFtaTt0iXqPTRPUIdNDuzwVz/IsCHBIz8VVaov8OgWFAIwMCZvReQnNyfqNVzC67lY3tP+81alb1le/td7dH8rcpKhDI2uauFK8di3sMJO/vzgdJU8s1/6NzmoL23dRjE6n318OnjqfijBZNau1M=\"><span lang=\"EN-US\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:windowtext; text-decoration:none\"><img border=\"0\" width=\"41\" height=\"39\" id=\"_x0000_i1035\" src=\"cid:image004.png@01DA60DF.82456390\" style=\"width:.427in; height:.4062in\"></span></a><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif\">&nbsp;</span><a href=\"https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcy.linkedin.com%2Fcompany%2Fsuperhome-center&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833618261%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=ZrOgcMNehdrsvbt%2FlYDedTzZiDNUFYmBijJs14T2u64%3D&amp;reserved=0\" originalsrc=\"https://cy.linkedin.com/company/superhome-center\" shash=\"xoboSIDF4Kl+vRMg4PNc2uLZS07wddZzTdHzKslIX5aQgS9muGb7Cz5TWawuyXURGeOVihF1I/q2M0xr9QDNDvPC+OKc4E3aPbRHUures8G/lSlrYBrIiEkwhv6T7CJ9B0lqY8KzU1H2D4FopCqS7M1SDonA6Y3s1X2sXVjGC7A=\"><span lang=\"EN-US\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:windowtext; text-decoration:none\"><img border=\"0\" width=\"41\" height=\"40\" id=\"_x0000_i1034\" src=\"cid:image005.png@01DA60DF.82456390\" style=\"width:.427in; height:.4166in\"></span></a><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif\">&nbsp;</span><a href=\"https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.pinterest.com%2Fsuperhomecenter%2F&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833625102%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=BmdHJMY5lErq5Q0zPpOn96zuNriFrhttql6WTIfWqbc%3D&amp;reserved=0\" originalsrc=\"https://www.pinterest.com/superhomecenter/\" shash=\"D8+upSkrNs5Ras4BZ+N/eJFjqnkf/d+/fEioYil8SzuXqaCRK2nm8o/FIjRPlS8bewYeo/kA0rnV7iz+YRSIE10+qFCM/7zQvDLzkngTSMsq+q1duFarkMfuKv/YZrjDENKSitqNmroPJVz+tVw9bIVBkkkUxLHAO6MHe5JlXnA=\"><span lang=\"EN-US\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:windowtext; text-decoration:none\"><img border=\"0\" width=\"41\" height=\"40\" id=\"_x0000_i1033\" src=\"cid:image006.png@01DA60DF.82456390\" style=\"width:.427in; height:.4166in\"></span></a><span lang=\"en-CY\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif\">&nbsp;</span><a href=\"https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.tiktok.com%2F%40superhomecentercy&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833631690%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=Cy7d61kRFVm0QWNwy4H4wMll1P%2FSpXjlskH8uowYneM%3D&amp;reserved=0\" originalsrc=\"https://www.tiktok.com/@superhomecentercy\" shash=\"QxHwG5VhKlgbazvpQdPHvPZelEIpiS+SAe16IUEkLAsi4aXf18UvbjW63gpHvt3j19H9UuKJDsvhVzn22hq120NGOeeyfB1XHhuLkNLjYL7bRG54IwIgy/qfNtb9/gJfgHJRQryKsEJCF7/9CoVIzB6kNqvGefwE19z1AqZqnIw=\"><span lang=\"EN-US\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:windowtext; text-decoration:none\"><img border=\"0\" width=\"43\" height=\"42\" id=\"_x0000_i1032\" src=\"cid:image007.png@01DA60DF.82456390\" style=\"width:.4479in; height:.4375in\"></span></a><span lang=\"EN-US\" style=\"font-family:&quot;Aptos&quot;,sans-serif\"></span></p></div><p class=\"MsoNormal\"><span lang=\"en-CY\" style=\"font-family:&quot;Aptos&quot;,sans-serif\">&nbsp;</span></p><div><div style=\"border:none; border-top:solid #E1E1E1 1.0pt; padding:3.0pt 0cm 0cm 0cm\"><p class=\"MsoNormal\"><b><span lang=\"EN-US\" style=\"\">From:</span></b><span lang=\"EN-US\" style=\"\"> Niki Epiphaniou &lt;nikie@krypto.com.cy&gt; <br><b>Sent:</b> Friday, 16 February 2024 8:22 am<br><b>To:</b> Local Suppliers (SHC) &lt;ls@superhome.com.cy&gt;; Expenses Suppliers (SHC) &lt;es@superhome.com.cy&gt;<br><b>Cc:</b> Chrystalla Demitriou &lt;chrystallad@krypto.com.cy&gt;<br><b>Subject:</b> SOA SUPERHOME CENTER (D.I.Y.) LTD</span></p></div></div><p class=\"MsoNormal\">&nbsp;</p><table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\" width=\"100%\" style=\"width:100.0%\"><tbody><tr><td style=\"background:#A6A6A6; padding:5.25pt 1.5pt 5.25pt 1.5pt\"></td><td width=\"100%\" style=\"width:100.0%; background:#EAEAEA; padding:5.25pt 3.75pt 5.25pt 11.25pt\"><div><p class=\"MsoNormal\" style=\"\"><span style=\"font-size:9.0pt; font-family:wf_segoe-ui_normal; color:#212121\">Some people who received this message don't often get email from <a href=\"mailto:nikie@krypto.com.cy\">nikie@krypto.com.cy</a>. <a href=\"https://aka.ms/LearnAboutSenderIdentification\">Learn why this is important</a></span></p></div></td><td width=\"75\" style=\"width:56.25pt; background:#EAEAEA; padding:5.25pt 3.75pt 5.25pt 3.75pt\"></td></tr></tbody></table><div><p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; display:none\">&nbsp;</span></p><table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\" width=\"100%\" style=\"width:100.0%\"><tbody><tr><td style=\"background:#FF2626; padding:5.0pt 2.0pt 5.0pt 2.0pt\"><p class=\"MsoNormal\" style=\"\"><span style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:black\">&nbsp;</span><span style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif\"></span></p></td><td width=\"100%\" style=\"width:100.0%; background:#FF2626; padding:5.0pt 4.0pt 5.0pt 12.0pt\"><div><p class=\"MsoNormal\" style=\"\"><b><span style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:white\">Caution:</span></b><span style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\"> </span><b><span style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:white\">This is an external email. Do not open attachments, click links or follow any directives unless this email comes from a known sender and you know the content is safe.</span></b><span style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif; color:#222222\"></span></p></div></td></tr></tbody></table><p><span lang=\"EN-US\">&nbsp;</span></p><div><p class=\"MsoNormal\"><a name=\"_Hlk515112911\"><span lang=\"EN-US\">Dear Client good morning,</span></a></p><p class=\"MsoNormal\"><span style=\"\"><span lang=\"EN-US\">&nbsp;</span></span></p><p class=\"MsoNormal\"><span style=\"\"><span lang=\"EN-US\">Please find attached statement of account from 01/01/2024 until today.</span></span></p><p class=\"MsoNormal\"><span style=\"\"><span lang=\"EN-US\">&nbsp;</span></span></p><p class=\"MsoNormal\"><span style=\"\"><span lang=\"EN-US\">Kind regards</span></span></p><p class=\"MsoNormal\"><span style=\"\"><span lang=\"EN-US\">&nbsp;</span></span></p><table class=\"MsoNormalTable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"border-collapse:collapse\"><tbody><tr style=\"height:112.0pt\"><td width=\"168\" valign=\"top\" style=\"width:126.0pt; padding:0cm 5.4pt 0cm 5.4pt; height:112.0pt\"><p class=\"MsoNormal\" align=\"right\" style=\"text-align:right\"><span style=\"\"><b><span style=\"font-family:&quot;Lato&quot;,sans-serif; color:red\">Niki Epiphaniou</span></b></span></p><p class=\"MsoNormal\" align=\"right\" style=\"text-align:right\"><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\">Billing and Debt Retrieval Officer</span></span></p><p class=\"MsoNormal\" align=\"right\" style=\"text-align:right\"><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\">&nbsp;</span></span></p><p class=\"MsoNormal\" align=\"right\" style=\"text-align:right\"><span style=\"\"><b><span style=\"font-family:&quot;Lato&quot;,sans-serif\">T:</span></b></span><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\"> +357 25 736846</span></span></p><p class=\"MsoNormal\" align=\"right\" style=\"margin-bottom:12.0pt; text-align:right\"><span style=\"\"><b><span style=\"font-family:&quot;Lato&quot;,sans-serif\">F:</span></b></span><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\"> +357 25 736845</span></span></p><p class=\"MsoNormal\" align=\"right\" style=\"text-align:right\"><span style=\"\"></span><a href=\"https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.facebook.com%2Fkryptocy%2F&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833638260%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=IUjnWlbl4bLKKJr9vo4zBbo1qJ4gI639rSjAugFmb2A%3D&amp;reserved=0\" originalsrc=\"https://www.facebook.com/kryptocy/\" shash=\"HFDY+sikheQRzBYKEHXcqHfku5JIhrsH+gImNxvmk7KkMb8iihQDxKeKHZVtZsENGEGNnI7+dkfkAZHZw4xGvpjdhmHulvzMXYALTPpIyUrsSo2X5168VKSncTdCpkXOIi2pZNINqjiAjN43/PImZ+JKCs4HZZOd9p1vR/MLwOw=\"><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif; color:windowtext; text-decoration:none\"><img border=\"0\" width=\"30\" height=\"30\" id=\"Picture_x0020_4\" src=\"cid:image015.png@01DA60B1.40BFF210\" style=\"width:.3125in; height:.3125in\"></span></span><span style=\"\"></span></a><span style=\"\"></span><a href=\"https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.youtube.com%2Fuser%2Fmarios858001%2Ffeatured&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833644762%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=Yj1K%2BLChBgPGwTq7Jpl5Ybb7%2F0D8LSipMMLPDxX13Rk%3D&amp;reserved=0\" originalsrc=\"https://www.youtube.com/user/marios858001/featured\" shash=\"xs+Q2BmF0bLzESOKERhbkG2f7GaF1nSBAlBJlZdohMqRsmCa0brgVIng/rGIjdnXzl/ZWzH4ZIYzAfqQkvBorHDTBk3UZ10K8mPRwtQ3XuN1qG61Ntyj4LXA778RH25oZx0rwxvO3hJ6P5dL3raX1u71M874kpQEjq5KgghH+pI=\"><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif; color:windowtext; text-decoration:none\"><img border=\"0\" width=\"30\" height=\"30\" id=\"Picture_x0020_2\" src=\"cid:image016.png@01DA60B1.40BFF210\" style=\"width:.3125in; height:.3125in\"></span></span><span style=\"\"></span></a><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\">&nbsp;</span></span><a href=\"https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.linkedin.com%2Fcompany%2Fkrypto-security-cyprus-ltd%2F&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833651352%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=gMFPrql3dd%2BH6sjzPbw%2B6ZtT0wsSwjHTBHP9%2BgZGuv8%3D&amp;reserved=0\" originalsrc=\"https://www.linkedin.com/company/krypto-security-cyprus-ltd/\" shash=\"JFoTvM6WI47ztk/8Gj6yCuaR12Sb6dg6bmOK3KJh3rYlZ6GZkhymYnzqMHtfVuA148CVVB6zv+oALRbeAACfaZFIDXHny+v2rSzGqVb1dWb0+Xdg+NHCjHBZtG8OpejGVRGlB2t204WcLsfG9dBv/B+GNTYY6ahdLjInAswVrC0=\"><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif; color:windowtext; text-decoration:none\"><img border=\"0\" width=\"30\" height=\"30\" id=\"Picture_x0020_3\" src=\"cid:image017.png@01DA60B1.40BFF210\" style=\"width:.3125in; height:.3125in\"></span></span><span style=\"\"></span></a><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\">&nbsp;</span></span><a href=\"https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.instagram.com%2Fkrypto_security%2F&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833658028%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=EU984YYicT%2Bz%2FfeBsUowl24W4OaqJ%2BwhL2hDWUK3nJQ%3D&amp;reserved=0\" originalsrc=\"https://www.instagram.com/krypto_security/\" shash=\"JIBiXZsRmVJ4xWKmEX5gyM8Oa+deB9aTCf4oMoSgd8JtIv2UWLJKSBPQ117tY743gt+7iR5smIvnW+BI4iZUYQqf7++8xwHalKIsu00bhQy2JRFPOFC8le8iaGG2mx2j+W8yIalwiNfxq8FYVKKTaZeAXFeHmHUU50mutKGBUFQ=\"><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif; color:windowtext; text-decoration:none\"><img border=\"0\" width=\"30\" height=\"30\" id=\"Picture_x0020_5\" src=\"cid:image018.png@01DA60B1.40BFF210\" style=\"width:.3125in; height:.3125in\"></span></span><span style=\"\"></span></a><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\">&nbsp;</span></span></p></td><span style=\"\"></span><td width=\"31\" valign=\"top\" style=\"width:23.3pt; padding:0cm 5.4pt 0cm 5.4pt; height:112.0pt\"><p class=\"MsoNormal\"><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\"><img border=\"0\" width=\"15\" height=\"168\" id=\"Picture_x0020_1\" src=\"cid:image019.png@01DA60B1.40BFF210\" style=\"width:.1562in; height:1.75in\"></span></span><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\"></span></span></p></td><span style=\"\"></span><td width=\"371\" valign=\"top\" style=\"width:278.25pt; padding:0cm 5.4pt 0cm 5.4pt; height:112.0pt\"><p class=\"MsoNormal\"><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\"><img border=\"0\" width=\"75\" height=\"75\" id=\"Picture_x0020_6\" src=\"cid:image020.png@01DA60B1.40BFF210\" style=\"width:.7812in; height:.7812in\"></span></span><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\"><br></span></span><span style=\"\"><b><span style=\"font-size:14.0pt; font-family:&quot;Lato&quot;,sans-serif\">Krypto Security (Cyprus) Ltd</span></b></span><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\"></span></span></p><p class=\"MsoNormal\"><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\">71 Michali Zavou str. Ay. Athanasios 4107 Limassol</span></span></p><p class=\"MsoNormal\"><span style=\"\"><span style=\"font-family:&quot;Lato&quot;,sans-serif\">&nbsp;</span></span></p><p class=\"MsoNormal\"><span style=\"\"></span><a href=\"mailto:nikie@krypto.com.cy\"><span style=\"\"><span style=\"\">nikie</span></span><span style=\"\"><span style=\"font-size:10.0pt; font-family:&quot;Lato&quot;,sans-serif\">@krypto.com.cy</span></span><span style=\"\"></span></a><span style=\"\"><span style=\"font-size:10.0pt; font-family:&quot;Lato&quot;,sans-serif\"> | </span></span><a href=\"https://eur05.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.krypto.com.cy%2F&amp;data=05%7C02%7Cls%40superhome.com.cy%7Cf16cb53cea3648e64d1708dc2ee5e3bc%7Cd47d0e3889d8424c9a3a6fa7a02c8e60%7C0%7C0%7C638436812833664556%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;sdata=d3nxV%2FiAGSiD8fypchV2rub9N7KQfFAQ1Wj4rd2hwGA%3D&amp;reserved=0\" originalsrc=\"http://www.krypto.com.cy/\" shash=\"qGqdHjQlesBItG2ZjSUGnFfJwSOo2um2B0+sKmO076xXbytijIK/4eIudO29OaoS3618NJRCsFHiGGZ9fIe9HG/GpLNu/YbS3FssInIga7EbMwBHq5HdbjkvyY4krBsdVHjoq0CXnyU3L/cfTRSnwLQRu335SrA8ouNjmD9BE28=\"><span style=\"\"><span style=\"font-size:10.0pt; font-family:&quot;Lato&quot;,sans-serif; color:#002060\">www.krypto.com.cy</span></span><span style=\"\"></span></a><span style=\"\"><span style=\"font-size:10.0pt; font-family:&quot;Lato&quot;,sans-serif\"> </span></span></p></td><span style=\"\"></span></tr></tbody></table><span style=\"\"></span><p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-family:&quot;Lato&quot;,sans-serif\">&nbsp;</span></p><p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-family:&quot;Lato&quot;,sans-serif\"><img border=\"0\" width=\"517\" height=\"271\" id=\"Picture_x0020_7\" src=\"cid:image021.png@01DA60B1.40BFF210\" style=\"width:5.3854in; height:2.8229in\"></span><span lang=\"EN-US\" style=\"font-size:10.0pt; font-family:&quot;Lato&quot;,sans-serif\"></span></p><p class=\"MsoNormal\"><span lang=\"EN-US\">&nbsp;</span></p><p class=\"MsoNormal\"><span lang=\"EN-US\" style=\"font-size:12.0pt; font-family:&quot;Aptos&quot;,sans-serif\">CONFIDENTIALITY NOTICE: The contents of this email message and any attachments are intended solely for the addressee(s) and may contain confidential and/or privileged information and may be legally protected from disclosure. If you are not the intended recipient of this message or their agent, or if this message has been addressed to you in error, please immediately alert the sender by reply email and then delete this message and any attachments. If you are not the intended recipient, you are hereby notified that any use, dissemination, copying, or storage of this message or its attachments is strictly prohibited. </span></p></div></div></div>CONFIDENTIALITY NOTICE: The contents of this email message and any attachments are intended solely for the addressee(s) and may contain confidential and/or privileged information and may be legally protected from disclosure. If you are not the intended recipient of this message or their agent, or if this message has been addressed to you in error, please immediately alert the sender by reply email and then delete this message and any attachments. If you are not the intended recipient, you are hereby notified that any use, dissemination, copying, or storage of this message or its attachments is strictly prohibited. </body></html>"                },                "sender": {                    "emailAddress": {                        "name": "Expenses Suppliers (SHC)",                        "address": "es@superhome.com.cy"                    }                },                "from": {                    "emailAddress": {                        "name": "Expenses Suppliers (SHC)",                        "address": "es@superhome.com.cy"                    }                },                "toRecipients": [                    {                        "emailAddress": {                            "name": "Local Suppliers (SHC)",                            "address": "ls@superhome.com.cy"                        }                    }                ],                "ccRecipients": [],                "bccRecipients": [],                "replyTo": [],                "flag": {                    "flagStatus": "notFlagged"                }            }        ],        "@odata.nextLink": "https://graph.microsoft.com/v1.0/users('ls@superhome.com.cy')/mailFolders('Archive')/messages?%24top=1&%24skip=1"    }}

Can someone assist me on this?

Thanks

Categories:
I have the same question (0)
  • Verified answer
    Manish Solanki Profile Picture
    15,167 Moderator on at

    Hi @Mikellas 

     

    Pls try:

    body('Parse_JSON')?['value']

     

     

    If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.

     

  • wyattdave Profile Picture
    493 Moderator on at

    Manish is right, you should do either

     

    Outputs('Parse_JSON')?['body']?['value']

    of

    body('Parse_JSON')?['value']

     

    Think of them like nested boxes (outputs is optional)

    • Outputs-Body-Value
    • Body-Value

    you went Body-Body-Value

     

  • NM-06090901-0 Profile Picture
    170 on at

    Thanks you guys that was what i was looking for!

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the March Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Automate

#1
Haque Profile Picture

Haque 594

#2
Valantis Profile Picture

Valantis 328

#3
David_MA Profile Picture

David_MA 281 Super User 2026 Season 1

Last 30 days Overall leaderboard