action velopayments_get_payouts_for_payor_v3 { label: "V3 Get Payouts for Payor" description: "Deprecated (use /v4/paymentaudit/payouts instead)" provider: velopayments method: GET path: "/v3/paymentaudit/payouts" encoding: json input: { type: "object" properties: { page: { type: "integer" format: "int32" } pageSize: { type: "integer" format: "int32" } payorId: { type: "string" format: "uuid" } payoutMemo: { type: "string" } sort: { type: "string" } status: { type: "string" enum: ["ACCEPTED", "REJECTED", "SUBMITTED", "QUOTED", "INSTRUCTED", "COMPLETED", "INCOMPLETE", "CONFIRMED", "WITHDRAWN"] } submittedDateFrom: { type: "string" format: "date" } submittedDateTo: { type: "string" format: "date" } } required: ["payorId"] additionalProperties: false } output: { type: "object" description: "List Payouts Response" properties: { content: { type: "array" items: { type: "object" required: ["payoutId", "status", "submittedDateTime"] properties: { fxSummaries: { type: "array" items: { type: "object" required: ["creationDateTime", "fundingStatus", "invertedRate", "quoteId", "rate", "status", "totalCost", "totalPaymentAmount"] properties: { creationDateTime: { type: "string" format: "date-time" } fundingStatus: { type: "string" description: "Current status of the funding. One of the following values: FUNDED, INSTRUCTED, UNFUNDED" } invertedRate: { type: "number" format: "float" } paymentCurrency: { type: "string" description: "ISO 3 character currency code" } quoteId: { type: "string" format: "uuid" } rate: { type: "number" format: "float" } sourceCurrency: { type: "string" description: "ISO 3 character currency code" } status: { type: "string" description: "Current status of the FX Summary. One of the following values: UNQUOTED, QUOTED, EXPIRED, EXECUTED" } totalCost: { type: "integer" } totalPaymentAmount: { type: "integer" } } } } instructedDateTime: { type: "string" } payorId: { type: "string" format: "uuid" } payoutId: { type: "string" format: "uuid" } payoutMemo: { type: "string" } sourceAccountSummary: { type: "array" items: { type: "object" required: ["sourceAccountId", "totalCost"] properties: { currency: { type: "string" description: "ISO 3 character currency code" } sourceAccountId: { type: "string" format: "uuid" } totalCost: { type: "integer" format: "int64" } } } } status: { type: "string" description: "Current status of the payout. One of the following values: ACCEPTED, REJECTED, SUBMITTED, QUOTED, INSTRUCTED, COMPLETED, INCOMPLETE, CONFIRMED, WITHDRAWN" } submittedDateTime: { type: "string" } totalFailedPayments: { type: "integer" } totalIncompletePayments: { type: "integer" } totalPayments: { type: "integer" } withdrawnDateTime: { type: "string" } } } } links: { type: "array" items: { properties: { href: { type: "string" } rel: { type: "string" } } } } page: { properties: { numberOfElements: { type: "integer" } page: { type: "integer" } pageSize: { type: "integer" } totalElements: { type: "integer" } totalPages: { type: "integer" } } } } } }