Skip to main content
PUT
/
trust-centers
/
{slugId}
/
videos
Set Trust Center videos
curl --request PUT \
  --url https://api.vanta.com/v1/trust-centers/{slugId}/videos \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "videos": [
    {
      "url": "<string>",
      "title": "<string>",
      "description": "<string>"
    }
  ]
}
'
{
  "results": [
    {
      "url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
      "title": "Product security overview",
      "description": "An overview of our security practices"
    }
  ]
}

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
videos
object[]
required

The videos to display on the Trust Center. Replaces all existing videos.

Response

200 - application/json

Ok

results
object[]
required