dfp_getProposalLineItemsByStatement {rdfp} | R Documentation |
getProposalLineItemsByStatement
Description
Gets a ProposalLineItemPage of ProposalLineItem objects that satisfy the given Statement query. The following fields are supported for filtering:
id
name
proposalId
startDateTime
endDateTime
isArchived
lastModifiedDateTime
useThirdPartyAdServerFromProposal Only applicable for non-programmatic proposal line items using sales management
thirdPartyAdServerId Only applicable for non-programmatic proposal line items using sales management
customThirdPartyAdServerName Only applicable for non-programmatic proposal line items using sales management
isProgrammatic
Usage
dfp_getProposalLineItemsByStatement(request_data, as_df = TRUE,
verbose = FALSE)
Arguments
request_data |
a |
as_df |
a boolean indicating whether to attempt to parse the result into
a |
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 getProposalLineItemsByStatementResponse
See Also
Google Documentation for getProposalLineItemsByStatement
Examples
## Not run:
dat <- list(filterStatement=list('query'="WHERE status='ACTIVE'"))
res <- dfp_getProposalLineItemsByStatement(dat)
## End(Not run)