action velopayments_disable_user_v2 { label: "Disable a User" description: "

If a user is enabled this endpoint will disable them

\n

The invoker must have the appropriate permission

\n

A user cannot disable themself

\n

When a user is disabled any active access tokens will be revoked and the user will not be able to log in

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