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

# Enable tag category for product context

> Enables a tag category for a product context (e.g. document sharing,
control sharing), making it available for scoping that context's
shareable content. Idempotent: enabling an already-enabled category is
a no-op.



## OpenAPI

````yaml /reference/manage-vanta.json post /customer-trust/tag-categories/{tagCategoryId}/product-contexts
openapi: 3.0.0
info:
  title: Manage Vanta
  version: 1.0.0
  description: >-
    The REST API lets customers query and mutate Vanta's data. Use this API to
    automate bulk actions, query data for custom workflows and dashboards, and
    bolster your security operations


    **Note for Vanta Gov (FedRAMP) customers:** Select `Vanta Gov (FedRAMP)`
    from the server dropdown to issue requests against
    `https://api.vanta-gov.com`. The OAuth token URL shown below defaults to the
    commercial host — replace it with `https://api.vanta-gov.com/oauth/token`.
  termsOfService: https://www.vanta.com/terms
  license:
    name: UNLICENSED
  contact:
    name: API Support
    url: https://help.vanta.com/
    email: support@vanta.com
servers:
  - url: https://api.vanta.com/v1
    description: Vanta (Commercial)
  - url: https://api.vanta-gov.com/v1
    description: Vanta Gov (FedRAMP)
security: []
paths:
  /customer-trust/tag-categories/{tagCategoryId}/product-contexts:
    post:
      tags:
        - Customer Trust
      summary: Enable tag category for product context
      description: |-
        Enables a tag category for a product context (e.g. document sharing,
        control sharing), making it available for scoping that context's
        shareable content. Idempotent: enabling an already-enabled category is
        a no-op.
      operationId: AddTagCategoryProductContext
      parameters:
        - in: path
          name: tagCategoryId
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AddTagCategoryProductContextInput'
      responses:
        '204':
          description: No content
      security:
        - bearerAuth: []
components:
  schemas:
    AddTagCategoryProductContextInput:
      properties:
        productContextId:
          $ref: '#/components/schemas/CustomerTrustProductContextIdWritable'
          description: Product context to enable this tag category for.
      required:
        - productContextId
      type: object
      additionalProperties: false
    CustomerTrustProductContextIdWritable:
      type: string
      enum:
        - EXTERNAL_TRUST_CENTER
        - DOCUMENT_SHARING
        - CONTROL_SHARING
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````

## Related topics

- [Disable tag category for product context](/api-reference/customer-trust/disable-tag-category-for-product-context.md)
- [Vanta API changelog](/docs/changelog.md)
- [List tag categories](/api-reference/customer-trust/list-tag-categories.md)
- [Get tags for category](/api-reference/customer-trust/get-tags-for-category.md)
- [Bulk remove tags from Trust Center controls](/api-reference/trust-centers/bulk-remove-tags-from-trust-center-controls.md)
