> ## Documentation Index
> Fetch the complete documentation index at: https://activepieces-fix-troubleshoort.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Customize Pieces

<Snippet file="enterprise-feature.mdx" />

This documentation explains how to customize access to pieces depending on projects.

<Steps>
  <Step title="Tag Pieces">
    You can tag pieces in bulk using **Admin Console**

    ![Bulk Tag](https://mintlify.s3-us-west-1.amazonaws.com/activepieces-fix-troubleshoort/resources/screenshots/tag-pieces.png)
  </Step>

  <Step title="Add Tags to Provision Token">
    We need to specify the tags of pieces in the token, check how to generate token in [provision-users](./provision-users).

    You should specify the `pieces` claim like this:

    ```json
    {
        /// Other claims
        "pieces": {
            "filterType": "ALLOWED",
            "tags": [ "free" ]
        }
    }
    ```

    Each time the token is used in the frontend, it will sync all pieces with these tags to the project.
    The project's pieces list will **exactly match** all pieces with these tags at the moment of using the iframe.
  </Step>
</Steps>
