David72
David72

Reputation: 39

Set a value as integer when creating a new entity in Azure Table with Logic App

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

Answers (1)

AdAstra
AdAstra

Reputation: 1984

Declare the JSON payload without double quotations around the counter value.

{ "PartitionKey":"Phone", "Counter": 1, "RowKey": "1", "Name:"Bob" }

Upvotes: 1

Related Questions