action velopayments_enable_user_v2 { label: "Enable a User" description: "

If a user has been disabled this endpoints will enable them

\n

The invoker must have the appropriate permission

\n

A user cannot enable themself

\n

If the user is a payor user and the payor is disabled this operation is not allowed

\n

If enabling a payor user would breach the limit for master admin payor users the request will be rejected

\n" provider: velopayments method: POST path: "/v2/users/{userId}/enable" encoding: json input: { type: "object" properties: { userId: { type: "string" format: "uuid" } } required: ["userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }