In VBA, I used this query string to send variables to the API and save it to the database. Is possible to do the same in C#? and how are the variables marked in the query string and send it with HttpClient?
VBA Query String :
sDataPairs = "mail_from=" & strFrom & "&mail_to=" & strTo & "&url_attribute=" & strWebLink
for example: "mail_from
is the name of the column in the database, strFrom
is a variable from outlook active current item.
VBA result:
https://my.address.com/api?=mail_from=strFrom&mail_to=strTo&url_attribute=strWebLink