# Update conversation latest url

{% hint style="warning" %}
All API requests should contain [authorization headers](https://developers.socialboards.com/docs/apis/tickets/authorization-headers).
{% endhint %}

This endpoint allows updating the link to indicate which page the user is currently on.

#### Request

```
PATCH chat/conversations/{id}/latestUrl
```

#### Query parameters

| Name | Type    | Required | Comments           |
| ---- | ------- | -------- | ------------------ |
| id   | integer | yes      | Id of conversation |

#### Request body

```json
"https://developers.socialboards.com/index"
```

#### Response

```json
{
    "errorCode": -1,
    "errorText": null
}
```
