Provides methods for creating, updating, and retrieving UserTeamAssociation objects. UserTeamAssociation objects are used to add users to teams in order to define access to entities such as companies, inventory and orders and to override the team's access type to orders for a user.
dfp_createUserTeamAssociations(request_data, as_df = TRUE, verbose = FALSE)
request_data | a |
---|---|
as_df | a boolean indicating whether to attempt to parse the result into
a |
verbose | a boolean indicating whether to print the service URL and POSTed XML |
a data.frame
or list
containing all the elements of a createUserTeamAssociationsResponse
createUserTeamAssociations
Creates new UserTeamAssociation objects.
# NOT RUN { request_data <- data.frame(teamid=rep(dfp_createTeams_result$id, 3), userid=dfp_createUsers_result$id) result <- dfp_createUserTeamAssociations(request_data) # }