Insert a variable in the endpoint in http request

Hii,

“http://*****/redmine/issues/12345.json”
How to insert variable in palce of 12345

BELOW FORMAT IS NOT WORKING
“http://*******/redmine/issues/'”+in_TicketID+“'.json”

Thanks and Regards,
Supriya

You can assign the entire string to a string type variable before the http request activity and pass that to the activity instead of assigning the variable in the request directly @supu123

Hi @supu123

Try This

“http://*******/redmine/issues/”+in_TicketID+“.json”

Thanks
Ashwin S

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.