Greetings,
I have a shared mailbox which I am using Get emails with Original Mailbox Address param to find the shared one. I have a list of folders in a SharePoint list I wish to check. When I pass in ACTIONED from a dynamic value, it doesnt find the folder. If I click manually on the folder icon in the connector I can select ACTIONED and it will work.

On peeking the code I noticed there is metadata? Also, the value passed isnt text (although it displays this) it's the folder ID. The connector can map this through selection, why can't it take the text value being dynamic? Also it stores selections in the metadata? I dont quite understand this part.
{
"inputs": {
"host": {
"connectionName": "shared_office365",
"operationId": "GetEmailsV3",
"apiId": "/providers/Microsoft.PowerApps/apis/shared_office365"
},
"parameters": {
"folderPath": "Id::HJ8iLTliMDk4YzSJjhBBBSDACiyhjkehjJKHJK-4CBcW_zmAQANbG8-niAfSLQVFBss3esLzADDACSyjSSA=",
"from": "@items('Apply_to_each')?['EmailFrom']",
"fetchOnlyUnread": false,
"mailboxAddress": "hi@sharedmailboxaddress.com;",
"includeAttachments": true,
"top": 1,
"importance": "Any",
"fetchOnlyWithAttachment": false,
"subjectFilter": "@items('Apply_to_each')?['Subject']"
},
"authentication": {
"type": "Raw",
"value": "@json(decodeBase64(triggerOutputs().headers['X-MS-APIM-Tokens']))['$ConnectionKey']"
}
},
"metadata": {
"Id::AxLWIxZDYtNDRjOS05ZjdiLTliMDk4YzljMWRlNwAuAAAAAACiyJQvpSasR62-4CBcW_zmAQANbG8-niAfSLQVJcd4SsLzAAAABy10SSA=": "Potential Customers",
"operationMetadataId": "184390286e-8459-453e-8459-4432klnjb11",
"Id::AAMkWxLWIxZDYtNDRjOS05ZJHbjBJKMWRlNwAuAAAAAACiyJQvpSasR62-4CBcW_zmAQDKKtKrsr4aSocvrTteVABdAAAATVGASSA=": "CBAT",
"Id::AIxZDYtNDRjOS05ZjdSJKGJKAk4YzljMWRlNwAuAAAAAACiyJQvpSasR62-4CBcW_zmAQANbG8-niAfSLQVJcd4SsLzAAAAAiE2SSA=": "Urgent",
"Id::AAMxMjYxLWIxZDYtNDRjOS05ZjdAHduAAAAAACiyJQvpSasR62-4CBcW_zmAQANbG8-niAfSLQVJcd4SsLzAAAACSyjSSA=": "Delivered"
}
}
So my question is how can I pass through Folder names or grab the ID's through the folder text box? I dont have access to the premuim connection Azure AD either.