action velopayments_resend_payee_invite_v4 { label: "Resend Payee Invite" description: "
Resend an invite to the Payee The payee must have already been invited by the payor and not yet accepted or declined
\nAny previous invites to the payee by this Payor will be invalidated
\n" provider: velopayments method: POST path: "/v4/payees/{payeeId}/invite" encoding: json input: { type: "object" properties: { payeeId: { type: "string" format: "uuid" } payorId: { type: "string" format: "uuid" } } required: ["payeeId", "payorId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }