get_finance_report
Download and parse finance reports from App Store Connect, returning structured rows for revenue summaries or transaction details by providing vendor number, region code, fiscal month, and report type.
Instructions
Download and parse a finance report from App Store Connect. Returns financial report data as structured rows. Your vendor number can be found in App Store Connect under Settings > Agreements, Tax, and Banking. The regionCode is a 1-2 letter code representing the financial region (e.g., 'US' for United States, 'EU' for Europe, 'JP' for Japan, 'Z1' for rest of world). Report date must be in YYYY-MM format. Reports are typically available 30-45 days after the end of the fiscal month. Use FINANCIAL for revenue summary or FINANCE_DETAIL for line-item details.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| vendorNumber | Yes | Your vendor number (numeric string). Found in App Store Connect → Settings → Agreements, Tax, and Banking. | |
| regionCode | Yes | Financial region code (1-2 characters). Examples: 'US' (United States), 'EU' (Europe), 'JP' (Japan), 'AU' (Australia), 'Z1' (rest of world). | |
| reportDate | Yes | The fiscal month for the report in YYYY-MM format (e.g., '2024-01'). | |
| reportType | Yes | FINANCIAL for revenue summary by territory. FINANCE_DETAIL for line-item transaction details. | |
| maxRows | No | Maximum number of data rows to return (1-1000, default 100). |