@henriqueoliveiraIAM -Please find the response below -
- Is parent
$responsedata guaranteed to be available in a child call’s BeforeOperation rule?
I don’t think that’s possible. - If not, what’s the supported way to pass the parent value into the child request (e.g., staged variable,
connectorStateMap, different rule stage)?
My suggestion would be using connectorStateMap. - Is
requestEndPoint.setFullUrl(...)the correct approach at this stage, or should we prefersetContextUrl(...)for child calls?
It depends, How you want to handle. In general, setContextUrl - Sets the context URL for the particular operation (Create User, Update User, Account Aggregation, etc.).e.g. - /request/getAccount
setFullUrl - Sets the complete URL (endpoint ) of the operation that need to be performed for the particular operation (Create User, Update User, Account Aggregation, etc.).e.g. https://example.com/request/getAccount
Hope this helps.