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!