Web Services Connector - Entitlement aggregation - result with jsonarray as the root

Try using * as the Root Path and id as the attribute path.

The Root Path defines a prefix that will be applied to all of your Attribute Paths. So a Root Path of * and Attribute Path of id will condense to *.id when the connector evaluates the logic. If your Root Path is $ and your Attribute Path is *.id, it will evaluate to $.*.id, which isn’t valid JSON path.

1 Like