# Update a Message Template

> Updates an existing message template, by the template ID.

Updates an existing message template, by the template ID.

## API Endpoint

`PUT` `https://{yourDomain}/identity/api/MessageTemplate/{templateId}`

## Scopes

Requires the following scopes:

* PM.MessageTemplate
* PM.MessageTemplate.Write

## Request Headers

```
--header 'Authorization: Bearer {access_token}'\
--header 'Content-Type: application/json'
```

## Path Parameters

| Param | Data type | Description |
| --- | --- | --- |
| `templateId`  (required) | String | The ID of message template you want to update. |

## Request Body

The request body contains the message ID and the new content.

```
{
  "id": 0,
  "value": "string"
}
```

## Responses

### 200 OK

The message template gets updated and returns the new information.

```
{
  "id": 0,
  "name": "string",
  "value": "string"
}
```
