ModifyUserPassword Method

Description

Modifies an existing user's password.

HTTP Request

PUT https://api.skeddly.com/api/Users/{id}/Password

URL Parameters

id

ID of the user whose password is to be modified.

Type: string

Required: Yes

Body

The body is a JSON structure with the following properties.

password

Updated password for the user.

Type: string

Required: Yes

Returns

No content.

Sample Request

PUT /api/Users/u-00000001/Password HTTP/1.1
Host: api.skeddly.com
Authorization: AccessKey <api key>
Content-Type: application/json

{
    "password": "myreallystrongpassword"
}

Last updated