i have few topic variables like var1 and var2 etc....
and i want to send a http post request that has json values like this
{"var1":Topic.var1,
"var2":Topic.var2}
how can i do that in copilot studio ?
what im doing right now to make it work is creating a JSON variable and then set JSON.var1 to Topic.var1 and JSON.var2 to Topic.var2 and in post request im sending this json , but in this way my flow is getting messy because of setting the json values to topic variables .