JDBC provisioning rule, update account

Hi!

I need to add support into our JDBC provisioning rule to synchronise the account name to a users work email address.

What I can’t find from available examples, is what is this operation called?

For example, if this if ( AccountRequest.Operation.Create.equals( account.getOperation() denotes account Create operation and this if ( AccountRequest.Operation.Modify.equals( account.getOperation() denotes account Modify operation, what operation type/name denotes Account Update operation?

If the operation is Modify, what’s the distinction between attribute sync/account field updates vs other attribute requests such as add entitlement? Would it still be a Modify operation but the attribute request is for ACCOUNT instead of ENTITLEMENT?

The difference would be operation of attribute request

Plan would look like below:
AccountRequest op:Modify
AttributeRequest op:Set
AttributeRequest name: attributename(username in your case, this is from account schema of your source)
AttributeRequest value: value which you want to overwrite.

You can see plan in search also and also in ccg logs and based on that you can implement your logic.

2 Likes