ContributionsMost RecentMost LikesSolutionsRe: Tutorial: Using the DocuSign eSignature REST API with the REST Snap Pack and OAuth 2.0 Is it possible to document something using JWT tokens when integrating with DocuSign? Re: SnapLogic and DocuSign Account Setup Do you have similar example using JWT tokens for DocuSign? How to read the value from an array using expression builder and return true or false My initial JSON looked like below "customFields": { "textCustomFields": [ { "fieldId": "10546710413", "name": "templateUsageRestriction", "show": "false", "required": "false", "value": "allOptions" }, { "fieldId": "10546710414", "name": "_source", "show": "true", "required": "false", "value": "ERM" }, { "fieldId": "10546710415", "name": "_destination", "show": "true", "required": "false", "value": "xxx,yyy" }, { "fieldId": "10546710416", "name": "_bu", "show": "true", "required": "false", "value": "ABC" }, { "fieldId": "10546710417", "name": "_uid", "show": "true", "required": "false", "value": "pqr" }, { "fieldId": "10546710418", "name": "_accountnumber", "show": "true", "required": "false", "value": "xyz" } ], "listCustomFields": [] } So I used below expression to map name => value. Now I am trying to read the "_source’ element value, Ideally i want to do something like $.dsConfigAttributes[‘_source’] == ‘ERM’ return true else false to a target path and $.dsConfigAttributes[‘_source’] contains "ERM’ return to true else false to a target path Any help is appreciated. Solved