Skip to main content
POST
/
trust-centers
/
{slugId}
/
faqs
Create Trust Center FAQ
curl --request POST \
  --url https://api.vanta.com/v1/trust-centers/{slugId}/faqs \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "question": "<string>",
  "answer": "<string>"
}
'
{
  "id": "4b1e7a8c3d9f6a2b5c8d0e3f",
  "question": "What is the meaning of life?",
  "answer": "42"
}

Documentation Index

Fetch the complete documentation index at: https://vanta.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

slugId
string
required

Body

application/json
question
string
required

The FAQ question.

answer
string
required

The FAQ answer.

Response

201 - application/json

Trust Center FAQ created

id
string
required

Unique identifier for the Trust Center FAQ.

question
string
required

The FAQ question.

answer
string
required

The FAQ answer.