rdfp (version 0.1.4)

dfp_getReconciliationReportRowsByStatement: ReconciliationReportRowService

Description

Provides methods for retrieving and updating the ReconciliationReportRow objects.

Usage

dfp_getReconciliationReportRowsByStatement(request_data, as_df = TRUE,
  verbose = FALSE)

Arguments

request_data

a list or data.frame of data elements to be formatted for a SOAP request (XML format, but passed as character string)

as_df

a boolean indicating whether to attempt to parse the result into a data.frame

verbose

a boolean indicating whether to print the service URL and POSTed XML

Value

a data.frame or list containing all the elements of a getReconciliationReportRowsByStatementResponse

Details

getReconciliationReportRowsByStatement

Gets a ReconciliationReportRowPage of ReconciliationReportRow objects that satisfy the given Statement query. The following fields are supported for filtering:

  • reconciliationReportId

  • advertiserId

  • orderId

  • lineItemId

  • proposalLineItemId

  • creativeId

  • lineItemCostType

  • dfpClicks

  • dfpImpressions

  • dfpLineItemDays

  • thirdPartyClicks

  • thirdPartyImpressions

  • thirdPartyLineItemDays

  • manualClicks

  • manualImpressions

  • manualLineItemDays

  • reconciledClicks

  • reconciledImpressions

  • reconciledLineItemDays

See Also

Google Documentation for getReconciliationReportRowsByStatement

Examples

Run this code
# NOT RUN {
 dat <- list(filterStatement=list('query'="WHERE status='ACTIVE'")) 
 res <- dfp_getReconciliationReportRowsByStatement(dat)
# }

Run the code above in your browser using DataCamp Workspace