Skip to main content
PUT
/
v1
/
trust-portal
/
settings
/
allowed-emails
Update allowed emails for the trust portal
curl --request PUT \
  --url https://api.trycomp.ai/v1/trust-portal/settings/allowed-emails \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "emails": [
    "person@example.com"
  ]
}
'

Authorizations

X-API-Key
string
header
required

API key for authentication

Body

application/json
emails
string[]
required

Email addresses that bypass NDA signing for trust portal access. Replaces the full list; send an empty array to clear it.

Example:
["person@example.com"]

Response

200 - undefined