Reputation: 39
When creating a new entity in Azure Table with Logic App, they all end up strings variables. How can I set my value counter to be an integer ?
{ "PartitionKey":"Phone", "Counter": "1", "RowKey": "1", "Name:"Bob" }
Thanks, David
Upvotes: 1
Views: 134
Reputation: 1984
Declare the JSON payload without double quotations around the counter value.
{ "PartitionKey":"Phone", "Counter": 1, "RowKey": "1", "Name:"Bob" }
Upvotes: 1