Get report status. Use to query a specific report once it has been requested. Args: report_id (str): Report ID Returns: dict: Report details, including file url once it is created.
(self, report_id)
| 1000 | data=json.dumps(params)) |
| 1001 | |
| 1002 | def get_report(self, report_id): |
| 1003 | """ Get report status. |
| 1004 | |
| 1005 | Use to query a specific report once it has been requested. |
| 1006 | |
| 1007 | Args: |
| 1008 | report_id (str): Report ID |
| 1009 | |
| 1010 | Returns: |
| 1011 | dict: Report details, including file url once it is created. |
| 1012 | |
| 1013 | """ |
| 1014 | return self._send_message('get', '/reports/' + report_id) |
| 1015 | |
| 1016 | def get_trailing_volume(self): |
| 1017 | """ Get your 30-day trailing volume for all products. |
nothing calls this directly
no test coverage detected