def userName = 'ABC'
def input json = {
"integration": {
"serviceData": {
"integrationService": {
"name": "fld_<tenantID>_stage00.integrations:<integrationName>"
},
"gitComments": "Commit made by: ABC"
}
}
}
In the above json I need to parameterize the user name 'ABC'
If I send "gitComments": "#(userName)"
It is checking 'ABC' which is fine But I need to prefix the String "Commit made by: " And then #(userName) in the input json.
Thanks in Advance