action velopayments_disable_user_v2 { label: "Disable a User" description: "
If a user is enabled this endpoint will disable them
\nThe invoker must have the appropriate permission
\nA user cannot disable themself
\nWhen 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 } }