Skip to main content

Create a User

Adds a new user to your site. Only site administrators can create a new user.

Endpoint

POST https://mysite.files.com/api/v2/users

Replace mysite.files.com with your site address.

Request Body Schema

NameData TypeNotes
usernamestringRequired. Must follow standard username conventions. Spaces are not allowed.
nicknamestringThe full name of the new user.
homeResourcestringRequired. A path that the user will be given permission to. Site administrators must have a homeResource of /. The path provided here is used as the user_root for FTP.
This can be specified as a file path (such as /path/to/folder) or as an ID string (such as id:1223). When providing an ID string, it must start with id:.
emailstringRequired. Must be a valid email address.
passwordstringRequired. The password for the new user. Passwords cannot be set to common words or passwords that have been published on the dark web.
rolestringRequired. Send admin to make the new user a site administrator, or user otherwise.
Possible values: admin, user.
permissionsobjectAn object containing name/value pairs for each permission. Any permission that is not passed will be set to false by default. If an empty object is provided, it will create a user with no permissions.
When creating an admin user, set all of the permissions to true.
timeZonestringRequired. Time zone, used for accurate time display within the application.
Must be one of the allowed time zone identifiersExternal LinkThis link leads to an external website and will open in a new tab.
UTC is not a valid option.
expirationdate-timeOptional timestamp when the user account expires.
Format is YYYY-mm-dd HH:MM:SS.
Must be in the future. You cannot retroactively expire a user account.
lockedbooleanIf true, the user account will be disabled.
welcomeEmailbooleanLegacy setting that is no longer used.
onboardingbooleanLegacy setting that is no longer used.

Permissions Object

The permissions object included in the request schema has the following properties.

NameData Type
listboolean
downloadboolean
uploadboolean
modifyboolean
deleteboolean
changePasswordboolean
shareboolean
notificationboolean
viewFormDataboolean
deleteFormDataboolean
undeleteboolean