Is it possible to get the account attribute value in the Webservice connector’s http operation?
In this sample body:
{
"user": {
"siteRole": "$plan.siteRole$"
}
}
In the $plan.siteRole$, we would need to get the existing site role of the user. Is there a syntax available for getting it? $plan.siteRole$ does not return the exisiting value
You will need to write a beforeProvisioning rule to add the existing role in the plan (if you are talking about entitlement) and then you can get it using “$plan.siteRole$”.
If you want to get some random attribute you can do it via parent child HTTP operation.
Parent: Get the user using the API call and map attributes in the response mapping.
Child: You will have the required attributes in the response and you can get it using “$response.siteRole$”