Skip to main content

Sourceappbulkupdaterequest

Properties

NameTypeDescriptionNotes
app_ids[]strList of source app ids to update[required]
json_patch[]JsonpatchoperationThe JSONPatch payload used to update the source app.[required]
}

Example

from sailpoint.apps.models.sourceappbulkupdaterequest import Sourceappbulkupdaterequest

sourceappbulkupdaterequest = Sourceappbulkupdaterequest(
app_ids=["2c91808a7624751a01762f19d665220d","2c91808a7624751a01762f19d67c220e","2c91808a7624751a01762f19d692220f"],
json_patch=[{"op":"replace","path":"/enabled","value":false},{"op":"replace","path":"/matchAllAccounts","value":false}]
)

[Back to top]