action velopayments_enable_user_v2 { label: "Enable a User" description: "
If a user has been disabled this endpoints will enable them
\nThe invoker must have the appropriate permission
\nA user cannot enable themself
\nIf the user is a payor user and the payor is disabled this operation is not allowed
\nIf 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 } }