Could you please confirm what API call needs to be made to modify the account filter under SAP sources, specifically to include accounts from the 3 series (including 2 also), instead of the current filter which excludes them (i.e., !(uniqueName.startsWith("2"))
)?
Hi @ArjunYV,
For any partial update on source you can use : update-source | SailPoint Developer Community
If you your source details via api you must identify which attribute contain this filter and use the patch source endpoint to update this attribute :
For example here the body of update source description attribute :
[
{
"op": "replace",
"path": "/description",
"value": "New description"
}
]
Or another pretty simple way is to use SailPoint IdentityNow VS Code Extension Now Available - Announcements - SailPoint Developer Community with that plugin, you can update all your source information by editing a json file.
can you please confirm how can i execute it via postman.
Hi Arjun,
You may find it easier to install the VS Code extension. It will allow you to make a lot of these changes through the VS Code user interface.
Please find the extension here: SailPoint IdentityNow VS Code Extension Now Available
You can then add a filter to it like the below, to indicate which accounts to NOT read in:
"filterString": "(Load__c==\"on_hold\")",
Thanks,
Margo
you can use this endpoint:
or VSCODE plugin SailPoint IdentityNow VS Code Extension Now Available - Announcements - SailPoint Developer Community
Hi Ousmane,
Can you please provide me the complete raw data which needs to be added to include 3 series accounts for aggregation for the below Account String
“account.filterString”: “(!(User Name.startsWith("2")))”,
the image doesnt have the complete details
Hi Ousmane,
Can you please provide the complete screenshot of raw data to verify this.
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.