module WebpropertyUserLinks: sig .. end
val delete : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
accountId:string ->
webPropertyId:string ->
linkId:string ->
GapiConversation.Session.t -> unit * GapiConversation.Session.t
Removes a user from the given web property.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/analytics/v3/").
std_params : Optional standard parameters.
accountId : Account ID to delete the user link for.
webPropertyId : Web Property ID to delete the user link for.
linkId : Link ID to delete the user link for.
val insert : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
accountId:string ->
webPropertyId:string ->
GapiAnalyticsV3Model.EntityUserLink.t ->
GapiConversation.Session.t ->
GapiAnalyticsV3Model.EntityUserLink.t * GapiConversation.Session.t
Adds a new user to the given web property.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/analytics/v3/").
std_params : Optional standard parameters.
accountId : Account ID to create the user link for.
webPropertyId : Web Property ID to create the user link for.
val list : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?max_results:int ->
?start_index:int ->
accountId:string ->
webPropertyId:string ->
GapiConversation.Session.t ->
GapiAnalyticsV3Model.EntityUserLinks.t * GapiConversation.Session.t
Lists webProperty-user links for a given web property.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/analytics/v3/").
std_params : Optional standard parameters.
max_results : The maximum number of webProperty-user Links to include in this response.
start_index : An index of the first webProperty-user link to retrieve. Use this parameter as a pagination mechanism along with the max-results parameter.
accountId : Account ID which the given web property belongs to.
webPropertyId : Web Property ID for the webProperty-user links to retrieve. Can either be a specific web property ID or '~all', which refers to all the web properties that user has access to.
val update : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
accountId:string ->
webPropertyId:string ->
linkId:string ->
GapiAnalyticsV3Model.EntityUserLink.t ->
GapiConversation.Session.t ->
GapiAnalyticsV3Model.EntityUserLink.t * GapiConversation.Session.t
Updates permissions for an existing user on the given web property.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/analytics/v3/").
std_params : Optional standard parameters.
accountId : Account ID to update the account-user link for.
webPropertyId : Web property ID to update the account-user link for.
linkId : Link ID to update the account-user link for.