Hello Experts,
I’m looking to change the name of the attribute I set as the Account ID attribute in the Account Schema, but I’m getting the following error:
This attribute name is already in use.
I’m looking to edit the name because I believe that’s the culprit of another issue that I’m getting which I explain next:
In my sandbox environment I’m passing the Account ID attribute, named “employeeId” in the account schema schema as follows in the body of the Create Account HTTP Operation:
“EmployeeNumber”:“$plan.employeeid$”,
But in the production environment, if I pass it like that, it’s not found, I need to pass it like this:
“EmployeeNumber”:“$plan.nativeIdentity$”
So in the Add Entitlement operation I’m passing it like this:
EmployeeStagingEntity?$filter=EmployeeNumber eq $plan.nativeIdentity$
The account is created correctly, but the subsequent calls to Add Entitlement fail with a 404 error, as it looks like the nativeIdentity is not present.
In my scenario I’m provisioning 2 groups on account creation.
This is using the WebServices connector.
Thanks for your help.