> ## Documentation Index
> Fetch the complete documentation index at: https://rain-sandbox-trial.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# report.created

<Update label="v1.0.0" description="initial release">
  ### report.created webhook

  Added the `report.created` webhook. This webhook is triggered when the processor's BIN report files have arrived in Rain's storage servers and are available for download.

  <Note>
    This webhook applies to **BIN-Sponsorship Programs** only.
  </Note>

  #### Payload Fields

  | Field         | Type     | Description                                                    |
  | ------------- | -------- | -------------------------------------------------------------- |
  | `id`          | `string` | Webhook ID                                                     |
  | `resource`    | `string` | Always `"report"`                                              |
  | `action`      | `string` | Always `"created"`                                             |
  | `version`     | `string` | The webhook version                                            |
  | `body.id`     | `string` | Deterministic report ID (based on tenant, date, and format)    |
  | `body.year`   | `string` | The year of the BIN report files that arrived (e.g., `"2026"`) |
  | `body.month`  | `string` | The month of the BIN report files, zero-padded (e.g., `"01"`)  |
  | `body.day`    | `string` | The day of the BIN report files, zero-padded (e.g., `"27"`)    |
  | `body.format` | `string` | The format of the BIN report: `csv` or `json`                  |

  #### Report Format Values

  | Format | Description                   |
  | ------ | ----------------------------- |
  | `csv`  | Comma-separated values format |
  | `json` | JSON format                   |

  #### Example Payload

  ```json theme={null}
  {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "resource": "report",
      "action": "created",
      "version": "1.0.0",
      "body": {
          "id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
          "year": "2026",
          "month": "01",
          "day": "27",
          "format": "json"
      }
  }
  ```

  <Info>
    Reports for the previous day are available at 3pm EDT. Use the report date fields (`year`, `month`, `day`) along with the `format` to fetch the report via the [Get a tenant's report](/reference/reports/get-a-tenants-report) API endpoint.
  </Info>
</Update>
