Share all details related to your problem, including any error messages you may have received.
I am getting Postman Response (POST Method) like this “output”: [
{
“value”: “"uz9y:API IAM WorkGroup, Head of IAM", "uzxb:IAM - Engineering, IAM - Operations"”,
“key”: “output”
}
But actual Postman Response output I should get like this "uz9y:API IAM WorkGroup, Head of IAM", “uzxb:IAM - Engineering, IAM - Operations”
Is there any way to remove "" slash in Postman Response output ?
@manikanda_vanguard
Can you provide the endpoint you are calling, are you launching a workflow within SailPoint, if so can you please share the workflow code
If you are just concerned about the output in postman and dont bother about the actual output
try keeping below in Tests tab, this will remove all double quotes
let response = pm.response.json();
let value = response.output[0].value;
value = value.replace(/"/g, '');
console.log(value);