action velopayments_set_notifications_request_v3 { label: "Set notifications" description: "

Set notifications for a given source account

\n

If the balance falls below the amount set in the request an email notification will be sent to the email address registered in the payor profile

\n" provider: velopayments method: POST path: "/v3/sourceAccounts/{sourceAccountId}/notifications" encoding: json input: { type: "object" properties: { minimumBalance: { type: "integer" format: "int64" description: "Amount to set as minimum balance for notifications in minor units" } sourceAccountId: { type: "string" format: "uuid" } } required: ["minimumBalance", "sourceAccountId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }