> For the complete documentation index, see [llms.txt](https://docs.released.so/guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.released.so/guide/resources/how-tos/change-the-portal-url-slug.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
