> For the complete documentation index, see [llms.txt](https://docs.hidemium.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hidemium.io/use-cases/api-automation-v2/interact-profile/6.-sync-tags.md).

# 6. Sync tags

Synchronize the profile's tag

### **Request**

<table><thead><tr><th width="249">Method</th><th>URL</th></tr></thead><tbody><tr><td>PUT</td><td>http://127.0.0.1:5555/sync-tags</td></tr></tbody></table>

### **Body**

{% code lineNumbers="true" %}

```json
{
    "tags": ["1212121","bbbb1"],
    "profile_uuid": "992c1053-4ed6-4018-8776-f91a0a8da77b"
}
```

{% endcode %}

* profile\_uuid: UUID of profile
* tags: Profile tags are limited to 15 characters

### &#x20;**Response**

{% code lineNumbers="true" %}

```json
{
    "type": "success",
    "title": "Sync successfully.",
    "content": []
}
```

{% endcode %}
