Hi when adding user to Dynamic Access Team, I've received the following error messages.
"The user can’t be added to the team because the user has insufficient privileges on the entity. The minimum access level the user must have is User."
What kind of permission the user need so that it can be added to the Dynamic Access Team. I've assigned read/write permission on User entity, but no luck.
My code is as bellows.
AddUserToRecordTeamRequest adduser = new AddUserToRecordTeamRequest()
{
Record = record, //Opportunity record.
SystemUserId = user.Id,
TeamTemplateId = teamTemplateID
};
AddUserToRecordTeamResponse response = (AddUserToRecordTeamResponse)service.Execute(adduser);
*This post is locked for comments
I have the same question (0)