Skip to main content
POST
/
trust-centers
/
{slugId}
/
subscriber-groups
Create Trust Center subscriber group
curl --request POST \
  --url https://api.vanta.com/v1/trust-centers/{slugId}/subscriber-groups \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "subscriberIds": [
    "<string>"
  ]
}
'
{
  "id": "a2f7e1b9d0c3f4e5a6c7b8d9",
  "name": "Example Group",
  "subscriberIds": [
    "a2f7e1b9d0c3f4e5a6c7b8d9"
  ],
  "creationDate": "2020-01-01T00:00:00.000Z"
}

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
name
string
required

Name of the subscriber group.

subscriberIds
string[]
required

List of subscriber IDs in the group.

Response

201 - application/json

Trust Center subscriber group created

id
string
required

Unique identifier for the subscriber group.

name
string
required

Name of the subscriber group.

subscriberIds
string[]
required

List of subscriber IDs in the group.

creationDate
string<date-time>
required

When the subscriber group was created.