action velopayments_get_payout_stats_v1 { label: "V1 Get Payout Statistics" description: "Deprecated (Use /v4/paymentaudit/payoutStatistics)" provider: velopayments method: GET path: "/v1/paymentaudit/payoutStatistics" encoding: json input: { type: "object" properties: { payorId: { type: "string" format: "uuid" } } additionalProperties: false } output: { type: "object" required: ["thisMonthFailedPaymentsCount", "thisMonthPayoutsCount"] properties: { thisMonthFailedPaymentsCount: { type: "integer" } thisMonthPayoutsCount: { type: "integer" } } } }