action velopayments_delete_source_account_v3 { label: "Delete a source account by ID" description: "Mark a source account as deleted by ID" provider: velopayments method: DELETE path: "/v3/sourceAccounts/{sourceAccountId}" encoding: json input: { type: "object" properties: { sourceAccountId: { type: "string" format: "uuid" } } required: ["sourceAccountId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }