Please be sure you’ve read the docs and API specs before asking for help. Also, please be sure you’ve searched the forum for your answer before you create a new topic.
Please consider addressing the following when creating your topic:
- What have you tried?
- What errors did you face (share screenshots)?
- Share the details of your efforts (code / search query, workflow json etc.)?
- What is the result you are getting and what were you expecting?
We are building out our first web services connector on our own and ran into this issue where the account name has brackets around the data. This is impacting accounts from being correlated and obviously makes the data look incorrect.
We’ve tried an after provisioning rule for the web services connector to try to clean up the data but that didn’t seem to work despite clearing out accounts from the source and aggregating them all over again.
Below is the rule we attempted to use that did not seem to have an impact on the brackets we were trying to remove.
{
"description": "This rule is used by the Web Services connector to update parsed resource object. Create List of Objects which will later converted to Resource object.",
"type": "WebServiceAfterOperationRule",
"signature": {
"input": [],
"output": {
"name": "Update Account/Group List",
"description": "Update information Map contains parsed list of accounts",
"type": null
}
},
"sourceCode": {
"version": "1.0",
"script": "import sailpoint.object.ProvisioningPlan;\r\nimport sailpoint.object.ProvisioningResult;\r\nimport sailpoint.object.Application;\r\nimport sailpoint.object.ResourceObject;\r\nimport sailpoint.api.SailPointContext;\r\nimport sailpoint.tools.GeneralException;\r\nimport sailpoint.tools.Util;\r\nimport java.util.Map;\r\n\r\npublic class AfterProvisioningRule extends sailpoint.object.Rule {\r\n\r\n public ProvisioningResult execute(SailPointContext context, \r\n ProvisioningPlan plan, \r\n ProvisioningResult result, \r\n Application application, \r\n ResourceObject account) throws GeneralException {\r\n\r\n \/\/ Get the email attribute from the account object\r\n String email = (String) account.getAttribute(\"email\");\r\n\r\n if (!Util.isNullOrEmpty(email)) {\r\n \/\/ Remove brackets from the email string\r\n String cleanedemail = email.replaceAll(\"[\\\\[\\\\]]\", \"\");\r\n\r\n \/\/ Update the account object with the cleaned email\r\n account.setAttribute(\"email\", cleanedemail);\r\n }\r\n\r\n \/\/ Return the result as-is (or modified if needed)\r\n return result;\r\n }\r\n}"
},
"attributes": {
"sourceVersion": "1.0"
},
"id": "id",
"name": "After Operation Rule for Github",
"created": "2025-08-26T16:19:18.701Z",
"modified": "2025-08-26T16:19:18.701Z"
}
Has anyone experienced this issue before with the webservices connector? Any advice on how to resolve this?


