# Change The Portal URL (Slug)

Currently the portal URL can only be updated via the API. The easies way to do so is via the browser [console](/guide/resources/how-tos/how-to-open-the-developer-console-to-check-for-errors.md).<br>

Here are the steps you'll need to take:<br>

{% stepper %}
{% step %}

#### Copy the portal ID

Navigate to you workspace Dashboard.

Copy the portal ID from the URL toolbar. It's a 32 character string at the end of the URL, right after `portal/` .

<figure><img src="/files/putxYtRUbcQzT2DOPoUR" alt=""><figcaption></figcaption></figure>
{% endstep %}

{% step %}

#### Open the browser console

You can find instructions on how to open the browser console here.
{% endstep %}

{% step %}

#### Enter the API code

In the console, enter the following code.

{% code overflow="wrap" %}

```javascript
apiFetch('/internal/api/stream/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx', { method: 'PATCH', body: JSON.stringify({ slug: 'newslug' }) })
```

{% endcode %}

Please replace the ID placeholder marked with "x" and insert the "new slug"

Hit Enter to execute the call.
{% endstep %}

{% step %}

#### Reload the page

Reload the dashboard and you see the updates slug in the portal URL in the top.
{% endstep %}
{% endstepper %}

## Need help?

Feel free to schedule a [15 minute call](https://cal.com/released/15min) and we will help assist you with the renaming.

\
\ <br>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.released.so/guide/resources/how-tos/change-the-portal-url-slug.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
