action velopayments_user_details_update_for_self { label: "Update User Details for self" description: "

Update the profile details for the given user

\n

Only Payee user types are supported

\n" provider: velopayments method: POST path: "/v2/users/self/userDetailsUpdate" encoding: json input: { type: "object" description: "

All properties are optional

\n

Only provided properties will be updated

\n

Use null to null out a property that is allowed to be nullable

\n" properties: { email: { type: "string" format: "email" description: "the email address of the user" } firstName: { type: "string" } lastName: { type: "string" } primaryContactNumber: { type: "string" description: "The main contact number for the user\n" } secondaryContactNumber: { type: "string" description: "The secondary contact number for the user\n" } smsNumber: { type: "string" description: "The phone number of a device that the user can receive sms messages on\n" } } } output: { type: "object" additionalProperties: true } }