numberly / appnexus-client

:snake: General purpose Python client for the AppNexus API
https://appnexus-client.readthedocs.io
MIT License
39 stars 19 forks source link

Passing advertiser id to Report object #35

Closed romanumero closed 5 years ago

romanumero commented 5 years ago

Thanks to your team for developing this library. It's saved me time and works like a charm.

Can parameters be passed to the Report object? The Attribution Conversion report requires advertiser_id and I'm not clear on the best practice to accomplish this.

rambobinator commented 5 years ago

Hi, glad to hear that it helps you !

in this way it should work: report = Report(json).save(advertiser_id=42)

romanumero commented 5 years ago

Awesome. Thanks