fatimahm
(fatima hmaidouch)
November 19, 2025, 2:08pm
1
Hello,
When updating an identity lifecycle to one where all sources should be disabled (with some exceptions), I noticed that the authoritative source is added to the provisioning plan. It does not appear in the “Exclude sources” list.
Is there any way to change this behavior ?
Thanks.
pablonovoa
(Pablo Novoa Lopez)
November 19, 2025, 3:07pm
2
Hello Fatima, can you doublecheck that the Authoritative source account tries to be disabled?
If you dont have the disabling provisioning plan, it shouldn’t be tried. Ichecked only once with a non-employee authoritative source.
Regards,
Pablo
fatimahm
(fatima hmaidouch)
November 19, 2025, 4:04pm
3
Hello @pablonovoa
Thank you for your feedback.
Indeed, the authoritative source account is attempting to be disabled.
In my tests, this source is also a non-employee source.
Regards,
fatimahm
(fatima hmaidouch)
December 1, 2025, 2:12pm
4
As a workaround, we can exclude the source via API: /v3/identity-profiles/$identityprofileId/lifecycle-states/$lcsId
[
{
"op": "replace",
"path": "/accountActions",
"value": [
{
"action": "DISABLE",
"sourceIds": null,
"excludeSourceIds": [
"XXX",
"YYY"
],
"allSources": true
}
]
}
]