action velopayments_payor_email_opt_out { label: "Reminder Email Opt-Out" description: "Update the emailRemindersOptOut field for a Payor. This API can be used to opt out\nor opt into Payor Reminder emails. These emails are typically around payee events\nsuch as payees registering and onboarding.\n" provider: velopayments method: POST path: "/v1/payors/{payorId}/reminderEmailsUpdate" encoding: json input: { type: "object" properties: { payorId: { type: "string" format: "uuid" } reminderEmailsOptOut: { type: "boolean" } } required: ["payorId", "reminderEmailsOptOut"] additionalProperties: false } output: { type: "object" additionalProperties: true } }