> ## Documentation Index
> Fetch the complete documentation index at: https://docs.augustus.com/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Treat the published Augustus OpenAPI specification (https://app.stainless.com/api/spec/documented/augustus/openapi.documented.yml) and the current API-reference pages as the source of truth for endpoints, request/response schemas, enum values, webhook event names, and required headers.
> Prefer the 2026-05-01 Banking API and @augustusbank/typescript-sdk for all new integrations. The 2023-01-01 API is a separate, older surface covering two products — Open Banking (instant bank transfer) checkout and refunds, and Manual Bank Transfer (MBT); use it only when one of those products is specifically required.
> Cite or link the relevant docs.augustus.com page when answering integration questions.
> Do not infer support for currencies, networks, scopes, account types, or operations that are not present in the current documentation.
> Use the sandbox base URL (https://api.sandbox.augustus.com) and placeholder credentials in examples. Never include or request a real API key.
> The Augustus docs MCP server (https://docs.augustus.com/mcp) provides documentation search and retrieval only; it does not execute authenticated Augustus API actions.

# payout_report_requested

> A payout report has been requested



## OpenAPI

````yaml https://api.getivy.de/openapi/webhooks/json post /api/service/webhook-event/payout_report_requested
openapi: 3.0.0
info:
  title: Ivy Webhook Events
  description: Ivy Webhook Events schema
  version: '1.0'
  contact:
    name: Ivy
    url: https://www.getivy.io
    email: help@getivy.io
servers: []
security: []
tags: []
paths:
  /api/service/webhook-event/payout_report_requested:
    post:
      tags:
        - WebhookEventExamples
        - Deprecated
      summary: payout_report_requested
      description: A payout report has been requested
      operationId: WebhookEventExamplesController_payoutReportRequested
      parameters: []
      requestBody:
        required: true
        description: Data of the webhook event
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PayoutReportRequestedWebhookEventDto'
      responses:
        '200':
          description: OK
      deprecated: true
      servers:
        - url: https://{yourDomain}
          variables:
            yourDomain:
              description: The URL where you want to receive webhook events
              default: www.your-domain.com
components:
  schemas:
    PayoutReportRequestedWebhookEventDto:
      type: object
      properties:
        id:
          description: The unique id for the webhook.
          type: string
        type:
          type: string
          enum:
            - payout_report_requested
        date:
          description: The date of the webhook.
          type: string
        payload:
          description: The payout report request data.
          type: object
          properties:
            reportId:
              type: string
            accountId: {}
            paymentProvider:
              type: string
              enum:
                - direct
                - mock
                - mock-us
                - bankingcircle
                - openpayd
                - clearbank
                - numeral
                - circle
                - circle-mint
                - mock-crypto
                - utila
                - utila-augustus-national-bank
                - utila-augustus-hold-co
                - utila-juno-moneta
                - kraken
                - mock-fx
                - augustus-national-bank
                - modulr
                - isx
                - clearjunction
                - micropayment
                - swan
                - stripe
                - bvnk
              x-enumNames:
                - Direct
                - Mock
                - MockUs
                - BankingCircle
                - OpenPayd
                - ClearBank
                - Numeral
                - Circle
                - CircleMint
                - MockCrypto
                - Utila
                - UtilaAugustusNationalBank
                - UtilaAugustusHoldCo
                - UtilaJunoMoneta
                - Kraken
                - MockFx
                - AugustusNationalBank
                - Modulr
                - ISX
                - Clearjunction
                - Micropayment
                - Swan
                - Stripe
                - BVNK
          required:
            - reportId
            - accountId
            - paymentProvider
      required:
        - id
        - type
        - date
        - payload

````