There are some optional parameters when creating an AdProductFeed that would be useful to be able to pass in to override the defaults.
Example:
Currently only name and schedule are sent:
catalog.create_ad_product_feed(
name: 'sample_feed',
schedule: { url: 'https://example.com/sample.csv', interval: 'HOURLY' }
)
This would be very useful to have instead:
catalog.create_ad_product_feed(
name: 'sample_feed',
schedule: { url: 'https://example.com/sample.csv', interval: 'HOURLY' },
options: { country: 'UK', default_currency: 'GBP' }
)
There are some optional parameters when creating an AdProductFeed that would be useful to be able to pass in to override the defaults.
Example:
Currently only
nameandscheduleare sent:This would be very useful to have instead: