Sp config connector rules export from postman not working

Problem

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”

        ]
    },
    "RULE": {
        "includedNames": [
            "Rule Name"

        ]
    }
}

}

It exports Source but Rule gives empty object . we tried individually also same empty Object.

Postman response :

“version”: 1,
“timestamp”: “2025-01-06T16:33:22.168831Z”,
“tenant”: “tenentname-sb”,
“description”: “Export all available objects”,
“options”: {
“excludeTypes”: ,
“includeTypes”: [
“RULE”
],
“objectOptions”: {
“RULE”: {
“includedNames”: [
“Rule Name”
],
“includedIds”:
}
}
},
“objects”:
}

Object is null we tried from VS-code also same results.

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.

Hi @vkarumudi07,

Just try without giving name whether it exports all rules in Tenent then try with specific rule name or id,

“includeTypes”: [
“RULE”
],
“objectOptions”: {}

-Vasanth

Hi @vkarumudi07 ,

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.

Thanks!

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.

The release notes this week mention a new CONNECTOR_RULE object type for Configuration Hub, which is based on the SP Config API: https://community.sailpoint.com/t5/SaaS-Release-Notes/SaaS-Release-Notes-January-13-2025/ta-p/262885

Testing both beta and v2024 APIs for the SP-Config, return a Status Failed message…

{
    "jobId": "d8***aa-7**e-4**f-b**8-7b********24",
    "status": "FAILED",
    "type": "EXPORT",
    "message": "java.lang.IllegalArgumentException: Supplied types are not supported: [CONNECTOR_RULE]",
    "description": "Export all available objects",
    "expiration": "2025-01-21T20:00:05Z",
    "created": "2025-01-14T20:00:05.97Z",
    "modified": "2025-01-14T20:00:06.086Z"
}

That was from my Prod instance, but i do see it working in my Sandbox environment.

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.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.