Hi Experts,
I’m working on “Web Services SaaS Connector” and for one of the applications:
- Create operation response is:
{"isSuccess: true, "message": "account has been created", "data": {"userId": Dynamically generated integer}}
- As account created in target is not displayed in IdentityNow until Account Aggregation is executed and Add Entitlement Operation requires userId to be passed in request body so I added getObject operation to bring the account in IdentityNow right after account creation.
Request URL for getObject call is https://…/…/userId.
I’ve tried these Request URLs for getObject but none of them has worked:
- https://…/…/$getObject.nativeIdentity$
- https://…/…/$plan.nativeIdentity$
- https://…/…/$response.data.userId$
- https://…/…/$output.attributes.data.userId$
Other options tried to execute getObject, but they didn’t work:
- Added Account Aggregation as Child of Create Account EndPoint
- Added another Create Account Operation to execute getObject
Have I missed anything? Could you please advise on this?