Hi Team,
I’ve created webservice VA connector. Account Aggregation and entitlement aggregation is working fine. but when we do request based account provision the account is getting created, but with “???”. We are using Account name and Account ID as same. Below is the payload we are passing in create account operation. userName → Account ID and Account Name. In account tab native identity is displayed not the name. After running full aggregation, the name is getting populated. I’ve added single account aggregation and try to run single account aggregation via account tab, it ended up with error. I have done response mapping in Create account http operation userName → userName. Any inputs, what am I missing
{
"user": [
{
"firstName": "$plan.First Name$",
"lastName": "$plan.Last Name$",
"userName": "$plan.Username$",
"email": "$plan.Email Address$",
"functionalRole": "Account Admin",
"securityRole": "$plan.SecurityRole$",
"defaultMenu": "Payment Batches",
"loginType": "SSO",
"languageId": "en"
}
]
}