Learn R Programming

googleAnalyticsR (version 0.5.0)

ga_custom_upload: Custom Data Source Upload Status

Description

Get the status of a custom upload

Usage

ga_custom_upload(accountId, webPropertyId, customDataSourceId, uploadId,
  upload_object)

Arguments

accountId

Account Id

webPropertyId

Web Property Id

customDataSourceId

Custom data source Id

uploadId

upload Id

upload_object

A custom upload Id object. Supply this or the other arguments.

Value

An object of class ga_custom_data_source_upload

Details

You can supply either upload_object generated via function or ga_custom_upload_file, or make an

See Also

Other custom datasource functions: ga_custom_datasource, ga_custom_upload_file, ga_custom_upload_list

Examples

Run this code
# NOT RUN {
# }
# NOT RUN {
upload_me <- data.frame(medium = "shinyapps", 
                        source = "referral", 
                        adCost = 1, 
                        date = "20160801")
                        
obj <- ga_custom_upload_file(47850439, 
                             "UA-4748043-2", 
                             "_jDsJHSFSU-uw038Bh8fUg", 
                             upload_me)
                             
## obj will initially have status = PENDING
obj
==Google Analytics Custom Data Source Upload==
Custom Data Source ID:  _jDsJHSFSU-uw038Bh8fUg 
Account ID:             47850439 
Web Property Id:        UA-4748043-2 
Upload ID:              7yHLAkeLSiK1zveVTiWZwA 
Status:                 PENDING 

## Send obj to ga_custom_upload() to check and renew status
obj <- ga_custom_upload(upload_object = obj)
obj

==Google Analytics Custom Data Source Upload==
Custom Data Source ID:  _jDsJHSFSU-uw038Bh8fUg 
Account ID:             47850439 
Web Property Id:        UA-4748043-2 
Upload ID:              7yHLAkeLSiK1zveVTiWZwA 
Status:                 COMPLETED 

# }
# NOT RUN {
# }

Run the code above in your browser using DataLab