How to get Complex lifeCycleState Rule via API

Hey @adama, Welcome to SailPoint community,

That “Complex Data Source” lifecycle logic isn’t a standalone saved Transform, so the Transforms API won’t return it. It should be: an Identity Attribute Rule (“complex rule”)

Recommended way: use SP-Config export to pull and compare across Sandbox/Prod.

  • Export with SP-Config:
POST /beta/sp-config/export
{
  "objects": [{ "type": "RULE", "name": "<Your Complex Lifecycle Rule Name>" }]
}

Download the job result and diff the rule content between tenants.

1 Like