action velopayments_unlock_user_v2 { label: "Unlock a User" description: "If a user is locked this endpoint will unlock them\n" provider: velopayments method: POST path: "/v2/users/{userId}/unlock" encoding: json input: { type: "object" properties: { userId: { type: "string" format: "uuid" } } required: ["userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }