I am trying to build a flow, where I want to show an URL(hyperlink) in the response, which on click will open another flow end-point.
Example: GET /list
output:
{
"object" :{
"accounts" : **url**,
"customer" : **url**
}
}
I want to add the hyperlink in the url (show in bold in output), which on clicking will open another flow passing either "accounts" or "customer" to the other flow as end-point.
Thanks in advance