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",
  "category": {
    "id": "71a3b8d2ef904c1a6d5e7f30",
    "name": "General"
  }
}

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.

category
object
required

The category this FAQ belongs to, or null if uncategorized.