CreateUser Method

Description

Creates a user.

Usernames and email addresses must be unique across all users of all Skeddly accounts. Many email servers support "+ notation" to support unique passwords for a single inbox. For example, if the real email address was "[email protected]", then "[email protected]" would forward to the same inbox. Essentially, everything between the "+" and "@" characters is ignored. Check with your IT team to see if your email servers support "+ notation".

HTTP Request

POST https://api.skeddly.com/api/Users/

Body

The body is a JSON structure with the following properties.

emailAddress

Email address for the new user. It must not already be used by another user.

Type: string

Required: Yes

managedPolicyIds

List of Managed Policy IDs to apply to the new user.

Type: Array of string

Required: No

password

Password for the new user.

Type: string

Required: Yes

username

Username for the new user.

Type: string

Required: Yes

Returns

A User object.

Sample Request

Sample Response

Last updated