Hi,
I'm trying to send a simple test message to Azure Servive Bus queue from PowerApps, but I'm having problems with Properties -table syntax.
AzureServiceBus.SendMessage("tilastointiqueue"; {
ContentData:"Some text";
ContentType:"String";
ContentTransferEncoding:"base64";
Label:"Heading";
Properties:Table( {Name:"name1", Value: 1},{Name:"name2", Value:2} )
} )
Error says that Column with type Text is missing, but I can't find a way to fix it.
I am able to send the message to queue without Properties-parameter, but the ContentData doesn't seem to be transferred with the message since the Message Text is empty.
Has somenone send messages to Service Bus queue succesfully?