package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val delete : ?base_url:string -> ?std_params:GapiService.StandardParameters.t -> accountId:string -> webPropertyId:string -> profileId:string -> unsampledReportId:string -> GapiConversation.Session.t -> unit * GapiConversation.Session.t

Deletes an unsampled report.

  • parameter base_url

    Service endpoint base URL (defaults to "https://www.googleapis.com/analytics/v3/").

  • parameter std_params

    Optional standard parameters.

  • parameter accountId

    Account ID to delete the unsampled report for.

  • parameter webPropertyId

    Web property ID to delete the unsampled reports for.

  • parameter profileId

    View (Profile) ID to delete the unsampled report for.

  • parameter unsampledReportId

    ID of the unsampled report to be deleted.

val get : ?base_url:string -> ?etag:string -> ?std_params:GapiService.StandardParameters.t -> accountId:string -> webPropertyId:string -> profileId:string -> unsampledReportId:string -> GapiConversation.Session.t -> GapiAnalyticsV3Model.UnsampledReport.t * GapiConversation.Session.t

Returns a single unsampled report.

  • parameter base_url

    Service endpoint base URL (defaults to "https://www.googleapis.com/analytics/v3/").

  • parameter etag

    Optional ETag.

  • parameter std_params

    Optional standard parameters.

  • parameter accountId

    Account ID to retrieve unsampled report for.

  • parameter webPropertyId

    Web property ID to retrieve unsampled reports for.

  • parameter profileId

    View (Profile) ID to retrieve unsampled report for.

  • parameter unsampledReportId

    ID of the unsampled report to retrieve.

val insert : ?base_url:string -> ?std_params:GapiService.StandardParameters.t -> accountId:string -> webPropertyId:string -> profileId:string -> GapiAnalyticsV3Model.UnsampledReport.t -> GapiConversation.Session.t -> GapiAnalyticsV3Model.UnsampledReport.t * GapiConversation.Session.t

Create a new unsampled report.

  • parameter base_url

    Service endpoint base URL (defaults to "https://www.googleapis.com/analytics/v3/").

  • parameter std_params

    Optional standard parameters.

  • parameter accountId

    Account ID to create the unsampled report for.

  • parameter webPropertyId

    Web property ID to create the unsampled report for.

  • parameter profileId

    View (Profile) ID to create the unsampled report 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.UnsampledReports.t * GapiConversation.Session.t

Lists unsampled reports to which the user has access.

  • parameter base_url

    Service endpoint base URL (defaults to "https://www.googleapis.com/analytics/v3/").

  • parameter std_params

    Optional standard parameters.

  • parameter max_results

    The maximum number of unsampled reports to include in this response.

  • parameter start_index

    An index of the first unsampled report to retrieve. Use this parameter as a pagination mechanism along with the max-results parameter.

  • parameter accountId

    Account ID to retrieve unsampled reports for. Must be a specific account ID, ~all is not supported.

  • parameter webPropertyId

    Web property ID to retrieve unsampled reports for. Must be a specific web property ID, ~all is not supported.

  • parameter profileId

    View (Profile) ID to retrieve unsampled reports for. Must be a specific view (profile) ID, ~all is not supported.