POST
/
webhook-event
/
payout-report-requested
curl --request POST \
  --url https://{yourDomain}/webhook-event/payout-report-requested \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "<string>",
  "type": "test",
  "date": "<string>",
  "payload": {
    "payouts": [
      {
        "id": "<string>",
        "merchantAppId": "<string>",
        "amount": 123,
        "availableAt": "<string>",
        "transactions": [
          {
            "orderId": "<string>",
            "gross": 123,
            "fee": 123,
            "net": 123,
            "currency": "EUR",
            "reportingCategory": "<string>",
            "description": "<string>",
            "billingFullName": "<string>",
            "userMail": "<string>",
            "createdAt": "<string>",
            "referenceId": "<string>",
            "displayId": "<string>",
            "subaccountId": "<string>"
          }
        ]
      }
    ]
  }
}'

Body

application/json
Data of the webhook event

The body is of type object.

Response

200

OK