module Goals: sig .. end
val get : ?base_url:string ->
?etag:string ->
?std_params:GapiService.StandardParameters.t ->
accountId:string ->
webPropertyId:string ->
profileId:string ->
goalId:string ->
GapiConversation.Session.t ->
GapiAnalyticsV3Model.Goal.t * GapiConversation.Session.t
Gets a goal to which the user has access.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/analytics/v3/").
etag : Optional ETag.
std_params : Optional standard parameters.
accountId : Account ID to retrieve the goal for.
webPropertyId : Web property ID to retrieve the goal for.
profileId : View (Profile) ID to retrieve the goal for.
goalId : Goal ID to retrieve the goal for.
val insert : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
accountId:string ->
webPropertyId:string ->
profileId:string ->
GapiAnalyticsV3Model.Goal.t ->
GapiConversation.Session.t ->
GapiAnalyticsV3Model.Goal.t * GapiConversation.Session.t
Create a new goal.
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 goal for.
webPropertyId : Web property ID to create the goal for.
profileId : View (Profile) ID to create the goal for.
val list : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?max_results:int ->
?start_index:int ->
accountId:string ->
webPropertyId:string ->
profileId:string ->
GapiConversation.Session.t ->
GapiAnalyticsV3Model.Goals.t * GapiConversation.Session.t
Lists goals to which the user has access.
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 goals to include in this response.
start_index : An index of the first goal to retrieve. Use this parameter as a pagination mechanism along with the max-results parameter.
accountId : Account ID to retrieve goals for. Can either be a specific account ID or '~all', which refers to all the accounts that user has access to.
webPropertyId : Web property ID to retrieve goals for. Can either be a specific web property ID or '~all', which refers to all the web properties that user has access to.
profileId : View (Profile) ID to retrieve goals for. Can either be a specific view (profile) ID or '~all', which refers to all the views (profiles) that user has access to.
val patch : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
accountId:string ->
webPropertyId:string ->
profileId:string ->
goalId:string ->
GapiAnalyticsV3Model.Goal.t ->
GapiConversation.Session.t ->
GapiAnalyticsV3Model.Goal.t * GapiConversation.Session.t
Updates an existing view (profile). This method supports patch semantics.
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 goal.
webPropertyId : Web property ID to update the goal.
profileId : View (Profile) ID to update the goal.
goalId : Index of the goal to be updated.
val update : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
accountId:string ->
webPropertyId:string ->
profileId:string ->
goalId:string ->
GapiAnalyticsV3Model.Goal.t ->
GapiConversation.Session.t ->
GapiAnalyticsV3Model.Goal.t * GapiConversation.Session.t
Updates an existing view (profile).
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 goal.
webPropertyId : Web property ID to update the goal.
profileId : View (Profile) ID to update the goal.
goalId : Index of the goal to be updated.