Retrieve financial report
documentedDownload a financial report (returns a presigned URL in the response).
GET https://videocentral.amazon.com/apis/v1/accounts/{account_id}/financialStatement/{report_identifier}/reportTypes/{report_type_id}/reportsFinancial Statementno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://videocentral.amazon.com/apis/v1/accounts/{{$account_id}}/financialStatement/{{$report_identifier}}/reportTypes/{{$report_type_id}}/reports" \
-X GET \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "x-api-key: {{PRIMEVIDEO_API_KEY}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-G \
--data-urlencode "reportDateBeginGte={{$reportDateBeginGte}}" \
--data-urlencode "reportDateBeginLt={{$reportDateBeginLt}}" \
--data-urlencode "limit={{$limit}}"