action velopayments_register_sms { label: "Register SMS Number" description: "

Register an Sms number and send an OTP to it

\n

Used for manual verification of a user

\n

The backoffice user initiates the request to send the OTP to the user's sms

\n

The user then reads back the OTP which the backoffice user enters in the verifactionCode property for requests that require it

\n" provider: velopayments method: POST path: "/v2/users/registration/sms" encoding: json input: { type: "object" required: ["smsNumber"] properties: { smsNumber: { type: "string" description: "The phone number of a device that the user can receive sms messages on\n" } } } output: { type: "object" additionalProperties: true } }