action velopayments_delete_payee_by_id_v4 { label: "Delete Payee by Id" description: "
This API will delete Payee by Id (UUID). Deletion by ID is not allowed if:
\n* Payee ID is not found
\n* If Payee has not been on-boarded
\n* If Payee is in grace period
\n* If Payee has existing payments
\n" provider: velopayments method: DELETE path: "/v4/payees/{payeeId}" encoding: json input: { type: "object" properties: { payeeId: { type: "string" format: "uuid" } } required: ["payeeId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }