> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nrai.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Show/Hide Addons

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

<Snippet file="replace-oauth2-apps.mdx" />

If you would like to only show specific addons to your embedding users, we recommend you do the following:

<Steps>
  <Step title="Tag Addons">
    Tag the addons you would like to show to your user by going to **Platform Admin -> Setup -> Addons**, selecting the addons you would like to tag and hit **Apply Tags**

    <img src="https://mintlify.s3.us-west-1.amazonaws.com/newratantechnologiespvtltd/resources/screenshots/tag-addons.png" alt="Bulk Tag" />
  </Step>

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

    You should specify the `addons` claim like this:

    ```json theme={null}
    {
        /// Other claims
        "addonsFilterType": "ALLOWED",
        "addonsTags": [ "free" ]
    }
    ```

    Each time the token is used by the embedding SDK, it will sync all addons with these tags to the token's project.
    The project will only contain the addons that contain these tags.
  </Step>
</Steps>
