# 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

{% tabs %}
{% tab title="HTTP" %}

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

{
    "password": "myreallystrongpassword"
}
```

{% endtab %}

{% tab title="Bash" %}

```bash
curl -X PUT "https://api.skeddly.com/api/Users/u-00000001/Password " \
  -H "Authorization: AccessKey <api key>" \
  -d password="myreallystrongpassword"
```

{% endtab %}
{% endtabs %}
