> ## 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.

# Create Trust Center FAQ

> Adds an FAQ to a Trust Center.



## OpenAPI

````yaml /reference/manage-vanta.json post /trust-centers/{slugId}/faqs
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:
  /trust-centers/{slugId}/faqs:
    post:
      tags:
        - Trust Centers
      summary: Create Trust Center FAQ
      description: Adds an FAQ to a Trust Center.
      operationId: CreateTrustCenterFaq
      parameters:
        - in: path
          name: slugId
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AddOrEditTrustCenterFaqInput'
      responses:
        '201':
          description: Trust Center FAQ created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TrustCenterFaq'
              examples:
                Example 1:
                  value:
                    id: 4b1e7a8c3d9f6a2b5c8d0e3f
                    question: What is the meaning of life?
                    answer: '42'
                    category:
                      id: 71a3b8d2ef904c1a6d5e7f30
                      name: General
      security:
        - bearerAuth: []
components:
  schemas:
    AddOrEditTrustCenterFaqInput:
      properties:
        question:
          type: string
          description: The FAQ question.
        answer:
          type: string
          description: The FAQ answer.
        categoryId:
          type: string
          nullable: true
          description: >-
            The category to place this FAQ in. Pass null to move to
            uncategorized. Omit to leave unchanged (on update) or default to
            uncategorized (on create).
      required:
        - question
        - answer
      type: object
      additionalProperties: false
    TrustCenterFaq:
      properties:
        id:
          type: string
          description: Unique identifier for the Trust Center FAQ.
        question:
          type: string
          description: The FAQ question.
        answer:
          type: string
          description: The FAQ answer.
        category:
          allOf:
            - $ref: '#/components/schemas/TrustCenterFaqCategory'
          nullable: true
          description: The category this FAQ belongs to, or null if uncategorized.
      required:
        - id
        - question
        - answer
        - category
      type: object
      additionalProperties: false
    TrustCenterFaqCategory:
      properties:
        id:
          type: string
          description: Unique identifier for the FAQ category.
        name:
          type: string
          description: Name of the category.
      required:
        - id
        - name
      type: object
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````