Skip to content

Instantly share code, notes, and snippets.

@jenikm
Created July 25, 2013 20:32
Show Gist options
  • Save jenikm/6083473 to your computer and use it in GitHub Desktop.
Save jenikm/6083473 to your computer and use it in GitHub Desktop.
Cleanup old reports in amazon account: https://www.amazon.com/gp/b2b/reports?ie=UTF8&ref_=ya_order_reports Keeps top 4 most recent reports
jQuery("input[name='reportID']").each(function(i){if(i>=4){jQuery.ajax({ type: "POST", url: "https://www.amazon.com/gp/b2b/reports/delete-report", data: "reportID=" + this.value + "&delete-report.x=6&delete-report.y=7"})};})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment