sp-config connector rules export from postman not working sailpoint idn
Diagnosis
Issue when we export WebServiceRule from sandbox it returns empty Object. It works fine in Prod.
{
“description”: “Export all available objects”,
“excludeTypes”: ,
“includeTypes”: [
“SOURCE”,
“RULE”
],
“objectOptions”: {
“SOURCE”: {
“includedNames”: [
“SourceName”
Can you double-check your rule name to ensure there are no name discrepancies? If there aren’t any, are you able to get a full export when you do a rule export without specifying any included names? Usually this happens when the rule name doesn’t match, or if the rule doesn’t exist in the tenant.
In the full export if you get it, check if the rule you intended to export exists.
Once check the rule has been deployed in the same name as you gave.
Else, Just try the below.
{
"description": "Export all available objects",
"excludeTypes": [],
"includeTypes": [
"RULE"
],
"objectOptions": {}
}
Just use the above JSON in body. This will retrieve all the rules present/deployed in your tenant. You can then search the rule from the exported JSON.
We are seeing the same thing in our tenant today. Seems that the SP-Config and RULE pull does not include the Connector Rules any longer.
I can trace this back that it was working as expected yesterday (01/13/2025) but on this morning run, the Rules i expected were missing (01/14/2025).
In researching, seems the thing happened in Sandbox on our environment where the Rules expected are there on 12/03/2024 but starting on 12/04/2024, they are no longer being pulled.
Is this expected behavior in the API now? Was there any mention anywhere on this? I have tried the VSCode to export, the Beta api as well as the v2024 api, all to no avail.
While you wait for that update to be made available in production tenants, you can also export all connector rules via the List Connector Rules API if you were unaware.